Wikibooks
enwikibooks
https://en.wikibooks.org/wiki/Main_Page
MediaWiki 1.47.0-wmf.8
first-letter
Media
Special
Talk
User
User talk
Wikibooks
Wikibooks talk
File
File talk
MediaWiki
MediaWiki talk
Template
Template talk
Help
Help talk
Category
Category talk
Cookbook
Cookbook talk
Transwiki
Transwiki talk
Wikijunior
Wikijunior talk
Subject
Subject talk
TimedText
TimedText talk
Module
Module talk
Event
Event talk
Investing
0
271
4641231
4529178
2026-06-26T10:15:53Z
~2026-36871-82
3610021
/* */
4641231
wikitext
text/x-wiki
Investing involves using your money (or borrowed money that you control) to earn more money.
Before proceeding, make sure that you understand the concepts of [[Personal Finance]]. Topics
covered here are:
*[[/Stock market/]]
*Mutual funds
*[[/Bonds/]]
*[[/Real estate/]]
*[[/Rental properties/]]
*[[/Starting a business/]]
*[[/Insurances/]]
*[[/Retirement plans/]]
*[[/Estate planning/]]
*[[/Sustainable/Environmental/]]
*[[T.me/investmentplatform39|Tax advantaged investing]]
*[[/Technical Analysis on trading and investing/]]
Many excellent resources available on the web:
* [http://www.aaii.com American Association of Individual Investors] is a comprehensive on-line guide to investing, developed to assist individuals in becoming effective managers of their own assets. Find how-to articles and interactive tools to expand your investing knowledge and apply it.
* [http://finance.google.com/finance Google Finance]
* [http://finance.yahoo.com/ Yahoo! Finance] Resources on stocks, mutual funds, other investments
* [http://www.fool.com/ The Motley Fool] Advice and philosophy on investing
* [http://www.morningstar.com/ Morningstar] Ratings on stocks and mutual funds
* [http://marketwatch.nytimes.com/custom/nyt-com/portfolio/view.asp New York Times] Create a virtual portfolio that the Times will track for you
* [http://www.wikinvest.com/ Wikinvest.com] no longer a wiki - based investment site, it is now SigFig owned by BlackRock Investments. BlackRock is the world's largest investment management firm.
* [http://www.better-investing.org National Association of Investors Corporation] Investment Clubs organization committed to teaching individuals how to become successful strategic long-term investors.
{{Shelves|Personal finance}}
{{Alphabetical|I}}
{{status|25%}}
4iqfb59xgh6752z4nx80w2whstijyj1
4641232
4641231
2026-06-26T10:26:16Z
~2026-36871-82
3610021
TESLA AND SPACE SHIP INVESMENT PLATFORM
4641232
wikitext
text/x-wiki
[https://examplet.me/investmentplatform Just buy investing $5000 getting $7000 in Tesla within two days publish] involves using your money (or borrowed money that you control) to earn more money.
Before proceeding, make sure that you understand the concepts of [[Personal Finance]]. Topics
covered here are:
*[[/Stock market/]]
*Mutual funds
*[[/Bonds/]]
*[[/Real estate/]]
*[[/Rental properties/]]
*[[/Starting a business/]]
*[[/Insurances/]]
*[[/Retirement plans/]]
*[[/Estate planning/]]
*[[/Sustainable/Environmental/]]
*[[T.me/investmentplatform39|Tax advantaged investing]]
*[[/Technical Analysis on trading and investing/]]
Many excellent resources available on the web: Public investment is government (or public-sector) spending to create or improve long‑lived assets and capabilities that deliver public benefits over many years.
<nowiki>##</nowiki> 1) What counts as public investment
<nowiki>**</nowiki>Core (capital) investment**
- **Economic infrastructure:** roads, rail, ports, airports, power grids, broadband.
- **Social infrastructure:** schools, hospitals, housing, water/sanitation, prisons.
- **Climate/energy:** renewables, flood defenses, wildfire prevention, adaptation.
- **Public buildings & equipment:** government facilities, vehicles, IT/data centers.
- **Natural capital:** parks, reforestation, watershed restoration.
<nowiki>**</nowiki>Broader public investment (often included in practice)**
- **R&D and innovation:** public labs, grants, technology programs.
- **Human capital programs with durable returns:** early childhood, workforce systems (classification varies by country/accounting rules).
- **Maintenance/rehabilitation:** may be treated as “current spending” in budgets but is essential to preserve asset value.
<nowiki>##</nowiki> 2) Why governments invest
- Fix **market failures** (public goods, externalities like pollution, network effects).
- Provide **universal access** and equity (services not profitable privately).
- Raise **productivity and growth{{Alphabetical|I}}
{{status|25%}}
fywi9dhqsuntjxyjh1m3mr6l15ayeaw
C Programming/Memory management
0
927
4641205
4618364
2026-06-26T01:14:59Z
~2026-36887-82
3609927
Replaced 0 with NULL
4641205
wikitext
text/x-wiki
{{Nav}}
In C, you have already considered creating variables for use in the program. You have created some arrays for use, but you may have already noticed some limitations:
* the size of the array must be known beforehand
* the size of the array cannot be changed in the duration of your program
''Dynamic memory allocation'' in C is a way of circumventing these problems.
==The <code>malloc</code> function==
<syntaxhighlight lang=c>
#include <stdlib.h>
void *calloc(size_t nmemb, size_t size);
void free(void *ptr);
void *malloc(size_t size);
void *realloc(void *ptr, size_t size);
</syntaxhighlight>
The standard C function <code>malloc</code> is the means of implementing dynamic memory allocation. It is defined in stdlib.h or malloc.h, depending on what operating system you may be using. Malloc.h contains only the definitions for the memory allocation functions and not the rest of the other functions defined in stdlib.h. Usually you will not need to be so specific in your program, and if both are supported, you should use <stdlib.h>, since that is ANSI C, and what we will use here.
The corresponding call to release allocated memory back to the operating system is <code>free</code>.
When dynamically allocated memory is no longer needed, <code>free</code> should be called to release it back to the memory pool. Overwriting a pointer that points to dynamically allocated memory can result in that data becoming inaccessible. If this happens frequently, eventually the operating system will no longer be able to allocate more memory for the process. Once the process exits, the operating system is able to free all dynamically allocated memory associated with the process.
Let's look at how dynamic memory allocation can be used for arrays.
Normally when we wish to create an array we use a declaration such as
<syntaxhighlight lang=c>
int array[10];
</syntaxhighlight>
Recall <code>array</code> can be considered a pointer which we use as an array. We specify the length of this array is 10 <code>int</code>s. After <code>array[0]</code>, nine other integers have space to be stored consecutively.
Sometimes it is not known at the time the program is written how much memory will be needed for some data; for example, when it depends upon user input. In this case we would want to dynamically allocate required memory after the program has started executing.
To do this we only need to declare a pointer, and invoke <code>malloc</code> when we wish to make space for the elements in our array, ''or'', we can tell <code>malloc</code> to make space when we first initialize the array. Either way is acceptable and useful.
We also need to know how much an int takes up in memory in order to make room for it; fortunately this is not difficult, we can use C's builtin <code>sizeof</code> operator. For example, if <code>sizeof(int)</code> yields 4, then one <code>int</code> takes up 4 bytes. Naturally, <code>2*sizeof(int)</code> is how much memory we need for 2 <code>int</code>s, and so on.
So how do we <code>malloc</code> an array of ten <code>int</code>s like before? If we wish to declare and make room in one hit, we can simply say
<syntaxhighlight lang=c>
int *array = malloc(10*sizeof(int));
</syntaxhighlight>
We only need to declare the pointer; <code>malloc</code> gives us some space to store the 10 <code>int</code>s, and returns the pointer to the first element, which is assigned to that pointer.
'''Important note!''' <code>malloc</code> does ''not'' initialize the array; this means that the array may contain random or unexpected values! Like creating arrays without dynamic allocation, the programmer must initialize the array with sensible values before using it. Make sure you do so, too. (''See later the function <code>memset</code> for a simple method.'')
It is not necessary to immediately call <code>malloc</code> after declaring a pointer for the allocated memory.
Often a number of statements exist between the declaration and the call to <code>malloc</code>, as follows:
<syntaxhighlight lang=c>
int *array = NULL;
printf("Hello World!!!");
/* more statements */
array = malloc(10*sizeof(int)); /* delayed allocation */
/* use the array */
</syntaxhighlight>A more practical example of dynamic memory allocation would be the following:<blockquote>Given an array of 10 integers, remove all duplicate elements from the array, and create a new array without duplicate elements (a [[wikipedia:Set_(mathematics)|set]]).</blockquote>A simple algorithm to remove duplicate elements:<syntaxhighlight lang="c" line="1">
int arrl = 10; // Length of the initial array
int arr[10] = {1, 2, 2, 3, 4, 4, 5, 6, 5, 7}; // A sample array, containing several duplicate elements
for (int x = 0; x < arrl; x++)
{
for (int y = x + 1; y < arrl; y++)
{
if (arr[x] == arr[y])
{
for (int s = y; s < arrl; s++)
{
if (!(s + 1 == arrl))
arr[s] = arr[s + 1];
}
arrl--;
y--;
}
}
}
</syntaxhighlight>Because the length of our new array depends on the input, it must be dynamically allocated:<syntaxhighlight lang="c">
int *newArray = malloc(arrl*sizeof(int));
</syntaxhighlight>The above array will currently contain unexpected values, so we must use <code>memcpy</code> to set our dynamically allocated memory block to the new values:<syntaxhighlight lang="c">
memcpy(newArray, arr, arrl*sizeof(int));
</syntaxhighlight>
Some security researchers recommend always using calloc(x,y) rather than malloc(x*y), for 2 reasons:
* Many implementations of calloc() carefully check the x and y arguments and return NULL if "x*y" could overflow. Using malloc(x*y), the multiplication "x*y" can overflow to 0 or some other too-small number, usually leading to buffer overflow.<ref>
[https://drj11.wordpress.com/2008/06/04/calloc-when-multiply-overflows/ "calloc when multiply overflows"]
</ref><ref>
[https://news.ycombinator.com/item?id=33579884 "Why does calloc exist?"].
</ref><ref>
[https://wiki.sei.cmu.edu/confluence/display/c/MEM07-C.+Ensure+that+the+arguments+to+calloc%28%29%2C+when+multiplied%2C+do+not+wrap "MEM07-C. Ensure that the arguments to calloc(), when multiplied, do not wrap"].
</ref><ref>
[https://www.freelists.org/post/procps/ps-buffer-overflow-CVE-20234016 "ps buffer overflow - CVE 2023-4016"].
</ref>
* calloc ensures that the buffer is completely empty of sensitive information, avoiding some kinds of security bugs<ref>
[https://wiki.sei.cmu.edu/confluence/display/c/MEM03-C.+Clear+sensitive+information+stored+in+reusable+resources "MEM03-C. Clear sensitive information stored in reusable resources"].
</ref> (but, unfortunately, this would not have prevented the Heartbleed bug).
=== Error checking ===
When we want to use <code>malloc</code>, we have to be mindful that the pool of memory available to the programmer is ''finite''. Even if a modern PC will have at least an entire gigabyte of memory, it is still possible and conceivable to run out of it! In this case, <code>malloc</code> will return <code>NULL</code>. In order to stop the program crashing from having no more memory to use, one should always check that malloc has not returned <code>NULL</code> before attempting to use the memory; we can do this by
<syntaxhighlight lang=c>
int *pt = malloc(3 * sizeof(int));
if(pt == NULL)
{
fprintf(stderr, "Out of memory, exiting\n");
exit(1);
}
</syntaxhighlight>
Of course, suddenly quitting as in the above example is not always appropriate, and depends on the problem you are trying to solve and the architecture you are programming for. For example, if the program is a small, non critical application that's running on a desktop quitting may be appropriate. However if the program is some type of editor running on a desktop, you may want to give the operator the option of saving their tediously entered information instead of just exiting the program. A memory allocation failure in an embedded processor, such as might be in a washing machine, could cause an automatic reset of the machine. For this reason, many embedded systems designers avoid dynamic memory allocation altogether.
==The <code>calloc</code> function==
The <code>calloc</code> function allocates space for an array of items and initializes the memory to zeros. The call <code>mArray = calloc( count, sizeof(struct V))</code> allocates <code>count</code> objects, each of whose size is sufficient to contain an instance of the structure <code>struct V</code>. The space is initialized to all bits zero. The function returns either a pointer to the allocated memory or, if the allocation fails, <code>NULL</code>.
==The <code>realloc</code> function==
<syntaxhighlight lang=c> void * realloc ( void * ptr, size_t size ); </syntaxhighlight>
The <code>realloc</code> function changes the size of the object pointed to by <code>ptr</code> to the size specified by <code>size</code>. The contents of the object shall be unchanged up to the lesser of the new and old sizes. If the new size is larger, the value of the newly allocated portion of the object is indeterminate. If <code>ptr</code> is a null pointer, the <code>realloc</code> function behaves like the <code>malloc</code> function for the specified size. Otherwise, if <code>ptr</code> does not match a pointer earlier returned by the <code>calloc</code>, <code>malloc</code>, or <code>realloc</code> function, or if the space has been deallocated by a call to the <code>free</code> or <code>realloc</code> function, the behavior is undefined. If the space cannot be allocated, the object pointed to by <code>ptr</code> is unchanged. If <code>size</code> is zero and <code>ptr</code> is not a null pointer, the object pointed to is freed. The <code>realloc</code> function returns either a null pointer or a pointer to the possibly moved allocated object.
==The <code>free</code> function==
Memory that has been allocated using <code>malloc</code>, <code>realloc</code>, or <code>calloc</code> must be released back to the system memory pool once it is no longer needed. This is done to avoid perpetually allocating more and more memory, which could result in an eventual memory allocation failure. Memory that is not released with <code>free</code> is however released when the current program terminates on most operating systems. Calls to <code>free</code> are as in the following example.
<syntaxhighlight lang=c>
int *myStuff = malloc( 20 * sizeof(int));
if (myStuff != NULL)
{
/* more statements here */
/* time to release myStuff */
free( myStuff );
}
</syntaxhighlight>
=== free with recursive data structures ===
It should be noted that <code>free</code> is neither intelligent nor recursive. The following code that depends on the recursive application of free to the internal variables of a [[C Programming/Complex types|struct]] does not work.
<syntaxhighlight lang="c">
typedef struct BSTNode
{
int value;
struct BSTNode* left;
struct BSTNode* right;
} BSTNode;
// Later: ...
BSTNode* temp = calloc(1, sizeof(BSTNode));
temp->left = calloc(1, sizeof(BSTNode));
// Later: ...
free(temp); // WRONG! don't do this!
</syntaxhighlight>
The statement "<code>free(temp);</code>" will '''not''' free <code>temp->left</code>, causing a memory leak. The correct way is to define a function that frees ''every'' node in the data structure:
<syntaxhighlight lang=c>
void BSTFree(BSTNode* node){
if (node != NULL) {
BSTFree(node->left);
BSTFree(node->right);
free(node);
}
}
</syntaxhighlight>
Because C does not have a garbage collector, C programmers are responsible for making sure there is a <code>free()</code> exactly once for each time there is a <code>malloc()</code>.
If a tree has been allocated one node at a time, then it needs to be freed one node at a time.
=== Don't free undefined pointers ===
Furthermore, using <code>free</code> when the pointer in question was never allocated in the first place often crashes or leads to mysterious bugs further along.
To avoid this problem, always initialize pointers when they are declared.
Either use <code>malloc</code> at the point they are declared (as in most examples in this chapter), or set them to <code>NULL</code> when they are declared (as in the "delayed allocation" example in this chapter).
<ref>
[https://bugzilla.mozilla.org/show_bug.cgi?id=478901 "Bug 478901 ... libpng-1.2.34 and earlier might free undefined pointers"]
</ref>
=== Write constructor/destructor functions ===
One way to get memory initialization and destruction right is to imitate object-oriented programming. In this paradigm, objects are constructed after raw memory is allocated for them, live their lives, and when it is time for them to be destructed, a special function called a destructor destroys the object's innards before the object itself is destroyed.
For example:
<syntaxhighlight lang="c">
#include <stdlib.h> /* need malloc and friends */
/* this is the type of object we have, with a single int member */
typedef struct WIDGET_T {
int member;
} WIDGET_T;
/* functions that deal with WIDGET_T */
/* constructor function */
void
WIDGETctor (WIDGET_T *this, int x)
{
this->member = x;
}
/* destructor function */
void
WIDGETdtor (WIDGET_T *this)
{
/* In this case, I really don't have to do anything, but
if WIDGET_T had internal pointers, the objects they point to
would be destroyed here. */
this->member = 0;
}
/* create function - this function returns a new WIDGET_T */
WIDGET_T *
WIDGETcreate (int m)
{
WIDGET_T *x = 0;
x = malloc (sizeof (WIDGET_T));
if (x == NULL)
abort (); /* no memory */
WIDGETctor (x, m);
return x;
}
/* destroy function - calls the destructor, then frees the object */
void
WIDGETdestroy (WIDGET_T *this)
{
WIDGETdtor (this);
free (this);
}
/* END OF CODE */
</syntaxhighlight>
{{Nav}}
==References==
{{reflist}}
* [[Memory Management]]
[[fr:Programmation C/Gestion de la mémoire]]
lgxvpp72fj5eab3mar19q68c9jkrgl2
Chinese (Mandarin)
0
3251
4641189
4460372
2026-06-25T22:39:26Z
Noeiel17
3495772
fixed inaccurate language categorization
4641189
wikitext
text/x-wiki
<div class="center">''This book teaches Standard Mandarin Chinese. For other uses, see [[Subject:Chinese language]].''</div>
[[File:Beijing-città proibita.jpg|right|thumb|300px|The Forbidden City in Beijing 北京紫禁城(故宫)]]
Welcome to the '''Mandarin''' Wikibook, a free Chinese textbook on the Standard Mandarin dialect. This page links to lessons using Simplified Han characters (used in mainland China, Singapore and Malaysia). There is also a [[/Traditional|Traditional Han Character Version]] available (used in Taiwan, Macau, and Hong Kong).
{{Ambox|type=notice|image=|text=<span style="color:#cc0000;">'''''Note''''':</span> To use this book, your web browser must first be configured to [[/Displaying Chinese Characters|display Chinese characters]]. If the characters in the grey box below appear as blank boxes or garbage such as �?�?, it is not properly configured.}}
{| border="1" cellspacing="0" cellpadding="6" align="center"
| style="background-color: #eeeeee;" | 我们需要您的帮助!如果您熟悉中文,请协助编撰本教科书。<br>我們需要您的幫助,如果您熟悉中文,請協助編撰本教科書。
|}
<ul><li>You can search within this book from the following box:
{{Book search|style=image}}
</li></ul>
{{Category 4 Language}}
== Lessons / 课程 ==
{| border="0" width="75%"
|-
| valign="top" width="48%" |
'''Introduction / 介绍'''
* [[/About Chinese|About Mandarin<br>关于中文]] {{stage short|100%|Jan 24, 2005}}
* [[/How To Use This Textbook|How to use this textbook<br>如何使用这本教科书]] {{stage short|100%|Jan 24, 2005}}
* [[/How To Study Chinese|How to study Mandarin<br>如何学习中文]] {{stage short|100%|Jan 24, 2005}}
* [[/Writing in Chinese|Writing in Mandarin<br>如何用中文写作]] {{stage short|100%|Dec 21, 2006}}
'''Pronunciation / 发音'''
* [[/Pinyin Pronunciation|Pinyin Pronunciation Basics<br>基础拼音发音入门]] {{stage short|100%|Jan 24, 2005}}
* [[/Pronunciation of Initials|Pronunciation of Initials]] {{stage short|100%|Apr 26, 2012}}
* [[/Pronunciation of Finals|Pronunciation of Finals]] {{stage short|100%|Apr 26, 2012}}
* [[/Using Tones|Using Tones<br>使用声调]] {{stage short|100%|Apr 26, 2012}}
* [[/Pinyin|More About Hanyu Pinyin]] {{stage short|25%|Oct 2, 2014}}
'''Vocabulary 生字/字汇'''
# [[/Family|Family<br>第一部分:家庭]]
# [[/Commodities|Commodity<br>第二部分:日用品]]
# [[/Transport|Transport<br>第三部分:交通]]
# [[/Food|Food<br>第四部分:食物]]
# [[/Animals|Animals<br>第五部分:动物]]
| width="1%" |
| valign="top" width="48%" |
'''Lesson Texts / 课文'''
# [[/Lesson 1|Hello!<br>第一课:你好!]] {{stage short|100%|Jan 24, 2005}}
# [[/Lesson 2|Are you busy today?<br>第二课:今天你忙不忙?]] {{stage short|75%|Jan 24, 2005}}
# [[/Lesson 3|An introduction to particles<br>第三课:助词]] {{stage short|75%|Jan 24, 2005}}
# [[/Lesson 4|Word order and Verbs<br>第四课:词序和动词]] {{stage short|00%|Jan 24, 2005}}
# [[/Lesson 5|Measure words/Counters<br>第五课:量词]] {{stage short|75%|August 16, 2009}}
# [[/Lesson 6|More on interrogatives<br>第六课:疑问助词]] {{stage short|00%|Jan 24, 2005}}
# [[/Lesson 7|What's this?<br>第七课:这是什么?]] {{stage short|100%|Jan 24, 2005}}
# [[/Lesson 8|Who is she?<br>第八课:她是谁?]] {{stage short|25%|Jan 24, 2005}}
# [[/Lesson 9|Where is the railway station?<br>第九课:火车站在哪里?]] {{stage short|00%|Oct 5, 2008}}
# [[/Lesson 10|A telephone conversation<br>第十课:电话]] {{stage short|00%|Dec 30,2009}}
# [[/Lesson 11|Taiwan<br>第十一课:台湾]] {{stage short|00%|Dec 30,2009}}
# [[/Lesson 12|Mandarin is so interesting!<br>第十二课:汉语真有趣]] {{stage short|00%|Dec 30,2009}}
# [[/Lesson 13|I'm sick<br>第十三课:我生病了]] {{stage short|00%|Dec 30,2009}}
# [[/Lesson 14|Drinking tea<br>第十四课:喝茶]] {{stage short|00%|Dec 30,2009}}
# [[/Lesson 15|China<br>第十五课:中国]] {{stage short|00%|Sep 12,2010}}
# [[/Lesson 16|Basic Chinese History<br>第十六课:基本中国历史]] {{stage short|00%|Jan 12,2012}}
|}
== Appendices / 附录 ==
{| border="0" width="75%"
|-
| valign="top" width="48%" |
* [[/Common Phrases/]] {{stage short|100%|May 21, 2012}}
* [[/Everyday Phrases/]] {{stage short|50%|May 21, 2012}}
* [[/Answer Key|Answer Key<br>答案]] {{stage short|0%|May 21, 2012}}
* [[/Chinese-English Dictionary|Mandarin-English Dictionary<br>汉英字典]]
* [[/English-Chinese Dictionary|English-Mandarin Dictionary<br>英汉字典]] {{stage short|50%|May 21, 2012}}
* [[/Table of Initial-Final Combinations|Table of Initial-Final Combinations]] {{stage short|100%|Mar 08, 2006}}
| width="1%" |
| valign="top" width="48%" |
* [[/Greetings|Greetings<br>问候语]] {{stage short|100%|Jan 24, 2005}}
* [[/Numbers|Numbers<br>数字]] {{stage short|75%|Jan 24, 2005}}
* [[/Nations of the World|Nations of the World<br>世界各国]] {{stage short|50%|Jan 24, 2005}}
* [[/Radicals|Radicals<br>部首]] {{stage short|100%|Jan 24, 2005}}
* [[/Slang|Slang<br>俚语]] {{stage short|100%|May 21, 2012}}
* [[/Web Resources|Web Resources<br>网络资源]] {{stage short|75%|Jan 24, 2005}}
|}
=== Related Books ===
{{PDF version|Chinese (Mandarin)|File size: 272KB}}
{{Print version}}
{{InterWiki|code=zh}}
* [[Pinyin]]
* [[Cookbook:Cuisine of China]]
* [[Written Chinese]]
* [[East Asian Calligraphy|Guide to Writing East Asian Languages - 汉字书写]]
* [[voy:Chinese phrasebook|Chinese Phrasebook]] (on WikiVoyage)
* [[Cantonese|Cantonese (Yue) - 广东话(粤语)]]
* [[Min Nan|Southern Min / Min Nan (Taiwanese) - 闽南话(台湾话)]]
* [[Pinyin/Pinyin-English News Summary|Pinyin-English News Summary for learners of Chinese language]]
== Contributors ==
* [[/Contributor's Guide|Contributor's Guide]] {{stage short|75%|Oct 3, 2013}}'''Update Needed - 需要更新'''
* [[/Planning|Textbook Planning - 课文安排]] {{stage short|75%|Oct 3, 2013}}'''Update Needed - 需要更新'''
* [[/Development History|Development History]] {{stage short|75%|Oct 3, 2013}}'''Update Needed - 需要更新'''
* [[/Contributors|Contributors - 撰文者]] {{stage short|100%|Apr 22, 2006}}
{{Shelves|Chinese language}}
{{Alphabetical|C}}
{{Status|75%}}
__NOTOC__ __NOEDITSECTION__
[[de:Chinesisch]]
[[es:Chino Mandarín]]
[[fr:Enseignement du chinois]]
[[ko:중국어 입문]]
[[it:Cinese]]
[[mk:Кинески јазик]]
[[nl:Algemeen Beschaafd Chinees]]
[[ja:中国語]]
[[pl:Chiński]]
[[fi:Kiinan kieli]]
[[tr:Mandarin]]
[[uk:Китайська мова]]
[[zh:汉语]]
88h6oo3wutvbl7dzbq1hw06ebyt3mov
4641211
4641189
2026-06-26T04:51:46Z
~2026-36857-17
3609953
4641211
wikitext
text/x-wiki
<div class="center">''This book teaches Standard Mandarin Chinese. For other uses, see [[Subject:Chinese language]].''</div>
[[File:Beijing-città proibita.jpg|right|thumb|300px|The Forbidden City in Beijing 北京紫禁城(故宫)]]
Welcome to the '''Mandarin''' Wikibook, a free Chinese textbook on the Standard Mandarin dialect. This page links to lessons using Simplified Han characters (used in mainland China, Singapore and Malaysia). There is also a [[/Traditional|Traditional Han Character Version]] available (used in Taiwan, Macau, and Hong Kong).
{{Ambox|type=notice|image=|text=<span style="color:#cc0000;">'''''Note''''':</span> To use this book, your web browser must first be configured to [[/Displaying Chinese Characters|display Chinese characters]]. If the characters in the grey box below appear as blank boxes or garbage such as �?�?, it is not properly configured.}}
{| border="1" cellspacing="0" cellpadding="6" align="center"
| style="background-color: #eeeeee;" | 我们需要您的帮助!如果您熟悉中文,请协助编撰本教科书。<br>我們需要您的幫助,如果您熟悉中文,請協助編撰本教科書。
|}
<ul><li>You can search within this book from the following box:
{{Book search|style=image}}
</li></ul>
{{Category 4 Language}}
== Lessons / 课程 ==
{| border="0" width="75%"
|-
| valign="top" width="48%" |
'''Introduction / 介绍'''
* [[/About Chinese|About Mandarin<br>关于中文]] {{stage short|100%|Jan 24, 2005}}
* [[/How To Use This Textbook|How to use this textbook<br>如何使用这本教科书]] {{stage short|100%|Jan 24, 2005}}
* [[/How To Study Chinese|How to study Mandarin<br>如何学习中文]] {{stage short|100%|Jan 24, 2005}}
* [[/Writing in Chinese|Writing in Mandarin<br>如何用中文写作]] {{stage short|100%|Dec 21, 2006}}
'''Pronunciation / 发音'''
* [[/Pinyin Pronunciation|Pinyin Pronunciation Basics<br>基础拼音发音入门]] {{stage short|100%|Jan 24, 2005}}
* [[/Pronunciation of Initials|Pronunciation of Initials]] {{stage short|100%|Apr 26, 2012}}
* [[/Pronunciation of Finals|Pronunciation of Finals]] {{stage short|100%|Apr 26, 2012}}
* [[/Using Tones|Using Tones<br>使用声调]] {{stage short|100%|Apr 26, 2012}}
* [[/Pinyin|More About Hanyu Pinyin]] {{stage short|25%|Oct 2, 2014}}
'''Vocabulary 生字/字汇'''
# [[/Family|Family<br>第一部分:家庭]]
# [[/Commodities|Commodity<br>第二部分:日用品]]
# [[/Transport|Transport<br>第三部分:交通]]
# [[/Food|Food<br>第四部分:食物]]
# [[/Animals|Animals<br>第五部分:动物]]
| width="1%" |
| valign="top" width="48%" |
'''Lesson Texts / 课文'''
# [[/Lesson 1|Hello!<br>第一课:你好!]] {{stage short|100%|Jan 24, 2005}}
# [[/Lesson 2|Are you busy today?<br>第二课:今天你忙不忙?]] {{stage short|75%|Jan 24, 2005}}
# [[/Lesson 3|An introduction to particles<br>第三课:助词]] {{stage short|75%|Jan 24, 2005}}
# [[/Lesson 4|Word order and Verbs<br>第四课:词序和动词]] {{stage short|00%|Jan 24, 2005}}
# [[/Lesson 5|Measure words/Counters<br>第五课:量词]] {{stage short|75%|August 16, 2009}}
# [[/Lesson 6|More on interrogatives<br>第六课:疑问助词]] {{stage short|00%|Jan 24, 2005}}
# [[/Lesson 7|What's this?<br>第七课:这是什么?]] {{stage short|100%|Jan 24, 2005}}
# [[/Lesson 8|Who is she?<br>第八课:她是谁?]] {{stage short|25%|Jan 24, 2005}}
# [[/Lesson 9|Where is the railway station?<br>第九课:火车站在哪里?]] {{stage short|00%|Oct 5, 2008}}
# [[/Lesson 10|A telephone conversation<br>第十课:电话]] {{stage short|00%|Dec 30,2009}}
# [[/Lesson 11|Taiwan<br>第十一课:台湾]] {{stage short|00%|Dec 30,2009}}
# [[/Lesson 12|Mandarin is so interesting!<br>第十二课:汉语真有趣]] {{stage short|00%|Dec 30,2009}}
# [[/Lesson 13|I'm sick<br>第十三课:我生病了]] {{stage short|00%|Dec 30,2009}}
# [[/Lesson 14|Drinking tea<br>第十四课:喝茶]] {{stage short|00%|Dec 30,2009}}
# [[/Lesson 15|China<br>第十五课:中国]] {{stage short|00%|Sep 12,2010}}
# [[/Lesson 16|Basic Chinese History<br>第十六课:基本中国历史]] {{stage short|00%|Jan 12,2012}}
|}
== Appendices / 附录 ==
{| border="0" width="75%"
|-
| valign="top" width="48%" |
* [[/Common Phrases/]] {{stage short|100%|May 21, 2012}}
* [[/Everyday Phrases/]] {{stage short|50%|May 21, 2012}}
* [[/Answer Key|Answer Key<br>答案]] {{stage short|0%|May 21, 2012}}
* [[/Chinese-English Dictionary|Mandarin-English Dictionary<br>汉英字典]]
* [[/English-Chinese Dictionary|English-Mandarin Dictionary<br>英汉字典]] {{stage short|50%|May 21, 2012}}
* [[/Table of Initial-Final Combinations|Table of Initial-Final Combinations]] {{stage short|100%|Mar 08, 2006}}
| width="1%" |
| valign="top" width="48%" |
* [[/Greetings|Greetings<br>问候语]] {{stage short|100%|Jan 24, 2005}}
* [[/Numbers|Numbers<br>数字]] {{stage short|75%|Jan 24, 2005}}
* [[/Nations of the World|Nations of the World<br>世界各国]] {{stage short|50%|Jan 24, 2005}}
* [[/Radicals|Radicals<br>部首]] {{stage short|100%|Jan 24, 2005}}
* [[/Slang|Slang<br>俚语]] {{stage short|100%|May 21, 2012}}
* [[/Web Resources|Web Resources<br>网络资源]] {{stage short|75%|Jan 24, 2005}}
|}
=== Related Books ===
{{PDF version|Chinese (Mandarin)|File size: 272KB}}
{{Print version}}
{{InterWiki|code=zh}}
* [[Pinyin]]
* [[Mandarin Chinese]]
* [[Cookbook:Cuisine of China]]
* [[Written Chinese]]
* [[East Asian Calligraphy|Guide to Writing East Asian Languages - 汉字书写]]
* [[voy:Chinese phrasebook|Chinese Phrasebook]] (on WikiVoyage)
* [[Cantonese|Cantonese (Yue) - 广东话(粤语)]]
* [[Min Nan|Southern Min / Min Nan (Taiwanese) - 闽南话(台湾话)]]
* [[Pinyin/Pinyin-English News Summary|Pinyin-English News Summary for learners of Chinese language]]
== Contributors ==
* [[/Contributor's Guide|Contributor's Guide]] {{stage short|75%|Oct 3, 2013}}'''Update Needed - 需要更新'''
* [[/Planning|Textbook Planning - 课文安排]] {{stage short|75%|Oct 3, 2013}}'''Update Needed - 需要更新'''
* [[/Development History|Development History]] {{stage short|75%|Oct 3, 2013}}'''Update Needed - 需要更新'''
* [[/Contributors|Contributors - 撰文者]] {{stage short|100%|Apr 22, 2006}}
{{Shelves|Chinese language}}
{{Alphabetical|C}}
{{Status|75%}}
__NOTOC__ __NOEDITSECTION__
[[de:Chinesisch]]
[[es:Chino Mandarín]]
[[fr:Enseignement du chinois]]
[[ko:중국어 입문]]
[[it:Cinese]]
[[mk:Кинески јазик]]
[[nl:Algemeen Beschaafd Chinees]]
[[ja:中国語]]
[[pl:Chiński]]
[[fi:Kiinan kieli]]
[[tr:Mandarin]]
[[uk:Китайська мова]]
[[zh:汉语]]
6j1kotzh9td95htr0yxftu94qbx2g8w
4641221
4641211
2026-06-26T06:49:20Z
一隻北極熊
3609960
4641221
wikitext
text/x-wiki
<div class="center">''This book teaches Standard Mandarin Chinese. For other uses, see [[Subject:Chinese language]].''</div>
[[File:Beijing-città proibita.jpg|right|thumb|300px|The Forbidden City in Beijing 北京紫禁城(故宫)]]
Welcome to the '''Mandarin''' Wikibook, a free Chinese textbook on the Standard Mandarin dialect. This page links to lessons using Simplified Han characters (used in mainland China, Singapore and Malaysia). There is also a [[/Traditional|Traditional Han Character Version]] available (used in Taiwan, Macau, and Hong Kong).
{{Ambox|type=notice|image=|text=<span style="color:#cc0000;">'''''Note''''':</span> To use this book, your web browser must first be configured to [[/Displaying Chinese Characters|display Chinese characters]]. If the characters in the grey box below appear as blank boxes or garbage such as �?�?, it is not properly configured.}}
{| border="1" cellspacing="0" cellpadding="6" align="center"
| style="background-color: #eeeeee;" | 我们需要您的帮助!如果您熟悉中文,请协助编撰本教科书。<br>我們需要您的幫助,如果您熟悉中文,請協助編撰本教科書。
|}
<ul><li>You can search within this book from the following box:
{{Book search|style=image}}
</li></ul>
{{Category 4 Language}}
== Lessons / 课程 ==
{| border="0" width="75%"
|-
| valign="top" width="48%" |
'''Introduction / 介绍'''
* [[/About Chinese|About Mandarin<br>关于中文]] {{stage short|100%|Jan 24, 2005}}
* [[/How To Use This Textbook|How to use this textbook<br>如何使用这本教科书]] {{stage short|100%|Jan 24, 2005}}
* [[/How To Study Chinese|How to study Mandarin<br>如何学习中文]] {{stage short|100%|Jan 24, 2005}}
* [[/Writing in Chinese|Writing in Mandarin<br>如何用中文写作]] {{stage short|100%|Dec 21, 2006}}
'''Pronunciation / 发音'''
* [[/Pinyin Pronunciation|Pinyin Pronunciation Basics<br>基础拼音发音入门]] {{stage short|100%|Jan 24, 2005}}
* [[/Pronunciation of Initials|Pronunciation of Initials]] {{stage short|100%|Apr 26, 2012}}
* [[/Pronunciation of Finals|Pronunciation of Finals]] {{stage short|100%|Apr 26, 2012}}
* [[/Using Tones|Using Tones<br>使用声调]] {{stage short|100%|Apr 26, 2012}}
* [[/Pinyin|More About Hanyu Pinyin]] {{stage short|75%|Oct 2, 2014}}
'''Vocabulary 生字/字汇'''
# [[/Family|Family<br>第一部分:家庭]]
# [[/Commodities|Commodity<br>第二部分:日用品]]
# [[/Transport|Transport<br>第三部分:交通]]
# [[/Food|Food<br>第四部分:食物]]
# [[/Animals|Animals<br>第五部分:动物]]
| width="1%" |
| valign="top" width="48%" |
'''Lesson Texts / 课文'''
# [[/Lesson 1|Hello!<br>第一课:你好!]] {{stage short|100%|Jan 24, 2005}}
# [[/Lesson 2|Are you busy today?<br>第二课:今天你忙不忙?]] {{stage short|75%|Jan 24, 2005}}
# [[/Lesson 3|An introduction to particles<br>第三课:助词]] {{stage short|75%|Jan 24, 2005}}
# [[/Lesson 4|Word order and Verbs<br>第四课:词序和动词]] {{stage short|00%|Jan 24, 2005}}
# [[/Lesson 5|Measure words/Counters<br>第五课:量词]] {{stage short|75%|August 16, 2009}}
# [[/Lesson 6|More on interrogatives<br>第六课:疑问助词]] {{stage short|00%|Jan 24, 2005}}
# [[/Lesson 7|What's this?<br>第七课:这是什么?]] {{stage short|100%|Jan 24, 2005}}
# [[/Lesson 8|Who is she?<br>第八课:她是谁?]] {{stage short|25%|Jan 24, 2005}}
# [[/Lesson 9|Where is the railway station?<br>第九课:火车站在哪里?]] {{stage short|00%|Oct 5, 2008}}
# [[/Lesson 10|A telephone conversation<br>第十课:电话]] {{stage short|00%|Dec 30,2009}}
# [[/Lesson 11|Taiwan<br>第十一课:台湾]] {{stage short|00%|Dec 30,2009}}
# [[/Lesson 12|Mandarin is so interesting!<br>第十二课:汉语真有趣]] {{stage short|00%|Dec 30,2009}}
# [[/Lesson 13|I'm sick<br>第十三课:我生病了]] {{stage short|00%|Dec 30,2009}}
# [[/Lesson 14|Drinking tea<br>第十四课:喝茶]] {{stage short|00%|Dec 30,2009}}
# [[/Lesson 15|China<br>第十五课:中国]] {{stage short|00%|Sep 12,2010}}
# [[/Lesson 16|Basic Chinese History<br>第十六课:基本中国历史]] {{stage short|00%|Jan 12,2012}}
|}
== Appendices / 附录 ==
{| border="0" width="75%"
|-
| valign="top" width="48%" |
* [[/Common Phrases/]] {{stage short|100%|May 21, 2012}}
* [[/Everyday Phrases/]] {{stage short|50%|May 21, 2012}}
* [[/Answer Key|Answer Key<br>答案]] {{stage short|0%|May 21, 2012}}
* [[/Chinese-English Dictionary|Mandarin-English Dictionary<br>汉英字典]]
* [[/English-Chinese Dictionary|English-Mandarin Dictionary<br>英汉字典]] {{stage short|50%|May 21, 2012}}
* [[/Table of Initial-Final Combinations|Table of Initial-Final Combinations]] {{stage short|100%|Mar 08, 2006}}
| width="1%" |
| valign="top" width="48%" |
* [[/Greetings|Greetings<br>问候语]] {{stage short|100%|Jan 24, 2005}}
* [[/Numbers|Numbers<br>数字]] {{stage short|75%|Jan 24, 2005}}
* [[/Nations of the World|Nations of the World<br>世界各国]] {{stage short|50%|Jan 24, 2005}}
* [[/Radicals|Radicals<br>部首]] {{stage short|100%|Jan 24, 2005}}
* [[/Slang|Slang<br>俚语]] {{stage short|100%|May 21, 2012}}
* [[/Web Resources|Web Resources<br>网络资源]] {{stage short|75%|Jan 24, 2005}}
|}
=== Related Books ===
{{PDF version|Chinese (Mandarin)|File size: 272KB}}
{{Print version}}
{{InterWiki|code=zh}}
* [[Pinyin]]
* [[Mandarin Chinese]]
* [[Cookbook:Cuisine of China]]
* [[Written Chinese]]
* [[East Asian Calligraphy|Guide to Writing East Asian Languages - 汉字书写]]
* [[voy:Chinese phrasebook|Chinese Phrasebook]] (on WikiVoyage)
* [[Cantonese|Cantonese (Yue) - 广东话(粤语)]]
* [[Min Nan|Southern Min / Min Nan (Taiwanese) - 闽南话(台湾话)]]
* [[Pinyin/Pinyin-English News Summary|Pinyin-English News Summary for learners of Chinese language]]
== Contributors ==
* [[/Contributor's Guide|Contributor's Guide]] {{stage short|75%|Oct 3, 2013}}'''Update Needed - 需要更新'''
* [[/Planning|Textbook Planning - 课文安排]] {{stage short|75%|Oct 3, 2013}}'''Update Needed - 需要更新'''
* [[/Development History|Development History]] {{stage short|75%|Oct 3, 2013}}'''Update Needed - 需要更新'''
* [[/Contributors|Contributors - 撰文者]] {{stage short|100%|Apr 22, 2006}}
{{Shelves|Chinese language}}
{{Alphabetical|C}}
{{Status|75%}}
__NOTOC__ __NOEDITSECTION__
[[de:Chinesisch]]
[[es:Chino Mandarín]]
[[fr:Enseignement du chinois]]
[[ko:중국어 입문]]
[[it:Cinese]]
[[mk:Кинески јазик]]
[[nl:Algemeen Beschaafd Chinees]]
[[ja:中国語]]
[[pl:Chiński]]
[[fi:Kiinan kieli]]
[[tr:Mandarin]]
[[uk:Китайська мова]]
[[zh:汉语]]
jjsqr93wzo4q9s3sztc7wylrjmcs5u6
4641223
4641221
2026-06-26T07:33:46Z
一隻北極熊
3609960
4641223
wikitext
text/x-wiki
<div class="center">''This book teaches Standard Mandarin Chinese. For other uses, see [[Subject:Chinese language]].''</div>
[[File:Beijing-città proibita.jpg|right|thumb|300px|The Forbidden City in Beijing 北京紫禁城(故宫)]]
Welcome to the '''Mandarin''' Wikibook, a free Chinese textbook on the Standard Mandarin dialect. This page links to lessons using Simplified Han characters (used in mainland China, Singapore and Malaysia). There is also a [[/Traditional|Traditional Han Character Version]] available (used in Taiwan, Macau, and Hong Kong).
{{Ambox|type=notice|image=|text=<span style="color:#cc0000;">'''''Note''''':</span> To use this book, your web browser must first be configured to [[/Displaying Chinese Characters|display Chinese characters]]. If the characters in the grey box below appear as blank boxes or garbage such as �?�?, it is not properly configured.}}
{| border="1" cellspacing="0" cellpadding="6" align="center"
| style="background-color: #eeeeee;" | 我们需要您的帮助!如果您熟悉中文,请协助编撰本教科书。<br>我們需要您的幫助,如果您熟悉中文,請協助編撰本教科書。
|}
<ul><li>You can search within this book from the following box:
{{Book search|style=image}}
</li></ul>
{{Category 4 Language}}
== Lessons / 课程 ==
{| border="0" width="75%"
|-
| valign="top" width="48%" |
'''Introduction / 介绍'''
* [[/About Chinese|About Mandarin<br>关于中文]] {{stage short|100%|Jan 24, 2005}}
* [[/How To Use This Textbook|How to use this textbook<br>如何使用这本教科书]] {{stage short|100%|Jan 24, 2005}}
* [[/How To Study Chinese|How to study Mandarin<br>如何学习中文]] {{stage short|100%|Jan 24, 2005}}
* [[/Writing in Chinese|Writing in Mandarin<br>如何用中文写作]] {{stage short|100%|Dec 21, 2006}}
'''Pronunciation / 发音'''
* [[/Pinyin Pronunciation|Pinyin Pronunciation Basics<br>基础拼音发音入门]] {{stage short|100%|Jan 24, 2005}}
* [[/Pronunciation of Initials|Pronunciation of Initials]] {{stage short|100%|Apr 26, 2012}}
* [[/Pronunciation of Finals|Pronunciation of Finals]] {{stage short|100%|Apr 26, 2012}}
* [[/Using Tones|Using Tones<br>使用声调]] {{stage short|100%|Apr 26, 2012}}
* [[/Pinyin|More About Hanyu Pinyin]] {{stage short|75%|Oct 2, 2014}}
'''Vocabulary 生字/字汇'''
# [[/Family|Family<br>第一部分:家庭]]
# [[/Commodities|Commodity<br>第二部分:日用品]]
# [[/Transport|Transport<br>第三部分:交通]]
# [[/Food|Food<br>第四部分:食物]]
# [[/Animals|Animals<br>第五部分:动物]]
| width="1%" |
| valign="top" width="48%" |
'''Lesson Texts / 课文'''
# [[/Lesson 1|Hello!<br>第一课:你好!]] {{stage short|100%|Jan 24, 2005}}
# [[/Lesson 2|Are you busy today?<br>第二课:今天你忙不忙?]] {{stage short|75%|Jan 24, 2005}}
# [[/Lesson 3|An introduction to particles<br>第三课:助词]] {{stage short|75%|Jan 24, 2005}}
# [[/Lesson 4|Word order and Verbs<br>第四课:词序和动词]] {{stage short|00%|Jan 24, 2005}}
# [[/Lesson 5|Measure words/Counters<br>第五课:量词]] {{stage short|75%|August 16, 2009}}
# [[/Lesson 6|More on interrogatives<br>第六课:疑问助词]] {{stage short|00%|Jan 24, 2005}}
# [[/Lesson 7|What's this?<br>第七课:这是什么?]] {{stage short|100%|Jan 24, 2005}}
# [[/Lesson 8|Who is she?<br>第八课:她是谁?]] {{stage short|25%|Jan 24, 2005}}
# [[/Lesson 9|Where is the railway station?<br>第九课:火车站在哪里?]] {{stage short|00%|Oct 5, 2008}}
# [[/Lesson 10|A telephone conversation<br>第十课:电话]] {{stage short|00%|Dec 30,2009}}
# [[/Lesson 11|Taiwan<br>第十一课:台湾]] {{stage short|00%|Dec 30,2009}}
# [[/Lesson 12|Mandarin is so interesting!<br>第十二课:汉语真有趣]] {{stage short|00%|Dec 30,2009}}
# [[/Lesson 13|I'm sick<br>第十三课:我生病了]] {{stage short|00%|Dec 30,2009}}
# [[/Lesson 14|Drinking tea<br>第十四课:喝茶]] {{stage short|00%|Dec 30,2009}}
# [[/Lesson 15|China<br>第十五课:中国]] {{stage short|00%|Sep 12,2010}}
# [[/Lesson 16|Basic Chinese History<br>第十六课:基本中国历史]] {{stage short|00%|Jan 12,2012}}
|}
== Appendices / 附录 ==
{| border="0" width="75%"
|-
| valign="top" width="48%" |
* [[/Common Phrases/]] {{stage short|100%|May 21, 2012}}
* [[/Everyday Phrases/]] {{stage short|50%|May 21, 2012}}
* [[/Answer Key|Answer Key<br>答案]] {{stage short|0%|May 21, 2012}}
* [[/Chinese-English Dictionary|Mandarin-English Dictionary<br>汉英字典]]
* [[/English-Chinese Dictionary|English-Mandarin Dictionary<br>英汉字典]] {{stage short|50%|May 21, 2012}}
* [[/Table of Initial-Final Combinations|Table of Initial-Final Combinations]] {{stage short|100%|Mar 08, 2006}}
| width="1%" |
| valign="top" width="48%" |
* [[/Greetings|Greetings<br>问候语]] {{stage short|100%|Jan 24, 2005}}
* [[/Numbers|Numbers<br>数字]] {{stage short|75%|Jan 24, 2005}}
* [[/Nations of the World|Nations of the World<br>世界各国]] {{stage short|50%|Jan 24, 2005}}
* [[/Radicals|Radicals<br>部首]] {{stage short|100%|Jan 24, 2005}}
* [[/Slang|Slang<br>俚语]] {{stage short|100%|May 21, 2012}}
* [[/Web Resources|Web Resources<br>网络资源]] {{stage short|75%|Jan 24, 2005}}
|}
== Related Books 延伸閲讀==
{{PDF version|Chinese (Mandarin)|File size: 272KB}}
{{Print version}}
{{InterWiki|code=zh}}
* [[Pinyin]]
* [[Mandarin Chinese]]
* [[Cookbook:Cuisine of China]]
* [[Written Chinese]]
* [[East Asian Calligraphy|Guide to Writing East Asian Languages - 汉字书写]]
* [[voy:Chinese phrasebook|Chinese Phrasebook]] (on WikiVoyage)
* [[Cantonese|Cantonese (Yue) - 广东话(粤语)]]
* [[Min Nan|Southern Min / Min Nan (Taiwanese) - 闽南话(台湾话)]]
* [[Pinyin/Pinyin-English News Summary|Pinyin-English News Summary for learners of Chinese language]]
== Contributors ==
* [[/Contributor's Guide|Contributor's Guide]] {{stage short|75%|Oct 3, 2013}}'''Update Needed - 需要更新'''
* [[/Planning|Textbook Planning - 课文安排]] {{stage short|75%|Oct 3, 2013}}'''Update Needed - 需要更新'''
* [[/Development History|Development History]] {{stage short|75%|Oct 3, 2013}}'''Update Needed - 需要更新'''
* [[/Contributors|Contributors - 撰文者]] {{stage short|100%|Apr 22, 2006}}
{{Shelves|Chinese language}}
{{Alphabetical|C}}
{{Status|75%}}
__NOTOC__ __NOEDITSECTION__
[[de:Chinesisch]]
[[es:Chino Mandarín]]
[[fr:Enseignement du chinois]]
[[ko:중국어 입문]]
[[it:Cinese]]
[[mk:Кинески јазик]]
[[nl:Algemeen Beschaafd Chinees]]
[[ja:中国語]]
[[pl:Chiński]]
[[fi:Kiinan kieli]]
[[tr:Mandarin]]
[[uk:Китайська мова]]
[[zh:汉语]]
3jz5jezxobml5it931t2phmvw9xb4n5
Korean
0
3515
4641194
4460476
2026-06-25T22:43:16Z
Noeiel17
3495772
fixed inaccurate language categorization
4641194
wikitext
text/x-wiki
{{status|75%}}
{{:Korean/Navigation panel}}
{{Wikipedia|Korean Language}}
{{Wiktionary|Category:Korean language}}
{{Wikiversity|Topic:Korean}}
{{Wikivoyage|Korean phrasebook}}
{{Category 4 Languages}}
Welcome to the '''Korean''' Wikibook, a free textbook for learning Korean.
<span style="color:#cc0000;">'''''Note:'''''</span> To use this book, your web browser must first be configured to display Korean ([[w:Hangul|''Hangeul'']]) characters. Check the two boxes below:
{| border="1" cellspacing="0" cellpadding="6" align="center"
| style="background-color:#eeeeee;" | ㄱㄴㄷㄹㅁㅂㅅㅇㅈㅎ
| style="background-color:#eeeeee;" | 안녕하세요
|}
The boxes show [[w:Hangul|''Hangeul'']] characters and [[w:Hangul#Jamo|''jamo'']]. If symbols appear as blank boxes, garbage, or question marks (?), your computer or web browser needs to be [[w:Korean language and computers|configured for the Korean language]].
[[File:Hangul advertisement.jpg|right|220px]]
==Introduction==
'''Korean''' is the official [[language]] of both the [[w:North Korea|Democratic People's Republic of Korea]] (North Korea) and the [[w:South Korea|Republic of Korea]] (South Korea). It is also one of the two official languages in [[w:Yanbian Korean Autonomous Prefecture|Yanbian Korean Autonomous Prefecture]], China. Worldwide, there are about 80 million Korean speakers, most of whom live in China, Japan or the United States outside of the Koreas, but they also represent sizeable minorities in Russia (esp. Far East and Sakhalin), New Zealand, Kazakhstan, Canada, Uzbekistan and Australia.
In the Republic of Korea, the language is most often called [[wikt:한국말|한국말]] (''Han-guk-mal''), or more formally, [[wikt:한국어|한국어]] (''Han-guk-eo'') or [[wikt:국어|국어]] (''Guk-eo''; literally "national language"). In North Korea and Yanbian, the language is most often called [[wikt:조선말|조선말]] (''Chosŏnmal''), or more formally, [[wikt:조선어|조선어]] (''Chosŏnŏ'').
Experts are unsure of the origins of the Korean language, although some believe it to come from the [[w:Altaic languages|Altaic language tree]]. It is an [[w:Agglutinative language|agglutinative language]], so it has some certain special characteristics that are unlike English. A student of Chinese languages will quickly notice that Korean shares much of their vocabulary, while a Japanese student will also notice similarities in grammar and vocabulary.
Feel free to use [[wikt:Category:Korean language|English Wiktionary's '''Korean language''' Category]] as a reference for these courses. New students to this type of language may initially progress slowly, but as study progresses, previously unfamiliar aspects of Korean will begin to make sense and new concepts will be more easily learned. Korean grammar is complex but surprisingly also very simple, and always very fun to learn.
==Reading and writing==
*[[Korean/Alphabet|Alphabet Introduction]]
*[[Korean/RWP|Learn to read, write and pronounce Korean (course)]]
*[[/Principles of Orthography/]]
*[[/Essential Pronunciation Rules/]]
*[[/Advanced Pronunciation Rules/]]
*[[/Mini-tutorial Lesson/]]
*[[/Getting started on Hanja/]]
==Grammar==
{|
|- valign="top"
|
*[[Korean/Grammar Introduction|Introduction to Korean Grammar]]
*[[Korean/Personal pronouns|Personal pronouns]]
*[[Korean/Demonstrative pronouns|Demonstrative pronouns]]
*[[Korean/Adjectives|Adjectives]]
*[[Korean/Verbs|Verbs]]
*[[Korean/Articles and qualifiers|Articles & qualifiers]]
|
*[[Korean/Conjunctions|Conjunctions]]
*[[Korean/Particles|Particles]]
*[[Korean/Sentence word order|Sentence word order]]
*[[Korean/Comparatives and superlatives|Comparatives & superlatives]]
*[[Korean/Questions|Forming questions]]
*[[Korean/Commands|Forming commands]]
*[[Korean/Dates and times|Forming dates & times]]
|}
==Vocabulary==
*[[Korean/Expert Hanja|Expert Hanja]] Hanja Terms for Expert Level Learners
*[[Korean/Expert|Expert]] Terms for Expert Level Learners
==Conversation==
{|
|- valign="top"
|
===1단계 (LEVEL I): Beginner===
*[[Korean/Lesson I1|1. Greeting]]
*: 안녕 (informal)
*: 안녕하세요? (general)
*: 안녕하십니까? (formal)
*[[Korean/Lesson I2|2. Forming sentences]]
*: 저는 대학생입니다.
*[[Korean/Lesson I3|3. Connective Particles and Forms]]
*: -고, -거나, -지만
*[[Korean/Lesson I4|4. Colors / Shopping]]
*: 파랑, 빨강, 노랑
*[[Korean/Lesson I5|5. In a taxi / Distance and Time]]
*: 택시 / 거리와 시간
*[[Korean/Lesson I6|6. Family]]
*: 가족
*[[Korean/Lesson I7|7. Around the house]]
*: 집안
*[[Korean/Lesson I8|8. The workplace / Using the telephone]]
*: 직장
*[[Korean/Lesson I9|9. School]]
*: 학교
*[[Korean/Lesson I10|10. Onomatopoeia]]
*: 의성어
|
===2단계 (LEVEL II): High beginner===
*[[Korean/Lesson II1|1. Sports]]
*: 운동
*[[Korean/Lesson II2|2. Jobs]]
*: 직업
*[[Korean/Lesson II3|3. Downtown]]
*: 도심
*[[Korean/Lesson II4|4. Public transportation]]
*: 대중교통
*[[Korean/Lesson II5|5. At the hotel]]
*: 호텔에서
*[[Korean/Lesson II6|6. At the library]]
*: 도서관에서
*[[Korean/Lesson II7|7. At the farm]]
*: 시골에서
*[[Korean/Lesson II8|8. Medical care]]
*: 병원에서
*[[Korean/Lesson II9|9. The Weather]]
*: 날씨
*[[Korean/Lesson II10|10. At the Theater]]
*: 영화관에서
|- valign="top"
|
===3단계 (LEVEL III): Low intermediate===
*[[Korean/Lesson III1|1. The human body]]
*: 인간의 몸
*[[Korean/Lesson III2|2. Religion]]
*: 종교
*[[Korean/Lesson III3|3. Nature]]
*: 자연
*[[Korean/Lesson III4|4. The universe]]
*: 우주
*[[Korean/Lesson III5|5. Reading a book]]
*: 책 읽기
*[[Korean/Lesson III6|6. How much do you love me?]]
*: 날 얼마나 사랑해?
*[[Korean/Lesson III7|7. Using computers]]
*: 컴퓨터 사용하기
*[[Korean/Lesson III8|8. At the restaurant]]
*: 식당에서
*[[Korean/Lesson III9|제9과]]
*[[Korean/Lesson III10|제10과]]
|
===4단계 (LEVEL IV): High intermediate===
*[[Korean/Lesson IV1|제1과]]
*[[Korean/Lesson IV2|제2과]]
*[[Korean/Lesson IV3|제3과]]
*[[Korean/Lesson IV4|제4과]]
*[[Korean/Lesson IV5|제5과]]
*[[Korean/Lesson IV6|제6과]]
*[[Korean/Lesson IV7|제7과]]
*[[Korean/Lesson IV8|제8과]]
*[[Korean/Lesson IV9|제9과]]
*[[Korean/Lesson IV10|제10과]]
|-valign="top"
|
===5단계 (LEVEL V): Low advanced===
*[[Korean/Lesson V1|제1과]]
*[[Korean/Lesson V2|제2과]]
*[[Korean/Lesson V3|제3과]]
*[[Korean/Lesson V4|제4과]]
*[[Korean/Lesson V5|제5과]]
*[[Korean/Lesson V6|제6과]]
*[[Korean/Lesson V7|제7과]]
*[[Korean/Lesson V8|제8과]]
*[[Korean/Lesson V9|제9과]]
*[[Korean/Lesson V10|제10과]]
|
===6단계 (LEVEL VI): Advanced===
*[[Korean/Lesson VI1|제1과: 마침 제 친구가 전화했기에 망정이지 그렇지 않았으면 비행기를 놓칠 뻔했어요.]]
*[[Korean/Lesson VI2|제2과]]
*[[Korean/Lesson VI3|제3과]]
*[[Korean/Lesson VI4|제4과]]
*[[Korean/Lesson VI5|제5과]]
*[[Korean/Lesson VI6|제6과]]
*[[Korean/Lesson VI7|제7과]]
*[[Korean/Lesson VI8|제8과]]
*[[Korean/Lesson VI9|제9과]]
*[[Korean/Lesson VI10|제10과]]
|}
==External Links==
{{dynamic navigation
|title=External links
|body=
*[http://ryanestradadotcom.tumblr.com/post/20461267965 Learn Korean in 15 minutes comic]
*[http://language.snu.ac.kr/site/en/klec/click-korean/index.jsp Basic Online Korean course]
*[[:ko:한국어 입문|Learning Korean in Korean (Wikibooks)]]
*[http://www.koreanclass101.com/ Free Korean Language Podcast]
*[http://www.bridgeport.edu/Indexhtml/Centers/Disted/crsmaterials/korn101/ Korean Language Institute]
*[http://learnkorean.elanguageschool.net Learn Korean with Free Lessons]
*[http://www.101language.com/freelessons-korean.html#free Overview of courses on the internet]
*[http://fsi-language-courses.com/Korean.aspx FSI-Korean online]
*[http://www.linguanaut.com/english_korean Korean phrases online]
*[http://korean.sogang.ac.kr/ Sogang University Online Korean Course]
*[http://www.korean-course.com/ Korean Course (free)]
*[http://www.cours-coreen.fr/ Cours de Coreen]
*[http://www.coree.fr.cr/ Course and korean dictionnary]
}}
==About this Book==
===About the Authors===
*[[Korean/Authors|Authors]]
{{:Korean/Navigation panel}}
{{Shelves|Korean language}}
{{alphabetical|K}}
[[de:Koreanisch]]
[[fr:Coréen]]
[[ko:한국어 입문]]
[[ja:朝鮮語]]
[[pl:Koreański]]
[[th:ภาษาเกาหลี]]
[[zh:韩语]]
bhgo8bu78mt10he6gqf3a3s7388q338
4641195
4641194
2026-06-25T22:43:29Z
Noeiel17
3495772
4641195
wikitext
text/x-wiki
{{status|75%}}
{{:Korean/Navigation panel}}
{{Wikipedia|Korean Language}}
{{Wiktionary|Category:Korean language}}
{{Wikiversity|Topic:Korean}}
{{Wikivoyage|Korean phrasebook}}
{{Category 4 Language}}
Welcome to the '''Korean''' Wikibook, a free textbook for learning Korean.
<span style="color:#cc0000;">'''''Note:'''''</span> To use this book, your web browser must first be configured to display Korean ([[w:Hangul|''Hangeul'']]) characters. Check the two boxes below:
{| border="1" cellspacing="0" cellpadding="6" align="center"
| style="background-color:#eeeeee;" | ㄱㄴㄷㄹㅁㅂㅅㅇㅈㅎ
| style="background-color:#eeeeee;" | 안녕하세요
|}
The boxes show [[w:Hangul|''Hangeul'']] characters and [[w:Hangul#Jamo|''jamo'']]. If symbols appear as blank boxes, garbage, or question marks (?), your computer or web browser needs to be [[w:Korean language and computers|configured for the Korean language]].
[[File:Hangul advertisement.jpg|right|220px]]
==Introduction==
'''Korean''' is the official [[language]] of both the [[w:North Korea|Democratic People's Republic of Korea]] (North Korea) and the [[w:South Korea|Republic of Korea]] (South Korea). It is also one of the two official languages in [[w:Yanbian Korean Autonomous Prefecture|Yanbian Korean Autonomous Prefecture]], China. Worldwide, there are about 80 million Korean speakers, most of whom live in China, Japan or the United States outside of the Koreas, but they also represent sizeable minorities in Russia (esp. Far East and Sakhalin), New Zealand, Kazakhstan, Canada, Uzbekistan and Australia.
In the Republic of Korea, the language is most often called [[wikt:한국말|한국말]] (''Han-guk-mal''), or more formally, [[wikt:한국어|한국어]] (''Han-guk-eo'') or [[wikt:국어|국어]] (''Guk-eo''; literally "national language"). In North Korea and Yanbian, the language is most often called [[wikt:조선말|조선말]] (''Chosŏnmal''), or more formally, [[wikt:조선어|조선어]] (''Chosŏnŏ'').
Experts are unsure of the origins of the Korean language, although some believe it to come from the [[w:Altaic languages|Altaic language tree]]. It is an [[w:Agglutinative language|agglutinative language]], so it has some certain special characteristics that are unlike English. A student of Chinese languages will quickly notice that Korean shares much of their vocabulary, while a Japanese student will also notice similarities in grammar and vocabulary.
Feel free to use [[wikt:Category:Korean language|English Wiktionary's '''Korean language''' Category]] as a reference for these courses. New students to this type of language may initially progress slowly, but as study progresses, previously unfamiliar aspects of Korean will begin to make sense and new concepts will be more easily learned. Korean grammar is complex but surprisingly also very simple, and always very fun to learn.
==Reading and writing==
*[[Korean/Alphabet|Alphabet Introduction]]
*[[Korean/RWP|Learn to read, write and pronounce Korean (course)]]
*[[/Principles of Orthography/]]
*[[/Essential Pronunciation Rules/]]
*[[/Advanced Pronunciation Rules/]]
*[[/Mini-tutorial Lesson/]]
*[[/Getting started on Hanja/]]
==Grammar==
{|
|- valign="top"
|
*[[Korean/Grammar Introduction|Introduction to Korean Grammar]]
*[[Korean/Personal pronouns|Personal pronouns]]
*[[Korean/Demonstrative pronouns|Demonstrative pronouns]]
*[[Korean/Adjectives|Adjectives]]
*[[Korean/Verbs|Verbs]]
*[[Korean/Articles and qualifiers|Articles & qualifiers]]
|
*[[Korean/Conjunctions|Conjunctions]]
*[[Korean/Particles|Particles]]
*[[Korean/Sentence word order|Sentence word order]]
*[[Korean/Comparatives and superlatives|Comparatives & superlatives]]
*[[Korean/Questions|Forming questions]]
*[[Korean/Commands|Forming commands]]
*[[Korean/Dates and times|Forming dates & times]]
|}
==Vocabulary==
*[[Korean/Expert Hanja|Expert Hanja]] Hanja Terms for Expert Level Learners
*[[Korean/Expert|Expert]] Terms for Expert Level Learners
==Conversation==
{|
|- valign="top"
|
===1단계 (LEVEL I): Beginner===
*[[Korean/Lesson I1|1. Greeting]]
*: 안녕 (informal)
*: 안녕하세요? (general)
*: 안녕하십니까? (formal)
*[[Korean/Lesson I2|2. Forming sentences]]
*: 저는 대학생입니다.
*[[Korean/Lesson I3|3. Connective Particles and Forms]]
*: -고, -거나, -지만
*[[Korean/Lesson I4|4. Colors / Shopping]]
*: 파랑, 빨강, 노랑
*[[Korean/Lesson I5|5. In a taxi / Distance and Time]]
*: 택시 / 거리와 시간
*[[Korean/Lesson I6|6. Family]]
*: 가족
*[[Korean/Lesson I7|7. Around the house]]
*: 집안
*[[Korean/Lesson I8|8. The workplace / Using the telephone]]
*: 직장
*[[Korean/Lesson I9|9. School]]
*: 학교
*[[Korean/Lesson I10|10. Onomatopoeia]]
*: 의성어
|
===2단계 (LEVEL II): High beginner===
*[[Korean/Lesson II1|1. Sports]]
*: 운동
*[[Korean/Lesson II2|2. Jobs]]
*: 직업
*[[Korean/Lesson II3|3. Downtown]]
*: 도심
*[[Korean/Lesson II4|4. Public transportation]]
*: 대중교통
*[[Korean/Lesson II5|5. At the hotel]]
*: 호텔에서
*[[Korean/Lesson II6|6. At the library]]
*: 도서관에서
*[[Korean/Lesson II7|7. At the farm]]
*: 시골에서
*[[Korean/Lesson II8|8. Medical care]]
*: 병원에서
*[[Korean/Lesson II9|9. The Weather]]
*: 날씨
*[[Korean/Lesson II10|10. At the Theater]]
*: 영화관에서
|- valign="top"
|
===3단계 (LEVEL III): Low intermediate===
*[[Korean/Lesson III1|1. The human body]]
*: 인간의 몸
*[[Korean/Lesson III2|2. Religion]]
*: 종교
*[[Korean/Lesson III3|3. Nature]]
*: 자연
*[[Korean/Lesson III4|4. The universe]]
*: 우주
*[[Korean/Lesson III5|5. Reading a book]]
*: 책 읽기
*[[Korean/Lesson III6|6. How much do you love me?]]
*: 날 얼마나 사랑해?
*[[Korean/Lesson III7|7. Using computers]]
*: 컴퓨터 사용하기
*[[Korean/Lesson III8|8. At the restaurant]]
*: 식당에서
*[[Korean/Lesson III9|제9과]]
*[[Korean/Lesson III10|제10과]]
|
===4단계 (LEVEL IV): High intermediate===
*[[Korean/Lesson IV1|제1과]]
*[[Korean/Lesson IV2|제2과]]
*[[Korean/Lesson IV3|제3과]]
*[[Korean/Lesson IV4|제4과]]
*[[Korean/Lesson IV5|제5과]]
*[[Korean/Lesson IV6|제6과]]
*[[Korean/Lesson IV7|제7과]]
*[[Korean/Lesson IV8|제8과]]
*[[Korean/Lesson IV9|제9과]]
*[[Korean/Lesson IV10|제10과]]
|-valign="top"
|
===5단계 (LEVEL V): Low advanced===
*[[Korean/Lesson V1|제1과]]
*[[Korean/Lesson V2|제2과]]
*[[Korean/Lesson V3|제3과]]
*[[Korean/Lesson V4|제4과]]
*[[Korean/Lesson V5|제5과]]
*[[Korean/Lesson V6|제6과]]
*[[Korean/Lesson V7|제7과]]
*[[Korean/Lesson V8|제8과]]
*[[Korean/Lesson V9|제9과]]
*[[Korean/Lesson V10|제10과]]
|
===6단계 (LEVEL VI): Advanced===
*[[Korean/Lesson VI1|제1과: 마침 제 친구가 전화했기에 망정이지 그렇지 않았으면 비행기를 놓칠 뻔했어요.]]
*[[Korean/Lesson VI2|제2과]]
*[[Korean/Lesson VI3|제3과]]
*[[Korean/Lesson VI4|제4과]]
*[[Korean/Lesson VI5|제5과]]
*[[Korean/Lesson VI6|제6과]]
*[[Korean/Lesson VI7|제7과]]
*[[Korean/Lesson VI8|제8과]]
*[[Korean/Lesson VI9|제9과]]
*[[Korean/Lesson VI10|제10과]]
|}
==External Links==
{{dynamic navigation
|title=External links
|body=
*[http://ryanestradadotcom.tumblr.com/post/20461267965 Learn Korean in 15 minutes comic]
*[http://language.snu.ac.kr/site/en/klec/click-korean/index.jsp Basic Online Korean course]
*[[:ko:한국어 입문|Learning Korean in Korean (Wikibooks)]]
*[http://www.koreanclass101.com/ Free Korean Language Podcast]
*[http://www.bridgeport.edu/Indexhtml/Centers/Disted/crsmaterials/korn101/ Korean Language Institute]
*[http://learnkorean.elanguageschool.net Learn Korean with Free Lessons]
*[http://www.101language.com/freelessons-korean.html#free Overview of courses on the internet]
*[http://fsi-language-courses.com/Korean.aspx FSI-Korean online]
*[http://www.linguanaut.com/english_korean Korean phrases online]
*[http://korean.sogang.ac.kr/ Sogang University Online Korean Course]
*[http://www.korean-course.com/ Korean Course (free)]
*[http://www.cours-coreen.fr/ Cours de Coreen]
*[http://www.coree.fr.cr/ Course and korean dictionnary]
}}
==About this Book==
===About the Authors===
*[[Korean/Authors|Authors]]
{{:Korean/Navigation panel}}
{{Shelves|Korean language}}
{{alphabetical|K}}
[[de:Koreanisch]]
[[fr:Coréen]]
[[ko:한국어 입문]]
[[ja:朝鮮語]]
[[pl:Koreański]]
[[th:ภาษาเกาหลี]]
[[zh:韩语]]
8x46chqjogqtnfmo0etu754ych9gw6r
Mandarin Chinese
0
15991
4641185
4460325
2026-06-25T21:49:14Z
Noeiel17
3495772
fixed inaccurate language categorization
4641185
wikitext
text/x-wiki
{{status|25%}}
{{EZ Books}}
This is an alternate Wikibooks to [[Chinese (Mandarin)]]
<span style="color:#cc0000;">'''''Note''''':</span> To use this book, your web browser must first be configured to [[Chinese (Mandarin)/Displaying Chinese Characters|display Chinese characters]] {{stage short|50%|Jan 24, 2005}}. If the characters in the grey box below appear as blank boxes or garbage such as �?�?, it is not properly configured.
{| border="1" cellspacing="0" cellpadding="6" align="center"
| style="background-color:#eeeeee;" | 我们需要您的帮助!如果您了解中文,请参与本教科书的編撰!
|}
<br>
{| align="right"
|-
|{{Category 4 Language}}
|}
[[File:Edmund Yeo - voice - ch 150127 1828.wav|thumb|Here speak chinese]]
{{Info|This book is incomplete, and still under construction}}
{{Print version}}
== [[Mandarin Chinese/Pinyin|Chapter One: Pinyin]] ==
#[[Mandarin Chinese/Pinyin/Consonants|Consonants]]
#[[Mandarin Chinese/Pinyin/A, O, and E|A, O, and E]]
#[[Mandarin Chinese/Pinyin/I and N|I and N]]
#[http://en.wikiversity.org/wiki/Easy_Languages/Chinese/Chapter_One#Quiz_One Quiz One]
#[[Mandarin Chinese/Pinyin/U|U, Ü and NG]]
#[[Mandarin Chinese/Pinyin/Pronouns|Pronouns]]
#[[Mandarin Chinese/Pinyin/Numbers|Numbers]]
#[[wikiversity:Easy_Languages/Chinese/Chapter_One#Quiz_Two Quiz Two]]
[[Mandarin Chinese/Pinyin/Consonants|第一课→]]
== [[Mandarin Chinese/Sentences|Chapter Two: Sentences]] ==
#[[Mandarin Chinese/Sentences/Hello|你好。 我是...]]
#[[Mandarin Chinese/Sentences/How are you|你好吗?]]
#[[Mandarin Chinese/Sentences/He is a student|他是学生。]]
#[[Mandarin Chinese/Sentences/What is her name|她的名字是什么?]]
#[[Mandarin Chinese/Sentences/I am 42|我四十二岁。]]
#[[Mandarin Chinese/Sentences/And you|你呢?]]
[[Mandarin Chinese/Sentences/Hello|你好。 我是...]]→
{{Shelves|Chinese language}}
{{Alphabetical|M}}
r9oyzle21ij5vfyabv8nnj1bqzojm9v
Aros/Platforms/x86 support
0
22115
4641120
4640734
2026-06-25T12:58:57Z
Jeff1138
301139
4641120
wikitext
text/x-wiki
Google translation into [http://translate.google.com/translate?hl=en&sl=auto&tl=de&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support German], [http://translate.google.com/translate?hl=en&sl=auto&tl=fr&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support French], [http://translate.google.com/translate?hl=en&sl=auto&tl=nl&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Dutch], [http://translate.google.com/translate?hl=en&sl=auto&tl=it&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Italian], [http://translate.google.com/translate?hl=en&sl=auto&tl=es&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Spanish], [http://translate.google.com/translate?hl=en&sl=auto&tl=hi&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Hindi],
[http://translate.google.com/translate?hl=en&sl=auto&tl=zh-CN&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Chinese Simplified],
[http://translate.google.com/translate?hl=en&sl=auto&tl=pl&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Polish],
[http://translate.google.com/translate?hl=en&sl=auto&tl=ru&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Russian],
{{ArosNav}}
[[#Audio Chipsets]]
[[#Graphic GFX Chipsets]]
[[#Rough gfx comparison]]
[[#]]
==x86 Native Environment==
AROS should run on almost any i386 PC hardware so long as the CPU is newer than an i486, and has a "Floating Point Unit (FPU)". Ideally around 700Mhz and above with at least 256MB of memory is recommended for desktops and around 1GHz and at least 256MB for laptops/notebooks/netbooks. For web browsing, etc above 1GB is usually needed and offers the option to run web browsers, media players and other hard disk heavy usage from RAM: disk.
Motherboards supported
* Most Intel mobos are supported (Skt 775 is ok but newer is better) - additional pci / pci-e cards may be needed for networking, audio, etc
* AMD based socket 939 am2 am2+ am3+, fusion and am4 ryzen based systems work but additional pci / pci-e cards may be needed
Supported graphics cards (gfx)
* Nvidia 2D and 3D 2005-2017.
64bit AROS Nouveau covers '''2D''' 8xxxgs and higher to GTX 900s and '''3D''' from .
32bit AROS supports '''2D''' from TNT through to fermi gtx5xx and '''3D''' acceleration fx5xxx to gtx4xx.
* Intel GMA 2D and 3D 2006-2009.
'''2D''' for many old netbooks and motherboards. '''3D''' for many early netbooks and motherboards
* AMD/ATI 2D only and '''no 3D'''. 1999-2005.
Desktop ie external monitor support only (no laptop internal support) for very early Radeon 7000 through to x600. Experimental 2D version for up to HD3xxx came later
* VESA 2D fallback modes for all graphic cards (GPUs) and with [http://www.youtube.com/watch?v=HKCHZFYj9Kk screen dragging].
It's worth noting however that support isn't guaranteed. Nor will potential power of a card reflect its performance under AROS.
Sound wise there are
* HDaudio support for onboard intel and AMD netbooks, ultrabooks, notebooks and motherboards (2005 to 2020)
* some AC97 codec support for very old motherboards and laptops (ie pre 2004)
* PCI and some PCI-E C-Media CMI8738 for desktop plugin cards
* PCI Creative Soundblaster EMU10K1 cards [http://amigaworld.net/modules/news/article.php?storyid=2512 SBLive]
* PCI semi professional some early VIA Envy24 desktop sound cards
* PCI Sound Blaster 128 aka SB16
Supported [http://en.wikibooks.org/wiki/Aros/Platforms/x86_Network_support network] which could be desktop, laptop, etc
* PCI-E Realtek rtl8169 which also includes the rtl8111 and rtl8110
* PCI Realtek rtl8139 and includes rtl8101 and rtl8100
* PCI intel pro100
* Broadcom 44xx 10/100 integrated in laptops around 2005
* VIA 10/100
* 3com Etherlink 10/100
* Realtek rtl8029 10mbit
Wireless wifi
* atheros 5000 wireless
*realtek 8187 usb
It is very hard to recommend a completely supported motherboard because as soon as newer motherboards arrive so their features change subtly, often introducing non supported parts like ethernet and audio. It is a moving target.
* mini-itx motherboard will only get you 1 pci or pci-e slot
* micro mATX or uATX will have more, typically 2 pci-e or pci slots which helps if any onboard features are not supported.
* full atx will have more slots available
'''N.B''' It is frustrating when a piece of hardware is not supported. Hardware documentation can run to over 100 pages and a lot of hardware do not have any public documentation anyway. Chips from different manufacturers for sound, graphics, SATA, etc. vary just as much, unless they follow a standard such as [https://github.com/acidanthera/AppleALC/wiki/Supported-codecs HDAudio codecs], AHCI etc.
Coding drivers is a far cry from Hello World programs or even a port of existing software. If you do actually want to try then get a hold of documentation on the relevant hardware and start there. Alternatively you could try to find some '''BSD''', MIT or MPL licence drivers as a point of reference. Please , do not think you can just adapt strings in a driver for different strings, it does not work that way. You will '''need''' to start from scratch for each new bit of hardware. Device driver programming require '''embedded''' skills, like manipulation of bits within registers, good debugging skills, dealing with interrupts, lots of patience, etc.
The following specific chipsets and drivers are also available - use Tools/PCITool to confirm Vendor and Product IDs - Please let us know any mistakes or any information to be added, to this General Chat list on [https://arosworld.org/ AROS World]
: Brief Timeline
: 2000-12-06 HIDD first mouse.hidd completed ([http://msaros.blogspot.com/ Michal Schulz])
: 2001-03-31 BOOT first boot from floppy disk with IDE device
: 2001-10-30 BOOT first cd bootable version
: 2002-01-27 HIDD first pci.hidd added (Michal Schulz)
: 2002-04-13 BOOT software HDToolBox added ()
: 2003-04-03 HIDD vesa2.hidd graphic modes added ()
: 2004-03-08 HIDD new pci and ata (pata) devices worked on (Michal Schulz)
: 2004-03-17 HIDD nVidia 2D driver appears (Michal Schulz)
: 2005-01-05 AHI AHI v6 audio system ported (Martin Blom)
: 2005-01-06 AHI SBLive SoundBlaster Live driver ported (Georg Steger)
: 2005-02-04 AHI AC97 playback only driver added (Michal Schulz)
: 2005-06-27 NIC amiTCP stack ported with 3com, NE2000, prism2 drivers (Neil Cafferkey)
: 2005-08-25 NIC nForce2 support added (Michal Schulz)
: 2005-12-24 NIC Intel Pro100 network driver added (Neil Cafferkey)
: 2006-03-25 HIDD ATI radeon 2D driver added (Michal Schulz)
: 2007-03-06 HIDD vesa 1.0 video driver added (Pavel Fedin)
: 2007-03-08 HIDD dospackets and FAT filesystem (Rob Norris)
: 2007-03-21 HIDD usb initial commit (Michal Schulz)
: 2007-10-01 BOOT Installer added (Neil Cafferkey)
: 2007-11-29 PORT 64bit x86 added (Michal Schulz)
: 2008-04-12 BOOT GRUB2 added (Alain Greppin and Nick Andrews)
: 2008-08-26 NIC RTL8139 added ([http://kalamatee.blogspot.com/ Nick Andrews])
: 2008-10-22 PORT to SAM440ep (ppc) (Michal Schulz)
: 2009-02-25 PORT to efika (ppc) (Michal Schulz)
: 2009-05-18 HIDD poseidon usb2.0 stack ported to AROS (Chris Hodges)
: 2009-11-18 NIC RTL8169 network driver arrived (Nick Andrews and [http://pagesperso-orange.fr/franck.charlet/oldnews.html Franck Charlet])
: 2009-12-23 AHI HDAudio based Atom CPU and netbook audio driver arrived (Davy Wentzler)
: 2010-03-09 BOOT USB pendrive stick booting available (Neil Cafferkey)
: 2010-05-26 HIDD Intel GMA900 2D graphics card support (Michal Schulz)
: 2010-09-03 NIC Wireless PCI based NIC arrived (Neil Cafferkey)
: 2011-04-30 HIDD Nvidia 2D and 3D nouveau graphics card support (Deadwood)
: 2011-08-30 HIDD Radeon 2D enhanced AMD driver arrives (Bearsoft)
: 2011-09-17 NIC Wireless USB realtek arrives (Neil Cafferkey)
: 2011-12-09 HIDD Intel 945G 3D Gallium graphics support (Sami)
: 2013-02-25 AHI AC97 VIA 686 audio support (Davy Wentzler and Neil Cafferkey)
: 2013-03-31 PORT early Raspberry PI native support (Nik Andrews)
: 2014-01-16 AHI Envy24 audio chipset support (Davy Wentzler and Neil Cafferkey)
: 2017-02-17 PORT Symmetric MultiProcessing smp added for x86 64bit (Michal Schulz)
: 2018-10-20 PORT Big Endian ARM
: 2021-11-26 NIC Broadcom 44xx ethernet (Neil Cafferkey)
: 2023-01-12 NIC Nvidia MCP61 ethernet (Neil Cafferkey)
: 2025-11 HIDD xHCI USB3 and isoc (Nik Andrews)
[[#top|...to the top]]
===Audio Chipsets===
'''If sound beeps in AHI prefs after Music set then some support is there. Select more than one channel for multiple audio streams, set frequency up to 44 kHz or higher and set the volume if not already set. Ensure you set the music unit 0 to 3 which allows the extra features of the audio card like microphone, line-out, etc).'''
====1996-2000 sb128.audio aka SB16 PCI====
*2021 5.27
as per CREATIVE's website, the model number is the first two digits on the front and first two digits on the back. my card says CT4810 and 161TK110B 995; this translates to CT4816 as the model.
The original AudioPCI 3000 card with the ES1370 had a master clock crystal for 44.1 kHz (22.5792 MHz), used an AKM codec (AK4531, non-AC97) and had 4 channel output; Creative later modified the design with a crystal for 48 kHz (24.576 MHz) and Sigmatel AC97 codec (a CT4700 SB128 with a CT5507 chip, AK4531, 22.5792 MHz crystal and TDA7360 speaker power amp). The issue with these cards involved never quite eliminate the effects of resampling on the 64V, it also shows signs of undersized coupling caps. These Ensoniq cards automatically engaged headphone amplifier (with a 4565 opamp).
Porting involved [http://repo.or.cz/w/AROS.git/commit/b60abd12967144a844980c422ea9e99c056eabca 40897], [http://repo.or.cz/w/AROS.git/commit/b7d6511fca6430a63fbaaa390b4f51bf0203a460 40898 configure], [http://repo.or.cz/w/AROS.git/commit/f51034cd22759a4ec3a2547bddb3a7169d956eaa 40900 bugs], [http://repo.or.cz/w/AROS.git/commit/4f43fc38e3489ea45d12b7b5ba6fff50b69c5746 40901 further bugs], [http://repo.or.cz/w/AROS.git/commit/d23c78aec75f049484b6916d27b6804ce858bb2c 40913 memory IO fixes], [http://repo.or.cz/w/AROS.git/commit/d256860fe3035016952e88d143c6f2611997f2f3 40914 irq fix].
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| Ensoniq AudioPCI 1000
| 0x1274
| 0x5000
|
| {{unk}}
| {{unk}}
| untested - es1370 (u?) AK4531 (u?)
|-
| Ensoniq AudioPCI
| 0x1274
| 0x5000
| 0x00
| {{yes}}
| {{maybe}}
|
|-
| CT4700 Sound Blaster PCI 64 (audioPCI 3000)
| 0x1274
| 0x5000
| 0x7c
| {{yes}}
| {{maybe}}
| works - opamp JRC4565(u?) [http://en.wikipedia.org/wiki/Ensoniq_ES1370 es1370] (u?)
|-
| CT4750 Sound Blaster 64/PCI
|
|
|
| {{unk}}
| {{unk}}
| untested - 4565-1056W (u1) stac9708t(u2) [http://arstechnica.com/civis/viewtopic.php?f=6&t=916891 ct5880-dcq] (u3) 24wc012 (u4)
|-
| CT4751 (SB128PCI)
| 0x1274
| 0x8001
|
| {{unk}}
| {{unk}}
| untested - [http://en.wikipedia.org/wiki/Sound_Blaster#Ensoniq_AudioPCI-based_cards es1371] (u?)
|-
| CT4810 Creative AudioPCI64V
| 0x1274
| 0x1371
| 0x06
| {{yes}}
| {{maybe}}
| works
|-
| CT4811 (SB Vibra 128)
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4812 (Vibra 128)
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4813
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4815
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4816 es1373 (vibra 128)
|
|
|
| {{unk}}
| {{unk}}
| untested but this card has creative's ES1373 as the main chip(U1). it is also different from the other CT4810 (vibra128) in that it does not have a second chip in U2 position. Also there is only one jumper JP1 (2X3).
|-
| CT5801 HP
|
|
|
| {{unk}}
| {{unk}}
| untested - es1373 (u3)
|-
| CT5803 Gateway
| 0x1274
| 0x1371
| 0x08
| {{yes}}
| {{maybe}}
| works 4565-0005b jrc (u1) 4297a-jq ztae0c0002 (u2) es1373 (u3)
|-
| CT4740
| 0x1274
| 0x1371
| 0x08
| {{yes}}
| {{yes}}
|
|-
| CT5805 Compaq OEM Premier Sound Presario 7
|
|
|
| {{unk}}
| {{unk}}
| untested - es1373 (u3)
|-
| CT5806 (Sound Blaster AudioPCI 128D)
|
|
|
| {{unk}}
| {{unk}}
| untested - 4297A-JO EP (u?) ZTAPWC9933 (u2) es1373 (u3)
|-
| CT5807 Dell OEM Dimension 8100
|
|
|
| {{unk}}
| {{unk}}
| untested - es1373 (u?)
|-
| CT5808
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4730 Sound Blaster AudioPCI 64V Ectiva EV1938
| 0x1102
| 0x8938
|
| {{unk}}
| {{unk}}
| untested
|-
| CT5880 on various motherboards
| 0x1274
| 0x5880
|
| {{unk}}
| {{unk}}
| untested [http://www.xbitlabs.com/articles/mainboards/display/ga-6rx.html Gigabyte GA-6RX] (VIA ApolloPro 266 2001], Gigabyte GA-6VM7-4E mobo, [http://active-hardware.com/english/reviews/mainboard/ga-7vtx.htm Gigabyte GA-7VTX] (KT266 2001), Gigabyte [http://www.amdboard.com/gigabytega7vtxh.html GA-7VTXH] (KT266A 2001), [http://www.amdboard.com/gigabytega7vrxp.html Gigabyte 7VRXP] mobo (KT333 2002), MSI MS-6309, MS-6318, MS-6337 (815E Pro), MS-6339 (850Pro) and MS-6340, PCChips Motherboard M571 TXPRO, Soltek SL-65ME+,
|-
| VMware Virtual Workstation(TM)
| 0x1274
| 0x1371
| 0x02
| {{Yes|but not Hi-Fi modes}}
| {{maybe}}
| works
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
<pre>
Revision 0x04 = ES1371 REV_ES1373_A
Revision 0x06 = ES1371 REV_ES1373_B
Revision 0x07 = ES1371 REV_CT5880_A
Revision 0x02 = CT5880 REV_CT5880_C
Revision 0x03 = CT5880 REV_CT5880_D
Revision 0x04 = CT5880 REV_CT5880_E
Revision 0x09 = ES1371 REV_ES1371_B
Revision 0x00 = EV1938 REV_EV1938_A
Revision 0x08 = ES1371 REV_ES1373_8
</pre>
====1999-2001 via-ac97.audio====
*2021 5.10
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| <!--Description-->694X with 686A KT133 PM133 or 693A with VT8231
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3058
| <!--Revision-->
| <!--Playback-->{{Yes| }} redirects earphones correctly
| <!--Recording-->{{Yes| }}
| <!--Comments-->audio controller works but depends on the underlying invisible codec used see AC97 section
|-
| <!--Description-->686B KT133A with VT8231
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3058
| <!--Revision-->0x50
| <!--Playback-->{{Yes|}} reroutes ear pieces right
| <!--Recording-->{{Yes|}}
| <!--Comments-->audio controller works but depends on the underlying codec used see AC97 section below
|-
| <!--Description-->686C
| <!--Vendor ID-->0x1106
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->untested
|-
| <!--Description-->KM266 or KT266 with VT8233, KT266A with VT8233A, VT8233C
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3059
| <!--Revision-->0x10
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->KM333 KT333 with VT8235
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3059
| <!--Revision-->0x30
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
| <!--Description-->KM400 KT400 with VT8237, KT600 with VT8237R,
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3059
| <!--Revision-->0x40 0x50 0x60
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
|}
====1998-2003 emu10kx.audio - Creative Labs SoundBlaster Live! and Audigy====
*2021 6.5
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| PCI512 CT4790 (emu10k1)
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested (1st Gen)
|-
| Live CT4620
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Live CT4760
| 0x1102
| 0x0002
| 0x07
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| playback works
|-
| Live Value CT4670
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| works plays stereo (2nd Gen)
|-
| Live Value DELL CT4780
| 0x1102
| 0x0002
| 0x06
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| plays/records stereo - untested 4.1mode
|-
| Live Value Compaq CT4830
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{Maybe}}
| <!--Recording--> {{unk}}
| not working
|-
| Live Value CT4831
| 0x1102
| 0x0002
| 0x00
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Live Value CT4832
| 0x1102
| 0x0002
| 0x07
| <!--Playback--> {{yes}}
| <!--Recording--> {{partial|Line-In only}}
| works
|-
| Live Value CT4832
| 0x1102
| 0x0002
| 0x08
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| works
|-
| Live Value HP CT4870
| 0x1102
| 0x0002
|
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| Works
|-
| Live Value Gateway CT4871
| 0x1102
| 0x0002
|
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Live! Platinum 5.1 SB0060
| 0x1102
| 0x0002
| 0x00
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
| plays audio/records, untested 5.1 (3rd Gen)
|-
| Live 5.1 SB0100 -SFF
| 0x1102
| 0x0002
| 0x00
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| works
|-
| Live 5.1 Player SB0220
| 0x1102
| 0x0002
| 0x0a
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
| plays audio/records stereo, untested 5.1
|-
| Live 5.1 Digital SB0228
| 0x1102
| 0x0002
| 0x0a
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
| working
|-
| Audigy SB0090 (emu10k2)
| 0x1102
| 0x0004
|
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| <!--Description-->Audigy SB0230
| <!--Vendor ID-->0x1102
| <!--Product ID-->0x0004
| <!--Revision-->0x03
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Yes|Mic only}}
| <!--Comments-->5th Dec 2012 - untested optical tos link. contains also IEEE1394/Firewire (untested)
|-
| Audigy 2 Platinum 6.1 SB0240 SB0250 EMU10K2.5
| 0x1102
| 0x0004
| 0x04
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| works
|-
| Audigy 2 PRO SB0280 EMU10K2.5
| 0x1102
| 0x0004
|
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Audigy 2 ZS SB0350
| 0x1102
| 0x0004
| 0x04
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
|
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| Live 5.1 DELL SB0200 SB0203 emu10kx
| 0x1102
| 0x0006
| 0x0
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
|
|-
| Live 24bit SB0410
| 0x1102
| 0x0007
| 0x
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Live 24bit DELL SB0413
| 0x1102
| 0x0007
| 0x
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy LS SB0310
| 0x1102
| 0x0007
| 0x0
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy SE 7.1 SB0570
| 0x1102
| 0x0007
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 2 ZS SB0320 SB0360 (PRO)
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 2 VALUE SB0400
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 4 VALUE SB0610
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 4 PRO SB0380
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| EMU E-MU 0404 PCI (not USB) EM8852
| 0x1102
| 0x000
| 0x0
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver but linux support needs firmware
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
the green jack is for the main speaker pair AND headphones, so manual switching will be required
If your card is wired for the "AC97" standard, then it's up to your headphone jack to switch the green speaker output in and out
the headphone jack has Normally-closed contacts that will open on insertion, which breaks the signal path back to the sound card (FP_RETURN)
====2000-2010 cmi8738.audio - C-Media====
*2021 5.20
;Read [http://amigaworld.net/modules/news/article.php?storyid=2512 more] and imported on [http://repo.or.cz/w/AROS.git/commit/aff741d60160c6a9d7d39c9e004a25ea3aa13847 20th July 2011] and [http://alsa.opensrc.org/Cmipci alsa docs].
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| Audiotrak MAYA EX5
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| cmi8738-sx 4ch
| 0x13f6
| 0x0111
| 0x10
| <!--Playback-->
| <!--Recording-->
| untested
|-
| e3dx hsp56 CMedia 8738-sx 4ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| EDio SC3000D 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Genius SoundMaker Value PCI C3DX
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Guillemot Maxi Sound Muse
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Hercules Gamesurround Muse LT
| 0x13f6
| 0x0111
| 0x10
| <!--Playback--> {{yes}}
| <!--Recording--> {{no}}
|
|-
| Hercules Gamesurround Muse XL LT 5.1
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Inno audio extreme 5.1 cmi8738/lx pci 6ch
| 0x13f6
| 0x0111
| 0x
| <!--Playback-->
| <!--Recording-->
| untested
|-
| M-Audio (Midiman) DiO 2448
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Sabrent SBT-SP6C 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| StarTech PCISOUND4CH 8738sx 4ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Sweex SC012 CMI8738-lx 4ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Terratec 5.1 PCI
| 0x13f6
| 0x0111
| 0x10
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Terratec Aureon Fun 5.1
|
|
|
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| Has SPDIF
|-
| Trust Sound Expert Digital Surround 5.1 (cm8738-mx 6ch)
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Turtle Beach Riviera CMI8738-MX 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| XSonic CMI 8738 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->CMI8738 6ch PCI-E PCI Express version
| <!--Vendor ID-->0x13f6
| <!--Product ID-->0x0111
| <!--Revision-->0x10
| <!--Playback-->{{Yes|}}
| <!--Recording-->{{Maybe|}}
| <!--Comments-->Chinese based card with playback tested so far
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
====2001-2005 ac97.audio====
*6.4 27-12-2008
The AC97 chips were designed to be pinout interchangeable so that the sound support could change easily and quickly without motherboard redesigns
the green jack is for the main speaker pair AND headphones, so manual switching will be required
If your card is wired for the "AC97" standard, then it's up to your headphone jack to switch the green speaker output in and out, the headphone jack has Normally-closed contacts that will open on insertion, which breaks the signal path back to the sound card (FP_RETURN)
The ProductID and VendorID are for the audio controller only - the important additional codec is '''NOT''' so easily identified.
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| <!--Description-->Avance Logic (now Realtek) ALC100 and ALC101 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->ALC200 and ALC201 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->ALC201A and ALC202 and ALC202A codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->ALC650
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| <!--Comments-->most Nforce2 boards plays audio only - Abit NF7, Asus A7N8X, MSI K7N2, Epox 8RDA+, DFI
|-
| <!--Description-->ALC850 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{No}}
| <!--Comments-->no support for via P4P800 chipset on ASUS A8V-E SE Deluxe mobo - ICaros 1.3
|-
| <!--Description-->Realtek ALC653 codec and ALC655 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested Acorp 7NFU400
|-
| <!--Description-->Realtek ALC658 codec ALC658D
| <!--Vendor ID-->0x8080
| <!--Product ID-->0x24c5
| <!--Revision-->0x0
| <!--Playback-->{{Yes|Prefs Music and Units 0-3 set volume control - playback}}
| <!--Recording-->{{No}}
| <!--Comments-->MSI Motherboard on NB 22-09-2012
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->AD1881 SoundMAX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->Analog Devices first AC97
|-
| <!--Description-->AD1881A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Yes}}
| <!--Revision-->
| <!--Comments-->works with VIA Controller - untested Intel etc
|-
| <!--Description-->AD1881B
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1885 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{No}}
| <!--Comments-->Playback only with issues on D845HV but not working on MS-6367 because Units 0-3 have masked volume control
|-
| <!--Description-->AD1886
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1887
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->ADI AD1888 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{no}}
| <!--Recording-->{{No}}
| <!--Comments--> Icaros 1.51
|-
| <!--Description-->AD1980 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->AD1981A codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested IBM X30
|-
| <!--Description-->Analog Devices SoundMax(TM) AD1981B codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| <!--Comments-->plays back only on IBM T41 Thinkpad
|-
| <!--Description-->AD1985 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{No}}
| <!--Comments-->not working ahi prefs freezes on D865GLC mobo ([http://www.xbitlabs.com/articles/multimedia/display/int-sound2_3.html ]
|-
| <!--Description-->AD1986 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{No}}
| <!--Comments-->untested [http://uk.ts.fujitsu.com/rl/servicesupport/techsupport/Boards/Motherboards/Fujitsu/D1931/D1931.htm D1931] but works (Acer Aspire 3610 laptop)
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->Crystal Semiconductors CS4205, CS4202 codecs
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Cirrus Logic CrystalWare 4236
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->Cirrus Logic CrystalClear SoundFusion CS4297 CS4299 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested IBM T23
|-
| <!--Description-->conexant Cx20468-31 codec (id 30)
| <!--Vendor ID-->0x103c
| <!--Product ID-->0x3085
| <!--Revision-->
| <!--Playback-->{{No|AC97 appears in AHI Prefs}}
| <!--Recording-->{{No}}
| <!--Comments-->Tested AspireOS 1.8 on Gateway W322
|-
| <!--Description-->ESS Technology ES1921 AC'97 2.1
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->CMI 6501 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested on ASROCK SKT-AM2 AM2NF3-VSTA
|-
| <!--Description-->codec CMI9738
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->codec CMI9739
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->C-Media CMI 9739A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments--> untested on EPoX 8RDA3+
|-
| <!--Description-->CMedia CMI 9761A codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested ASRocK K7NF2-RAID
|-
| <!--Description-->C-Media CMI9880
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->National Semi conductor (now TI) LM4540, LM4543, LM4545, LM4546, LM4548, LM4549, LM4550 LM4560
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->STAC9708T codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->SigmaTel (now IDT) C-Major STAC 9460 (D/A only), 9461, 9462, 9463, 9200, 9202, 9250, 9251, 9220, 9221, 9223, 9750
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AKM (Asahi Kasei Microsystems) AK 4540, 4543, 4544A, 4545
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->codec VT1616 (VIA Six-TRAC Vinyl Audio)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->VIA VT1612, VT82C686
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->ESStech ESS ES1968 maestro-2
| <!--Vendor ID-->0x125d
| <!--Product ID-->0x1968
| <!--Revision-->0x
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->ESStech ESS ES1978 maestro2e
| <!--Vendor ID-->0x125d
| <!--Product ID-->0x1978
| <!--Revision-->0x
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->ESStech ESS ES1988 maestro3 allegro-1 codec
| <!--Vendor ID-->0x125d
| <!--Product ID-->0x1988
| <!--Revision-->0x12
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->Yamaha AC97 ymf-743 YMF752 YMF753 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->{{No}}
| <!--Comments-->untested ymf-753
|-
| <!--Description-->YMF724 YMF744 YMF-754 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| SIS 7018 / Trident 4dwave DX/NX / ALi 5451
| 0x1039 (0x1023 Trident)
| 0x7018 (0x2000 Trident DX) (0x2001 Trident NX)
| 0x02
| <!--Playback-->{{No}}
| <!--Recording-->{{No}}
| no support - introduced early 2000s
|-
| SIS 7012
| 0x1039
| 0x7012
|
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| working through 1 speaker only took over from SIS7018 (2002 onwards)
|-
| <!--Description-->Wolfson (now Cirrus Logic) WM9701, WM9701A (AC'97 1.03 spec), WM9703, WM9704 (AC'97 2.1), WM9705, WM9706, WM9707, WM9708
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->WM9709, WM9710, WM9711, WM9712, WM971
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->first Microsoft(TM) Xbox DAC sound chip (AC Link compliant D/A converter)
|-
| <!--Description-->Wolfson WM9717
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| Parallels
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested
|-
| VirtualBox
|
|
|
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| working
|-
| VirtualPC
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested
|-
| <!--Description-->Intel 82801AA Proxmox
| <!--Vendor ID-->0x8086
| <!--Product ID-->0x
| <!--Revision-->
| <!--Playback-->{{unk| }}
| <!--Recording-->{{unk| }}
| <!--Comments-->
|-
|}
====2005-20xx HDAUDIO.audio====
*6.36 2025 [https://github.com/aros-development-team/AROS/commit/43b33a9280b10963ca659de2cc3d1cf289b43a87 reset handler]
*6.35 202 []
*6.34 2019 AROS One 1.5 upwards
*6.29 2018
*6.27 2017 update
*6.25 2014 used for most Icaros 2.x
*6.20 July 2012
*6.17 Nov 2011
*6.15 Jun 2011
*[http://www.clusteruk.com/SitePortalPage.aspx?siteid=1&did=109 6.13] Sep 2010
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="5%" |Vendor ID
! width="5%" |Product ID
! width="5%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| <!--Description-->ALC260
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| <!--Description-->ALC262
* ALC262-VD2-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->LQFP-48
|-
| ALC268 codec
| 0x
| 0x
| 0x
| <!--Playback-->{{Yes|Version 6.17 Acer AOA110 and AOA150 netbooks), works (Dell Mini Inspiron 9 and 10v, }}
| <!--Recording-->{{Yes|Version 6.17 remove QUERY and select 'Mic 1' as input. Tested with 6.15 as well using QuickRecord and AE 4.0.23 under Icaros 1.4.}}
| <!--Comments-->AHI UNITS and Music are set to: hdaudio:HiFi 16 bit stereo++ / Frequency 48000 Hz, Volume +0.0 dB. The hdaudio.config in SYS:Prefs/Env-Archive is WITHOUT the QUERY-line. After changing and saving the config-file turn off and start again the computer. Switch from internal loudspeaker to headphone you must turn off the music before plug in the headphone-cable, otherwise there is no output on the socket. Back from line-out to internal speakers it is the same.
|-
| [http://blog.foool.net/wp-content/uploads/linuxdocs/sound.pdf Linux docs ALC269]
* ALC269Q-GR
* ALC269QSRS-GR
* ALC269W-GR
| 0x
| 0x
| 0x
| <!--Playback-->{{Maybe| }}
| <!--Recording-->{{Unk| }}
| <!--Comments-->TQFP 48 pin Power IC Chip From [https://patchwork.kernel.org/project/alsa-devel/patch/1408118123-15849-1-git-send-email-tiwai@suse.de/ ALC269 & co have many vendor-specific setups with COEF verbs, result in the codec stalling]
|-
| [http://www.alsa-project.org/db/?f=0321f8479fd670cd510f9912b1120fe7edcf2e07 ALC269VB]
* ALC269Q-VB5-GR
* ALC269Q-VB6-CG
* ALC269Q-VB6-GR
| 0x10ec
| 0x0269
| 0x100004, 0x100100, 0x100202
| <!--Playback-->{{Maybe|some versions work}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* v1 works Asus eee PC netbook 901/1000HA 1005HA/1008HA, 1001P,
* v2 maybe working Lenovo S9 S10 S10-2 S10-3 under HDAudio version 6.13
* v3 maybe dell wyse 7010
|-
| [http://alsa-project.org/db/?f=9c1746c5957b0ce72ff9cfffa312e97d14baf785 ALC269VC aka ALC3202]
* ALC269Q-VC2-GR
* ALC269Q-VC3-GR
| 0x10ec
| 0x0269
| 0x100203,
| <!--Playback-->{{Maybe|some versions work}}
| <!--Recording-->{{Unk}}
| <!--Comments-->SMT SMD QFN-48 -
* v1 unknown
* v2 unknown
* v3 x230, dell wyse,
|-
| ALC272
* ALC272-VA4-GR
| 0x10ec
| 0x0272
| 0x0
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Unk}}
|
* works Acer AOD150 and Acer AOD250 works [http://amigaworld.net/modules/newbb/viewtopic.php?topic_id=33755&forum=28#616910 Samsung NP-NC10], works Samsung NF210-A02] netbooks,
|-
| <!--Description-->ALC273
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| <!--Description-->ALC270
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC282
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x
| <!--Revision-->
| <!--Playback-->{{No|Version 6.17}}
| <!--Recording-->{{No|Version 6.17}}
| <!--Comments-->needs retest
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC660 ALC660-VD
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes| }}
| <!--Recording-->
| <!--Comments-->
* works asus F9s, F9e
* untested asus w7j, M51SN, A6Tc, A8Sr,
|-
| <!--Description-->ALC661-GR (2011)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| ALC662
| 0x1043
| 0x82a1
| 0x0
| <!--Playback-->{{Yes|Version 6.17 if QUERY added to top of hdaudio.config}}
| <!--Recording-->{{No|Version 6.17 not working for eee pc 900}}
|
* works Asus eee PC netbook 700/701/900, Atom 270 and 330 mobos, odd clicks (D410 NM10 PineTrail),
|-
| <!--Description-->[http://outpost.fr/rmaa/ALC663.htm ALC663]
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0861
| <!--Revision-->
| <!--Playback-->{{No|Version 6.13}}
| <!--Recording-->{{Unk}}
| <!--Comments-->not bad output like headphone amp part of the codec actually works well but messed up by undersized coupling capacitors to actually support such a low impedance
* not working Asus n50vn x71vn,
|-
| <!--Description-->ALC665
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC666
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC667
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC668
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC670
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->ALC880
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->some 915 and 925 chipset mobos
|-
| <!--Description-->ALC882M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| Realtek ALC883 ALC883-GR ALC883D-GR ALC883DTS-GR ALC883DD-GR codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe|some early versions work }}
| <!--Recording-->{{Unk| }}
| 2005 to 2007 HD Audio codec untested (Asus ),
|-
| Codec ALC885
| 0x10ec
| 0x0885
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
|-
| ALC888
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
|
|-
| ALC888s
* ALC888S-VD2-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}} MSI Wind U90/U100,
| <!--Recording-->{{Unk}}
| LQFP-48
|-
| ALC888b
| 0x8086
| 0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| untested (D510 NM10 Dual Core PineTrail mobo),
|-
| ALC888-VD
| 0x8086
| 0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| untested
|-
| ALC889A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes|works if QUERY added to the top of hdaudio.config in Prefs drawer/directory}}
| <!--Recording-->{{Unk}}
|
|-
| ALC889 Gr
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}} with crackles
| <!--Recording-->{{Unk}}
|
|-
| ALC889
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
| Tested with MSI H55 board
|-
| ALC887 ALC887-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
|
* working on ASUS P5KPL/EPU and Gigabyte GA-E350N-Win8 Rev1.0
|-
| ALC887-VD-CG
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0887
| <!--Revision-->0x100302
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}} Subsystem Id: 0x1458a002
|
|-
| ALC887-VD
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0887 0x1458
| <!--Revision-->0xa002
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{Unk}} index = 2
| ALC887 does not have any volume control ability on the mixer NIDs, so put the volume controls on the dac NIDs instead
* working with intermittent corrupting pop popping skipping stuttering sound issues MSI 760GM-P23 (FX),
* not working Gigabyte H61MA-D3V, AT3IONT-I Deluxe,
|-
| ALC887-VD2
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
| 3jacks
|-
| ALC887-VD2-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
|-
| ALC887-
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
|
|-
| ALC892-CG rev
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| 2011 48-pin LQFP Green package -
|-
| ALC892 ALC892-DTS-CG rev
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
| 2009 introduced
* works
* not working
* untested
|-
| ALC892 rev
| <!--Vendor ID-->0x0x10ec
| <!--Product ID-->0x0892
| <!--Revision-->0x100302
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| 2014
|-
| Realtek ALC886-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| LQFP-48
|-
| Codec ALC861 ALC861-VD
| 0x10ec
| <!--Product ID-->0x0663
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
|
* not working Toshiba Tecra A7
|-
| <!--Description-->ALC1200
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| ALC898
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
| not working
|-
| <!--Description-->ALC1500
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC3232 (aka ALC292)
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0292
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC3234 aka ALC255
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0255
| <!--Revision-->003
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC3287 aka ALC257
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes| }}
| <!--Recording-->{{no| }}
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->AD1882
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1883 HD Codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1884
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| Analog Devices SoundMAX AD1981
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| IBM Thinkpad T60,
|-
| AD1984 hp-m4 codec
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
* audio not working on Lenovo X61, Thinkpad T61,
|-
| AD1986
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
|
|-
| AD1988
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
|-
| <!--Description-->AD1988A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->Cirrus Logic CS4207
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->
| <!--Recording-->
|
|-
| <!--Description-->Cirrus Logic CS4208
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->
| <!--Recording-->
|
|-
| <!--Description-->Conexant CX20549 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe|very very very low volume}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested Fujitsu Amilo SI 1510 1520 no datasheet for the general public
|-
| <!--Description-->Conexant CX20549-12Z codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested HP 530
|-
| <!--Description-->Conexant CX20561 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* working lenovo x200s
* untested Lenovo Essential G555 Notebook, HP Pavilion dv6700,
|-
| <!--Description-->Conexant CX20582 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX2059x CX20590 CX20594-21Z codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX20585 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* working Lenovo Thinkpad T410,
|-
| <!--Description-->Conexant CX20672 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX20671 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX20751-21Z codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes| }}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| <!--Description-->Conexant CX11852 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX11880 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant after 2015 up to 2018 CX7501 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{no|no driver codec}}
| <!--Recording-->{{no|no driver codec}}
| <!--Comments-->Conexant bought by synaptics 2019
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->C-Media CMI9880 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->Gigabyte GA-8GPNXP
|-
| <!--Description-->Silicon Labs 3054
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| VIA 1708A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| untested,
|-
| VIA VT1708B
| <!--Vendor ID-->
| <!--Product ID-->
| 0x0010
| <!--Playback-->{{No|VIA PicoITX}}
| <!--Recording-->{{Unk}}
|
|-
| VIA 1708S
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
|
|-
| <!--Description-->VT2021 10ch
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->Gigabyte Z77MX-D3H, GA-H61M-S2H S2P,
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Creative CA0110-IBG
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->SigmaTel STAC 9220 9221 9223 8ch (7+1)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| <!--Comments-->ECS 945GCT/M-1333 (version 3.0),
|-
| IDT SigmaTec [http://explorer.cekli.com/articles/pdf/hd-audio STAC9227] /28/29/30 codec
| <!--Vendor ID-->0x8384
| <!--Product ID-->0x7626
| <!--Revision-->0x0002
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Unk}}
|
* works HP Compaq mini 110
* untested HP Pavilion HDX9000 CTO Notebook, Intel DG33TL mobo, Dell E520, Intel DP35DP mobo, Dell E6410 Laptop,
|-
| IDT (formerly SigmaTel) IDC STAC 9271/71D
| <!--Vendor ID-->0x8384
| <!--Product ID-->0x7626
| <!--Revision-->0x0002
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
|
|-
| <!--Description-->IDC STAC 9272 9273 9274
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->Intel D5400XS,
|-
| <!--Description-->IDT 92HD73C
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes}}
| <!--Recording-->
| <!--Comments-->headphones only Asus AT4NM10 mobo
|-
| <!--Description-->IDT 92HD75B
| <!--Vendor ID-->0x111d
| <!--Product ID-->0x7608
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* working [http://koti.kapsi.fi/jvaltane/aros/hdaudio/ HP Compaq Mini 700 Netbook - feedback required]
* untested HP Mini 5103 and 5102, HP Compaq 610, HP ProBook Laptop 4520s 4525s 6450b 6550b 6555b, HP EliteBook 2540p 2740p 8440p, Mobile Workstation 8540w 8740w, Pavilion NoteBook DV8,
|-
| <!--Description-->IDC 92HD81XX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC 92HD83XX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC STAC 92HD89XX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Wolfson (now Cirrus Logic) WM8850
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Wolfson WM8860
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->Intel High Definition Audio Revision 1.0. - 4-Channel DAC, 4-channel ADC. - DAC sampling
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
Using Prefs/AHI ensure you set the music unit and at least Units 0 (where most audio comes from) in top left drop down menu to HDaudio - HIFI in the section below. Set Units 1 or 2 to microphone or other outputs. Plus allow more than one channel for multiple audio streams and set frequency up to 44 kHz or higher on the right hand side of the ahi prefs. If sound beeps when you press the test button then all should be OK.
Output <- Codec <- Audio Controller (HDA) <-> Computer
codecs and exact hardware identifier. As mentioned above, HDA is only part of the work here, it gets the audio out of the main chipset in digital format (on a bus called I2S). This is not enough, there is another step needed which is routing that I2S signal to the output, converting it to actual audio, amplifying it, etc. This is handled by a separate chip called a "codec". Sometimes it is initialized by the BIOS, but this is not always the case.
Most audio drivers are made up of two parts a [http://www.kernel.org/doc/Documentation/sound/alsa/HD-Audio.txt Controller + a Codec]. The ProductID and VendorID are for the audio controller only - the important additional codec is '''NOT''' so easily identified.
Some newer versions of codecs are missing at the moment.
Things to try if sound not working
* try to connect something to the audio jack, maybe it is not playing on internal speakers or vice versa
* make sure you try and select all music units e.g. unit0, unit1....
* even if PCI ID's are in Prefs/Env-Archive/HDaudio.config, this doesn't mean it is working, it is the codec that matters
* it might be internally muted
<pre>
add debug=memory to grub boot line - continue booting with F10
Open a shell
Tools/Debug/Bifteck > RAM:audio.txt
</pre>
or
<pre>
Open a shell
Tools/Debug/Sashimi > RAM:audio.txt
Run ahi prefs
Click test tone button
Stop sashimi with Ctrl-C
</pre>
If the boot sound is enabled, you have to use Bifteck to capture AHI debug output. In the GRUB menu, press E on your selected entry, then add "debug=memory" to the options (alongside ATA=, vesa= etc.). Then F10 or Ctrl-X to boot. Once booted, run Tools/Debug/Bifteck again.
or
* try adding QUERYD to the start of ENVARC:hdaudio.config file (also known as Prefs/Env-Archive/) ie. on the first line
* '''OR''' try removing QUERY and QUERYD from the start of the hdaudio.config file
* Reboot
* open a shell
* type: sys:tools/debug/sashimi > ram:debug.txt
* open ahi prefs
* select one of the audio modes - HIFI or otherwise
* press the 'test sound' button
* press ctrl-c in the shell
* post the results to Aros-World
The HD Audio standard was designed to be hardware pinout interchangeable so that the sound support could change easily and quickly. HDA is a standard around particular chips. Each kind of chip has a certain number of DACs and pins, and even the same chip could be hooked up in different ways on different motherboards. The chips are programmable and the operating system can adjust how things are routed. Some pins aren’t even hooked up, so it makes no sense to route sound to them. Also some pins have sensors that can tell when something is plugged in, so that for example the speakers in a laptop can be muted when headphones are plugged in. Pins are also grouped, so for example all the outputs for a 5.1 sound system are grouped. Generally the HDA driver in the operating system is supposed to read the pin set up and figure out a reasonable way to set things up, and disconnected pins should be ignored, etc.
HDAudio standard has headphones on a separate DAC, and it's up to the driver.. it can even send different audio to the headphones without interrupting the main (green) outputs
====Envy24 series ====
A little history. VIA bought the ICE created Envy chipsets [http://www.via.com.tw/en/products/audio/controllers/comparison_controller.jsp VT1712] first. A few years later, they created several cheaper variants VT1724 (mixer missing), VT1721 (low end cut down), VT1720 (embedded on motherboard) and lastly the VT1723 (no support apart from Windows Envy24DT like SYBA SD-PEX63034).
There are PCI Express versions appearing.
The Envy24 is the base product that was originally designed by ICEnsemble, and it supports multi-channel hardware mixing, which is great for professional use. The HT version removes the hardware mixer (unimportant for non-professional uses). The [http://www.avsforum.com/t/364771/envy24ht-s-the-definitive-source HT-S] version is almost exactly the same as the HT, it just uses cheaper DACs. The PT version is exactly the same as the HT-S version, it is just the edition used for on-board audio on motherboards.
N.B. [http://www.soundonsound.com/sos/dec04/articles/pcnotes.htm PCI slot identification] and [http://hsi.web.cern.ch/HSI/s-link/devices/s32pci64/slottypes.html 3.3v PCI].
=====[http://www.opensound.com/readme/README.Envy24.html envy24.audio] - [http://www.anime.net/~goemon/alsa/ VT1712] =====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Playback
! Recording
! Comments
|-
| M-Audio Delta 66 - Rev B 1999
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested AK4524VF CS8404A-CS - needs Delta Series break out box with D-sub lead -
|-
| [http://ixbtlabs.com/articles/maudioaudiophile/index.html Audiophile 2496] Rev A 2000
| 0x14
| 0x
|
| <!--Playback-->{{unk| }}
| <!--Recording-->{{unk| }}
| works audio out on - I2S stereo codec AKM AK4528VF with the 24bit/96kHz DAC and ADC; CS8427 digital transceiver
|-
| [http://ixbtlabs.com/articles/maudioaudiophile/index.html Audiophile 2496] Rev B 2003
| 0x14
| 0x
|
| <!--Playback-->{{Yes }}
| <!--Recording-->
| works well - I2S stereo codec AKM AK4528VF with the 24bit/96kHz DAC and ADC; CS8427 digital transceiver
|-
| M-Audio Delta 410 - 2001 2001 REV-B
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested for D-A AK4529VQ converters with CS8427-CS 5532 1158B or Event Echo Gina 20-Bit Multitrack Interface Breakout Box -
|-
| M-Audio Delta 1010
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested AK5383 and AK4393 - 25 pin dsub -
|-
| M-Audio Delta 1010LT 1010E
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested for D-A AK4529 converters with 2 XLR Microphone inputs with pre amps
* be aware of redesign in 2007 - possible issues
|-
| M Audio Delta 44 - Rev A 2002 - Rev B 2003 - Rev D 2003
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested ICE1712G AK4524VF needs breakout box with 15 pin D-sub lead -
|-
| M-Audio Delta 66 Rev E 2006 - Omni Studio
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested needs break out box with 15 pin D-sub lead -
|-
| <!--Description-->M-Audio Delta DiO 2496
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| Terratec EWX24/96
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| [http://ixbtlabs.com/articles2/terratecdmx6fire/index.html TerraTec 6fire DMX 24/96]
| <!--Vendor ID-->0x1412
| <!--Product ID-->0x1712
| <!--Revision-->0x02
| <!--Playback-->{{No|tried line 1-2 3-4 5-6 7-8 }}
| <!--Recording-->{{No| }}
| untested - AKM and codec
|-
| <!--Description-->Terratec EWSA88MT
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| [http://lists.freebsd.org/pipermail/freebsd-multimedia/2007-March/006087.html Audiotrak Prodigy HD2] 24/96
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Audiotrak (ESI) Maya 1010 1010L
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| EMU 1212M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| EMU 1616M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| <!--Description-->Terratec EWS 88MT EWS 88D
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Hoontech Soundtrack DSP 24
Soundtrack DSP 24 Value
Soundtrack DSP 24 Media 7.1
Event Electronics EZ8
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Digigram VX442
Lionstracs
Mediastation
Terrasoniq TS 88
Roland/Edirol DA-2496
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
=====envy24ht.audio - VIA VT1724=====
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| ESI Juli@
| 0x3031
| 0x4553
| 0x0
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Yes}}
| reported working years ago [http://envy24.svobodno.com/ Envy24HT-S] - AKM 4358 DAC - AKM 4114/4112 DIT
|-
| ESI Juli@ Ego Igo rev K
| 0x3031
| 0x
| 0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| AK4358? DAC - AK4114 AK4112 DIT
|-
| [http://ixbtlabs.com/articles2/multimedia/m-audio-revolution51.html M-Audio Revolution 5.1]
| 0x1412
| 0x3631
| 0x0
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| reported working years ago but discontinued - (Envy24GT) - 3ch AKM 4358 DAC - ADC AKM 5365 -
|-
| [http://ixbtlabs.com/articles2/m-audio-revolution71/index.html M-Audio Revolution 7.1] 24/192
| 0x1412
| 0x3630 0x1724
| 0x0
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| not working - illegal semaphore - 6ch ADC AKM AK4355 24-bit 192 kHz - 2ch DAC AKM AK4381 24-bit 192 kHz - ADC AKM AK5380
|-
| Terratec Aureon Sky 5.1
| 0x153b
| 0x1147
| 0x
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - discontinued
|-
| [http://ixbtlabs.com/articles2/terratec-aureon71/index.html Terratec Aureon Space 7.1]
| 0x153b
| 0x1145
| 0x0
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - Wolfson WM8770 DAC, AC'97 codec SigmaTel STAC9744
|-
| Terratec Aureon Universe 7.1
| 0x153b
| 0x1153 (rev x) 0x1724 (rev3)
| 0x0
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| not working - semaphore error on rev 3 - DAC ADC
|-
| Terratec Phase 22
| 0x153b
| 0x1150
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - Envy24HT-S - AK4524
|-
| Terratec Phase 28
| 0x153b
| 0x1149
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - Envy24HT-S - AK4524
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Playback
| Recording
| Revision
| Comments
|-
| Audiotrak (ESI) Prodigy 7.1
| 0x4933
| 0x4553
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - Wolfson WM8770 and AC'97 SigmaTel STAC9744 codec
|-
| Audiotrak (ESI) Prodigy 7.1 LT
| 0x3132
| 0x4154
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver -
|-
| [http://ixbtlabs.com/articles2/sound/audiotrak-prodigy192.html Audiotrak (ESI) Prodigy 192] 24/96
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - STAC9460S codec
|-
| <!--Description-->Echo Layla 24/96
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
| [http://www.bit-tech.net/custompc/labs/80752/hercules-gamesurround-fortissimo-4.html Hercules Gamesurround Fortissimo 4]
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - Wolfson WM8776 Codec and WM8766 DAC
|-
| [http://ixbtlabs.com/articles2/multimedia/m-audio-audiophile192.html M-Audio Audiophile Delta AP 192k]
| 0x1412
| 0x3632
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - Stereo ADC AKM AK5385A 24-bit 192 kHZ - 8-channel DAC AKM AK4358 24-bit 192 kHz - AKM 4114/4112 DIT
|-
| ONKYO SE-150PCI
| 0x160b
| 0x0001
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver
|-
| <!--Description-->ESI Waveterminal 192x
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
| <!--Description-->Quartet
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments--> - AKM 4114/4112 DIT
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
|}
====hdmiaudio.audio - hdmi no support====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->ATI R6xx HDMI Audio codec support output
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x9840
| <!--Revision-->
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->Not detected
|-
| <!--Description-->NVidia HDMI
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Intel Series 6 CougarPoint HDMI codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Intel HDMI
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|}
[[#top|...to the top]]
===Graphic GFX Chipsets===
[https://gallium.readthedocs.io/en/latest/systems.html PCIe based] graphic chipset is defacto on 64bit AROS and recommended on 32bit.
AGP works on 32bit but faster transfers through the AGP slot are only available on a few supported motherboard chipsets
* Faster AGP Working = SIS 650 board, Intel 865pe AGP slot on MSI 6788-050,
* Not Supported = NForce2 chipsets, most Intel 815/820 chipsets, VIA chipsets, ALi chipsets,
The fallback for all graphics modes is vesa if any native support does not work. There is a choice of very low resolution vga as the last resort
2D tests performed with [http://download.aros3d.org/software/gfxbench.zip gfxbench] in the shell type gfxbench > out.txt (40 seconds blank screen is part of the test), via FreeDoom via limit-removing engine like odamex, chocolate or vanilla doom -timedemo demo1 or doom2 -timedemo demo1, doom.exe -iwad doom2 -file mymap.wad, Duke DNRATE 640x480 windowed
3D tests performed with Demos/Mesa/ , Cube 1080p, Cube 2 windowed not fullscreen 1920 x 1025, Quake3 ~ cl_drawFPS 1, Xonotic , [http://shinh.skr.jp/sdlbench/showtestgl.cgi test gl],
HDMI, DVI and DisplayPort monitors have a native resolution of 480p, 720p, 1080i, 1080p and up
<pre>
HDMI (licensing fee)
1.2 720p res.
1.3 1080 resolution
1.4 4K @ 30Hz
2.0 4K @ 60Hz
2.1 48Gbs for 4K @ 120Hz, 8K @ , VRR, etc
2.2 ultra96
</pre>
<pre>
DisplayPort (VESA introduced)
1.4 4K @ 60Hz
2.1 96Gbs for 4K @ 240Hz, 8K @ 120Hz. MST daisy chain multiple monitors,
</pre>
<pre>
GPMI chinese standard
2.0
</pre>
Might be supported on AROS
*OpenGL4 GPU must have 64-bit floating point FP64 math support, which is a hard requirement for GL 4.0. The max last revision opengl 4.6 (2017) on [https://wiki.gentoo.org/wiki/AMDGPU AMDGPU] RX 5000's / 6000s ([https://forum.batocera.org/d/7491-enable-opengl-46-and-vulkan-for-an-old-radeon-video-card RDNA] and Nvidia RTX might come to AROS) but Intel UHD, Iris Plus or Xe or Arc (will not unless a developer wants the challenge)
*OpenGL3 last revision 3.3 (2011)
Already supported on AROS
*OpenGL2 nvidia-nouveau,
*OpenGL1 intel gma950,
====vga.hidd====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Comments
|-
|
| 0x
| 0x
| 0x0
| Generic VGA Driver, limited to 640x480 in 16 colours - no 3D support
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Comments-->
|-
|}
====vesa.hidd====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Comments
|-
|
| 0x
| 0x
| 0x0
| 2D support for VBE1, VBE2 and VBE3 (most cards) - various resolutions and 24bit colour - no 3D support
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Comments-->
|-
|}
[[#top|...to the top]]
====[[w:en:Intel GMA|Intel GMA]]====
DVI output is not supported at the moment.
If having problems:
* Ensure the latest version is being used.
* Set GMA_MEM to 128 or 256 to test
* Try the FORCEGMA ToolType for 2D, and try the FORCEGALLIUM ToolType for 3D acceleration after 2D is verified to work. ToolTypes should be applied to the Devs/Monitors/IntelGMA monitor icon.
If still having problems:
* At GRUB boot screen edit boot line and add option: debug=memory
* Boot.
* Use shell command: tools/debug/bifteck > RAM:debug.txt
* And post [GMA MONITOR DETECTION] and other related debug lines
{| class="wikitable sortable" width="90%"
! width="5%" |Description
! width="5%" |Vendor ID
! width="5%" |Product ID
! width="3%" |Rev
! width="5%" |2D
! width="5%" |3D
! width="5%" |Analog Output
! width="5%" |Digital Output
! width="5%" |Laptop LCD
! width="30%" |Comments
|-
| 910GL 82910GL GMCH + ICH6
| 0x8086
| 0x2582 0x2592
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| 910GML 82910 GML GMCH + ICH6 Mobile
| 0x8086
| 0x2582 0x2592
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| may need to add forceGMA to grub boot line to work
|-
| 915G 82915G GMCH + ICH6-M
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
|
|-
| 915GL 82915GL GMCH
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
|
|-
| 915GV 82915GV GMCH
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Yes|}}
| <!--3D-->{{No|}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{N/A}}
| HP DC5100 small form factor
|-
| 915GM GMA900
| 0x8086
| 0x
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| tunnel gearbox }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes}}
| asus eee pc 900
|-
| 915GMS
| 0x8086
| 0x
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| tunnel }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes| }}
|
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| [http://www.notebookcheck.net/Intel-Graphics-Media-Accelerator-950.2177.0.html 945GU] - 133 MHz (Lake port for Intel A100 and A110)
| 0x8086
| 0x2772
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| Fujitsu LifeBook U1010,
|-
| 945GMS - 166 MHz / 250 MHz (1.05V)
| 0x8086
| 0x27a2
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes}}
| Dell D430
|-
| 945GSE - 166 MHz (for Atom)
| 0x8086
| 0x27ae
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Yes|[http://www.x.org/wiki/GalliumStatus]}}
| {{Yes}}
| {{No|dvi port}}
| {{Yes| }}
| for atom motherboards and most 2008/2009 netbooks
* 3D Works - AOA110 AOA150, Dell Mini 9, Samsung NC10, Toshiba NB100,
|-
| 945G 82945G GMCH + ICH7
| 0x8086
| 0x27a6
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| untested 2D and 3D
|-
| 945GC 82945GC MCH
| 0x8086
| 0x27a6
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| untested 2D and 3D
|-
| 945PM
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| Dell D420, Compaq nc6400,
|-
| 945GMS - 250 MHz Calistoga
| 0x8086
| 0x
| 0x0
| <!--2D--> {{Yes}}
| <!--3D--> {{Yes|most models}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes}}
|
* 3D Works Dell Latitude 2100, HP Compaq nc6320, Lenovo 3000, Lenovo T60, Samsung Q35, Dell D620, Dell D820,
* 3D untested Toshiba Satellite L100-120, Toshiba Portege M400,
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
|
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GMA 3100 G31
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works 2D but no 3D
|-
| GMA 3100 G33
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works 2D but no 3D
|-
| [http://en.wikipedia.org/wiki/Intel_GMA GMA 3150] netbooks and nettops
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works 2D but no 3D. no vga, dvi or hdmi output for nettops
|-
| <!--Description--> G965
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments-->
|-
| <!--Description--> Q965
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x2992
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{No}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments--> Only tested with VGA output.
|-
| 965GM X3100 (500 MHz)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| some support 2D but no hardware 3D - could not get it to work with VGA or dvi output
* untested Apple MacBook Air, Lenovo Thinkpad X300, Dell Inspiron 1525, Toshiba M9,
|-
| 960GM X3100 (400 MHz)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
|
|-
| 965M X3100 (400 MHz)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| Dell D830,
|-
| 965PM ??
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| Toshiba A9 works with limited 2D acceleration but no hardware 3D
|-
| GL965
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works with limited 2D acceleration but no hardware 3D
|-
| GM965
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works with limited 2D acceleration but no hardware 3D
|-
| GMA X3500 G35
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->X4500M G41 G43 G45 (400Mhz) Mobile 4 Series
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x2a42 0x2a43
| <!--Revision-->0x07
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue--> {{No|}}
| <!--Digital--> {{No|}}
| <!--Laptop LCD--> {{Yes| VESA}}
| <!--Comments-->works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->GMA 4500M HD (533 MHz)
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments-->works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->GMA 4700M HD (640MHZ)
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x2a42
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments-->works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
====[http://nouveau.freedesktop.org/wiki/FeatureMatrix nouveau].hidd (nvidia pci, agp, pci-e desktop)====
PCIe based nvidia graphics (gfx 8xxx) are the base level for 64bit AROS but earlier models still has some support on 32bit AROS
*Desktop, more likely hit rather than miss on early nvidia on Aros 32bit but on Aros 64bit ...
*Laptop, limited support for '''very''' early non-optimus (i.e. just Nvidia gfx only so no Intel and nvidia gfx combinations on 32bit but on 64bit ...)
Please note that the nouveau project is reverse engineering a nvidia graphics driver but takes time because of [https://nouveau.freedesktop.org/ nVidia's closed firmwares], etc
* 2026-06 - DEVS Nouveau.hidd Gallium.hidd Softpipe - LIBS Gallium GLU 20.0 Mesa OpenCL
* 2011-10 - DEVS 6.11 Nouveau.hidd 7.4 Gallium.hidd 9.4 Softpipe - LIBS 2.3 Gallium 1.3 GLU 19.0 Mesa OpenCL 1.x
* 2011-04 - DEVS 5.31 Nouveau.hidd 7.3 Gallium.hidd 9.3 Softpipe - LIBS 2.2 Gallium 1.1 GLU 18.0 Mesa OpenCL n/a
Nouveau support for AROS is limited to OpenGL 2.1 compliance on 32bit even for modern GL4 capable GPUs but on 64bit ...
On Aros 32bit OpenCL supports the NV50 (8000 9000) cards, less support in NVC0 fermi cards (300 upwards)
On Aros 64bit
ADoom3 graphic details ultra, benchmark while playing press the "`" key and type "Timedemo demo1" in the console
{| class="wikitable sortable" width="90%"
! width="5%" | Graphic Card
! width="5%" | Aros 32bit 1024 x 768
! width="5%" | Aros 32bit 800 x 600
! width="5%" | Aros 32bit 640 x 480
! width="5%" | Aros 64bit 1024 x 768
! width="5%" | Aros 64bit 800 x 600
! width="5%" | Aros 64bit 640 x 480
|-
| NV50 Asus EN8400GS SILENT/P/512M PCIe (G98) || || || || || ||
|-
| Gigabyte 8500GT 256M || 42,6 || 57,2 || 68,6 || || ||
|-
| NV96 (G96) Geforce 9500GT 512M || 43 || 53 || 57 || || ||
|-
| NV96 (G96) 9600GT || || || || || ||
|-
| NVA3 (GT215) GT240 || || || || || ||
|-
| NVA5 (GT216) Palit GT220 Sonic 512M || 39,7 || 55,8 || 63,7 || || ||
|-
| NVA8 (GT218) gt210 || || || || || ||
|-
| NVA8 (GT218) ION2 || || || || || ||
|-
| NVC3 (GF106) GT440 GTS 450 || || || || || ||
|-
| NVCF (GF116) NVC0 Fermi GTX 550Ti or GTS 450 v2 || || || || || ||
|-
| NVC8 (GF110) 580GTX || || || || || ||
|-
| NVE0 Kepler GT630 || || || || || ||
|-
| NVE6 (GK106) Kepler GTX660 || || || || || ||
|-
| NVE7 (GK107) GTX 650 || || || || || ||
|-
| NV110 Maxwell GTX 750 || || || || || ||
|-
| NV126 (GM206) GTX950 upwards no reclocking || N/A || N/A || N/A || poor || poor || poor
|-
| NV160 family (Turing) GTX 1650 and RTX 2000 upwards with GSP firmware || N/A || N/A || N/A || unknown || unknown || unknown
|-
| HostGL Ryzen 5 4600H - Nvidia 1650 - Linux mint 21.1 || N/A || N/A || N/A || 150fps || 154fps || 155fps
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| width="5%" | Graphic Card
| width="5%" | Aros 32bit 1024 x 768
| width="5%" | Aros 32bit 800 x 600
| width="5%" | Aros 32bit 640 x 480
| width="5%" | Aros 64bit 1024 x 768
| width="5%" | Aros 64bit 800 x 600
| width="5%" | Aros 64bit 640 x 480
|}
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|-
| <!--Description-->tnt1 (nv04) tnt2 (nv05) m64 value (1998)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|very slow}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| NV04 Riva TNT TNT2 Fahrenheit freezes on via motherboard chipset so rename agp.hidd in SYS:Devs/Drivers or Monitors
|-
| <!--Description-->tnt vanta lt (nv06) 1998 /9
| 0x10de
| 0x002c
| 0x15
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|slow}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| <!--Description-->Geforce 256 (nv10) (2000)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|slow }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| untested Geforce256
|-
| <!--Description-->Geforce 2 Geforce 3 Geforce 4 (nv20) 2000 / 2
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|slow }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| works for some PCI and AGP Geforce2 Geforce3 Geforce4
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| Geforce FX5200 nv34 (2003)
| 0x10DE
| 0x0322 0x
| 0xA1
| <!--2D-->{{Maybe| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->{{Maybe|VGA15 }}
| <!--Digital-->{{Maybe|DVI}}
| <!--Laptop LCD-->{{N/A}}
| NV30 GeForce 5 FX Rankine Hardware OpenGL 1.5 - slower than GF MX 4000 for 2D - max 1024 x768
* not working [https://eab.abime.net/showthread.php?t=92328&page=8 mobos with VIA chipsets 2018]
* working (MSI 0x9174) the previous nouveau 5.x driver
* Others work with 6.x series XFX PV-T34K-NA, ASUS V9520-X/TD
|-
| Geforce FX5500 (nv34) (2003)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{Maybe| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| works
|-
| Geforce 5100 (NV34)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce FX 5200LE (NV34)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5200 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce FX5600 (nv31) (2004)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Maybe| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| works
|-
| GeForce FX 5600 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5600SE
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5600XT
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce FX5700 (nv36) (2004)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes|some}}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{Maybe| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5700VE
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5700 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5700LE
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5800 (NV30)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5800 Ultra (NV30)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900 (NV35)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900XT
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900ZT
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5950 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce 5xxx
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
|
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| Geforce 6200 (nv44) (2005)
| 0x
| 0x00F3 0x014F
| 0x0
| <!--2D-->{{Yes|5.28 Pixel Text}}
| <!--3D-->{{Maybe| use 5.28}}
| <!--Analogue-->{{Yes|VGA15 and s-video - plain 4pin cable lead will work with 7pin}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| NV40 GeForce 6 GeForce 7 Curie AGP Hardware OpenGL 2.1 needing previous 5.x version as regression arose 2011-10
|-
| Geforce 6200 (nv44a) (2006)
| 0x
| 0x0221
| 0x0
| <!--2D-->{{Yes|5.28 Pixel Text }}
| <!--3D-->{{Yes|}}
| <!--Analogue-->{{Yes|VGA15}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| Hardware OpenGL 2.1, PCI version tested OK in 2014-01-02 - Icaros 1.5.2
* not working
*working
|-
| GeForce 6200 with Turbo Cache (NV43)
| 0x
| 0x0161
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce 6200SE with Turbo Cache (NV44)
| 0x
| 0x0162
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce 6200 LE
| 0x10de
| 0x0163
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| PCI-E
|-
| GeForce 6600 LE
| 0x
| 0x00F4 0x0142
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6600
| 0x
| 0x00F2 0x0141
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| 2006 PureVideo HD 1 or VP1 re-used the MPEG-1/MPEG-2 decoding pipeline from FX
|-
| Geforce 6600gt (nv4x) (2005)
| 0x
| 0x00F1 0x0140
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Yes| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| OpenGL tests -
|-
| Geforce 6800 (nv40) (2005)
| 0x
| 0x0041 0x00C1 0x00F0 0x0211
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Yes| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 XE (NV4x)
| 0x
| 0x0043
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 LE
| 0x
| 0x0042 0x00C2 0x0212
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 GT (quadro fx 1400)
| 0x
| 0x0045 0x0046 0x0215
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 6800 GS
| 0x
| 0x0047 0x00C0 0x00F6
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 GTS NV40
| 0x
| 0x0040 0x0F9
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 6800XT
| 0x
| 0x0044 0x0048 0x00C3 0x0218
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6600 VE
| 0x
| 0x0143
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6500 NV44
| 0x
| 0x0160
| 0x0
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6250
| 0x
| 0x0169
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 6xxx
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GeForce 7800 GTX
| 0x
| 0x0090 0x0091
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| tunnel gearbox cube cube2 25}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> 256MB DDR3 - 1 6pin psu connector -
* not working asus en7800gtx/2dhtv/256m/osp/a -
* Works XFX PV-T70F-UDD7 Works in steve jones' scrap pc aros build 2010 2 DVI-I ports
* Untested
|-
| GeForce 7800 GT
| 0x
| 0x0092
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7600gt (G8 ) (nv4 ) (2006)
| 0x
| 0x02E0 0x0391
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL 2.1
* not working
* working
|-
| GeForce 7800 SLI
| 0x
| 0x0095
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GTX
| 0x
| 0x0290
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GT GTO
| 0x
| 0x0291
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GS
| 0x10de
| 0x0292
| 0x0a1
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working
* Works with a few glitches with XFX Pine 0x2218
|-
| GeForce 7950 GX2
| 0x10de
| 0x0293 0x0294
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| GeForce 7950 GT
| 0x
| 0x0295 0x02E4
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GS
| 0x
| 0x02E3
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7600 GS
| 0x
| 0x02E1 0x0392
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7650 GS
| 0x
| 0x0390
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7600 LE
| 0x
| 0x0394
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7800GS (G8 ) (nv4 ) (2006)
| 0x
| 0x0093 0x00F5
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working
* works if AGP motherboard chipset is supported - Hardware OpenGL 2.1
|-
| GeForce 7100 GS
| 0x
| 0x016A
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7350 LE
| 0x
| 0x01D0
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7300le (G8 ) (nv4 ) (2006)
| 0x
| 0x01D1
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7300SE 7200GSGF-7200GS-N-B1 variant (G72)
| 0x10de
| 0x01D3
| 0x0a1
| <!--2D-->
| <!--3D-->
| <!--Analogue-->{{Unk|1x DVI, 1x VGA, 1x S-Video}}
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2007 40W pci-e 1.0 VP1 no unified shaders -
* not working Asus on via chipset (2015),
* works Asus on intel chipset (2015),
|-
| Geforce 7300gt (G8 ) (nv4 ) (2006)
| 0x
| 0x0395 0x0393
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working
* works
|-
| GeForce 7300 GS
| 0x
| 0x01DF
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7500 LE
| 0x
| 0x01DD
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7xxx
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GeForce 8800 Ultra (NV50 family)
| 0x
| 0x0194
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NV50 GeForce 8 to GeForce 200s opengl 3.x - max res - 80nm technology - PureVideo HD 2 or VP2 Nvidia VDPAU Feature Set A (absent from ultra and some 8800gt?) added a dedicated bitstream processor (BSP) and enhanced video processor for H.264, VC-1 acceleration
|-
| Geforce 8800gts (nv50) (G8x) (2007)
| 0x
| 0x0400 0x0600 0x0193
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2007 200w openGL3 openCL - 2x6pin psu
* not working 0x0193 models (2015) on via chipsets,
* works
|-
| Geforce 8800gtx (nv5 ) (G8x) (2007)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2008 200W 1x 6pin connector,
* not working
* working
* untested XFX PV-T88P-YDF4, Alpha Dog Edition runs extremely hot - Gigabyte GV-NX88T512H,
|-
| GeForce 8800 GT
| 0x
| 0x0602 0x0611 0x0193
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->DVI up to 2500 x 1600
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - 6pin psu power connector required
* not working
* untested Asus EN8800GT/HTDP/256M EN8800GT/HTDP/512M EN8800GT/G/HTDP/512M
* works
|-
| GeForce 8800 GT (G92)
| 0x10de
| 0x0611
| 0x0a2
| <!--2D-->{{Yes|6.11 Pixel Text}}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{N/A}}
| <!--Digital-->{{Yes}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3 pci-e 2.0 8800GT 512MB on Icaros 2.0.3 [[File:8800GT aros heads.png|thumb|8800GT]] [[File:8800GT aros tails.png|thumb|8800GT detail]]
|-
| Geforce 8600gt (nv5 ) (G8x) (2007)
| 0x
| 0x0401 0x0402
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res
* not working
* works
|-
| GeForce 8500 GT
| 0x
| 0x0421
| 0x0
| <!--2D-->{{Yes| some color }}
| <!--3D-->{{yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL tests - max opengl 3.x but 2.1 offered - max res
* not working
* works Gigabyte 8500 GT,
|-
| GeForce 8800 GS
| 0x
| 0x0606 0x060D
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res
|-
| GeForce 8600GS
| 0x
| 0x0403
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 3.x VP3 offers complete hardware-decoding for all 3 video codecs of the Blu-ray Disc format: MPEG-2, VC-1, and H.264 - Nvidia VDPAU Feature Set B
|-
| GeForce 8300 GS
| 0x
| 0x0423
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res
|-
| Geforce 8400gs G98GS (end 2007) GT218 (2009)
* Rev2 with 8/16 cores and 128-512MB of DDR2 or GDDR3 memory.
* Rev3 with 8 cores and 512MB-1GB of DDR3 memory (based on Tesla 2.0)
| 0x
| 0x0424 0x0422
| 0x0
| <!--2D-->{{Yes|Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 490 gearbox 505 Cube 135 Cube2 55 quake3 }}
| <!--Analogue-->{{Yes|works digital part of DVI but nothing from any display port}}
| <!--Digital-->{{Yes|output on digital 24 pin array of DDWG's DVI and hdmi}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 50W openGL 3.1 openCL - case single slot - one single-link DVI digital output, supporting up to one 1920x1080 resolution display - analog resolution 640 x 480 to 1024 x 768 16 and 24 bit color - [http://www.phoronix.com/scan.php?page=article&item=nouveau_comp_2011&num=19 runs a little hotter than expected] - G98 VP3 pci-e 2.0 512MB DDR2 -
* not working
* works Asus EN8400GS SILENT/P/512M PCIe (G98),
|-
| Geforce 8400gs (nv50) (G86) (mid-2007)
* Rev1 with 16 cores / 256MB of DDR2 memory.
| 0x
| 0x0404
| 0x0
| <!--2D-->{{Yes|Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 490 gearbox 505 Cube 135 Cube2 55 quake3 }}
| <!--Analogue-->{{Yes|works but not tested thru 4 pins of analog signal of DVI plug}}
| <!--Digital-->{{Yes|output on digital 24 pin array of DDWG's DVI and hdmi}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2008 50W openGL 3.1 openCL - case single slot - one single-link DVI digital output up to 1920x1080 resolution display - analog resolution 640 x 480 to 1024 x 768 16 and 24 bit color - [http://www.phoronix.com/scan.php?page=article&item=nouveau_comp_2011&num=19 runs a little hotter than expected] - G86 VP2 128MB -
* not working XFX PV-T86S-YAJG NVIDIA GeForce 8400 GS 512MB DDR2, Sparkle 8400GS 512MB SX84GS512D2L-DPP,
* works Asus EN8400GS SILENT/HTP/256M SILENT/HTP/512M/A,
|-
| GeForce 8400 SE
| 0x
| 0x0420
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 2.x openCL
|-
| NVidia Quadro NVS290 DMS-59
| 0x
| 0x0403
| 0x0
| <!--2D-->{{no| }}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk|DMS-59 socket}}
| <!--Digital-->{{unk|DMS-59 }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2008 21W - G86S (G86-827-A2) - 16 shading units, 8 texture mapping units, and 4 ROPs. NVIDIA has paired 256 MB DDR2 - PCIe 1.0 x16 Low Profile -
|-
| Geforce Quadro FX 4600 (SDI), 5600
| 0x
| 0x
| 0x0
| <!--2D-->{{Partial|VESA 2d}}
| <!--3D-->{{no| }}
| <!--Analogue-->{{partial| }}
| <!--Digital-->{{partial| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GeForce 9800 GX2 (NV50 family)
| 0x
| 0x0604
| 0x0
| <!--2D-->{{Partial|VESA }}
| <!--3D-->{{no| }}
| <!--Analogue-->{{Partial| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 150w - 65nm technology
|-
| GeForce 9800 GTX
| 0x10de
| 0x0612
| 0x0a2
| <!--2D-->{{Yes| }}
| <!--3D-->{{Maybe|6.11 }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 2x6pin psu -
* not working xfx on via chipset (2015),
* works xfx on chipset intel ,
|-
| GeForce 9800 GTX+
| 0x10de
| 0x0613
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res 2560 x 1920 - case dual slot - 26amp 12v rail on computer psu if 2x6pin connectors needed - 55nm version of the G92 chip - will not work with PCI-e 1.0a slots -
* not working
* works on a few models
|-
| Geforce 9800gt (nv50) (G92a) (2008)
| 0x10de
| 0x0614
| 0x0xa2
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel 495 gearbox 513 Cube 156 Cube2 120 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{partial| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL 3.1 openCL 1.x - case dual slot - 600w 26amp on both 12v rails for 2x6pin psu on gfx card - no fan control - some come with 1x6pin - renamed version of the venerable GeForce 8800 GT - randomly works
* not working Gainward 512M untested
* working Gainward CardExpert (0x0401) Green Edition NE39800TFHD02-PM8D92 1024MB (no 6pin)
|-
| Geforce gf9600 9600gt (nv5 ) (G9x) (2008)
| 0x10de
| 0x0622
| 0x0a1
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel 493 gearbox 675 Cube Cube2 100 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL 3.2 openCL but no fan control - case dual slot - 1 6pin pcie psu connector - 500 Watt or greater power supply with a minimum of 26 Amp on the +12 volt rail - Max Analog: 2048x1536 and Max Digital: 2560x1600 (Dual Link DVI Only) - PCI Express® 2.0 / 1.1 Support - g96 gpu randomly works -
* not working bfg tech ocx,
* works gigabyte gv-n96tsl-512i -
|-
| Geforce gf9500 9500gt (nv5 ) (G9x) (2008)
| 0x10de
| 0x0640
| 0x0a1
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel 480 gearbox 500 Cube Cube2 64 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.2 - case single slot - 350 Watt/400 Watt or greater power supply with a minimum of 18 Amp/22 Amp on the +12 volt rail - Max Analog: 2048x1536 and Max Digital: 2560x1600 (Dual Link DVI Only) - PCI Express® 2.0 / 1.1 Support -
* not working zotac zone fanless, Gainward USA NE29500THHD01-PM8796, PNY G9500GN2E50X+0TE,
* works xfx xne-9500t-td01-pm8596 1024mb ddr2,
|-
| GeForce 9600 GS
| 0x
| 0x0623
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res - will not work with PCI-e 1.0a slots -
* not working
* works
|-
| GeForce 9600 GSO
| 0x
| 0x0610
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res - G92 chopped down - 9600GSO is re-badged 8800GS both very power hungry cards -
|-
| GeForce 9300 GS
| 0x
| 0x06E1
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 opengl 3.x - max res
|-
| Geforce 9400 GT (nv5 ) (G86S) (2008)
| 0x
| 0x
| 0x0
| <!--2D-->{{partial|}}
| <!--3D-->{{unk|}}
| <!--Analogue-->{{unk|1x DVI, 1x VGA, 1x S-Video}}
| <!--Digital-->{{unk|1x DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 50W opengl 3.x - max res
|-
| Geforce 9xxx (nv5 ) (G9x) (2008)
| 0x
| 0x
| 0x0
| <!--2D-->{{unk|}}
| <!--3D-->{{unk|}}
| <!--Analogue-->{{unk|}}
| <!--Digital-->{{unk|}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 opengl 3.x - max res
|-
| <!--Description-->Quadro FX 580 G96 chipset
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2009
|-
| <!--Description-->
NV84 (G84) GeForce 8600 (GT, GTS, M GT, M GS), 8700M GT,
NV92 (G92) GeForce 8800 (GT, GS, GTS 512, M GTS, M GTX)
GeForce 9600 GSO, 9800 (GT, GTX, GTX+, GX2, M GT, M GTX)
NV96 (G96) GeForce 9400 GT, 9500 (GT, M G), 9600 (M GS, M GT),
NV86 (G86) GeForce 8300 GS, 8400 (GS, M G, M GS, M GT), 8500 GT
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NVA0 (GT200) GeForce GTX (260, 275, 280, 285, 295)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->GeForce GTX 280 (NV50 family)
| <!--Vendor ID-->
| <!--Product ID-->0x05E1
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res PureVideo HD 4 (Nvidia Feature Set C or "VDPAU Feature Set C), VP4 added hardware to offload MPEG-4 Advanced Simple Profile (original DivX and Xvid)
|-
| <!--Description-->GeForce GTX 260
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x05E2
| <!--Revision-->
| <!--2D-->{{partial|Vesa}}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> 2 6pin - psu pci express 2.1 -
|-
| Geforce GTS250 250GTS (g92b) (2009)
| 0x10de
| 0x0615
| 0x0a2
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 486 gearbox 508-642 Cube Cube2 80 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> 2x6pin psu VP2 - pci-e 2.x - case dual slots - 738m 1gb ddr3 -
* not working Zotac branded version GDDR3 -
* works PNY gs-250x-zdfl and Gigabyte ??, BFG Tech RGTS2501024OCE, palit ne3ts250fhd52-pm8a92 with 2x6pin on top and hdmi output port,
|-
| <!--Description-->GeForce GT 240 (GT215 family)
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0ca3
| <!--Revision-->0xa2
| <!--2D-->{{Maybe|use VESA}}
| <!--3D-->{{No|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->late 2009 openGl 3.2 - case dual slots - no 6pin psu required with VP4 - All are pcie 2.1 cards and may not work in 1.0a slots -
* not working
* DDR3 with 512MB or 1GB -
* DDR5 -Asus ENGT240 - XFX Pine GT240XYHFC 0x3001 - Gigabyte GV-N240D5-512I rev 1.0 - Zotac AMP! with HDMI 1.3a with DisplayPort 1.1, Dual Link DVI -
* works
|-
| <!--Description-->GT220 (GT216) G220
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0a20
| <!--Revision-->0xa2
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Yes}}
| <!--Digital-->{{Yes|DVI }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> Icaros 2.0.3 GeForce GT220 1GB[[File:GT220 aros heads.png|thumb|GT220]][[File:GT220 aros tails.png|thumb|GT220]]
* untested NVIDIA Quadro® 400 512MB DDR3 GT216 DP DVI, AFox AF220 1Gb DDR3,
|-
| Geforce GT220 220GT G94 Tesla (g92b)
| 0x10de
| 0x0a20
| 0xa2
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 490 gearbox 505 cube 150 cube2 50 Quake3 }}
| <!--Analogue-->{{Unk|1x DVI, 1x VGA}}
| <!--Digital-->{{Yes|DVI but not 1x HDMI }}
| <!--Laptop LCD-->{{N/A}}
| 58W pci express 2.0 cards DDR3 - case single slot -
* not working ASUS ENGT220/DI/1GD2(LP)/V2 -
* works - gainward card expert 0x0401 GDDr3 512MB -
|-
| <!--Description-->GT210 GT 210 210GT G210 based on Tesla 2.0 GT218S GT218-300-A2 variant, GT218-300-B1
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0a65
| <!--Revision-->0xa2
| <!--2D-->{{Yes|6.11 Pixel Text}}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{Unk|1x DVI, 1x VGA}}
| <!--Digital-->{{Maybe|DVI out works but not hdmi or 1x DisplayPort}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 31W OpenGL 3.3 pci-e 2.0 cards - single slot -
* working GT218 based Asus EN210 based silent low profile large passively cooled -
* untested MSI GeForce 210 1GB DDR3 PCIe N210-MD1GD3H/LP,
* not working
|-
| <!--Description-->Quadro NVS 295 (256 MB GDDR3), NVS 450 (256M/512 MB DDR3)
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x
| <!--Revision-->
| <!--2D-->{{yes| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->
| <!--Digital-->{{partial|2 or 4 dp ports}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 25w low performance - G98s with 8 shading units, 4 texture mapping units, and 4 ROPs on PCI-Express 1.0 x16 -
*not working some NVIDIA Quadro NVS 295 2 dp ports (DELL, HP),
*working
|-
| <!--Description-->GT310 Tesla 310, 315, GT 320, GT 330 GT 340
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{Maybe|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2010 50w OpenGL 3.3 openCL all similar in performance to GT2xx except gt31x (poor)
|-
| <!--Description-->Quadro NVS310 NVIDIA NVS 310
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital--> 2 dp
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 25w GF119S (GF119-825-A1) 48 shading units, 8 texture mapping units, and 4 ROPs on PCI-Express 2.0 x16 - 512 MB DDR3 - PureVideo VP5 VDPAU Feature Set D -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description--> GTX 470, GTX 480 GF10 GF10* core (NVC0 family)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{Maybe| tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2010 215w 2x6 plugs - NVC0 family (Fermi) GF100 (GF100-275-A3) Fermi 448 shading units, 56 texture mapping units, and 40 ROPs with 1,280 MB GDDR5 - OpenGL4.5 OpenCL1.1 Tessellation - case dual slots -
|-
| Geforce GTX460 460GTX (G104) 256bit, 1GB v2 192bit and GTX 465
| 0x10de
| 0x0e22
| 0xa1
| <!--2D-->{{Maybe|VESA }}
| <!--3D-->{{Maybe| tunnel gearbox cube 055-111 cube2 50}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVC0 family (Fermi) OpenGL 4.x but - 2x6pin psu - case dual slots -
* not working evga 768MB GDDR5 192bit 01G-P3-1373-ER or 01G-P3-1372-TR
* works 1GB GDDR5 256bit 01G-P3-1371-ER
|-
| <!--Description-->Geforce GTX 460SE 192bit
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0e23
| <!--Revision-->0x91 or 0xa1
| <!--2D-->{{Yes| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->{{Yes| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> nouveau 6.11 - 2 6pin psu needed - case dual slots -
* not working
* works EVGA 01g-p3-1366-b6 et 1024MB p1041 -
|-
| Geforce GT450 GTS450 450GTS GF106
| 0x10de
| 0x0dc4
| 0x0a1
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel gearbox cube cube2 50 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes|DVI }}
| <!--Laptop LCD-->{{N/A}}
| 2010 Hardware OpenGL 4.2 but nouveau at 3.3 - most need 1x 6pin psu - case dual slots -
* not working
* DDR3 1 or 2GB - Palit NEAS450NHD41F,
* GDDR5 512Mb or 1GB - MSI MPN N450GTSM2D1GD5OC, Asus MPN ENGTS450DI1GD5,
* works Gainward Card Expert NE5S4500FHd51,
|-
| <!--Description-->GT 440 GF108 chipset or better OEM GF106
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 6.11 Pixel Text}}
| <!--3D-->{{Maybe| tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGl 4.1 opencl 1.x - no 6 pin psu - 96 cuda cores 128bit - case dual slots -
* not working
* OEM
* GDDR5 512MB to 1GB ASUSTeK ENGT440/DI/1GD5
* GDDR3 Asus 1gb to 2gb,
* works
|-
| <!--Description-->GT430 430GT (GF108)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|6.11 Pixel Text}}
| <!--3D-->{{Maybe|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->ddr3 memory 64bit or 128bit - buggy await new revision of driver
* not working
* works
|-
| <!--Description-->nVidia Quadro FX1800 768MB GDDR3 Full Height Graphics Card Workstation
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 6.11 Pixel Text}}
| <!--3D-->{{no|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->{{Maybe|DVI-I 2xDP}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->59W 768 MB GDDR3 memory using a 192-bit memory interface - OpenGL 3.3 -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GTX 590 Fermi
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->OpenGL4.4 OpenCL 1.1 - GDDR5 - 6pin and 8pin psu connectors - 512 cuda - case dual slots -
* not working
* works
|-
| <!--Description-->GTX 580,
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->PureVideo HD 5" or "VP5" (Nvidia Feature Set D or VDPAU Feature Set D) 4k UHD 3840 × 2160 H.264 decode -
|-
| <!--Description-->GTX 570,
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{Maybe|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working Zotac GTX 570, Gainward GTX560TI/570 Phantom,
* works gigabyte, evga
|-
| <!--Description-->Geforce 5xx 560gtx Fermi GTX 560,
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->opengl 4.x - 2 6pin psu - 384 cuda cores - case dual slots - will not work with PCI-e 1.0a slots -
* not working Asus ENGTX560 DC/2DI/1GD5,
* Ti LE 448 cuda GDDR5 320bit
* Ti 256bit
* works
|-
| <!--Description-->GTX 560 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working evga GTX 560Ti 01GP31560KR - Gainward GTX560TI/570 Phantom,
* works
|-
| <!--Description-->GTX 550 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x1201
| <!--Revision-->
| <!--2D-->{{Maybe|VESA Doom Doom2 Duke }}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->can hang on boot up on I2C Init or suffer random lockups on OpenGL apps - most need 1 6pin min 400W 24A on the +12V1 / +12V2 dual 12V rails of the computers' power supply unit - 192 cuda cores - case dual slots used - will not work with PCI-e 1.0a slots -
* not working eVGA GeForce GTX 550 Ti (1024 MB) (01GP31556KR) -
* untested asus Extreme, eVGA GeForce GTX 550 Ti (1024 MB) (01GP31557KR) - -
* works
|-
| <!--Description-->GT 545 and OEM GF116
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 4.2 opencl 1.x - GDDR5 with OEM only -
|-
| <!--Description-->GT530 OEM
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 6.11 Pixel Text}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->96 cuda cores - 1GB or 2GB DDR3 128bit
|-
| <!--Description-->GT520 520GT
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->untested 48 cuda cores - DDR3 64bit
|-
| <!--Description-->510, GT 530
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D 6.11 Pixel Text}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> ddr 3 - 50w max -
|-
| <!--Description-->GT610 Fermi GF119
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVS 315 300 GF119S
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{No|VESA}} needs special dms-59 cable
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 fermi 315 PNY VCNVS315-T 1Gb DDR3 but needs special dms-59 cable -
|-
| <!--Description-->GT630 GF108 Fermi
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->not accelerated 2015 - like the GT730 below - 96 cuda cores whilst kepler version has 384 - 128bit to keplers' 64bit bandwidth - kepler has 2GB DDR3
* not working Gigabyte
* DDR3
* GDDR5
* works
|-
| <!--Description-->Geforce GT 730
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe| use VESA 6.11 Pixel Text}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> fermi version has 96 cuda cores 128bit GF108
* not working Asus
* works
|-
| <!--Description-->nVIDIA Quadro 4000
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}} 2 dp ports
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->142W 2Gb GDDR5 - PCI Express 2.0 x16 ; full Height card with 1x 6-Pin PCIe power need - CUDA Cores 256 - OpenGL 4.5
|-
| <!--Description-->nVIDIA Quadro 5000
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2011 200W 2.5Gb GDDR5 320 bit - PCI Express 2.0 x16 full Height card with 2x 6-Pin PCIe power need -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce GTX Titan GeForce GTX Titan Black GeForce GTX Titan Z
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVE0 family (Kepler) GeForce 600 GeForce 700 GeForce GTX Titan Kepler
|-
| <!--Description-->GeForce GTX 780 GeForce GTX 780 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->PureVideo HD 6" or "VP6" (Nvidia Feature Set E or VDPAU Feature Set E) significantly improved performance when decoding H.264 and MPEG-2
|-
| <!--Description-->GeForce GTX 770
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->opengl 4.4 opencl 1.1
|-
| <!--Description-->GeForce GTX 760 GeForce GTX 760 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce GT 740
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce GT 730 Kepler
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> two versions fermi 96 cores 128bit GF108 and kepler 384 cores 64bit GK208
|-
| <!--Description-->680gtx GK104 core gtx680 680m
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVE0 family (Kepler)
|-
| <!--Description-->GTX 690 Kepler NVE0
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->pci-e 3.0, OpenGL 4.4 OpenCL 1.1
|-
| <!--Description-->GTX 670
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GTX 660 GTX 660 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GTX 650 GTX 650 Ti GTX 650 Ti Boost
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVE0 family (Kepler) most need 1 6pin psu
* not working asus ENGTX560 DC/2DI/1GD5
* works
|-
| <!--Description-->Geforce GT 640
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* 128bit DDR3
* 192bit DDR3 1.5 to 3GB 50W
* 128bit GDDR5 75W
|-
| <!--Description-->GT 620 GT 640
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->Quadro K2000(M)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 - 50w single slot -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce 750ti, GeForce 900
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->[https://nouveau.freedesktop.org/FeatureMatrix.html NV110] Maxwell -
|-
| <!--Description-->Nvidia GTX 750
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x1381
| <!--Revision-->0xa2
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2026 nvidia test
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->GM206 2nd gen maxwell PureVideo HD 7" or "VP7" (Nvidia Feature Set F or VDPAU Feature Set F) adds full hardware-decode of H.265 HEVC Version 1 (Main and Main 10 profiles and full fixed function VP9 (video codec) hardware decoding
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Quadro K620 quadro p620 2gb gddr5 128bit and quadro p1000 4gb gt1030 30w
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 50w slim low profile -
|-
| <!--Description-->GeForce gtx 1060, GeForce 1070
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NV130 Pascal
|-
| <!--Description-->gtx 1050ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->NV130 family (Pascal)
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV132 (GP102) NVIDIA Titan (X, Xp), GeForce GTX 1080 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV134 (GP104) GeForce GTX (1070, 1080)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV136 (GP106) GeForce GTX 1060
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV137 (GP107) GeForce GTX (1050, 1050 Ti)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV138 (GP108) GeForce GT 1030
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV162 (TU102) NVIDIA Titan RTX, GeForce RTX 2080 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV164 (TU104) GeForce RTX (2070 Super, 2080, 2080 Super)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2020 NV160 family (Turing) unified gsp-rm firmware - best starting point for Vulkan support
|-
| <!--Description-->NV166 (TU106) GeForce RTX (2060, 2060 Super, 2070)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV168 (TU116) GeForce GTX (1650 Super, 1660, 1660 Ti, 1660 Super)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV167 (TU117) GeForce GTX 1650
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->gtx 1650ti super
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2018 old style
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV172 (GA102) GeForce RTX (3080, 3090)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 av1 decoding ampere
|-
| <!--Description-->NV174 (GA104) GeForce RTX (3060 Ti, 3070, 3080 Mobile)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->NV170 family (Ampere)
|-
| <!--Description-->NV176 (GA106) GeForce RTX (3050, 3060)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV177 (GA107) GeForce RTX 3050
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV192 (AD102) GeForce RTX 4090
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV193 (AD103) GeForce RTX 4080
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->NV190 family (Ada Lovelace)
|-
| <!--Description-->NV194 (AD104) GeForce RTX (4070, 4070 Ti)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV196 (AD106) GeForce RTX 4060 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV197 (AD107) GeForce RTX 4060
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
|}
==== nouveau mobile integrated ====
If you purchased a notebook with an NVidia sticker on it, most of the time you have a optimus based one, ie Intel CPU+GPU melded with Nvidia GPU, Optimus was slated at one point to go into desktop PCs but the industry ended up rejecting that concept
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|-
| GeForce 6100 nForce 405
| 0x
| 0x03D1 0x0242
| 0x0
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
|
|-
| <!--Description-->GeForce 6100 nForce 400
| <!--Vendor ID-->
| <!--Product ID-->0x03D2
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce 6100 nForce 420
| <!--Vendor ID-->
| <!--Product ID-->0x03D5
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce 6150 LE
| <!--Vendor ID-->
| <!--Product ID-->0x0241
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6150SE nForce 430
| 0x
| 0x03D0
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| working
|-
| <!--Description-->GeForce 6150
| <!--Vendor ID-->
| <!--Product ID-->0x0240
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7150M / nForce 630M
| <!--Vendor ID-->
| <!--Product ID-->0x0531
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7000M / nForce 610M
| <!--Vendor ID-->
| <!--Product ID-->0x0533
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7050 PV / NVIDIA nForce 630a
| <!--Vendor ID-->
| <!--Product ID-->0x053A 0x053B
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Geforce IGP 7025 nForce 630a
| 0x
| 0x053E
| 0x0
| <!--2D-->{{Yes|some}}
| <!--3D-->{{Yes|some}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No| }}
| some support on some chipsets
|-
| GeForce 7100 / nForce 630i (C73)
| 0x10de
| 0x07e1
| 0x0a2
| <!--2D-->{{Maybe}}
| <!--3D-->{{Maybe}}
| <!--Analogue-->{{Maybe}}
| <!--Digital-->{{Maybe}}
| <!--Laptop LCD-->{{N/A}}
| Icaros 2.0.3 and Gigabyte 73-pvm-s2h rev. 1.0 but will not boot on [https://ae.amigalife.org/index.php?topic=806.msg8765#new Acer x270 with Icaros 2.3]
|-
| <!--Description-->GeForce 7150 / NVIDIA nForce 630i
| <!--Vendor ID-->
| <!--Product ID-->0x07E0
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7050 / NVIDIA nForce 610i
| <!--Vendor ID-->
| <!--Product ID-->0x07E3
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Geforce IGP 8100 (nForce 720a)
| 0x
| 0x084F
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
|
|-
| GeForce 8100P
| 0x
| 0x0847
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
|
|-
| <!--Description-->Geforce 8200 8300 nForce 730a
| <!--Vendor ID-->
| <!--Product ID-->0x084A 0x0848 (GeForce 8300) 0x0849 (GeForce 8200) 0x084B (GeForce 8200)
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->working on some 8300's with Icaros 1.5 but others untested
|-
| <!--Description-->nForce 780a SLI
| <!--Vendor ID-->
| <!--Product ID-->0x084C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->nForce 750a SLI
| <!--Vendor ID-->
| <!--Product ID-->0x084D
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Nvidia Geforce IGP 9300 (nForce MCP7a)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->works
|
|-
| <!--Description-->9400 (ION)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->If AROS detects GPU chipset, works well
|-
| <!--Description-->9700M ()
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Geforce ION 2
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->works well
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce Go 6150
| <!--Vendor ID-->
| <!--Product ID-->0x0244
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6100
| <!--Vendor ID-->
| <!--Product ID-->0x0247
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6200
| <!--Vendor ID-->
| <!--Product ID-->0x0164 0x0167
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6400
| <!--Vendor ID-->
| <!--Product ID-->0x0166 0x0168
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->Sony Laptop
|-
| <!--Description-->GeForce Go 6800
| <!--Vendor ID-->
| <!--Product ID-->0x00C8
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6800 Ultra
| <!--Vendor ID-->
| <!--Product ID-->0x00C9
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600
| <!--Vendor ID-->
| <!--Product ID-->0x0144
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600 TE/6200 TE
| <!--Vendor ID-->
| <!--Product ID-->0x0146
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600
| <!--Vendor ID-->
| <!--Product ID-->0x0148
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600 GT
| <!--Vendor ID-->
| <!--Product ID-->0x0149
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7200
| <!--Vendor ID-->
| <!--Product ID-->0x01D6
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7300
| <!--Vendor ID-->
| <!--Product ID-->0x01D7
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->untested
|-
| <!--Description-->GeForce Go 7400
| <!--Vendor ID-->
| <!--Product ID-->0x01D8
| <!--Revision-->
| <!--2D-->
| <!--3D-->works 2D and 3d issues though
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7800
| <!--Vendor ID-->
| <!--Product ID-->0x098
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7800 GTX
| <!--Vendor ID-->
| <!--Product ID-->0x0099
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7950 GTX
| <!--Vendor ID-->
| <!--Product ID-->0x0297
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7900 GS
| <!--Vendor ID-->
| <!--Product ID-->0x0298
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7900 GTX
| <!--Vendor ID-->
| <!--Product ID-->0x0299
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7600
| <!--Vendor ID-->
| <!--Product ID-->0x0398
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7600 GT
| <!--Vendor ID-->
| <!--Product ID-->0x0399
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 6610 XL
| <!--Vendor ID-->
| <!--Product ID-->0x0145
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 6700 XL
| <!--Vendor ID-->
| <!--Product ID-->0x0147
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce 8700M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0409
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8600M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0425
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8400M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0426
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8400M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0427
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8400M G
| <!--Vendor ID-->
| <!--Product ID-->0x0428
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8800M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x0609
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8800M GTX
| <!--Vendor ID-->
| <!--Product ID-->0x060C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9500M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0405
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8600M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0407
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9650M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0408
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9400M GT
| <!--Vendor ID-->
| <!--Product ID-->0x042C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9300M G
| <!--Vendor ID-->
| <!--Product ID-->0x042E
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9100M G
| <!--Vendor ID-->
| <!--Product ID-->0x0844
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9800M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x0628
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9700M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x062A
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9800M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x062C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9600M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0647
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9600M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0648
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9600M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0649
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9500M G
| <!--Vendor ID-->
| <!--Product ID-->0x064B
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9300M GS
| <!--Vendor ID-->
| <!--Product ID-->0x06E5
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9200M GS
| <!--Vendor ID-->
| <!--Product ID-->0x06E8
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9300M GS
| <!--Vendor ID-->
| <!--Product ID-->0x06E8
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->NV50 (G80) Quadro FX (4600 (SDI), 5600)
Quadro FX (2800M, 3600M, 3700, 3700M, 3800M, 4700 X2), VX 200
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV94 (G94) 9700M GTS, 9800M GTS, GeForce G 110M, GT 130(M), GT 140, Quadro FX (1800, 2700M)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV84 (G84) 8700M GT, GeForce 9500M GS, 9650M GS
Quadro FX (370, 570, 570M, 1600M, 1700), NVS 320M
NV86 (G86) GeForce 8300 GS, 8400 (GS, M G, M GS, M GT), 8500 GT, GeForce 9300M G
Quadro FX 360M, NVS (130M, 135M, 140M, 290)
GeForce GTS 150(M), GTS 160M, GTS 240, GTS 250, GTX (260M, 280M, 285M), GT (330, 340)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV96 (G96) 9650M GT, 9700M GT
GeForce G 102M, GT 120
Quadro FX (380, 580, 770M, 1700M)
NV98 (G98) GeForce 8400 GS, GeForce 9200M GS, 9300 (GE, GS, M GS)
GeForce G 100, G 105M
Quadro FX (370 LP, 370M), NVS (150M, 160M, 295, 420, 450)
Quadro CX, FX (3800, 4800, 5800)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVA3 (GT215) GeForce GT (240, 320, 335M), GTS (250M, 260M, 350M, 360M) Quadro FX 1800M
NVA5 (GT216) GeForce GT (220, 230M, 240M, 325M, 330M), 315
Quadro 400, FX 880M, NVS 5100M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVA8 (GT218) GeForce 8400 GS, ION 2, GeForce 205, 210, G 210M, 305M, 310(M), 405
Quadro FX (380 LP, 380M), NVS (300, 2100M, 3100M)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVAA (MCP77/MCP78) GeForce 8100, 8200, 8300 mGPU / nForce 700a series, 8200M G
NVAC (MCP79/MCP7A) ION, GeForce 9300, 9400 mGPU / nForce 700i series, 8200M G, 9100M, 9400M (G)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVAF (MCP89) GeForce 320M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GT 605M, GT 610M GT 620M GT 630M GT 635M GT 645M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GTX 650M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GTX 1650 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2019 turing architecture - last old skool support pre Vulkan
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rtx 2050 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 ampere architecture best starting point for vulkan support
|-
| <!--Description-->rtx 2060 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rtx 4060 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
|}
====radeon.hidd====
Michel Shultz ''2D'' graphics driver (standard on most distributions but only for very old GPUs) and bearsofts updated 2013 around Icaros 1.3.1
3D is not implemented by AROS yet but could cover these AMD chipsets
<pre>
2014 SI AMD HD 7xxx
2016 GCN3rd AMD R5E R7E
2019 GCN5th AMD Vega 8
2022 RDNA1 AMD RX5500 desktop only
2023 RDNA2 AMD 680M 780M
2024 RDNA3 AMD 880M 890M
2025 RDNA3.5 AMD 8060S strix halo and AI
2027 RDNA4 AMD
</pre>
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! 2D
! 3D
! Analogue Output
! Digital Output
! Laptop LCD
! Comments
|-
| 7000 (r100)
| 0x1002
| 0x5159
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->{{Maybe|vga15 pin connection but not s-video}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.3
|-
| 7500 (rv200 but still r100 based)
| 0x1002
| 0x5157
| 0x
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->{{Yes|vga15}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.3
|-
| 8000 8500 (r200)
| 0x1002
| 0x514c (8500LE)
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.4
|-
| 9000 9100 9250 (r200)
| 0x1002
| 0x5964 (9000) 0x514d (9100)
| 0x0001
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->{{Maybe|VGA15 but not s-video}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.4
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| 9600 9800 (r300)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1
|-
| x300 x600 (r300)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1
|-
| x700, x800 ([http://en.wikipedia.org/wiki/Radeon_R600 r420])
| 0x
| 0x554d (R430 x800xl)
| 0x0
| <!--2D-->{{Yes|new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1 - x800 XL PCIE (problem with mouse-pointer, some part of the pointer is not transparent)
|-
| x1300 x1550 x1600 x1800 x1900 x1950 ([http://en.wikipedia.org/wiki/Radeon_R520 r520])
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes|new driver}}
| <!--3D-->{{no}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| HD2400 HD2600 HD2900 ([http://en.wikipedia.org/wiki/Radeon_R600 r600])
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|some features with new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 3.3 open CL 1.2 TeraScale architecture
|-
| HD3400 HD3600 HD3800 (r600)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|some features with new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->pci-e 2.0, openGL 3.3
|-
| HD4300 HD4500 HD4600 HD4700 HD4800 ([http://en.wikipedia.org/wiki/Radeon_R600 r700])
| 0x1002
| 0x
| 0x0
| <!--2D-->{{Maybe|but some later cards need 3D engine for faster and more flexible 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 3.3 - DDR3 - GDDR5 was one of AMD's aces for the 4800 series - 4670 liked -
|-
| HD6900 cayman series
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|some features with new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 3.3 open CL not mature (2014) -
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| HD5400 Series HD5430 HD5450 HD5470
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2010 openGL 3.3 openCL - GDDR3 -
|-
| HD5500 Series HD5550 HD5570 HD5600 Series HD5650 HD5670 HD5700 Series HD5750 HD5770
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 3.3 openCL - GDDR5
|-
| HD 5800 Series HD5850 HD5870 HD5900 Series HD5950 HD5970 - HD6xxx not NI chipset ([http://en.wikipedia.org/wiki/Evergreen_(GPU_family) r800 evergreen])
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 openGL 3.3 openCL - DDR5 pci-e 2.1 best avoided for all pci-e 1.0 mobos - Ati TeraScale2 architecture -
|-
| HD6450 [http://en.wikipedia.org/wiki/Northern_Islands_(GPU_family) Northern Islands chipset]
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> - DDR3 -
|-
| HD6600 Series HD6650 HD6570 HD6600 Series HD6650 HD6670
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2011 - DDR5 -
Radeon HD 8470 11 TeraScale 2
Radeon HD 8350 11 TeraScale 2
Radeon HD 7510 11 TeraScale 2
Radeon HD 6550D 11 TeraScale 2
Radeon HD 6530D 11 TeraScale 2
Radeon HD 6410D 11 TeraScale 2
Radeon HD 6370D 11 TeraScale 2
Radeon HD 6320 11 TeraScale 2
Radeon HD 6310 11 TeraScale 2
Radeon HD 6290 11 TeraScale 2
Radeon HD 6250 11 TeraScale 2
|-
| HD6800 Series HD6850 HD6870 HD6700 Series HD6790 to HD6990
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2011 - DDR5 - AMD TeraScale3 -
|-
| <!--Description-->HD7450-HD7670
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 OpenGL but not Vulkan
Radeon HD 7660D 11 TeraScale 3
Radeon HD 7560D 11 TeraScale 3
Radeon HD 7540D 11 TeraScale 3
Radeon HD 7480D 11 TeraScale 3
Radeon HD 6930 11 TeraScale 3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->HD7750 HD 7770 / R7 250X HD7850 HD7870 / R9 270X HD 7950 / R9 280 HD 7970 / R9 280X [http://en.wikipedia.org/wiki/Southern_Islands_(GPU_family) Southern Islands]
*AMD Radeon R7 250XE Cape Verde XT
*AMD Radeon R7 M465X Cape Verde
*AMD Radeon R9 255 Cape Verde PRX
*AMD Radeon HD 7750 Cape Verde PRO
*AMD Radeon R7 250E Cape Verde PRO
*AMD Radeon HD 8740 Cape Verde PRO
*AMD Radeon HD 7730 Cape Verde LE
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 pci-e 3.0 1st Gen GCN architecture -
|-
| <!--Description-->R5 430, FirePro W2100,
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 50W+ openGL openCL 1/3 speed of gtx750ti 1st gen gcn1
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->HD7790 [ Sea Islands ]
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 openGL 4.1 open CL - GCN2.0 Vulkan 1.0 introduced a Shader Engine (SE) comprising one geometry processor, up to 44 CUs (Hawaii chip), rasterizers, ROPs, and L1 cache and Graphics Command Processor for faster audio/video - suits Vulkan 1.1
|-
| <!--Description-->r5 240 240x (slow) R7 250 250x (faster) HD 7790 / R7 260 260X / R7 360 to R5 350 (fast) and last one R5 430 OEM Plus (slow again)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 50W+ GCN 1st gen - openGL 4.x openCL 1.x Vulkan 1.0
|-
| <!--Description-->R9 290 / R9 390 R9 290X / R9 390X
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2014 GCN 1.1 2nd Gen architecture - openGL 4.x openCL 1.x Vulkan 1.1 -
|-
| <!--Description-->R9 Fury Nano
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 GCN 1.2 3rd Gen - openGL openCL vulkan
|-
| <!--Description-->r-200 series r8 275 285 295 375 [Volcanic Islands]
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 GCN1.2 - openGL 4.x openCL 1.x Vulkan 1.2
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 [https://gpuopen.com/download/AMD_GCN3_Instruction_Set_Architecture_rev1.1.pdf GCN3]
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Radeon™ RX 5700/5600/5500 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 GCN 4 - OpenGL 4, Vulkan 1.3 -
|-
| <!--Description-->Radeon™ RX 400/500 Series like rx vega 580
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->Radeon™ Pro WX 9100, x200 Series and Radeon™ Pro W5700/W5500 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Radeon™ RX 7900/7600 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->Radeon™ RX 6900/6800/6700/6600/6500 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|}
==== amd radeon mobile integrated ====
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|-
| <!--Description-->ATI RC410 [Radeon Xpress 200M]
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x5a62 0x5955 0x5974 (200m)
| <!--Revision-->0x00
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->
|-
| <!--Description-->Mobility Radeon 7500
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x4c57 (7500)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->
|-
| <!--Description-->Mobility Radeon 9000
| 0x1002
| 0x4966 (9000)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->
|-
| <!--Description-->Mobility Radeon 9500 9550 (rv360) 9600 (rv350)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon 9800 (rv420)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon X300 (RV370) X600 (RV380)
| 0x1002
| 0x (RV370) 0x5657 (RV380)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon X700 (RV410) X800 (RV423)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon X1200 (RS69M0)
| 0x1002
| 0x791f
| 0x0
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->X1200 IGP (RS690)
|-
| <!--Description-->Mobility Radeon X1300 X1350 X1400(rv515) X1600 (rv530) X1650 (RV535) X1800 (rv520) x1900 (rv570)
| 0x1002
| 0x71c7 (X1650)
| 0x009e
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon 2100
| 0x1002
| 0x796e (2100)
| 0x0
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{No|}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 2400 (rv610) HD2600 (rv630)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 3100 HD3200 HD3450 3470 (RS780MC RV620) 3670 (M86-XT RV635) HD3870 (M88-LXT RV670)
| 0x1002
| 0x9610 and 0x9612 (HD3200) 0x9614 (HD3300)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 4200 4250 (RV620)
| 0x1002
| 0x (HD4200) 0x9715 (HD4250)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 4330 4530 4550 (M92 RV710) 4650 (M96-XT RV730) 4670 RV730XT 4830 (M97 RV740) 4850 (M98 RV770)
| 0x1002
| 0x (HD4350) 0x9442 (RV770) 0x9490 (HD4670)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 530v (M92 RV710) HD 550v (M96 RV730)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->no support yet
|-
| <!--Description-->Mobility Radeon HD 5430 HD5650 (cedar Park LP)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->no support yet
|-
| <!--Description-->Radeon HD 6250 6290 6310 6320 6350M (Redwood Capilano PRO)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->no support yet
|-
| <!--Description-->AMD 7640G, 8450G, 8550G, 8650G Northern Islands
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 Last real support for old graphics standard before Vulkan takeover
|-
| <!--Description-->R5 M230 M240 M255 - R7 M260 M265 (Kaveri Crystal series with Mantle and HSA)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->2015 Maybe better with Vulkan
|-
| <!--Description-->R5E R7E
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->2016 bristol ridge GCN 3.0 IGP (Carrizo Mobile)
|-
| <!--Description-->AMD Vega 3, 6, 8, 11 iGP
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2018 raven ridge GCN 5th Gen
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->5500m 5600m 5800m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA1 NaviX1 Zen 2
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rx680m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA2 NaviX2 Zen 3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->phoenix apu 1103
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 RDNA3 NaviX3 zen 4
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
==== AMDGPU Vulkan desktop ====
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Kaveri 290 290X, 260 260X
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 AMDGPU Vulkan
|-
| <!--Description-->R9 285 / R9 380 R9 380X Fury / Fury X
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->opengl 4 opencl 1 3rd Gen GCN architecture
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX470 RX460 RX480 RX580 polaris10
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 opengl 4 opencl 2 4th Gen GCN architecture vulkan 1.3
|-
| <!--Description-->RX460 RX560D polaris11
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 opengl 4 opencl 2 4th Gen GCN architecture vulkan 1.3
|-
| <!--Description-->RX580 polaris20
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 opengl 4 opencl 2 4th Gen GCN architecture vulkan 1.3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX 5000 5500 Navi 1x
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RNDA 1
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX 6000 Navi 2x
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RNDA 2 Mesa 21.3 decode av1
|-
| <!--Description-->RX6000
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX 7000
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 RNDA 3 navi
|-
| <!--Description-->RX7000
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->RX9070 rx 9060 XT
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2025 rdna4 navi
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2026 udna (aka rdna5)
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
|}
==== AMDGPU Vulkan mobile ====
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->R5E R7E
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->2016 bristol ridge GCN 3.0 IGP (Carrizo Mobile)
|-
| <!--Description-->Vega 8
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> GCN 5
|-
| <!--Description-->Vega iGP 3, 6, 8, 11
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2018 raven ridge - Graphics Core Next (GCN) 5th gen -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->5500m 5600m 5800m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA1 NaviX1 Zen 2
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rx680m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA2 NaviX2 Zen 3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->phoenix apu 1103
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA3 NaviX3 zen 4
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
fyi if a notebooks with two graphic cards, the integrated Intel card (id 0x7d) for low power usage and a discrete Radeon card (id 0x56) which should be used for GPU-intensive applications. By default the Intel card is always used
[https://wiki.archlinux.org/title/ATI Gallium Radeon HD] is not ported yet but is [https://www.phoronix.com/scan.php?page=news_item&px=Linux-5.9-AMDGPU-Stats really big] and complex so another solution may have to be [https://discuss.haiku-os.org/t/the-graphics-acceleration-can-of-worms/10515/5 found] like [https://discuss.haiku-os.org/t/vulkan-lavapipe-software-rendering-is-working-on-haiku/11363/10 vulkan] where support starts from very recent ISA GCN islands HD7000s cards only
*Vulkan
*Gallium
Vulkan software renderer allows to prepares the infrastructure for hardware rendering. Primary difference between software and hardware renderer is output to regular RAM vs GPU RAM, the rest is almost the same. It is possible to render to GPU RAM offscreen.
bare bones basics data flow
application,>>> api/opengl/vulkan>>>>, jit compiler, >>>>memory manger, >>>>gpu hardware
so you need to have a compiler that takes your api call/program/shaders/drawing commands and turns them into a program the gpu can render.
the vulkan to amd gpu compiler for shaders and textures is nearly os agnostic iirc as long as you have solid posix compliance
Unlike OpenGL, Vulkan does not depend on windowing system and it have driver add-on system with standardized API (Mesa also have OpenGL driver add-ons, but it have non-standard Mesa-specific API). OpenGL may need more work for windowing system related code at this point but developing Vulkan on real hardware is more strategic than developing OpenGL, since now Zink 3 running on Vulkan compensates for the lack of OpenGL support by giving performance similar to native accelerated OpenGL
RadeonGfx use client-server model with client-server thread pairs. For each client thread that calls 3D acceleration API, server side thread is created. If client thread terminates, server side thread also exit.
==Rough gfx comparison==
<pre>
Group 1
GeForce RTX 5090 5070 5060 5050
GeForce RTX 4090 4070 4060 4050
Group 2
GeForce RTX 2070
Radeon RX 7600
Quadro RTX 5000
Radeon PRO W6600
GeForce RTX 2060 12GB
Radeon PRO W7500
Quadro GP100
Radeon RX 6800S
GeForce RTX 3070 Laptop GPU
GeForce GTX 1080
GeForce RTX 3060 8GB
Quadro RTX 4000
Radeon Pro W5700
Radeon RX 6600
GeForce RTX 2080 (Mobile)
Radeon RX 7700S
Radeon RX 6700S
Radeon RX 6600S
Quadro RTX 5000 (Mobile)
GeForce GTX 1070 Ti
GeForce RTX 4050 Laptop GPU
Radeon Pro Vega 64X
Radeon RX 5700
Radeon RX Vega 64
GeForce RTX 2060
GeForce RTX 2070 Super with Max-Q Design
Group 3
Radeon RX 6600M
GeForce GTX 1070
Radeon RX 6650M
GeForce RTX 3060 Laptop GPU
Radeon RX Vega 56
Radeon RX 6700M
GeForce RTX 2080 with Max-Q Design
Radeon RX 6800M
GeForce GTX 980 Ti
Radeon R9 Fury
GeForce GTX 980
Quadro M5500
Radeon R9 390X
Radeon RX 580
Radeon RX 5500
Radeon RX 6550M
GeForce GTX 1660 Ti with Max-Q Design
GeForce GTX 780 Ti
GeForce GTX 970
Radeon R9 290X
Radeon RX 480
Radeon RX 5600M
Quadro RTX 3000 with Max-Q Design
Radeon R9 290X / 390X
Ryzen 5 4600HS with Radeon Graphics
Radeon R9 290
Radeon Pro 5500 XT
Radeon R9 M490 *
GeForce GTX 780
Radeon RX 6500M
Quadro M5500
GeForce GTX 1060 with Max-Q Design
Radeon RX 6500
Radeon RX 5300
Intel Arc A770M
GeForce GTX 1650 Ti
Radeon Pro 580X
Radeon RX 6400
GeForce RTX 2050
Ryzen 9 4900HS with Radeon Graphics
Radeon Ryzen 9 6900HS
GeForce GTX 980M
Quadro M5000M
Radeon RX 6300
GeForce GTX 1650 Ti with Max-Q Design
Radeon Pro 570
Ryzen 9 6900HS with Radeon Graphics
GeForce GTX 1050 Ti
Quadro M4000M
Radeon R9 280X 380X
GeForce GTX 1650 with Max-Q Design
GeForce MX570
Radeon R9 280X
Radeon R9 380
Radeon 780M
GeForce GTX 960
GeForce GTX 970M
Quadro M4000M *
GeForce GTX 680
Group 4
Radeon RX 6500M
Quadro M5500
Radeon Pro WX 7100
GeForce GTX 1060 with Max-Q Design
GeForce GTX 1650
Intel Arc A730M
Radeon HD 7970
Radeon R9 M395X
Radeon R9 M485X
Radeon R9 M480 *
Radeon R9 M295X
Radeon R9 M390X *
FirePro W7170M *
Radeon R9 M395
Radeon R7 370
Radeon RX 5500M
GeForce GTX 590
GeForce GTX 880M
GeForce GTX 950
Radeon R9 270X
GeForce GTX 660 Ti
GeForce GTX 760
GeForce GTX 780M
Quadro K5100M
GeForce GTX 680MX
Radeon HD 7870
GeForce GTX 965M
Quadro M3000M *
GeForce GTX 870M
Radeon R9 M290X
Radeon HD 8970M
Radeon Ryzen 7 7735U (680M), Radeon Ryzen 7 7735HS (680M 12C)
GeForce GTX 580
Radeon HD 6970
GeForce GTX 1050
GeForce GTX 680M
GeForce GTX 775M
GeForce GTX 1630
FirePro M6100
Radeon HD 7970M
Radeon R9 M390 *
GeForce GTX 750 Ti
Group 5
GeForce GTX 570
GeForce GTX 480
GeForce GTX 960M
Quadro M2000M *
Quadro K5000M
Quadro K4100M
GeForce GTX 770M
GeForce GTX 860M
GeForce GTX 675MX
GeForce GTX 950M
GeForce GTX 850M
Quadro M1000M
Radeon R9 M280X
Radeon HD 7950M *
GeForce GTX 560 Ti
Radeon HD 6870
GeForce GTX 470
GeForce GT 1030
GeForce MX330
Ryzen 5 PRO 5650GE with Radeon Graphics
Ryzen 7 5800HS
FirePro 3D V8800
GeForce MX250
Group 6
Radeon Pro WX 3200
Ryzen 7 PRO 5750G with Radeon Graphics
Radeon Ryzen 5 5600H
Ryzen 5 Pro 4650G with Radeon Graphics
Radeon Ryzen 7 5800U
Ryzen 7 7730U with Radeon Graphics
Radeon Ryzen 7 5825U
Radeon Pro WX 4150
Radeon Ryzen 5 PRO 4655G
Ryzen 5 4600G with Radeon Graphics
Radeon Ryzen 5 PRO 4655GE
GeForce GTX 485M
FirePro W6150M
Ryzen 7 5800U with Radeon Graphics
Ryzen 5 7530U with Radeon Graphics
Ryzen 7 4800U with Radeon Graphics
Radeon R9 M470
Ryzen 3 PRO 5350G with Radeon Graphics
Radeon RX Vega Ryzen 3 5300U
Ryzen 7 5825U with Radeon Graphics
Ryzen 5 PRO 4400G with Radeon Graphics
Radeon Ryzen 7 PRO 4750GE
Radeon Ryzen 7 4800U
FirePro V7900
Radeon HD 5970
Radeon Ryzen 7 7700X 8-Core
Radeon Ryzen 5 PRO 5650G
Radeon Ryzen 5 4400G
Radeon Ryzen 5 PRO 5650GE
Radeon RX 550X
FirePro V8800
Radeon RX Vega Ryzen 5 5500U
GeForce MX150
Quadro K3100M
Ryzen 7 PRO 5850U with Radeon Graphics
Radeon HD 6970M
Radeon R7 250X
Intel HD 5600
Ryzen 3 4300GE with Radeon Graphics
GeForce GTX 460
Ryzen 7 5700U with Radeon Graphics
Radeon Ryzen 5 7530U
Quadro K620
Ryzen 3 PRO 5350GE with Radeon Graphics
Intel Iris Pro P580
Intel UHD Graphics P630
Ryzen 5 4600H with Radeon Graphics
Ryzen 5 PRO 7530U with Radeon Graphics
Radeon HD 5870
Radeon HD 6870
Ryzen 7 4700G with Radeon Graphics
Ryzen 5 5600U with Radeon Graphics
Radeon HD 7770
Ryzen 3 Pro 4350G with Radeon Graphics
Radeon Ryzen 5 5625U
GeForce GTX 745
Radeon Ryzen 7 4850U Mobile
Radeon Ryzen 3 PRO 7330U
Quadro M600M
Radeon Ryzen 5 5500U
Ryzen 5 5560U with Radeon Graphics
Ryzen 7 4800H with Radeon Graphics
Group 7
GeForce 945M
Ryzen 5 PRO 4650GE with Radeon Graphics
FirePro M5100
Radeon Ryzen 5 5600U
Radeon Ryzen 5 PRO 4500U
GeForce GTX 580M
Ryzen 7 PRO 5875U with Radeon Graphics
Ryzen 3 5300GE with Radeon Graphics
Radeon R9 M385
Quadro 5000M
Radeon Ryzen 7 4700U
Ryzen 5 PRO 5650U with Radeon Graphics
Radeon Ryzen 7 PRO 4750U
Ryzen 7 4700U with Radeon Graphics
Ryzen 7 PRO 4750U with Radeon Graphics
FirePro V7800
Radeon R9 350
Ryzen 3 4300G with Radeon Graphics
Radeon Vega 11 Ryzen 5 PRO 3350G
Radeon Ryzen 5 5560U
GeForce GTX 460 SE
Radeon Pro W5500M
Radeon Vega 11 Ryzen 5 PRO 3400G
Ryzen 5 5500U with Radeon Graphics
Ryzen 5 PRO 4500U with Radeon Graphics
GeForce GT 645
GeForce GTX 765M
Radeon R9 M385X
Ryzen 5 5625U with Radeon Graphics
Ryzen 3 PRO 7330U with Radeon Graphics
Radeon HD 5850
Radeon Vega 11 Ryzen 5 PRO 2400G
Intel Iris Pro 580
Radeon HD 6850
Intel Iris Xe MAX
Radeon Ryzen 7 PRO 5875U
Radeon Ryzen 5 7600 6-Core
GeForce GTX 470M
Ryzen 3 5300G with Radeon Graphics
GeForce GTX 670MX
Radeon RX 640
Qualcomm Adreno Gen 3
Radeon R7 450
GeForce GTX 675M
Radeon Pro WX 4130
Intel Iris Xe MAX 100
Quadro 5000
Radeon RX 570X
Radeon HD 7700-serie
Ryzen 5 4600U with Radeon Graphics
Ryzen 3 PRO 4350GE with Radeon Graphics
Radeon Vega 8
Group 8
GeForce MX230
GeForce GTX 765M
Quadro K4000M
Iris Pro Graphics P580 *
Iris Pro Graphics 580 *
GeForce GTX 645
Quadro M520
GeForce GTX 570M
GeForce MX130
Radeon RX 540
Radeon Ryzen 5 PRO 5675U
Intel UHD Graphics 770
Radeon RX Vega 11 Ryzen 7 3750H
Radeon Vega 11 Ryzen 5 PRO 3400GE
Radeon HD 5850
GeForce GTX 675M
GeForce GTX 580M
Radeon HD 6990M
Radeon R9 M385X *
Radeon R9 M470X *
Radeon R9 M470 *
Radeon R9 M385 *
Radeon R9 M380 *
Radeon R9 M370X
Radeon R9 M275
Radeon HD 7770
GeForce GTX 485M
GeForce GTX 460 768MB
Radeon HD 6790
GeForce GTX 285M SLI
Quadro K3100M
FirePro W5170M *
GeForce GTX 670MX
Quadro 5010M
GeForce GTX 760M
GeForce GTX 670M
Group 9
GeForce 940MX *
Maxwell GPU (940M, GDDR5)
FirePro M8900
Radeon HD 6970M
Radeon R9 M270
Radeon HD 8870M
Radeon HD 7870M
Quadro K3000M
GeForce GTX 570M
FirePro M6000
FirePro M5100
Quadro K2100M
Radeon HD 5770
GeForce GTX 550 Ti
GeForce GTX 280M SLI
Radeon HD 6950M
Radeon R7 250
GeForce GT 755M
GeForce GTX 660M
GeForce 845M
Radeon HD 8850M
Radeon R9 M365X
Radeon R9 M265X
Ryzen 5 PRO 4400GE with Radeon Graphics
FirePro W5130M *
Radeon Vega 8 Ryzen 5 3500U
Radeon HD 7850M
Radeon HD 8790M
FirePro W4170M
FirePro W4190M
FirePro W4100
Radeon Vega 6 Ryzen 3 3300U
Quadro 4000M
GeForce GTX 470M
GeForce GTX 480M
GeForce GT 750M
Iris Pro Graphics 6200
Quadro K1100M
GeForce 940M
Radeon R9 M375
GeForce 930MX *
Radeon R7 M380 *
Radeon R7 M370
Quadro M600M *
GeForce GT 650M
Quadro K620M
GeForce 840M
Radeon R7 M275DX
GeForce GT 745M
Radeon HD 7770M
GeForce GTX 560M
Radeon R7
Iris Pro Graphics 5200
GeForce GT 740M
GeForce 930M
Radeon HD 4850
Group 10
Iris Graphics 550 *
GeForce 830M
Iris Graphics 540
Quadro M500M *
Quadro K2000M
GeForce GTS 450
GeForce GTX 260M SLI
GeForce GT 735M
Mobility Radeon HD 5870
GeForce 825M
Quadro 5000M
FirePro M4000
FirePro M7820
Radeon HD 6870M
GeForce 9800M GTX SLI
Radeon HD 8830M *
Radeon HD 8770M
Radeon R7 M260X
GeForce GTX 460M
GeForce 920MX *
GeForce GT 730M
Radeon HD 7750M
GeForce GT 645M *
FirePro M4100
Radeon HD 8750M
Radeon R6 A10-9600P 4C+6G
Quadro 3000M
Radeon R7 M270
Radeon R7 M265
Quadro FX 3800M
GeForce GTX 285M
Mobility Radeon HD 4870
GeForce GT 640M
Radeon R7 (Kaveri)
Radeon R8 M365DX
Radeon R7 M460 *
Radeon HD 7730M
Radeon R7 M360
GeForce GTX 280M
Radeon HD 8690M
Quadro FX 3700M
Radeon R7 M340
GeForce 920M
Radeon R6 M340DX
HD Graphics 530
HD Graphics P530
Tegra X1 Maxwell GPU
Radeon R7 M260
Radeon R6
Group 11
Mobility Radeon HD 4860
FirePro M7740
Mobility Radeon HD 4850
GeForce GTX 260M
GeForce 9800M GTX
Quadro FX 2800M
Radeon HD 8670D
Radeon HD 7690M XT
FirePro M5950
GeForce GT 640M LE
Radeon R6 (Kaveri)
Radeon HD 8650M *
Radeon HD 8730M
Radeon HD 6770M
GeForce GT 635M
GeForce GT 555M
Radeon R7 A10 PRO-7800B
Radeon HD 5670
Mobility Radeon HD 5850
Radeon HD 6850M
Quadro 2000M
GeForce 9800M GT
GeForce 8800M GTX
Quadro FX 3600M
GeForce GT 445M
GeForce GTS 360M
Group 12
GeForce GT 240
Radeon R7 PRO A10-9700
Radeon HD 7690M
HD Graphics 5600
Radeon HD 8570D
Radeon HD 8670M
Radeon R6 M255DX
Radeon HD 7660D
Radeon HD 6750M
Quadro K1000M
GeForce GT 550M
Radeon HD 8590M *
GeForce GTS 260M
GeForce GTS 160M
GeForce 9800M GTS
GeForce GT 430
Radeon HD 6830M
Mobility Radeon HD 5830
Radeon HD 6730M *
GeForce 9800M GS
Mobility Radeon HD 4830
Mobility Radeon HD 5770
Radeon HD 6570M
Radeon HD 8650G
Radeon HD 7670M
GeForce GT 630M
Radeon HD 7560D
GeForce GTS 150M *
Radeon R5 M335
Radeon R5 M430 *
Radeon R5 M330
Radeon R5 M255
Radeon Vega 3
Quadro 1000M
GeForce 820M
FirePro W2100
HD Graphics 520 620
Iris Graphics 6100
GeForce GT 720M
GeForce 8800M GTS
Radeon R5 M240
Radeon R5 M320 *
Radeon R5 M230
Radeon R5 M315 *
Mobility Radeon HD 5750 *
Radeon HD 8570M
Radeon R7 PRO A10-8850B
HD Graphics 6000
Quadro K610M
Radeon HD 8550M
Iris Graphics 5100
GeForce GT 540M
Mali-T880 MP12 *
Radeon HD 8610G *
Radeon HD 6650M
HD Graphics 4600
Mobility Radeon HD 5730
HD Graphics 5500
Radeon R5 (Carrizo) *
Radeon R5 (Kaveri)
FirePro M5800
NVS 5400M
GeForce 710M
Radeon HD 7660G
GeForce GT 435M
HD Graphics 5000
Quadro K510M *
Radeon HD 5570
Radeon HD 6550M
Radeon HD 7590M *
GeForce GTS 350M
GeForce GTS 250M
Radeon HD 6630M
Radeon HD 7650M
FirePro M2000
Radeon HD 7570M
Radeon HD 7630M
Quadro FX 1800M
Mobility Radeon HD 5650
Radeon HD 8510G *
Radeon HD 6530M
Radeon HD 8550G
Quadro K500M *
GeForce GT 625M *
GeForce GT 620M
GeForce GT 525M
Radeon HD 6550D *
Radeon HD 7610M
Radeon HD 7620G
Radeon HD 8470D
Radeon HD 7640G
Adreno 530
GeForce ULP K1 (Tegra K1 Kepler GPU)
HD Graphics 4400
HD Graphics 510 515 *
NVS 5200M
Mobility Radeon HD 565v
Radeon HD 7550M
Mobility Radeon HD 4670
GeForce GT 425M
GeForce 9700M GTS
Radeon HD 6645G2 *
Quadro FX 2700M
GeForce GT 335M
Radeon HD 7600G
Mobility Radeon HD 3870
Mobility Radeon HD 4650
GeForce GT 220
GeForce GT 420M
Radeon HD 7530M *
Mobility Radeon HD 3850
GeForce GT 330M
Quadro FX 880M
Quadro NVS 5100M
GeForce GT 240M
Radeon HD 7490M *
HD Graphics 5300
Radeon HD 7510M *
GeForce Go 7950 GTX
Quadro FX 3500M
GeForce 8700M GT SLI
GeForce 9700M GT
GeForce GT 230M
Mobility Radeon HD 550v
Radeon HD 7480D
HD Graphics 4000
Mali-T760 MP8
Radeon HD 6620G
HD Graphics (Broadwell) *
Adreno 430
Radeon R5 (Beema/Carrizo-L)
Radeon R4 (Beema) (Kaveri)
HD Graphics (Skylake) *
Radeon HD 6450 GDDR5
Radeon HD 7500G
Radeon HD 8450G
Radeon HD 7470M
Radeon HD 6490M
Radeon HD 8400
Mali-T880 MP4
GeForce GT 520MX
Radeon HD 7520G
GeForce GT 325M
GeForce Go 7800 GTX SLI
GeForce 8600M GT SLI
GeForce Go 7900 GS SLI
GeForce GT 130M
NVS 4200M
GeForce Go 7900 GTX
Quadro FX 2500M
Radeon HD 8350G
Radeon HD 8330
GeForce 9650M GS
GeForce 9650M GT
Radeon R3 (Mullins/Beema)
GeForce 8700M GT
Quadro FX 1700M
Quadro FX 1600M
GeForce Go 7800 GTX
GeForce Go 7900 GS
Quadro NVS 320M
Quadro FX 1500M
GeForce 9600M GT
GeForce GT 220M
Quadro FX 770M
GeForce GT 120M
Radeon HD 7450M
GeForce 610M
GeForce 705M
Mali-T760 MP6
Radeon HD 6470M
FirePro M3900 *
GeForce GT 520M
Radeon HD 7420G
Mobility Radeon HD 3670
Mobility FireGL V5725
PowerVR GX6450
Adreno 420
HD Graphics (Haswell)
Radeon HD 6520G
Radeon HD 8310G *
GeForce 320M
GeForce GT 320M
Mobility Radeon HD 2600 XT
Mobility Radeon X1900
Mobility Radeon X1800XT
Mobility Radeon X1800
GeForce Go 6800 Ultra
GeForce Go 7800
GeForce 9600M GS
GeForce 9500M GS
Radeon HD 7400G
Radeon HD 6480G *
Mobility Radeon HD 2700
GeForce GT 415M
GeForce 410M
Radeon HD 7370M
Adreno 418
HD Graphics (Cherry Trail)
Radeon HD 6370M
Radeon HD 8280
Mobility Radeon HD 5470
Radeon HD 6450M
Radeon HD 7430M *
Mobility Radeon HD 3650
Mobility FireGL V5700
Mobility Radeon HD 5145
Mobility Radeon HD 545v
Radeon R6 (Mullins) *
Radeon HD 8240
Radeon HD 8250
Mobility Radeon HD 4570
Quadro FX 570M
Mobility Radeon HD 5450 *
Radeon R2 (Mullins/Beema) *
GeForce 8600M GT
Mobility Radeon HD 2600
HD Graphics 3000
Quadro FX 380M
GeForce 310M
GeForce G210M
NVS 3100M
GeForce 405M
GeForce 315M
GeForce Go 7600 GT
GeForce 9500M G
GeForce 8600M GS
NVS 2100M
GeForce Go 7700
GeForce Go 6800
Quadro FX Go 1400
Mobility Radeon X800XT
Radeon HD 6430M *
Radeon HD 6380G *
Mobility Radeon HD 5430
Radeon HD 8210
Mobility Radeon HD 540v
Mobility Radeon HD 4550
HD Graphics 2500
HD Graphics (Ivy Bridge)
Quadro NVS 310
Radeon HD 7350M *
Radeon HD 6350M *
Mobility Radeon HD 4530
Mobility Radeon HD 4350
Radeon HD 4350
GeForce 305M
Mobility Radeon X1700
Mobility FireGL V5250
Mobility Radeon X2500
GeForce Go 7600
Quadro NVS 300M
Mobility Radeon X800
Mobility Radeon X1600
Mobility FireGL V5200
Mobility Radeon 9800
GeForce Go 6600
Mobility Radeon X1450
Mobility Radeon X700
Mobility FireGL V5000
GeForce G 110M
Quadro NVS 295
Radeon HD 6330M *
Mobility Radeon HD 4330
GeForce 8400M GT
Quadro NVS 140M
HD Graphics 2000
GeForce 9500M GE *
GeForce 9400M (G) / ION (LE)
HD Graphics (Sandy Bridge) *
Adreno 330
PowerVR G6430
PowerVR GX6250
PowerVR G6400
HD Graphics (Bay Trail)
Mali-T628 MP6
Mali-T760 MP4
Chrome9HD *
Radeon HD 7340
Radeon HD 6320 *
Radeon HD 7310
Radeon HD 6310 *
Radeon HD 8180
Mobility Radeon HD 3470
GeForce 9300M G
ION 2 *
GeForce 9300M GS
Quadro FX 370M
Quadro NVS 160M
GeForce 9200M GS
Mobility Radeon HD 3450
Mobility Radeon HD 3430
Mobility Radeon HD 3410
Mobility Radeon HD 2400 XT
Radeon HD 4270
Radeon HD 4250
Radeon HD 7290 *
Radeon HD 6290 *
Radeon HD 4200
Graphics Media Accelerator (GMA) HD Graphics
Radeon HD 6250
Quadro NVS 150M
Quadro FX 360M
Mobility Radeon X1350
Mobility Radeon X1400
GeForce 9100M G
GeForce 8400M GS
Quadro NVS 135M
Mobility Radeon HD 2400
Radeon HD 3200
Radeon HD 4225 *
Radeon HD 4100 *
SGX554MP4
Mali-T628 MP4
Mobility Radeon HD 3400 *
Radeon HD 3100
GeForce 8400M G
Mali-T860 MP2
Quadro NVS 130M
GeForce 8200M G
Graphics Media Accelerator (GMA) 4700MHD
Graphics Media Accelerator (GMA) 4500MHD
Graphics Media Accelerator (GMA) 4500M
Mali-T604 MP4
GeForce Go 7400
Quadro FX 350M
Quadro NVS 120M
GeForce Go 7300
GeForce Tegra 4 *
PowerVR G6200
Adreno 405 *
Quadro NVS 110M
Mobility Radeon X600
Mobility FireGL V3200
Mobility FireGL V3100
Mobility Radeon HD X2300
Mobility Radeon 9700
Mobility FireGL T2e
Mobility Radeon X1300
GeForce4 4200 Go
Mobility Radeon 9600
Mobility FireGL T2
Mobility Radeon 9550
GeForce Go 7200
GeForce Go 6400
Mobility Radeon X300
GeForce Go 6250
GeForce Go 6200
GeForce FX Go 5700
Quadro FX Go 1000
GeForce FX Go 5600 / 5650
Radeon Xpress X1270
Radeon Xpress X1250
Radeon Xpress X1200
Graphics Media Accelerator (GMA) X3100
Mali-T624
Adreno 320 *
Mali-T760 MP2
Mali-T720 MP4
Mali-450 MP4
Graphics Media Accelerator (GMA) 3650 *
GeForce 7190M *
GeForce 7150M
Radeon Xpress 1150
GeForce Go 6150
GeForce Go 6100
GeForce 7000M
Graphics Media Accelerator (GMA) 3600 *
Mobility Radeon 9200
Mobility FireGL 9000
GeForce FX Go 5200
Mobility Radeon 9000
GeForce 4 488 Go
GeForce 4 460 Go
GeForce 4 440 Go
GeForce 4 420 Go
Graphics Media Accelerator (GMA) 3150
Graphics Media Accelerator (GMA) 950
SGX545 SGX544MP2 SGX543MP2 *
Mali-T720 MP2
Mali-T720
Adreno 302 304 305 306
Mobility Radeon 7500
Mobility FireGL 7800
Graphics Media Accelerator (GMA) 900
Radeon Xpress 200M
Radeon Xpress 1100
Mirage 3+ 672MX
Mirage 3 671MX
Mali-400 MP4 *
GeForce ULP (Tegra 3) *
VideoCore-IV *
Adreno 220 225*
Vivante GC1000+ Dual-Core
Mali-400 MP2 *
GeForce ULP (Tegra 2) *
Graphics Media Accelerator (GMA) 600 *
SGX540 *
Graphics Media Accelerator (GMA) 500
Adreno 205 *
Adreno 203 *
GC800 *
SGX535
SGX531
SGX530
Adreno 200 *
Mali-200 *
GeForce 3 Go *
GeForce 2 Go 200 / 100
Mobility Radeon 9100 IGP
Mobility Radeon 9000 IGP
Mobility Radeon M7
Mobility Radeon M6
Chrome9 HC
Extreme Graphics 2
Mobility Radeon 7000 IGP
Radeon IGP 340M
Radeon IGP 320M
S3G UniChrome Pro II
S3G UniChrome Pro
Castle Rock
Mirage 2 M760
Mirage M661FX
S3 Graphics ProSavage8
Mobility 128 M3
SM502 *
</pre>
Kernel-space drivers like '''radeon''' (older AMD driver for older GPUs), '''amdgpu''' (newer driver for newer GPUs, allows using a few new features), i915, nouveau and a few others. They are what handles the gory details of talking to the GPU itself (writing to proper registers, handling its memory directly, configuring outputs, and so on). Unfortunately most of what they're exposing can be only consumed by a single user of that GPU, which is why we need...
DRM and DRI (Direct Rendering Manager/Infrastructure) controls access to the GPUs, provides interfaces for talking to the GPU concurrently by multiple apps at once (without them breaking each other) and lets the system perform the most basic tasks like setting proper resolution and such if no userspace apps understand how to talk to the GPU exposed. DRI and DRM expose the GPU interfaces mostly as-is, not in a "vendor-neutral" portable way - if you don't have an application developed specifically for a GPU you have, it won't work.
"let's create a vendor-neutral interface for graphics so that apps can ignore the GPU-specific bits and get right to the drawing!" - which is what OpenGL is. User-space drivers implement the OpenGL specification and expose it as an OpenGL library to apps (like games, browsers, etc) instead of the GPU. Mesa is the most popular collection of open-source user-space drivers and contains a few user-space drivers for different GPU families: '''radeonsi''' for most modern AMD GPUs (and '''r600g''', r300g and others for older ones), '''i915/i965''' for old/new Intel GPUs and '''nouveau''' for Nvidia GPUs.
There's also Gallium, which is a bunch of utilities and common code shared among these drivers - if certain things can be done once and work everywhere, they'll land in Gallium and benefit all the drivers. Most Mesa drivers use Gallium (radeonsi, nouveau, software renderers), some don't (intel after gma950).
Displaying 2D windows supports device-specific 2D drivers as well, but nowadays most of these are no longer needed as the modesetting can handle most hardware on its own. As the DRM/DRI got some additional interfaces for what used to be hardware-specific (setting resolutions, refresh rates, etc) and software requiring accelerated 2D drawing was optimized OpenGL-based renderers, dedicated 2D acceleration is slowly going away. Since around 2012, the 3D part of the graphics card deals with 2D operations.
Modern GPUs can also decode video!? There's VDPAU (NVIDIA & AMD GPUs) and VA-API (AMD & Intel GPUs) that can also talk to the GPU exposed via DRM/DRI and issue proper commands to decode/encode a given video stream. Those drivers are GPU-specific too.
So let's say you have some example GPUs, here's how example stacks could look like:
* AMD Radeon HD8750: amdgpu -> DRM/DRI -> Mesa (radeonsi)
* AMD Radeon HD4850: radeon kernel driver -> DRM/DRI -> Mesa (r600g) -> games/apps/etc.
* NVIDIA GeForce 460: nouveau kernel driver -> DRM/DRI -> Mesa (nouveau) -> games/apps.
* Intel GMA950: i915 kernel driver -> DRM/DRI -> Mesa (i945) -> games/apps.
{| class="wikitable sortable" width="90%"
! width="15%" | Description
! width="15%" | Analog Output
! width="15%" | Digital Output
! width="15%" | Laptop LCD
! width=30%" | Comments
|-
| <!--Description-->Fudomi GC888A
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->1080p 100in throw projector
|-
| <!--Description-->Vamvo VF320 (720P)
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->720p 90in
|-
| <!--Description-->Happrun H1
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->1080p 90in
|-
| <!--Description-->Umbolite Magcubic HIPPUS HY320 Mini
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->720p 100in
|-
| <!--Description-->Zentality A10 Plus
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->720p 110in
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->nexigo nova mini
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->nebula mars 3
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->epson lifestudio flex plus portable projector
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->dangbei freedo
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->benq gv50
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
Unless your computer uses a Firewire chipset manufactured by Texas Instruments, FireWire interfaces are likely to act buggy.
AROS is unlikely to ever support FireWire.
Bluetooth is similarly unlikely to be ever supported due to huge cost to be certified.
No, x86 PCMCIA card.resource at the moment. Writing card.resource would be a similar amount of work to writing a typical driver. However, it might be complicated by having to support a variety of PCMCIA-controller chipsets like TI PCI1225, PCI1410, PCI1420, 1450, PCIxx12 and O2, etc. m68k card.resource does not really have many higher level functions, most functions are really simple or poke Gayle registers directly. only exception is CopyTuple(). Amiga card.resource has one significant flaw: it's single-unit. would need card.resource and pccard.library. There was talk in the past of designing a new API for PCMCIA because card.resource only supports one slot, but since most modern laptops only have one slot anyway, I think it might be worthwhile to implement card.resource as-is (at least as a first step). pccard.library would be trivial to port. So, a new API is needed.
k95yl6loxr7w5yzmbcso4nvhmrros46
4641121
4641120
2026-06-25T13:04:56Z
Jeff1138
301139
4641121
wikitext
text/x-wiki
Google translation into [http://translate.google.com/translate?hl=en&sl=auto&tl=de&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support German], [http://translate.google.com/translate?hl=en&sl=auto&tl=fr&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support French], [http://translate.google.com/translate?hl=en&sl=auto&tl=nl&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Dutch], [http://translate.google.com/translate?hl=en&sl=auto&tl=it&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Italian], [http://translate.google.com/translate?hl=en&sl=auto&tl=es&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Spanish], [http://translate.google.com/translate?hl=en&sl=auto&tl=hi&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Hindi],
[http://translate.google.com/translate?hl=en&sl=auto&tl=zh-CN&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Chinese Simplified],
[http://translate.google.com/translate?hl=en&sl=auto&tl=pl&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Polish],
[http://translate.google.com/translate?hl=en&sl=auto&tl=ru&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Russian],
{{ArosNav}}
[[#Audio Chipsets]]
[[#Graphic GFX Chipsets]]
[[#Rough gfx comparison]]
[[#]]
==x86 Native Environment==
AROS should run on almost any i386 PC hardware so long as the CPU is newer than an i486, and has a "Floating Point Unit (FPU)". Ideally around 700Mhz and above with at least 256MB of memory is recommended for desktops and around 1GHz and at least 256MB for laptops/notebooks/netbooks. For web browsing, etc above 1GB is usually needed and offers the option to run web browsers, media players and other hard disk heavy usage from RAM: disk.
Motherboards supported
* Most Intel mobos are supported (Skt 775 is ok but newer is better) - additional pci / pci-e cards may be needed for networking, audio, etc
* AMD based socket 939 am2 am2+ am3+, fusion and am4 ryzen based systems work but additional pci / pci-e cards may be needed
Supported graphics cards (gfx)
* Nvidia 2D and 3D 2005-2017.
64bit AROS Nouveau covers '''2D''' 8xxxgs and higher to GTX 900s and '''3D''' from .
32bit AROS supports '''2D''' from TNT through to fermi gtx5xx and '''3D''' acceleration fx5xxx to gtx4xx.
* Intel GMA 2D and 3D 2006-2009.
'''2D''' for many old netbooks and motherboards. '''3D''' for many early netbooks and motherboards
* AMD/ATI 2D only and '''no 3D'''. 1999-2005.
Desktop ie external monitor support only (no laptop internal support) for very early Radeon 7000 through to x600. Experimental 2D version for up to HD3xxx came later
* VESA 2D fallback modes for all graphic cards (GPUs) and with [http://www.youtube.com/watch?v=HKCHZFYj9Kk screen dragging].
It's worth noting however that support isn't guaranteed. Nor will potential power of a card reflect its performance under AROS.
Sound wise there are
* HDaudio support for onboard intel and AMD netbooks, ultrabooks, notebooks and motherboards (2005 to 2020)
* some AC97 codec support for very old motherboards and laptops (ie pre 2004)
* PCI and some PCI-E C-Media CMI8738 for desktop plugin cards
* PCI Creative Soundblaster EMU10K1 cards [http://amigaworld.net/modules/news/article.php?storyid=2512 SBLive]
* PCI semi professional some early VIA Envy24 desktop sound cards
* PCI Sound Blaster 128 aka SB16
Supported [http://en.wikibooks.org/wiki/Aros/Platforms/x86_Network_support network] which could be desktop, laptop, etc
* PCI-E Realtek rtl8169 which also includes the rtl8111 and rtl8110
* PCI Realtek rtl8139 and includes rtl8101 and rtl8100
* PCI intel pro100
* Broadcom 44xx 10/100 integrated in laptops around 2005
* VIA 10/100
* 3com Etherlink 10/100
* Realtek rtl8029 10mbit
Wireless wifi
* atheros 5000 wireless
*realtek 8187 usb
It is very hard to recommend a completely supported motherboard because as soon as newer motherboards arrive so their features change subtly, often introducing non supported parts like ethernet and audio. It is a moving target.
* mini-itx motherboard will only get you 1 pci or pci-e slot
* micro mATX or uATX will have more, typically 2 pci-e or pci slots which helps if any onboard features are not supported.
* full atx will have more slots available
'''N.B''' It is frustrating when a piece of hardware is not supported. Hardware documentation can run to over 100 pages and a lot of hardware do not have any public documentation anyway. Chips from different manufacturers for sound, graphics, SATA, etc. vary just as much, unless they follow a standard such as [https://github.com/acidanthera/AppleALC/wiki/Supported-codecs HDAudio codecs], AHCI etc.
Coding drivers is a far cry from Hello World programs or even a port of existing software. If you do actually want to try then get a hold of documentation on the relevant hardware and start there. Alternatively you could try to find some '''BSD''', MIT or MPL licence drivers as a point of reference. Please , do not think you can just adapt strings in a driver for different strings, it does not work that way. You will '''need''' to start from scratch for each new bit of hardware. Device driver programming require '''embedded''' skills, like manipulation of bits within registers, good debugging skills, dealing with interrupts, lots of patience, etc.
The following specific chipsets and drivers are also available - use Tools/PCITool to confirm Vendor and Product IDs - Please let us know any mistakes or any information to be added, to this General Chat list on [https://arosworld.org/ AROS World]
: Brief Timeline
: 2000-12-06 HIDD first mouse.hidd completed ([http://msaros.blogspot.com/ Michal Schulz])
: 2001-03-31 BOOT first boot from floppy disk with IDE device
: 2001-10-30 BOOT first cd bootable version
: 2002-01-27 HIDD first pci.hidd added (Michal Schulz)
: 2002-04-13 BOOT software HDToolBox added ()
: 2003-04-03 HIDD vesa2.hidd graphic modes added ()
: 2004-03-08 HIDD new pci and ata (pata) devices worked on (Michal Schulz)
: 2004-03-17 HIDD nVidia 2D driver appears (Michal Schulz)
: 2005-01-05 AHI AHI v6 audio system ported (Martin Blom)
: 2005-01-06 AHI SBLive SoundBlaster Live driver ported (Georg Steger)
: 2005-02-04 AHI AC97 playback only driver added (Michal Schulz)
: 2005-06-27 NIC amiTCP stack ported with 3com, NE2000, prism2 drivers (Neil Cafferkey)
: 2005-08-25 NIC nForce2 support added (Michal Schulz)
: 2005-12-24 NIC Intel Pro100 network driver added (Neil Cafferkey)
: 2006-03-25 HIDD ATI radeon 2D driver added (Michal Schulz)
: 2007-03-06 HIDD vesa 1.0 video driver added (Pavel Fedin)
: 2007-03-08 HIDD dospackets and FAT filesystem (Rob Norris)
: 2007-03-21 HIDD usb initial commit (Michal Schulz)
: 2007-10-01 BOOT Installer added (Neil Cafferkey)
: 2007-11-29 PORT 64bit x86 added (Michal Schulz)
: 2008-04-12 BOOT GRUB2 added (Alain Greppin and Nick Andrews)
: 2008-08-26 NIC RTL8139 added ([http://kalamatee.blogspot.com/ Nick Andrews])
: 2008-10-22 PORT to SAM440ep (ppc) (Michal Schulz)
: 2009-02-25 PORT to efika (ppc) (Michal Schulz)
: 2009-05-18 HIDD poseidon usb2.0 stack ported to AROS (Chris Hodges)
: 2009-11-18 NIC RTL8169 network driver arrived (Nick Andrews and [http://pagesperso-orange.fr/franck.charlet/oldnews.html Franck Charlet])
: 2009-12-23 AHI HDAudio based Atom CPU and netbook audio driver arrived (Davy Wentzler)
: 2010-03-09 BOOT USB pendrive stick booting available (Neil Cafferkey)
: 2010-05-26 HIDD Intel GMA900 2D graphics card support (Michal Schulz)
: 2010-09-03 NIC Wireless PCI based NIC arrived (Neil Cafferkey)
: 2011-04-30 HIDD Nvidia 2D and 3D nouveau graphics card support (Deadwood)
: 2011-08-30 HIDD Radeon 2D enhanced AMD driver arrives (Bearsoft)
: 2011-09-17 NIC Wireless USB realtek arrives (Neil Cafferkey)
: 2011-12-09 HIDD Intel 945G 3D Gallium graphics support (Sami)
: 2013-02-25 AHI AC97 VIA 686 audio support (Davy Wentzler and Neil Cafferkey)
: 2013-03-31 PORT early Raspberry PI native support (Nik Andrews)
: 2014-01-16 AHI Envy24 audio chipset support (Davy Wentzler and Neil Cafferkey)
: 2017-02-17 PORT Symmetric MultiProcessing smp added for x86 64bit (Michal Schulz)
: 2018-10-20 PORT Big Endian ARM
: 2021-11-26 NIC Broadcom 44xx ethernet (Neil Cafferkey)
: 2023-01-12 NIC Nvidia MCP61 ethernet (Neil Cafferkey)
: 2025-11 HIDD xHCI USB3 and isoc (Nik Andrews)
[[#top|...to the top]]
===Audio Chipsets===
'''If sound beeps in AHI prefs after Music set then some support is there. Select more than one channel for multiple audio streams, set frequency up to 44 kHz or higher and set the volume if not already set. Ensure you set the music unit 0 to 3 which allows the extra features of the audio card like microphone, line-out, etc).'''
====1996-2000 sb128.audio aka SB16 PCI====
*2021 5.27
as per CREATIVE's website, the model number is the first two digits on the front and first two digits on the back. my card says CT4810 and 161TK110B 995; this translates to CT4816 as the model.
The original AudioPCI 3000 card with the ES1370 had a master clock crystal for 44.1 kHz (22.5792 MHz), used an AKM codec (AK4531, non-AC97) and had 4 channel output; Creative later modified the design with a crystal for 48 kHz (24.576 MHz) and Sigmatel AC97 codec (a CT4700 SB128 with a CT5507 chip, AK4531, 22.5792 MHz crystal and TDA7360 speaker power amp). The issue with these cards involved never quite eliminate the effects of resampling on the 64V, it also shows signs of undersized coupling caps. These Ensoniq cards automatically engaged headphone amplifier (with a 4565 opamp).
Porting involved [http://repo.or.cz/w/AROS.git/commit/b60abd12967144a844980c422ea9e99c056eabca 40897], [http://repo.or.cz/w/AROS.git/commit/b7d6511fca6430a63fbaaa390b4f51bf0203a460 40898 configure], [http://repo.or.cz/w/AROS.git/commit/f51034cd22759a4ec3a2547bddb3a7169d956eaa 40900 bugs], [http://repo.or.cz/w/AROS.git/commit/4f43fc38e3489ea45d12b7b5ba6fff50b69c5746 40901 further bugs], [http://repo.or.cz/w/AROS.git/commit/d23c78aec75f049484b6916d27b6804ce858bb2c 40913 memory IO fixes], [http://repo.or.cz/w/AROS.git/commit/d256860fe3035016952e88d143c6f2611997f2f3 40914 irq fix].
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| Ensoniq AudioPCI 1000
| 0x1274
| 0x5000
|
| {{unk}}
| {{unk}}
| untested - es1370 (u?) AK4531 (u?)
|-
| Ensoniq AudioPCI
| 0x1274
| 0x5000
| 0x00
| {{yes}}
| {{maybe}}
|
|-
| CT4700 Sound Blaster PCI 64 (audioPCI 3000)
| 0x1274
| 0x5000
| 0x7c
| {{yes}}
| {{maybe}}
| works - opamp JRC4565(u?) [http://en.wikipedia.org/wiki/Ensoniq_ES1370 es1370] (u?)
|-
| CT4750 Sound Blaster 64/PCI
|
|
|
| {{unk}}
| {{unk}}
| untested - 4565-1056W (u1) stac9708t(u2) [http://arstechnica.com/civis/viewtopic.php?f=6&t=916891 ct5880-dcq] (u3) 24wc012 (u4)
|-
| CT4751 (SB128PCI)
| 0x1274
| 0x8001
|
| {{unk}}
| {{unk}}
| untested - [http://en.wikipedia.org/wiki/Sound_Blaster#Ensoniq_AudioPCI-based_cards es1371] (u?)
|-
| CT4810 Creative AudioPCI64V
| 0x1274
| 0x1371
| 0x06
| {{yes}}
| {{maybe}}
| works
|-
| CT4811 (SB Vibra 128)
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4812 (Vibra 128)
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4813
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4815
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4816 es1373 (vibra 128)
|
|
|
| {{unk}}
| {{unk}}
| untested but this card has creative's ES1373 as the main chip(U1). it is also different from the other CT4810 (vibra128) in that it does not have a second chip in U2 position. Also there is only one jumper JP1 (2X3).
|-
| CT5801 HP
|
|
|
| {{unk}}
| {{unk}}
| untested - es1373 (u3)
|-
| CT5803 Gateway
| 0x1274
| 0x1371
| 0x08
| {{yes}}
| {{maybe}}
| works 4565-0005b jrc (u1) 4297a-jq ztae0c0002 (u2) es1373 (u3)
|-
| CT4740
| 0x1274
| 0x1371
| 0x08
| {{yes}}
| {{yes}}
|
|-
| CT5805 Compaq OEM Premier Sound Presario 7
|
|
|
| {{unk}}
| {{unk}}
| untested - es1373 (u3)
|-
| CT5806 (Sound Blaster AudioPCI 128D)
|
|
|
| {{unk}}
| {{unk}}
| untested - 4297A-JO EP (u?) ZTAPWC9933 (u2) es1373 (u3)
|-
| CT5807 Dell OEM Dimension 8100
|
|
|
| {{unk}}
| {{unk}}
| untested - es1373 (u?)
|-
| CT5808
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4730 Sound Blaster AudioPCI 64V Ectiva EV1938
| 0x1102
| 0x8938
|
| {{unk}}
| {{unk}}
| untested
|-
| CT5880 on various motherboards
| 0x1274
| 0x5880
|
| {{unk}}
| {{unk}}
| untested [http://www.xbitlabs.com/articles/mainboards/display/ga-6rx.html Gigabyte GA-6RX] (VIA ApolloPro 266 2001], Gigabyte GA-6VM7-4E mobo, [http://active-hardware.com/english/reviews/mainboard/ga-7vtx.htm Gigabyte GA-7VTX] (KT266 2001), Gigabyte [http://www.amdboard.com/gigabytega7vtxh.html GA-7VTXH] (KT266A 2001), [http://www.amdboard.com/gigabytega7vrxp.html Gigabyte 7VRXP] mobo (KT333 2002), MSI MS-6309, MS-6318, MS-6337 (815E Pro), MS-6339 (850Pro) and MS-6340, PCChips Motherboard M571 TXPRO, Soltek SL-65ME+,
|-
| VMware Virtual Workstation(TM)
| 0x1274
| 0x1371
| 0x02
| {{Yes|but not Hi-Fi modes}}
| {{maybe}}
| works
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
<pre>
Revision 0x04 = ES1371 REV_ES1373_A
Revision 0x06 = ES1371 REV_ES1373_B
Revision 0x07 = ES1371 REV_CT5880_A
Revision 0x02 = CT5880 REV_CT5880_C
Revision 0x03 = CT5880 REV_CT5880_D
Revision 0x04 = CT5880 REV_CT5880_E
Revision 0x09 = ES1371 REV_ES1371_B
Revision 0x00 = EV1938 REV_EV1938_A
Revision 0x08 = ES1371 REV_ES1373_8
</pre>
====1999-2001 via-ac97.audio====
*2021 5.10
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| <!--Description-->694X with 686A KT133 PM133 or 693A with VT8231
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3058
| <!--Revision-->
| <!--Playback-->{{Yes| }} redirects earphones correctly
| <!--Recording-->{{Yes| }}
| <!--Comments-->audio controller works but depends on the underlying invisible codec used see AC97 section
|-
| <!--Description-->686B KT133A with VT8231
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3058
| <!--Revision-->0x50
| <!--Playback-->{{Yes|}} reroutes ear pieces right
| <!--Recording-->{{Yes|}}
| <!--Comments-->audio controller works but depends on the underlying codec used see AC97 section below
|-
| <!--Description-->686C
| <!--Vendor ID-->0x1106
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->untested
|-
| <!--Description-->KM266 or KT266 with VT8233, KT266A with VT8233A, VT8233C
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3059
| <!--Revision-->0x10
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->KM333 KT333 with VT8235
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3059
| <!--Revision-->0x30
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
| <!--Description-->KM400 KT400 with VT8237, KT600 with VT8237R,
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3059
| <!--Revision-->0x40 0x50 0x60
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
|}
====1998-2003 emu10kx.audio - Creative Labs SoundBlaster Live! and Audigy====
*2021 6.5
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| PCI512 CT4790 (emu10k1)
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested (1st Gen)
|-
| Live CT4620
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Live CT4760
| 0x1102
| 0x0002
| 0x07
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| playback works
|-
| Live Value CT4670
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| works plays stereo (2nd Gen)
|-
| Live Value DELL CT4780
| 0x1102
| 0x0002
| 0x06
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| plays/records stereo - untested 4.1mode
|-
| Live Value Compaq CT4830
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{Maybe}}
| <!--Recording--> {{unk}}
| not working
|-
| Live Value CT4831
| 0x1102
| 0x0002
| 0x00
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Live Value CT4832
| 0x1102
| 0x0002
| 0x07
| <!--Playback--> {{yes}}
| <!--Recording--> {{partial|Line-In only}}
| works
|-
| Live Value CT4832
| 0x1102
| 0x0002
| 0x08
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| works
|-
| Live Value HP CT4870
| 0x1102
| 0x0002
|
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| Works
|-
| Live Value Gateway CT4871
| 0x1102
| 0x0002
|
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Live! Platinum 5.1 SB0060
| 0x1102
| 0x0002
| 0x00
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
| plays audio/records, untested 5.1 (3rd Gen)
|-
| Live 5.1 SB0100 -SFF
| 0x1102
| 0x0002
| 0x00
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| works
|-
| Live 5.1 Player SB0220
| 0x1102
| 0x0002
| 0x0a
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
| plays audio/records stereo, untested 5.1
|-
| Live 5.1 Digital SB0228
| 0x1102
| 0x0002
| 0x0a
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
| working
|-
| Audigy SB0090 (emu10k2)
| 0x1102
| 0x0004
|
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| <!--Description-->Audigy SB0230
| <!--Vendor ID-->0x1102
| <!--Product ID-->0x0004
| <!--Revision-->0x03
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Yes|Mic only}}
| <!--Comments-->5th Dec 2012 - untested optical tos link. contains also IEEE1394/Firewire (untested)
|-
| Audigy 2 Platinum 6.1 SB0240 SB0250 EMU10K2.5
| 0x1102
| 0x0004
| 0x04
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| works
|-
| Audigy 2 PRO SB0280 EMU10K2.5
| 0x1102
| 0x0004
|
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Audigy 2 ZS SB0350
| 0x1102
| 0x0004
| 0x04
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
|
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| Live 5.1 DELL SB0200 SB0203 emu10kx
| 0x1102
| 0x0006
| 0x0
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
|
|-
| Live 24bit SB0410
| 0x1102
| 0x0007
| 0x
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Live 24bit DELL SB0413
| 0x1102
| 0x0007
| 0x
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy LS SB0310
| 0x1102
| 0x0007
| 0x0
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy SE 7.1 SB0570
| 0x1102
| 0x0007
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 2 ZS SB0320 SB0360 (PRO)
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 2 VALUE SB0400
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 4 VALUE SB0610
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 4 PRO SB0380
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| EMU E-MU 0404 PCI (not USB) EM8852
| 0x1102
| 0x000
| 0x0
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver but linux support needs firmware
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
the green jack is for the main speaker pair AND headphones, so manual switching will be required
If your card is wired for the "AC97" standard, then it's up to your headphone jack to switch the green speaker output in and out
the headphone jack has Normally-closed contacts that will open on insertion, which breaks the signal path back to the sound card (FP_RETURN)
====2000-2010 cmi8738.audio - C-Media====
*2021 5.20
;Read [http://amigaworld.net/modules/news/article.php?storyid=2512 more] and imported on [http://repo.or.cz/w/AROS.git/commit/aff741d60160c6a9d7d39c9e004a25ea3aa13847 20th July 2011] and [http://alsa.opensrc.org/Cmipci alsa docs].
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| Audiotrak MAYA EX5
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| cmi8738-sx 4ch
| 0x13f6
| 0x0111
| 0x10
| <!--Playback-->
| <!--Recording-->
| untested
|-
| e3dx hsp56 CMedia 8738-sx 4ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| EDio SC3000D 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Genius SoundMaker Value PCI C3DX
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Guillemot Maxi Sound Muse
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Hercules Gamesurround Muse LT
| 0x13f6
| 0x0111
| 0x10
| <!--Playback--> {{yes}}
| <!--Recording--> {{no}}
|
|-
| Hercules Gamesurround Muse XL LT 5.1
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Inno audio extreme 5.1 cmi8738/lx pci 6ch
| 0x13f6
| 0x0111
| 0x
| <!--Playback-->
| <!--Recording-->
| untested
|-
| M-Audio (Midiman) DiO 2448
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Sabrent SBT-SP6C 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| StarTech PCISOUND4CH 8738sx 4ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Sweex SC012 CMI8738-lx 4ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Terratec 5.1 PCI
| 0x13f6
| 0x0111
| 0x10
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Terratec Aureon Fun 5.1
|
|
|
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| Has SPDIF
|-
| Trust Sound Expert Digital Surround 5.1 (cm8738-mx 6ch)
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Turtle Beach Riviera CMI8738-MX 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| XSonic CMI 8738 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->CMI8738 6ch PCI-E PCI Express version
| <!--Vendor ID-->0x13f6
| <!--Product ID-->0x0111
| <!--Revision-->0x10
| <!--Playback-->{{Yes|}}
| <!--Recording-->{{Maybe|}}
| <!--Comments-->Chinese based card with playback tested so far
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
====2001-2005 ac97.audio====
*6.4 27-12-2008
The AC97 chips were designed to be pinout interchangeable so that the sound support could change easily and quickly without motherboard redesigns
the green jack is for the main speaker pair AND headphones, so manual switching will be required
If your card is wired for the "AC97" standard, then it's up to your headphone jack to switch the green speaker output in and out, the headphone jack has Normally-closed contacts that will open on insertion, which breaks the signal path back to the sound card (FP_RETURN)
The ProductID and VendorID are for the audio controller only - the important additional codec is '''NOT''' so easily identified.
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| <!--Description-->Avance Logic (now Realtek) ALC100 and ALC101 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->ALC200 and ALC201 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->ALC201A and ALC202 and ALC202A codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->ALC650
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| <!--Comments-->most Nforce2 boards plays audio only - Abit NF7, Asus A7N8X, MSI K7N2, Epox 8RDA+, DFI
|-
| <!--Description-->ALC850 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{No}}
| <!--Comments-->no support for via P4P800 chipset on ASUS A8V-E SE Deluxe mobo - ICaros 1.3
|-
| <!--Description-->Realtek ALC653 codec and ALC655 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested Acorp 7NFU400
|-
| <!--Description-->Realtek ALC658 codec ALC658D
| <!--Vendor ID-->0x8080
| <!--Product ID-->0x24c5
| <!--Revision-->0x0
| <!--Playback-->{{Yes|Prefs Music and Units 0-3 set volume control - playback}}
| <!--Recording-->{{No}}
| <!--Comments-->MSI Motherboard on NB 22-09-2012
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->AD1881 SoundMAX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->Analog Devices first AC97
|-
| <!--Description-->AD1881A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Yes}}
| <!--Revision-->
| <!--Comments-->works with VIA Controller - untested Intel etc
|-
| <!--Description-->AD1881B
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1885 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{No}}
| <!--Comments-->Playback only with issues on D845HV but not working on MS-6367 because Units 0-3 have masked volume control
|-
| <!--Description-->AD1886
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1887
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->ADI AD1888 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{no}}
| <!--Recording-->{{No}}
| <!--Comments--> Icaros 1.51
|-
| <!--Description-->AD1980 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->AD1981A codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested IBM X30
|-
| <!--Description-->Analog Devices SoundMax(TM) AD1981B codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| <!--Comments-->plays back only on IBM T41 Thinkpad
|-
| <!--Description-->AD1985 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{No}}
| <!--Comments-->not working ahi prefs freezes on D865GLC mobo ([http://www.xbitlabs.com/articles/multimedia/display/int-sound2_3.html ]
|-
| <!--Description-->AD1986 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{No}}
| <!--Comments-->untested [http://uk.ts.fujitsu.com/rl/servicesupport/techsupport/Boards/Motherboards/Fujitsu/D1931/D1931.htm D1931] but works (Acer Aspire 3610 laptop)
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->Crystal Semiconductors CS4205, CS4202 codecs
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Cirrus Logic CrystalWare 4236
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->Cirrus Logic CrystalClear SoundFusion CS4297 CS4299 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested IBM T23
|-
| <!--Description-->conexant Cx20468-31 codec (id 30)
| <!--Vendor ID-->0x103c
| <!--Product ID-->0x3085
| <!--Revision-->
| <!--Playback-->{{No|AC97 appears in AHI Prefs}}
| <!--Recording-->{{No}}
| <!--Comments-->Tested AspireOS 1.8 on Gateway W322
|-
| <!--Description-->ESS Technology ES1921 AC'97 2.1
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->CMI 6501 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested on ASROCK SKT-AM2 AM2NF3-VSTA
|-
| <!--Description-->codec CMI9738
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->codec CMI9739
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->C-Media CMI 9739A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments--> untested on EPoX 8RDA3+
|-
| <!--Description-->CMedia CMI 9761A codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested ASRocK K7NF2-RAID
|-
| <!--Description-->C-Media CMI9880
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->National Semi conductor (now TI) LM4540, LM4543, LM4545, LM4546, LM4548, LM4549, LM4550 LM4560
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->STAC9708T codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->SigmaTel (now IDT) C-Major STAC 9460 (D/A only), 9461, 9462, 9463, 9200, 9202, 9250, 9251, 9220, 9221, 9223, 9750
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AKM (Asahi Kasei Microsystems) AK 4540, 4543, 4544A, 4545
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->codec VT1616 (VIA Six-TRAC Vinyl Audio)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->VIA VT1612, VT82C686
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->ESStech ESS ES1968 maestro-2
| <!--Vendor ID-->0x125d
| <!--Product ID-->0x1968
| <!--Revision-->0x
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->ESStech ESS ES1978 maestro2e
| <!--Vendor ID-->0x125d
| <!--Product ID-->0x1978
| <!--Revision-->0x
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->ESStech ESS ES1988 maestro3 allegro-1 codec
| <!--Vendor ID-->0x125d
| <!--Product ID-->0x1988
| <!--Revision-->0x12
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->Yamaha AC97 ymf-743 YMF752 YMF753 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->{{No}}
| <!--Comments-->untested ymf-753
|-
| <!--Description-->YMF724 YMF744 YMF-754 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| SIS 7018 / Trident 4dwave DX/NX / ALi 5451
| 0x1039 (0x1023 Trident)
| 0x7018 (0x2000 Trident DX) (0x2001 Trident NX)
| 0x02
| <!--Playback-->{{No}}
| <!--Recording-->{{No}}
| no support - introduced early 2000s
|-
| SIS 7012
| 0x1039
| 0x7012
|
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| working through 1 speaker only took over from SIS7018 (2002 onwards)
|-
| <!--Description-->Wolfson (now Cirrus Logic) WM9701, WM9701A (AC'97 1.03 spec), WM9703, WM9704 (AC'97 2.1), WM9705, WM9706, WM9707, WM9708
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->WM9709, WM9710, WM9711, WM9712, WM971
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->first Microsoft(TM) Xbox DAC sound chip (AC Link compliant D/A converter)
|-
| <!--Description-->Wolfson WM9717
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| Parallels
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested
|-
| VirtualBox
|
|
|
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| working
|-
| VirtualPC
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested
|-
| <!--Description-->Intel 82801AA Proxmox
| <!--Vendor ID-->0x8086
| <!--Product ID-->0x
| <!--Revision-->
| <!--Playback-->{{unk| }}
| <!--Recording-->{{unk| }}
| <!--Comments-->
|-
|}
====2005-20xx HDAUDIO.audio====
*6.36 2025 [https://github.com/aros-development-team/AROS/commit/43b33a9280b10963ca659de2cc3d1cf289b43a87 reset handler]
*6.35 202 []
*6.34 2019 AROS One 1.5 upwards
*6.29 2018
*6.27 2017 update
*6.25 2014 used for most Icaros 2.x
*6.20 July 2012
*6.17 Nov 2011
*6.15 Jun 2011
*[http://www.clusteruk.com/SitePortalPage.aspx?siteid=1&did=109 6.13] Sep 2010
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="5%" |Vendor ID
! width="5%" |Product ID
! width="5%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| <!--Description-->ALC260
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| <!--Description-->ALC262
* ALC262-VD2-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->LQFP-48
|-
| ALC268 codec
| 0x
| 0x
| 0x
| <!--Playback-->{{Yes|Version 6.17 Acer AOA110 and AOA150 netbooks), works (Dell Mini Inspiron 9 and 10v, }}
| <!--Recording-->{{Yes|Version 6.17 remove QUERY and select 'Mic 1' as input. Tested with 6.15 as well using QuickRecord and AE 4.0.23 under Icaros 1.4.}}
| <!--Comments-->AHI UNITS and Music are set to: hdaudio:HiFi 16 bit stereo++ / Frequency 48000 Hz, Volume +0.0 dB. The hdaudio.config in SYS:Prefs/Env-Archive is WITHOUT the QUERY-line. After changing and saving the config-file turn off and start again the computer. Switch from internal loudspeaker to headphone you must turn off the music before plug in the headphone-cable, otherwise there is no output on the socket. Back from line-out to internal speakers it is the same.
|-
| [http://blog.foool.net/wp-content/uploads/linuxdocs/sound.pdf Linux docs ALC269]
* ALC269Q-GR
* ALC269QSRS-GR
* ALC269W-GR
| 0x
| 0x
| 0x
| <!--Playback-->{{Maybe| }}
| <!--Recording-->{{Unk| }}
| <!--Comments-->TQFP 48 pin Power IC Chip From [https://patchwork.kernel.org/project/alsa-devel/patch/1408118123-15849-1-git-send-email-tiwai@suse.de/ ALC269 & co have many vendor-specific setups with COEF verbs, result in the codec stalling]
|-
| [http://www.alsa-project.org/db/?f=0321f8479fd670cd510f9912b1120fe7edcf2e07 ALC269VB]
* ALC269Q-VB5-GR
* ALC269Q-VB6-CG
* ALC269Q-VB6-GR
| 0x10ec
| 0x0269
| 0x100004, 0x100100, 0x100202
| <!--Playback-->{{Maybe|some versions work}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* v1 works Asus eee PC netbook 901/1000HA 1005HA/1008HA, 1001P,
* v2 maybe working Lenovo S9 S10 S10-2 S10-3 under HDAudio version 6.13
* v3 maybe dell wyse 7010
|-
| [http://alsa-project.org/db/?f=9c1746c5957b0ce72ff9cfffa312e97d14baf785 ALC269VC aka ALC3202]
* ALC269Q-VC2-GR
* ALC269Q-VC3-GR
| 0x10ec
| 0x0269
| 0x100203,
| <!--Playback-->{{Maybe|some versions work}}
| <!--Recording-->{{Unk}}
| <!--Comments-->SMT SMD QFN-48 -
* v1 unknown
* v2 unknown
* v3 x230, dell wyse,
|-
| ALC272
* ALC272-VA4-GR
| 0x10ec
| 0x0272
| 0x0
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Unk}}
|
* works Acer AOD150 and Acer AOD250 works [http://amigaworld.net/modules/newbb/viewtopic.php?topic_id=33755&forum=28#616910 Samsung NP-NC10], works Samsung NF210-A02] netbooks,
|-
| <!--Description-->ALC273
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| <!--Description-->ALC270
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC282
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x
| <!--Revision-->
| <!--Playback-->{{No|Version 6.17}}
| <!--Recording-->{{No|Version 6.17}}
| <!--Comments-->needs retest
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC660 ALC660-VD
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes| }}
| <!--Recording-->
| <!--Comments-->
* works asus F9s, F9e
* untested asus w7j, M51SN, A6Tc, A8Sr,
|-
| <!--Description-->ALC661-GR (2011)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| ALC662
| 0x1043
| 0x82a1
| 0x0
| <!--Playback-->{{Yes|Version 6.17 if QUERY added to top of hdaudio.config}}
| <!--Recording-->{{No|Version 6.17 not working for eee pc 900}}
|
* works Asus eee PC netbook 700/701/900, Atom 270 and 330 mobos, odd clicks (D410 NM10 PineTrail),
|-
| <!--Description-->[http://outpost.fr/rmaa/ALC663.htm ALC663]
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0861
| <!--Revision-->
| <!--Playback-->{{No|Version 6.13}}
| <!--Recording-->{{Unk}}
| <!--Comments-->not bad output like headphone amp part of the codec actually works well but messed up by undersized coupling capacitors to actually support such a low impedance
* not working Asus n50vn x71vn,
|-
| <!--Description-->ALC665
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC666
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC667
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC668
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC670
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->ALC880
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->some 915 and 925 chipset mobos
|-
| <!--Description-->ALC882M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| Realtek ALC883 ALC883-GR ALC883D-GR ALC883DTS-GR ALC883DD-GR codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe|some early versions work }}
| <!--Recording-->{{Unk| }}
| 2005 to 2007 HD Audio codec untested (Asus ),
|-
| Codec ALC885
| 0x10ec
| 0x0885
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
|-
| ALC888
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
|
|-
| ALC888s
* ALC888S-VD2-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}} MSI Wind U90/U100,
| <!--Recording-->{{Unk}}
| LQFP-48
|-
| ALC888b
| 0x8086
| 0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| untested (D510 NM10 Dual Core PineTrail mobo),
|-
| ALC888-VD
| 0x8086
| 0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| untested
|-
| ALC889A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes|works if QUERY added to the top of hdaudio.config in Prefs drawer/directory}}
| <!--Recording-->{{Unk}}
|
|-
| ALC889 Gr
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}} with crackles
| <!--Recording-->{{Unk}}
|
|-
| ALC889
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
| Tested with MSI H55 board
|-
| ALC887 ALC887-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
|
* working on ASUS P5KPL/EPU and Gigabyte GA-E350N-Win8 Rev1.0
|-
| ALC887-VD-CG
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0887
| <!--Revision-->0x100302
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}} Subsystem Id: 0x1458a002
|
|-
| ALC887-VD
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0887 0x1458
| <!--Revision-->0xa002
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{Unk}} index = 2
| ALC887 does not have any volume control ability on the mixer NIDs, so put the volume controls on the dac NIDs instead
* working with intermittent corrupting pop popping skipping stuttering sound issues MSI 760GM-P23 (FX),
* not working Gigabyte H61MA-D3V, AT3IONT-I Deluxe,
|-
| ALC887-VD2
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
| 3jacks
|-
| ALC887-VD2-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
|-
| ALC887-
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
|
|-
| ALC892-CG rev
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| 2011 48-pin LQFP Green package -
|-
| ALC892 ALC892-DTS-CG rev
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
| 2009 introduced
* works
* not working
* untested
|-
| ALC892 rev
| <!--Vendor ID-->0x0x10ec
| <!--Product ID-->0x0892
| <!--Revision-->0x100302
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| 2014
|-
| Realtek ALC886-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| LQFP-48
|-
| Codec ALC861 ALC861-VD
| 0x10ec
| <!--Product ID-->0x0663
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
|
* not working Toshiba Tecra A7
|-
| <!--Description-->ALC1200
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| ALC898
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
| not working
|-
| <!--Description-->ALC1500
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC3232 (aka ALC292)
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0292
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC3234 aka ALC255
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0255
| <!--Revision-->003
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC3287 aka ALC257
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes| }}
| <!--Recording-->{{no| }}
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->AD1882
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1883 HD Codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1884
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| Analog Devices SoundMAX AD1981
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| IBM Thinkpad T60,
|-
| AD1984 hp-m4 codec
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
* audio not working on Lenovo X61, Thinkpad T61,
|-
| AD1986
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
|
|-
| AD1988
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
|-
| <!--Description-->AD1988A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->Cirrus Logic CS4207
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->
| <!--Recording-->
|
|-
| <!--Description-->Cirrus Logic CS4208
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->
| <!--Recording-->
|
|-
| <!--Description-->Conexant CX20549 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe|very very very low volume}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested Fujitsu Amilo SI 1510 1520 no datasheet for the general public
|-
| <!--Description-->Conexant CX20549-12Z codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested HP 530
|-
| <!--Description-->Conexant CX20561 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* working lenovo x200s
* untested Lenovo Essential G555 Notebook, HP Pavilion dv6700,
|-
| <!--Description-->Conexant CX20582 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX2059x CX20590 CX20594-21Z codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX20585 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* working Lenovo Thinkpad T410,
|-
| <!--Description-->Conexant CX20672 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX20671 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX20751-21Z codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes| }}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| <!--Description-->Conexant CX11852 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX11880 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant after 2015 up to 2018 CX7501 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{no|no driver codec}}
| <!--Recording-->{{no|no driver codec}}
| <!--Comments-->Conexant bought by synaptics 2019
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->C-Media CMI9880 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->Gigabyte GA-8GPNXP
|-
| <!--Description-->Silicon Labs 3054
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| VIA 1708A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| untested,
|-
| VIA VT1708B
| <!--Vendor ID-->
| <!--Product ID-->
| 0x0010
| <!--Playback-->{{No|VIA PicoITX}}
| <!--Recording-->{{Unk}}
|
|-
| VIA 1708S
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
|
|-
| <!--Description-->VT2021 10ch
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->Gigabyte Z77MX-D3H, GA-H61M-S2H S2P,
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Creative CA0110-IBG
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->SigmaTel STAC 9220 9221 9223 8ch (7+1)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| <!--Comments-->ECS 945GCT/M-1333 (version 3.0),
|-
| IDT SigmaTec [http://explorer.cekli.com/articles/pdf/hd-audio STAC9227] /28/29/30 codec
| <!--Vendor ID-->0x8384
| <!--Product ID-->0x7626
| <!--Revision-->0x0002
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Unk}}
|
* works HP Compaq mini 110
* untested HP Pavilion HDX9000 CTO Notebook, Intel DG33TL mobo, Dell E520, Intel DP35DP mobo, Dell E6410 Laptop,
|-
| IDT (formerly SigmaTel) IDC STAC 9271/71D
| <!--Vendor ID-->0x8384
| <!--Product ID-->0x7626
| <!--Revision-->0x0002
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
|
|-
| <!--Description-->IDC STAC 9272 9273 9274
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->Intel D5400XS,
|-
| <!--Description-->IDT 92HD73C
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes}}
| <!--Recording-->
| <!--Comments-->headphones only Asus AT4NM10 mobo
|-
| <!--Description-->IDT 92HD75B
| <!--Vendor ID-->0x111d
| <!--Product ID-->0x7608
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* working [http://koti.kapsi.fi/jvaltane/aros/hdaudio/ HP Compaq Mini 700 Netbook - feedback required]
* untested HP Mini 5103 and 5102, HP Compaq 610, HP ProBook Laptop 4520s 4525s 6450b 6550b 6555b, HP EliteBook 2540p 2740p 8440p, Mobile Workstation 8540w 8740w, Pavilion NoteBook DV8,
|-
| <!--Description-->IDC 92HD81XX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC 92HD83XX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC STAC 92HD89XX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Wolfson (now Cirrus Logic) WM8850
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Wolfson WM8860
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->Intel High Definition Audio Revision 1.0. - 4-Channel DAC, 4-channel ADC. - DAC sampling
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
Using Prefs/AHI ensure you set the music unit and at least Units 0 (where most audio comes from) in top left drop down menu to HDaudio - HIFI in the section below. Set Units 1 or 2 to microphone or other outputs. Plus allow more than one channel for multiple audio streams and set frequency up to 44 kHz or higher on the right hand side of the ahi prefs. If sound beeps when you press the test button then all should be OK.
Output <- Codec <- Audio Controller (HDA) <-> Computer
codecs and exact hardware identifier. As mentioned above, HDA is only part of the work here, it gets the audio out of the main chipset in digital format (on a bus called I2S). This is not enough, there is another step needed which is routing that I2S signal to the output, converting it to actual audio, amplifying it, etc. This is handled by a separate chip called a "codec". Sometimes it is initialized by the BIOS, but this is not always the case.
Most audio drivers are made up of two parts a [http://www.kernel.org/doc/Documentation/sound/alsa/HD-Audio.txt Controller + a Codec]. The ProductID and VendorID are for the audio controller only - the important additional codec is '''NOT''' so easily identified.
Some newer versions of codecs are missing at the moment.
Things to try if sound not working
* try to connect something to the audio jack, maybe it is not playing on internal speakers or vice versa
* make sure you try and select all music units e.g. unit0, unit1....
* even if PCI ID's are in Prefs/Env-Archive/HDaudio.config, this doesn't mean it is working, it is the codec that matters
* it might be internally muted
<pre>
add debug=memory to grub boot line - continue booting with F10
Open a shell
Tools/Debug/Bifteck > RAM:audio.txt
</pre>
or
<pre>
Open a shell
Tools/Debug/Sashimi > RAM:audio.txt
Run ahi prefs
Click test tone button
Stop sashimi with Ctrl-C
</pre>
If the boot sound is enabled, you have to use Bifteck to capture AHI debug output. In the GRUB menu, press E on your selected entry, then add "debug=memory" to the options (alongside ATA=, vesa= etc.). Then F10 or Ctrl-X to boot. Once booted, run Tools/Debug/Bifteck again.
or
* try adding QUERYD to the start of ENVARC:hdaudio.config file (also known as Prefs/Env-Archive/) ie. on the first line
* '''OR''' try removing QUERY and QUERYD from the start of the hdaudio.config file
* Reboot
* open a shell
* type: sys:tools/debug/sashimi > ram:debug.txt
* open ahi prefs
* select one of the audio modes - HIFI or otherwise
* press the 'test sound' button
* press ctrl-c in the shell
* post the results to Aros-World
The HD Audio standard was designed to be hardware pinout interchangeable so that the sound support could change easily and quickly. HDA is a standard around particular chips. Each kind of chip has a certain number of DACs and pins, and even the same chip could be hooked up in different ways on different motherboards. The chips are programmable and the operating system can adjust how things are routed. Some pins aren’t even hooked up, so it makes no sense to route sound to them. Also some pins have sensors that can tell when something is plugged in, so that for example the speakers in a laptop can be muted when headphones are plugged in. Pins are also grouped, so for example all the outputs for a 5.1 sound system are grouped. Generally the HDA driver in the operating system is supposed to read the pin set up and figure out a reasonable way to set things up, and disconnected pins should be ignored, etc.
HDAudio standard has headphones on a separate DAC, and it's up to the driver.. it can even send different audio to the headphones without interrupting the main (green) outputs
====Envy24 series ====
A little history. VIA bought the ICE created Envy chipsets [http://www.via.com.tw/en/products/audio/controllers/comparison_controller.jsp VT1712] first. A few years later, they created several cheaper variants VT1724 (mixer missing), VT1721 (low end cut down), VT1720 (embedded on motherboard) and lastly the VT1723 (no support apart from Windows Envy24DT like SYBA SD-PEX63034).
There are PCI Express versions appearing.
The Envy24 is the base product that was originally designed by ICEnsemble, and it supports multi-channel hardware mixing, which is great for professional use. The HT version removes the hardware mixer (unimportant for non-professional uses). The [http://www.avsforum.com/t/364771/envy24ht-s-the-definitive-source HT-S] version is almost exactly the same as the HT, it just uses cheaper DACs. The PT version is exactly the same as the HT-S version, it is just the edition used for on-board audio on motherboards.
N.B. [http://www.soundonsound.com/sos/dec04/articles/pcnotes.htm PCI slot identification] and [http://hsi.web.cern.ch/HSI/s-link/devices/s32pci64/slottypes.html 3.3v PCI].
=====[http://www.opensound.com/readme/README.Envy24.html envy24.audio] - [http://www.anime.net/~goemon/alsa/ VT1712] =====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Playback
! Recording
! Comments
|-
| M-Audio Delta 66 - Rev B 1999
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested AK4524VF CS8404A-CS - needs Delta Series break out box with D-sub lead -
|-
| [http://ixbtlabs.com/articles/maudioaudiophile/index.html Audiophile 2496] Rev A 2000
| 0x14
| 0x
|
| <!--Playback-->{{unk| }}
| <!--Recording-->{{unk| }}
| works audio out on - I2S stereo codec AKM AK4528VF with the 24bit/96kHz DAC and ADC; CS8427 digital transceiver
|-
| [http://ixbtlabs.com/articles/maudioaudiophile/index.html Audiophile 2496] Rev B 2003
| 0x14
| 0x
|
| <!--Playback-->{{Yes }}
| <!--Recording-->
| works well - I2S stereo codec AKM AK4528VF with the 24bit/96kHz DAC and ADC; CS8427 digital transceiver
|-
| M-Audio Delta 410 - 2001 2001 REV-B
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested for D-A AK4529VQ converters with CS8427-CS 5532 1158B or Event Echo Gina 20-Bit Multitrack Interface Breakout Box -
|-
| M-Audio Delta 1010
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested AK5383 and AK4393 - 25 pin dsub -
|-
| M-Audio Delta 1010LT 1010E
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested for D-A AK4529 converters with 2 XLR Microphone inputs with pre amps
* be aware of redesign in 2007 - possible issues
|-
| M Audio Delta 44 - Rev A 2002 - Rev B 2003 - Rev D 2003
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested ICE1712G AK4524VF needs breakout box with 15 pin D-sub lead -
|-
| M-Audio Delta 66 Rev E 2006 - Omni Studio
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested needs break out box with 15 pin D-sub lead -
|-
| <!--Description-->M-Audio Delta DiO 2496
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| Terratec EWX24/96
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| [http://ixbtlabs.com/articles2/terratecdmx6fire/index.html TerraTec 6fire DMX 24/96]
| <!--Vendor ID-->0x1412
| <!--Product ID-->0x1712
| <!--Revision-->0x02
| <!--Playback-->{{No|tried line 1-2 3-4 5-6 7-8 }}
| <!--Recording-->{{No| }}
| untested - AKM and codec
|-
| <!--Description-->Terratec EWSA88MT
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| [http://lists.freebsd.org/pipermail/freebsd-multimedia/2007-March/006087.html Audiotrak Prodigy HD2] 24/96
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Audiotrak (ESI) Maya 1010 1010L
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| EMU 1212M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| EMU 1616M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| <!--Description-->Terratec EWS 88MT EWS 88D
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Hoontech Soundtrack DSP 24
Soundtrack DSP 24 Value
Soundtrack DSP 24 Media 7.1
Event Electronics EZ8
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Digigram VX442
Lionstracs
Mediastation
Terrasoniq TS 88
Roland/Edirol DA-2496
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
=====envy24ht.audio - VIA VT1724=====
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| ESI Juli@
| 0x3031
| 0x4553
| 0x0
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Yes}}
| reported working years ago [http://envy24.svobodno.com/ Envy24HT-S] - AKM 4358 DAC - AKM 4114/4112 DIT
|-
| ESI Juli@ Ego Igo rev K
| 0x3031
| 0x
| 0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| AK4358? DAC - AK4114 AK4112 DIT
|-
| [http://ixbtlabs.com/articles2/multimedia/m-audio-revolution51.html M-Audio Revolution 5.1]
| 0x1412
| 0x3631
| 0x0
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| reported working years ago but discontinued - (Envy24GT) - 3ch AKM 4358 DAC - ADC AKM 5365 -
|-
| [http://ixbtlabs.com/articles2/m-audio-revolution71/index.html M-Audio Revolution 7.1] 24/192
| 0x1412
| 0x3630 0x1724
| 0x0
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| not working - illegal semaphore - 6ch ADC AKM AK4355 24-bit 192 kHz - 2ch DAC AKM AK4381 24-bit 192 kHz - ADC AKM AK5380
|-
| Terratec Aureon Sky 5.1
| 0x153b
| 0x1147
| 0x
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - discontinued
|-
| [http://ixbtlabs.com/articles2/terratec-aureon71/index.html Terratec Aureon Space 7.1]
| 0x153b
| 0x1145
| 0x0
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - Wolfson WM8770 DAC, AC'97 codec SigmaTel STAC9744
|-
| Terratec Aureon Universe 7.1
| 0x153b
| 0x1153 (rev x) 0x1724 (rev3)
| 0x0
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| not working - semaphore error on rev 3 - DAC ADC
|-
| Terratec Phase 22
| 0x153b
| 0x1150
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - Envy24HT-S - AK4524
|-
| Terratec Phase 28
| 0x153b
| 0x1149
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - Envy24HT-S - AK4524
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Playback
| Recording
| Revision
| Comments
|-
| Audiotrak (ESI) Prodigy 7.1
| 0x4933
| 0x4553
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - Wolfson WM8770 and AC'97 SigmaTel STAC9744 codec
|-
| Audiotrak (ESI) Prodigy 7.1 LT
| 0x3132
| 0x4154
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver -
|-
| [http://ixbtlabs.com/articles2/sound/audiotrak-prodigy192.html Audiotrak (ESI) Prodigy 192] 24/96
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - STAC9460S codec
|-
| <!--Description-->Echo Layla 24/96
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
| [http://www.bit-tech.net/custompc/labs/80752/hercules-gamesurround-fortissimo-4.html Hercules Gamesurround Fortissimo 4]
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - Wolfson WM8776 Codec and WM8766 DAC
|-
| [http://ixbtlabs.com/articles2/multimedia/m-audio-audiophile192.html M-Audio Audiophile Delta AP 192k]
| 0x1412
| 0x3632
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - Stereo ADC AKM AK5385A 24-bit 192 kHZ - 8-channel DAC AKM AK4358 24-bit 192 kHz - AKM 4114/4112 DIT
|-
| ONKYO SE-150PCI
| 0x160b
| 0x0001
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver
|-
| <!--Description-->ESI Waveterminal 192x
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
| <!--Description-->Quartet
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments--> - AKM 4114/4112 DIT
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
|}
====hdmiaudio.audio - hdmi no support====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->ATI R6xx HDMI Audio codec support output
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x9840
| <!--Revision-->
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->Not detected
|-
| <!--Description-->NVidia HDMI
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Intel Series 6 CougarPoint HDMI codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Intel HDMI
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|}
[[#top|...to the top]]
===Graphic GFX Chipsets===
[https://gallium.readthedocs.io/en/latest/systems.html PCIe based] graphic chipset is defacto on 64bit AROS and recommended on 32bit.
AGP works on 32bit but faster transfers through the AGP slot are only available on a few supported motherboard chipsets
* Faster AGP Working = SIS 650 board, Intel 865pe AGP slot on MSI 6788-050,
* Not Supported = NForce2 chipsets, most Intel 815/820 chipsets, VIA chipsets, ALi chipsets,
The fallback for all graphics modes is vesa if any native support does not work. There is a choice of very low resolution vga as the last resort
2D tests performed with [http://download.aros3d.org/software/gfxbench.zip gfxbench] in the shell type gfxbench > out.txt (40 seconds blank screen is part of the test), via FreeDoom via limit-removing engine like odamex, chocolate or vanilla doom -timedemo demo1 or doom2 -timedemo demo1, doom.exe -iwad doom2 -file mymap.wad, Duke DNRATE 640x480 windowed
3D tests performed with Demos/Mesa/ , Cube 1080p, Cube 2 windowed not fullscreen 1920 x 1025, Quake3 ~ cl_drawFPS 1, Xonotic , [http://shinh.skr.jp/sdlbench/showtestgl.cgi test gl],
HDMI, DVI and DisplayPort monitors have a native resolution of 480p, 720p, 1080i, 1080p and up
<pre>
HDMI (licensing fee)
1.2 720p res.
1.3 1080 resolution
1.4 4K @ 30Hz
2.0 4K @ 60Hz
2.1 48Gbs for 4K @ 120Hz, 8K @ , VRR, etc
2.2 ultra96
</pre>
<pre>
DisplayPort (VESA introduced)
1.4 4K @ 60Hz
2.1 96Gbs for 4K @ 240Hz, 8K @ 120Hz. MST daisy chain multiple monitors,
</pre>
<pre>
GPMI chinese standard
2.0
</pre>
Might be supported on AROS
*OpenGL4 GPU must have 64-bit floating point FP64 math support, which is a hard requirement for GL 4.0. The max last revision opengl 4.6 (2017) on [https://wiki.gentoo.org/wiki/AMDGPU AMDGPU] RX 5000's / 6000s ([https://forum.batocera.org/d/7491-enable-opengl-46-and-vulkan-for-an-old-radeon-video-card RDNA] and Nvidia RTX might come to AROS) but Intel UHD, Iris Plus or Xe or Arc (will not unless a developer wants the challenge)
*OpenGL3 last revision 3.3 (2011)
Already supported on AROS
*OpenGL2 nvidia-nouveau,
*OpenGL1 intel gma950,
====vga.hidd====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Comments
|-
|
| 0x
| 0x
| 0x0
| Generic VGA Driver, limited to 640x480 in 16 colours - no 3D support
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Comments-->
|-
|}
====vesa.hidd====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Comments
|-
|
| 0x
| 0x
| 0x0
| 2D support for VBE1, VBE2 and VBE3 (most cards) - various resolutions and 24bit colour - no 3D support
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Comments-->
|-
|}
[[#top|...to the top]]
====[[w:en:Intel GMA|Intel GMA]]====
DVI output is not supported at the moment.
If having problems:
* Ensure the latest version is being used.
* Set GMA_MEM to 128 or 256 to test
* Try the FORCEGMA ToolType for 2D, and try the FORCEGALLIUM ToolType for 3D acceleration after 2D is verified to work. ToolTypes should be applied to the Devs/Monitors/IntelGMA monitor icon.
If still having problems:
* At GRUB boot screen edit boot line and add option: debug=memory
* Boot.
* Use shell command: tools/debug/bifteck > RAM:debug.txt
* And post [GMA MONITOR DETECTION] and other related debug lines
{| class="wikitable sortable" width="90%"
! width="5%" |Description
! width="5%" |Vendor ID
! width="5%" |Product ID
! width="3%" |Rev
! width="5%" |2D
! width="5%" |3D
! width="5%" |Analog Output
! width="5%" |Digital Output
! width="5%" |Laptop LCD
! width="30%" |Comments
|-
| 910GL 82910GL GMCH + ICH6
| 0x8086
| 0x2582 0x2592
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| 910GML 82910 GML GMCH + ICH6 Mobile
| 0x8086
| 0x2582 0x2592
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| may need to add forceGMA to grub boot line to work
|-
| 915G 82915G GMCH + ICH6-M
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
|
|-
| 915GL 82915GL GMCH
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
|
|-
| 915GV 82915GV GMCH
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Yes|}}
| <!--3D-->{{No|}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{N/A}}
| HP DC5100 small form factor
|-
| 915GM GMA900
| 0x8086
| 0x
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| tunnel gearbox }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes}}
| asus eee pc 900
|-
| 915GMS
| 0x8086
| 0x
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| tunnel }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes| }}
|
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| [http://www.notebookcheck.net/Intel-Graphics-Media-Accelerator-950.2177.0.html 945GU] - 133 MHz (Lake port for Intel A100 and A110)
| 0x8086
| 0x2772
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| Fujitsu LifeBook U1010,
|-
| 945GMS - 166 MHz / 250 MHz (1.05V)
| 0x8086
| 0x27a2
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes}}
| Dell D430
|-
| 945GSE - 166 MHz (for Atom)
| 0x8086
| 0x27ae
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Yes|[http://www.x.org/wiki/GalliumStatus]}}
| {{Yes}}
| {{No|dvi port}}
| {{Yes| }}
| for atom motherboards and most 2008/2009 netbooks
* 3D Works - AOA110 AOA150, Dell Mini 9, Samsung NC10, Toshiba NB100,
|-
| 945G 82945G GMCH + ICH7
| 0x8086
| 0x27a6
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| untested 2D and 3D
|-
| 945GC 82945GC MCH
| 0x8086
| 0x27a6
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| untested 2D and 3D
|-
| 945PM
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| Dell D420, Compaq nc6400,
|-
| 945GMS - 250 MHz Calistoga
| 0x8086
| 0x
| 0x0
| <!--2D--> {{Yes}}
| <!--3D--> {{Yes|most models}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes}}
|
* 3D Works Dell Latitude 2100, HP Compaq nc6320, Lenovo 3000, Lenovo T60, Samsung Q35, Dell D620, Dell D820,
* 3D untested Toshiba Satellite L100-120, Toshiba Portege M400,
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
|
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GMA 3100 G31
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works 2D but no 3D
|-
| GMA 3100 G33
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works 2D but no 3D
|-
| [http://en.wikipedia.org/wiki/Intel_GMA GMA 3150] netbooks and nettops
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works 2D but no 3D. no vga, dvi or hdmi output for nettops
|-
| <!--Description--> G965
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments-->
|-
| <!--Description--> Q965
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x2992
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{No}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments--> Only tested with VGA output.
|-
| 965GM X3100 (500 MHz)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| some support 2D but no hardware 3D - could not get it to work with VGA or dvi output
* untested Apple MacBook Air, Lenovo Thinkpad X300, Dell Inspiron 1525, Toshiba M9,
|-
| 960GM X3100 (400 MHz)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
|
|-
| 965M X3100 (400 MHz)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| Dell D830,
|-
| 965PM ??
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| Toshiba A9 works with limited 2D acceleration but no hardware 3D
|-
| GL965
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works with limited 2D acceleration but no hardware 3D
|-
| GM965
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works with limited 2D acceleration but no hardware 3D
|-
| GMA X3500 G35
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->X4500M G41 G43 G45 (400Mhz) Mobile 4 Series
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x2a42 0x2a43
| <!--Revision-->0x07
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue--> {{No|}}
| <!--Digital--> {{No|}}
| <!--Laptop LCD--> {{Yes| VESA}}
| <!--Comments-->works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->GMA 4500M HD (533 MHz)
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments-->works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->GMA 4700M HD (640MHZ)
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x2a42
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments-->works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
====[http://nouveau.freedesktop.org/wiki/FeatureMatrix nouveau].hidd (nvidia pci, agp, pci-e desktop)====
PCIe based nvidia graphics (gfx 8xxx) are the base level for 64bit AROS but earlier models still has some support on 32bit AROS
*Desktop, more likely hit rather than miss on early nvidia on Aros 32bit but on Aros 64bit ...
*Laptop, limited support for '''very''' early non-optimus (i.e. just Nvidia gfx only so no Intel and nvidia gfx combinations on 32bit but on 64bit ...)
Please note that the nouveau project is reverse engineering a nvidia graphics driver but takes time because of [https://nouveau.freedesktop.org/ nVidia's closed firmwares], etc
* 2026-06 - DEVS Nouveau.hidd Gallium.hidd Softpipe - LIBS Gallium GLU 20.0 Mesa OpenCL
* 2011-10 - DEVS 6.11 Nouveau.hidd 7.4 Gallium.hidd 9.4 Softpipe - LIBS 2.3 Gallium 1.3 GLU 19.0 Mesa OpenCL 1.x
* 2011-04 - DEVS 5.31 Nouveau.hidd 7.3 Gallium.hidd 9.3 Softpipe - LIBS 2.2 Gallium 1.1 GLU 18.0 Mesa OpenCL n/a
Nouveau support for AROS is limited to OpenGL 2.1 compliance on 32bit even for modern GL4 capable GPUs but on 64bit ...
On Aros 32bit OpenCL supports the NV50 (8000 9000) cards, less support in NVC0 fermi cards (300 upwards)
On Aros 64bit
ADoom3 graphic details ultra, benchmark while playing press the "`" key and type "Timedemo demo1" in the console
{| class="wikitable sortable" width="90%"
! width="5%" | Graphic Card
! width="5%" | Aros 32bit 1024 x 768
! width="5%" | Aros 32bit 800 x 600
! width="5%" | Aros 32bit 640 x 480
! width="5%" | Aros 64bit 1024 x 768
! width="5%" | Aros 64bit 800 x 600
! width="5%" | Aros 64bit 640 x 480
|-
| NV50 Asus EN8400GS SILENT/P/512M PCIe (G98) || || || || || ||
|-
| Gigabyte 8500GT 256M || 42,6 || 57,2 || 68,6 || || ||
|-
| NV96 (G96) Geforce 9500GT 512M || 43 || 53 || 57 || || ||
|-
| NV96 (G96) 9600GT || || || || || ||
|-
| NVA3 (GT215) GT240 || || || || || ||
|-
| NVA5 (GT216) Palit GT220 Sonic 512M || 39,7 || 55,8 || 63,7 || || ||
|-
| NVA8 (GT218) gt210 || || || || || ||
|-
| NVA8 (GT218) ION2 || || || || || ||
|-
| NVC3 (GF106) GT440 GTS 450 || || || || || ||
|-
| NVCF (GF116) NVC0 Fermi GTX 550Ti or GTS 450 v2 || || || || || ||
|-
| NVC8 (GF110) 580GTX || N/A || N/A || N/A || || ||
|-
| NVE0 Kepler GT630 || N/A || N/A || N/A || || ||
|-
| NVE6 (GK106) Kepler GTX660 || N/A || N/A || N/A || || ||
|-
| NVE7 (GK107) GTX 650 || N/A || N/A || N/A || || ||
|-
| NV110 Maxwell GTX 750 || N/A || N/A || N/A || || ||
|-
| NV126 (GM206) GTX950 upwards no reclocking || N/A || N/A || N/A || poor || poor || poor
|-
| NV160 family (Turing) GTX 1650 and RTX 2000 upwards with GSP firmware || N/A || N/A || N/A || unknown || unknown || unknown
|-
| HostGL Ryzen 5 4600H - Nvidia 1650 - Linux mint 21.1 || N/A || N/A || N/A || 150fps || 154fps || 155fps
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| width="5%" | Graphic Card
| width="5%" | Aros 32bit 1024 x 768
| width="5%" | Aros 32bit 800 x 600
| width="5%" | Aros 32bit 640 x 480
| width="5%" | Aros 64bit 1024 x 768
| width="5%" | Aros 64bit 800 x 600
| width="5%" | Aros 64bit 640 x 480
|}
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|-
| <!--Description-->tnt1 (nv04) tnt2 (nv05) m64 value (1998)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|very slow}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| NV04 Riva TNT TNT2 Fahrenheit freezes on via motherboard chipset so rename agp.hidd in SYS:Devs/Drivers or Monitors
|-
| <!--Description-->tnt vanta lt (nv06) 1998 /9
| 0x10de
| 0x002c
| 0x15
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|slow}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| <!--Description-->Geforce 256 (nv10) (2000)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|slow }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| untested Geforce256
|-
| <!--Description-->Geforce 2 Geforce 3 Geforce 4 (nv20) 2000 / 2
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|slow }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| works for some PCI and AGP Geforce2 Geforce3 Geforce4
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| Geforce FX5200 nv34 (2003)
| 0x10DE
| 0x0322 0x
| 0xA1
| <!--2D-->{{Maybe| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->{{Maybe|VGA15 }}
| <!--Digital-->{{Maybe|DVI}}
| <!--Laptop LCD-->{{N/A}}
| NV30 GeForce 5 FX Rankine Hardware OpenGL 1.5 - slower than GF MX 4000 for 2D - max 1024 x768
* not working [https://eab.abime.net/showthread.php?t=92328&page=8 mobos with VIA chipsets 2018]
* working (MSI 0x9174) the previous nouveau 5.x driver
* Others work with 6.x series XFX PV-T34K-NA, ASUS V9520-X/TD
|-
| Geforce FX5500 (nv34) (2003)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{Maybe| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| works
|-
| Geforce 5100 (NV34)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce FX 5200LE (NV34)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5200 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce FX5600 (nv31) (2004)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Maybe| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| works
|-
| GeForce FX 5600 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5600SE
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5600XT
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce FX5700 (nv36) (2004)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes|some}}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{Maybe| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5700VE
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5700 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5700LE
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5800 (NV30)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5800 Ultra (NV30)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900 (NV35)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900XT
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900ZT
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5950 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce 5xxx
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
|
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| Geforce 6200 (nv44) (2005)
| 0x
| 0x00F3 0x014F
| 0x0
| <!--2D-->{{Yes|5.28 Pixel Text}}
| <!--3D-->{{Maybe| use 5.28}}
| <!--Analogue-->{{Yes|VGA15 and s-video - plain 4pin cable lead will work with 7pin}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| NV40 GeForce 6 GeForce 7 Curie AGP Hardware OpenGL 2.1 needing previous 5.x version as regression arose 2011-10
|-
| Geforce 6200 (nv44a) (2006)
| 0x
| 0x0221
| 0x0
| <!--2D-->{{Yes|5.28 Pixel Text }}
| <!--3D-->{{Yes|}}
| <!--Analogue-->{{Yes|VGA15}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| Hardware OpenGL 2.1, PCI version tested OK in 2014-01-02 - Icaros 1.5.2
* not working
*working
|-
| GeForce 6200 with Turbo Cache (NV43)
| 0x
| 0x0161
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce 6200SE with Turbo Cache (NV44)
| 0x
| 0x0162
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce 6200 LE
| 0x10de
| 0x0163
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| PCI-E
|-
| GeForce 6600 LE
| 0x
| 0x00F4 0x0142
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6600
| 0x
| 0x00F2 0x0141
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| 2006 PureVideo HD 1 or VP1 re-used the MPEG-1/MPEG-2 decoding pipeline from FX
|-
| Geforce 6600gt (nv4x) (2005)
| 0x
| 0x00F1 0x0140
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Yes| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| OpenGL tests -
|-
| Geforce 6800 (nv40) (2005)
| 0x
| 0x0041 0x00C1 0x00F0 0x0211
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Yes| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 XE (NV4x)
| 0x
| 0x0043
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 LE
| 0x
| 0x0042 0x00C2 0x0212
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 GT (quadro fx 1400)
| 0x
| 0x0045 0x0046 0x0215
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 6800 GS
| 0x
| 0x0047 0x00C0 0x00F6
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 GTS NV40
| 0x
| 0x0040 0x0F9
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 6800XT
| 0x
| 0x0044 0x0048 0x00C3 0x0218
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6600 VE
| 0x
| 0x0143
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6500 NV44
| 0x
| 0x0160
| 0x0
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6250
| 0x
| 0x0169
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 6xxx
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GeForce 7800 GTX
| 0x
| 0x0090 0x0091
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| tunnel gearbox cube cube2 25}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> 256MB DDR3 - 1 6pin psu connector -
* not working asus en7800gtx/2dhtv/256m/osp/a -
* Works XFX PV-T70F-UDD7 Works in steve jones' scrap pc aros build 2010 2 DVI-I ports
* Untested
|-
| GeForce 7800 GT
| 0x
| 0x0092
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7600gt (G8 ) (nv4 ) (2006)
| 0x
| 0x02E0 0x0391
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL 2.1
* not working
* working
|-
| GeForce 7800 SLI
| 0x
| 0x0095
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GTX
| 0x
| 0x0290
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GT GTO
| 0x
| 0x0291
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GS
| 0x10de
| 0x0292
| 0x0a1
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working
* Works with a few glitches with XFX Pine 0x2218
|-
| GeForce 7950 GX2
| 0x10de
| 0x0293 0x0294
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| GeForce 7950 GT
| 0x
| 0x0295 0x02E4
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GS
| 0x
| 0x02E3
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7600 GS
| 0x
| 0x02E1 0x0392
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7650 GS
| 0x
| 0x0390
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7600 LE
| 0x
| 0x0394
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7800GS (G8 ) (nv4 ) (2006)
| 0x
| 0x0093 0x00F5
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working
* works if AGP motherboard chipset is supported - Hardware OpenGL 2.1
|-
| GeForce 7100 GS
| 0x
| 0x016A
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7350 LE
| 0x
| 0x01D0
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7300le (G8 ) (nv4 ) (2006)
| 0x
| 0x01D1
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7300SE 7200GSGF-7200GS-N-B1 variant (G72)
| 0x10de
| 0x01D3
| 0x0a1
| <!--2D-->
| <!--3D-->
| <!--Analogue-->{{Unk|1x DVI, 1x VGA, 1x S-Video}}
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2007 40W pci-e 1.0 VP1 no unified shaders -
* not working Asus on via chipset (2015),
* works Asus on intel chipset (2015),
|-
| Geforce 7300gt (G8 ) (nv4 ) (2006)
| 0x
| 0x0395 0x0393
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working
* works
|-
| GeForce 7300 GS
| 0x
| 0x01DF
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7500 LE
| 0x
| 0x01DD
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7xxx
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GeForce 8800 Ultra (NV50 family)
| 0x
| 0x0194
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NV50 GeForce 8 to GeForce 200s opengl 3.x - max res - 80nm technology - PureVideo HD 2 or VP2 Nvidia VDPAU Feature Set A (absent from ultra and some 8800gt?) added a dedicated bitstream processor (BSP) and enhanced video processor for H.264, VC-1 acceleration
|-
| Geforce 8800gts (nv50) (G8x) (2007)
| 0x
| 0x0400 0x0600 0x0193
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2007 200w openGL3 openCL - 2x6pin psu
* not working 0x0193 models (2015) on via chipsets,
* works
|-
| Geforce 8800gtx (nv5 ) (G8x) (2007)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2008 200W 1x 6pin connector,
* not working
* working
* untested XFX PV-T88P-YDF4, Alpha Dog Edition runs extremely hot - Gigabyte GV-NX88T512H,
|-
| GeForce 8800 GT
| 0x
| 0x0602 0x0611 0x0193
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->DVI up to 2500 x 1600
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - 6pin psu power connector required
* not working
* untested Asus EN8800GT/HTDP/256M EN8800GT/HTDP/512M EN8800GT/G/HTDP/512M
* works
|-
| GeForce 8800 GT (G92)
| 0x10de
| 0x0611
| 0x0a2
| <!--2D-->{{Yes|6.11 Pixel Text}}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{N/A}}
| <!--Digital-->{{Yes}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3 pci-e 2.0 8800GT 512MB on Icaros 2.0.3 [[File:8800GT aros heads.png|thumb|8800GT]] [[File:8800GT aros tails.png|thumb|8800GT detail]]
|-
| Geforce 8600gt (nv5 ) (G8x) (2007)
| 0x
| 0x0401 0x0402
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res
* not working
* works
|-
| GeForce 8500 GT
| 0x
| 0x0421
| 0x0
| <!--2D-->{{Yes| some color }}
| <!--3D-->{{yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL tests - max opengl 3.x but 2.1 offered - max res
* not working
* works Gigabyte 8500 GT,
|-
| GeForce 8800 GS
| 0x
| 0x0606 0x060D
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res
|-
| GeForce 8600GS
| 0x
| 0x0403
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 3.x VP3 offers complete hardware-decoding for all 3 video codecs of the Blu-ray Disc format: MPEG-2, VC-1, and H.264 - Nvidia VDPAU Feature Set B
|-
| GeForce 8300 GS
| 0x
| 0x0423
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res
|-
| Geforce 8400gs G98GS (end 2007) GT218 (2009)
* Rev2 with 8/16 cores and 128-512MB of DDR2 or GDDR3 memory.
* Rev3 with 8 cores and 512MB-1GB of DDR3 memory (based on Tesla 2.0)
| 0x
| 0x0424 0x0422
| 0x0
| <!--2D-->{{Yes|Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 490 gearbox 505 Cube 135 Cube2 55 quake3 }}
| <!--Analogue-->{{Yes|works digital part of DVI but nothing from any display port}}
| <!--Digital-->{{Yes|output on digital 24 pin array of DDWG's DVI and hdmi}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 50W openGL 3.1 openCL - case single slot - one single-link DVI digital output, supporting up to one 1920x1080 resolution display - analog resolution 640 x 480 to 1024 x 768 16 and 24 bit color - [http://www.phoronix.com/scan.php?page=article&item=nouveau_comp_2011&num=19 runs a little hotter than expected] - G98 VP3 pci-e 2.0 512MB DDR2 -
* not working
* works Asus EN8400GS SILENT/P/512M PCIe (G98),
|-
| Geforce 8400gs (nv50) (G86) (mid-2007)
* Rev1 with 16 cores / 256MB of DDR2 memory.
| 0x
| 0x0404
| 0x0
| <!--2D-->{{Yes|Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 490 gearbox 505 Cube 135 Cube2 55 quake3 }}
| <!--Analogue-->{{Yes|works but not tested thru 4 pins of analog signal of DVI plug}}
| <!--Digital-->{{Yes|output on digital 24 pin array of DDWG's DVI and hdmi}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2008 50W openGL 3.1 openCL - case single slot - one single-link DVI digital output up to 1920x1080 resolution display - analog resolution 640 x 480 to 1024 x 768 16 and 24 bit color - [http://www.phoronix.com/scan.php?page=article&item=nouveau_comp_2011&num=19 runs a little hotter than expected] - G86 VP2 128MB -
* not working XFX PV-T86S-YAJG NVIDIA GeForce 8400 GS 512MB DDR2, Sparkle 8400GS 512MB SX84GS512D2L-DPP,
* works Asus EN8400GS SILENT/HTP/256M SILENT/HTP/512M/A,
|-
| GeForce 8400 SE
| 0x
| 0x0420
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 2.x openCL
|-
| NVidia Quadro NVS290 DMS-59
| 0x
| 0x0403
| 0x0
| <!--2D-->{{no| }}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk|DMS-59 socket}}
| <!--Digital-->{{unk|DMS-59 }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2008 21W - G86S (G86-827-A2) - 16 shading units, 8 texture mapping units, and 4 ROPs. NVIDIA has paired 256 MB DDR2 - PCIe 1.0 x16 Low Profile -
|-
| Geforce Quadro FX 4600 (SDI), 5600
| 0x
| 0x
| 0x0
| <!--2D-->{{Partial|VESA 2d}}
| <!--3D-->{{no| }}
| <!--Analogue-->{{partial| }}
| <!--Digital-->{{partial| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GeForce 9800 GX2 (NV50 family)
| 0x
| 0x0604
| 0x0
| <!--2D-->{{Partial|VESA }}
| <!--3D-->{{no| }}
| <!--Analogue-->{{Partial| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 150w - 65nm technology
|-
| GeForce 9800 GTX
| 0x10de
| 0x0612
| 0x0a2
| <!--2D-->{{Yes| }}
| <!--3D-->{{Maybe|6.11 }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 2x6pin psu -
* not working xfx on via chipset (2015),
* works xfx on chipset intel ,
|-
| GeForce 9800 GTX+
| 0x10de
| 0x0613
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res 2560 x 1920 - case dual slot - 26amp 12v rail on computer psu if 2x6pin connectors needed - 55nm version of the G92 chip - will not work with PCI-e 1.0a slots -
* not working
* works on a few models
|-
| Geforce 9800gt (nv50) (G92a) (2008)
| 0x10de
| 0x0614
| 0x0xa2
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel 495 gearbox 513 Cube 156 Cube2 120 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{partial| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL 3.1 openCL 1.x - case dual slot - 600w 26amp on both 12v rails for 2x6pin psu on gfx card - no fan control - some come with 1x6pin - renamed version of the venerable GeForce 8800 GT - randomly works
* not working Gainward 512M untested
* working Gainward CardExpert (0x0401) Green Edition NE39800TFHD02-PM8D92 1024MB (no 6pin)
|-
| Geforce gf9600 9600gt (nv5 ) (G9x) (2008)
| 0x10de
| 0x0622
| 0x0a1
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel 493 gearbox 675 Cube Cube2 100 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL 3.2 openCL but no fan control - case dual slot - 1 6pin pcie psu connector - 500 Watt or greater power supply with a minimum of 26 Amp on the +12 volt rail - Max Analog: 2048x1536 and Max Digital: 2560x1600 (Dual Link DVI Only) - PCI Express® 2.0 / 1.1 Support - g96 gpu randomly works -
* not working bfg tech ocx,
* works gigabyte gv-n96tsl-512i -
|-
| Geforce gf9500 9500gt (nv5 ) (G9x) (2008)
| 0x10de
| 0x0640
| 0x0a1
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel 480 gearbox 500 Cube Cube2 64 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.2 - case single slot - 350 Watt/400 Watt or greater power supply with a minimum of 18 Amp/22 Amp on the +12 volt rail - Max Analog: 2048x1536 and Max Digital: 2560x1600 (Dual Link DVI Only) - PCI Express® 2.0 / 1.1 Support -
* not working zotac zone fanless, Gainward USA NE29500THHD01-PM8796, PNY G9500GN2E50X+0TE,
* works xfx xne-9500t-td01-pm8596 1024mb ddr2,
|-
| GeForce 9600 GS
| 0x
| 0x0623
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res - will not work with PCI-e 1.0a slots -
* not working
* works
|-
| GeForce 9600 GSO
| 0x
| 0x0610
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res - G92 chopped down - 9600GSO is re-badged 8800GS both very power hungry cards -
|-
| GeForce 9300 GS
| 0x
| 0x06E1
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 opengl 3.x - max res
|-
| Geforce 9400 GT (nv5 ) (G86S) (2008)
| 0x
| 0x
| 0x0
| <!--2D-->{{partial|}}
| <!--3D-->{{unk|}}
| <!--Analogue-->{{unk|1x DVI, 1x VGA, 1x S-Video}}
| <!--Digital-->{{unk|1x DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 50W opengl 3.x - max res
|-
| Geforce 9xxx (nv5 ) (G9x) (2008)
| 0x
| 0x
| 0x0
| <!--2D-->{{unk|}}
| <!--3D-->{{unk|}}
| <!--Analogue-->{{unk|}}
| <!--Digital-->{{unk|}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 opengl 3.x - max res
|-
| <!--Description-->Quadro FX 580 G96 chipset
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2009
|-
| <!--Description-->
NV84 (G84) GeForce 8600 (GT, GTS, M GT, M GS), 8700M GT,
NV92 (G92) GeForce 8800 (GT, GS, GTS 512, M GTS, M GTX)
GeForce 9600 GSO, 9800 (GT, GTX, GTX+, GX2, M GT, M GTX)
NV96 (G96) GeForce 9400 GT, 9500 (GT, M G), 9600 (M GS, M GT),
NV86 (G86) GeForce 8300 GS, 8400 (GS, M G, M GS, M GT), 8500 GT
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NVA0 (GT200) GeForce GTX (260, 275, 280, 285, 295)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->GeForce GTX 280 (NV50 family)
| <!--Vendor ID-->
| <!--Product ID-->0x05E1
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res PureVideo HD 4 (Nvidia Feature Set C or "VDPAU Feature Set C), VP4 added hardware to offload MPEG-4 Advanced Simple Profile (original DivX and Xvid)
|-
| <!--Description-->GeForce GTX 260
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x05E2
| <!--Revision-->
| <!--2D-->{{partial|Vesa}}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> 2 6pin - psu pci express 2.1 -
|-
| Geforce GTS250 250GTS (g92b) (2009)
| 0x10de
| 0x0615
| 0x0a2
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 486 gearbox 508-642 Cube Cube2 80 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> 2x6pin psu VP2 - pci-e 2.x - case dual slots - 738m 1gb ddr3 -
* not working Zotac branded version GDDR3 -
* works PNY gs-250x-zdfl and Gigabyte ??, BFG Tech RGTS2501024OCE, palit ne3ts250fhd52-pm8a92 with 2x6pin on top and hdmi output port,
|-
| <!--Description-->GeForce GT 240 (GT215 family)
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0ca3
| <!--Revision-->0xa2
| <!--2D-->{{Maybe|use VESA}}
| <!--3D-->{{No|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->late 2009 openGl 3.2 - case dual slots - no 6pin psu required with VP4 - All are pcie 2.1 cards and may not work in 1.0a slots -
* not working
* DDR3 with 512MB or 1GB -
* DDR5 -Asus ENGT240 - XFX Pine GT240XYHFC 0x3001 - Gigabyte GV-N240D5-512I rev 1.0 - Zotac AMP! with HDMI 1.3a with DisplayPort 1.1, Dual Link DVI -
* works
|-
| <!--Description-->GT220 (GT216) G220
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0a20
| <!--Revision-->0xa2
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Yes}}
| <!--Digital-->{{Yes|DVI }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> Icaros 2.0.3 GeForce GT220 1GB[[File:GT220 aros heads.png|thumb|GT220]][[File:GT220 aros tails.png|thumb|GT220]]
* untested NVIDIA Quadro® 400 512MB DDR3 GT216 DP DVI, AFox AF220 1Gb DDR3,
|-
| Geforce GT220 220GT G94 Tesla (g92b)
| 0x10de
| 0x0a20
| 0xa2
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 490 gearbox 505 cube 150 cube2 50 Quake3 }}
| <!--Analogue-->{{Unk|1x DVI, 1x VGA}}
| <!--Digital-->{{Yes|DVI but not 1x HDMI }}
| <!--Laptop LCD-->{{N/A}}
| 58W pci express 2.0 cards DDR3 - case single slot -
* not working ASUS ENGT220/DI/1GD2(LP)/V2 -
* works - gainward card expert 0x0401 GDDr3 512MB -
|-
| <!--Description-->GT210 GT 210 210GT G210 based on Tesla 2.0 GT218S GT218-300-A2 variant, GT218-300-B1
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0a65
| <!--Revision-->0xa2
| <!--2D-->{{Yes|6.11 Pixel Text}}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{Unk|1x DVI, 1x VGA}}
| <!--Digital-->{{Maybe|DVI out works but not hdmi or 1x DisplayPort}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 31W OpenGL 3.3 pci-e 2.0 cards - single slot -
* working GT218 based Asus EN210 based silent low profile large passively cooled -
* untested MSI GeForce 210 1GB DDR3 PCIe N210-MD1GD3H/LP,
* not working
|-
| <!--Description-->Quadro NVS 295 (256 MB GDDR3), NVS 450 (256M/512 MB DDR3)
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x
| <!--Revision-->
| <!--2D-->{{yes| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->
| <!--Digital-->{{partial|2 or 4 dp ports}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 25w low performance - G98s with 8 shading units, 4 texture mapping units, and 4 ROPs on PCI-Express 1.0 x16 -
*not working some NVIDIA Quadro NVS 295 2 dp ports (DELL, HP),
*working
|-
| <!--Description-->GT310 Tesla 310, 315, GT 320, GT 330 GT 340
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{Maybe|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2010 50w OpenGL 3.3 openCL all similar in performance to GT2xx except gt31x (poor)
|-
| <!--Description-->Quadro NVS310 NVIDIA NVS 310
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital--> 2 dp
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 25w GF119S (GF119-825-A1) 48 shading units, 8 texture mapping units, and 4 ROPs on PCI-Express 2.0 x16 - 512 MB DDR3 - PureVideo VP5 VDPAU Feature Set D -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description--> GTX 470, GTX 480 GF10 GF10* core (NVC0 family)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{Maybe| tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2010 215w 2x6 plugs - NVC0 family (Fermi) GF100 (GF100-275-A3) Fermi 448 shading units, 56 texture mapping units, and 40 ROPs with 1,280 MB GDDR5 - OpenGL4.5 OpenCL1.1 Tessellation - case dual slots -
|-
| Geforce GTX460 460GTX (G104) 256bit, 1GB v2 192bit and GTX 465
| 0x10de
| 0x0e22
| 0xa1
| <!--2D-->{{Maybe|VESA }}
| <!--3D-->{{Maybe| tunnel gearbox cube 055-111 cube2 50}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVC0 family (Fermi) OpenGL 4.x but - 2x6pin psu - case dual slots -
* not working evga 768MB GDDR5 192bit 01G-P3-1373-ER or 01G-P3-1372-TR
* works 1GB GDDR5 256bit 01G-P3-1371-ER
|-
| <!--Description-->Geforce GTX 460SE 192bit
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0e23
| <!--Revision-->0x91 or 0xa1
| <!--2D-->{{Yes| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->{{Yes| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> nouveau 6.11 - 2 6pin psu needed - case dual slots -
* not working
* works EVGA 01g-p3-1366-b6 et 1024MB p1041 -
|-
| Geforce GT450 GTS450 450GTS GF106
| 0x10de
| 0x0dc4
| 0x0a1
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel gearbox cube cube2 50 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes|DVI }}
| <!--Laptop LCD-->{{N/A}}
| 2010 Hardware OpenGL 4.2 but nouveau at 3.3 - most need 1x 6pin psu - case dual slots -
* not working
* DDR3 1 or 2GB - Palit NEAS450NHD41F,
* GDDR5 512Mb or 1GB - MSI MPN N450GTSM2D1GD5OC, Asus MPN ENGTS450DI1GD5,
* works Gainward Card Expert NE5S4500FHd51,
|-
| <!--Description-->GT 440 GF108 chipset or better OEM GF106
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 6.11 Pixel Text}}
| <!--3D-->{{Maybe| tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGl 4.1 opencl 1.x - no 6 pin psu - 96 cuda cores 128bit - case dual slots -
* not working
* OEM
* GDDR5 512MB to 1GB ASUSTeK ENGT440/DI/1GD5
* GDDR3 Asus 1gb to 2gb,
* works
|-
| <!--Description-->GT430 430GT (GF108)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|6.11 Pixel Text}}
| <!--3D-->{{Maybe|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->ddr3 memory 64bit or 128bit - buggy await new revision of driver
* not working
* works
|-
| <!--Description-->nVidia Quadro FX1800 768MB GDDR3 Full Height Graphics Card Workstation
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 6.11 Pixel Text}}
| <!--3D-->{{no|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->{{Maybe|DVI-I 2xDP}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->59W 768 MB GDDR3 memory using a 192-bit memory interface - OpenGL 3.3 -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GTX 590 Fermi
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->OpenGL4.4 OpenCL 1.1 - GDDR5 - 6pin and 8pin psu connectors - 512 cuda - case dual slots -
* not working
* works
|-
| <!--Description-->GTX 580,
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->PureVideo HD 5" or "VP5" (Nvidia Feature Set D or VDPAU Feature Set D) 4k UHD 3840 × 2160 H.264 decode -
|-
| <!--Description-->GTX 570,
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{Maybe|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working Zotac GTX 570, Gainward GTX560TI/570 Phantom,
* works gigabyte, evga
|-
| <!--Description-->Geforce 5xx 560gtx Fermi GTX 560,
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->opengl 4.x - 2 6pin psu - 384 cuda cores - case dual slots - will not work with PCI-e 1.0a slots -
* not working Asus ENGTX560 DC/2DI/1GD5,
* Ti LE 448 cuda GDDR5 320bit
* Ti 256bit
* works
|-
| <!--Description-->GTX 560 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working evga GTX 560Ti 01GP31560KR - Gainward GTX560TI/570 Phantom,
* works
|-
| <!--Description-->GTX 550 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x1201
| <!--Revision-->
| <!--2D-->{{Maybe|VESA Doom Doom2 Duke }}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->can hang on boot up on I2C Init or suffer random lockups on OpenGL apps - most need 1 6pin min 400W 24A on the +12V1 / +12V2 dual 12V rails of the computers' power supply unit - 192 cuda cores - case dual slots used - will not work with PCI-e 1.0a slots -
* not working eVGA GeForce GTX 550 Ti (1024 MB) (01GP31556KR) -
* untested asus Extreme, eVGA GeForce GTX 550 Ti (1024 MB) (01GP31557KR) - -
* works
|-
| <!--Description-->GT 545 and OEM GF116
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 4.2 opencl 1.x - GDDR5 with OEM only -
|-
| <!--Description-->GT530 OEM
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 6.11 Pixel Text}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->96 cuda cores - 1GB or 2GB DDR3 128bit
|-
| <!--Description-->GT520 520GT
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->untested 48 cuda cores - DDR3 64bit
|-
| <!--Description-->510, GT 530
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D 6.11 Pixel Text}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> ddr 3 - 50w max -
|-
| <!--Description-->GT610 Fermi GF119
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVS 315 300 GF119S
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{No|VESA}} needs special dms-59 cable
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 fermi 315 PNY VCNVS315-T 1Gb DDR3 but needs special dms-59 cable -
|-
| <!--Description-->GT630 GF108 Fermi
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->not accelerated 2015 - like the GT730 below - 96 cuda cores whilst kepler version has 384 - 128bit to keplers' 64bit bandwidth - kepler has 2GB DDR3
* not working Gigabyte
* DDR3
* GDDR5
* works
|-
| <!--Description-->Geforce GT 730
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe| use VESA 6.11 Pixel Text}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> fermi version has 96 cuda cores 128bit GF108
* not working Asus
* works
|-
| <!--Description-->nVIDIA Quadro 4000
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}} 2 dp ports
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->142W 2Gb GDDR5 - PCI Express 2.0 x16 ; full Height card with 1x 6-Pin PCIe power need - CUDA Cores 256 - OpenGL 4.5
|-
| <!--Description-->nVIDIA Quadro 5000
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2011 200W 2.5Gb GDDR5 320 bit - PCI Express 2.0 x16 full Height card with 2x 6-Pin PCIe power need -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce GTX Titan GeForce GTX Titan Black GeForce GTX Titan Z
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVE0 family (Kepler) GeForce 600 GeForce 700 GeForce GTX Titan Kepler
|-
| <!--Description-->GeForce GTX 780 GeForce GTX 780 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->PureVideo HD 6" or "VP6" (Nvidia Feature Set E or VDPAU Feature Set E) significantly improved performance when decoding H.264 and MPEG-2
|-
| <!--Description-->GeForce GTX 770
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->opengl 4.4 opencl 1.1
|-
| <!--Description-->GeForce GTX 760 GeForce GTX 760 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce GT 740
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce GT 730 Kepler
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> two versions fermi 96 cores 128bit GF108 and kepler 384 cores 64bit GK208
|-
| <!--Description-->680gtx GK104 core gtx680 680m
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVE0 family (Kepler)
|-
| <!--Description-->GTX 690 Kepler NVE0
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->pci-e 3.0, OpenGL 4.4 OpenCL 1.1
|-
| <!--Description-->GTX 670
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GTX 660 GTX 660 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GTX 650 GTX 650 Ti GTX 650 Ti Boost
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVE0 family (Kepler) most need 1 6pin psu
* not working asus ENGTX560 DC/2DI/1GD5
* works
|-
| <!--Description-->Geforce GT 640
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* 128bit DDR3
* 192bit DDR3 1.5 to 3GB 50W
* 128bit GDDR5 75W
|-
| <!--Description-->GT 620 GT 640
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->Quadro K2000(M)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 - 50w single slot -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce 750ti, GeForce 900
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->[https://nouveau.freedesktop.org/FeatureMatrix.html NV110] Maxwell -
|-
| <!--Description-->Nvidia GTX 750
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x1381
| <!--Revision-->0xa2
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2026 nvidia test
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->GM206 2nd gen maxwell PureVideo HD 7" or "VP7" (Nvidia Feature Set F or VDPAU Feature Set F) adds full hardware-decode of H.265 HEVC Version 1 (Main and Main 10 profiles and full fixed function VP9 (video codec) hardware decoding
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Quadro K620 quadro p620 2gb gddr5 128bit and quadro p1000 4gb gt1030 30w
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 50w slim low profile -
|-
| <!--Description-->GeForce gtx 1060, GeForce 1070
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NV130 Pascal
|-
| <!--Description-->gtx 1050ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->NV130 family (Pascal)
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV132 (GP102) NVIDIA Titan (X, Xp), GeForce GTX 1080 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV134 (GP104) GeForce GTX (1070, 1080)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV136 (GP106) GeForce GTX 1060
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV137 (GP107) GeForce GTX (1050, 1050 Ti)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV138 (GP108) GeForce GT 1030
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV162 (TU102) NVIDIA Titan RTX, GeForce RTX 2080 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV164 (TU104) GeForce RTX (2070 Super, 2080, 2080 Super)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2020 NV160 family (Turing) unified gsp-rm firmware - best starting point for Vulkan support
|-
| <!--Description-->NV166 (TU106) GeForce RTX (2060, 2060 Super, 2070)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV168 (TU116) GeForce GTX (1650 Super, 1660, 1660 Ti, 1660 Super)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV167 (TU117) GeForce GTX 1650
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->gtx 1650ti super
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2018 old style
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV172 (GA102) GeForce RTX (3080, 3090)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 av1 decoding ampere
|-
| <!--Description-->NV174 (GA104) GeForce RTX (3060 Ti, 3070, 3080 Mobile)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->NV170 family (Ampere)
|-
| <!--Description-->NV176 (GA106) GeForce RTX (3050, 3060)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV177 (GA107) GeForce RTX 3050
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV192 (AD102) GeForce RTX 4090
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV193 (AD103) GeForce RTX 4080
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->NV190 family (Ada Lovelace)
|-
| <!--Description-->NV194 (AD104) GeForce RTX (4070, 4070 Ti)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV196 (AD106) GeForce RTX 4060 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV197 (AD107) GeForce RTX 4060
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
|}
==== nouveau mobile integrated ====
If you purchased a notebook with an NVidia sticker on it, most of the time you have a optimus based one, ie Intel CPU+GPU melded with Nvidia GPU, Optimus was slated at one point to go into desktop PCs but the industry ended up rejecting that concept
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|-
| GeForce 6100 nForce 405
| 0x
| 0x03D1 0x0242
| 0x0
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
|
|-
| <!--Description-->GeForce 6100 nForce 400
| <!--Vendor ID-->
| <!--Product ID-->0x03D2
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce 6100 nForce 420
| <!--Vendor ID-->
| <!--Product ID-->0x03D5
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce 6150 LE
| <!--Vendor ID-->
| <!--Product ID-->0x0241
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6150SE nForce 430
| 0x
| 0x03D0
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| working
|-
| <!--Description-->GeForce 6150
| <!--Vendor ID-->
| <!--Product ID-->0x0240
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7150M / nForce 630M
| <!--Vendor ID-->
| <!--Product ID-->0x0531
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7000M / nForce 610M
| <!--Vendor ID-->
| <!--Product ID-->0x0533
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7050 PV / NVIDIA nForce 630a
| <!--Vendor ID-->
| <!--Product ID-->0x053A 0x053B
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Geforce IGP 7025 nForce 630a
| 0x
| 0x053E
| 0x0
| <!--2D-->{{Yes|some}}
| <!--3D-->{{Yes|some}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No| }}
| some support on some chipsets
|-
| GeForce 7100 / nForce 630i (C73)
| 0x10de
| 0x07e1
| 0x0a2
| <!--2D-->{{Maybe}}
| <!--3D-->{{Maybe}}
| <!--Analogue-->{{Maybe}}
| <!--Digital-->{{Maybe}}
| <!--Laptop LCD-->{{N/A}}
| Icaros 2.0.3 and Gigabyte 73-pvm-s2h rev. 1.0 but will not boot on [https://ae.amigalife.org/index.php?topic=806.msg8765#new Acer x270 with Icaros 2.3]
|-
| <!--Description-->GeForce 7150 / NVIDIA nForce 630i
| <!--Vendor ID-->
| <!--Product ID-->0x07E0
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7050 / NVIDIA nForce 610i
| <!--Vendor ID-->
| <!--Product ID-->0x07E3
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Geforce IGP 8100 (nForce 720a)
| 0x
| 0x084F
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
|
|-
| GeForce 8100P
| 0x
| 0x0847
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
|
|-
| <!--Description-->Geforce 8200 8300 nForce 730a
| <!--Vendor ID-->
| <!--Product ID-->0x084A 0x0848 (GeForce 8300) 0x0849 (GeForce 8200) 0x084B (GeForce 8200)
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->working on some 8300's with Icaros 1.5 but others untested
|-
| <!--Description-->nForce 780a SLI
| <!--Vendor ID-->
| <!--Product ID-->0x084C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->nForce 750a SLI
| <!--Vendor ID-->
| <!--Product ID-->0x084D
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Nvidia Geforce IGP 9300 (nForce MCP7a)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->works
|
|-
| <!--Description-->9400 (ION)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->If AROS detects GPU chipset, works well
|-
| <!--Description-->9700M ()
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Geforce ION 2
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->works well
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce Go 6150
| <!--Vendor ID-->
| <!--Product ID-->0x0244
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6100
| <!--Vendor ID-->
| <!--Product ID-->0x0247
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6200
| <!--Vendor ID-->
| <!--Product ID-->0x0164 0x0167
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6400
| <!--Vendor ID-->
| <!--Product ID-->0x0166 0x0168
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->Sony Laptop
|-
| <!--Description-->GeForce Go 6800
| <!--Vendor ID-->
| <!--Product ID-->0x00C8
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6800 Ultra
| <!--Vendor ID-->
| <!--Product ID-->0x00C9
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600
| <!--Vendor ID-->
| <!--Product ID-->0x0144
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600 TE/6200 TE
| <!--Vendor ID-->
| <!--Product ID-->0x0146
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600
| <!--Vendor ID-->
| <!--Product ID-->0x0148
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600 GT
| <!--Vendor ID-->
| <!--Product ID-->0x0149
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7200
| <!--Vendor ID-->
| <!--Product ID-->0x01D6
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7300
| <!--Vendor ID-->
| <!--Product ID-->0x01D7
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->untested
|-
| <!--Description-->GeForce Go 7400
| <!--Vendor ID-->
| <!--Product ID-->0x01D8
| <!--Revision-->
| <!--2D-->
| <!--3D-->works 2D and 3d issues though
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7800
| <!--Vendor ID-->
| <!--Product ID-->0x098
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7800 GTX
| <!--Vendor ID-->
| <!--Product ID-->0x0099
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7950 GTX
| <!--Vendor ID-->
| <!--Product ID-->0x0297
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7900 GS
| <!--Vendor ID-->
| <!--Product ID-->0x0298
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7900 GTX
| <!--Vendor ID-->
| <!--Product ID-->0x0299
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7600
| <!--Vendor ID-->
| <!--Product ID-->0x0398
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7600 GT
| <!--Vendor ID-->
| <!--Product ID-->0x0399
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 6610 XL
| <!--Vendor ID-->
| <!--Product ID-->0x0145
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 6700 XL
| <!--Vendor ID-->
| <!--Product ID-->0x0147
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce 8700M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0409
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8600M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0425
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8400M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0426
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8400M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0427
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8400M G
| <!--Vendor ID-->
| <!--Product ID-->0x0428
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8800M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x0609
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8800M GTX
| <!--Vendor ID-->
| <!--Product ID-->0x060C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9500M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0405
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8600M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0407
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9650M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0408
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9400M GT
| <!--Vendor ID-->
| <!--Product ID-->0x042C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9300M G
| <!--Vendor ID-->
| <!--Product ID-->0x042E
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9100M G
| <!--Vendor ID-->
| <!--Product ID-->0x0844
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9800M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x0628
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9700M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x062A
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9800M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x062C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9600M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0647
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9600M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0648
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9600M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0649
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9500M G
| <!--Vendor ID-->
| <!--Product ID-->0x064B
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9300M GS
| <!--Vendor ID-->
| <!--Product ID-->0x06E5
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9200M GS
| <!--Vendor ID-->
| <!--Product ID-->0x06E8
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9300M GS
| <!--Vendor ID-->
| <!--Product ID-->0x06E8
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->NV50 (G80) Quadro FX (4600 (SDI), 5600)
Quadro FX (2800M, 3600M, 3700, 3700M, 3800M, 4700 X2), VX 200
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV94 (G94) 9700M GTS, 9800M GTS, GeForce G 110M, GT 130(M), GT 140, Quadro FX (1800, 2700M)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV84 (G84) 8700M GT, GeForce 9500M GS, 9650M GS
Quadro FX (370, 570, 570M, 1600M, 1700), NVS 320M
NV86 (G86) GeForce 8300 GS, 8400 (GS, M G, M GS, M GT), 8500 GT, GeForce 9300M G
Quadro FX 360M, NVS (130M, 135M, 140M, 290)
GeForce GTS 150(M), GTS 160M, GTS 240, GTS 250, GTX (260M, 280M, 285M), GT (330, 340)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV96 (G96) 9650M GT, 9700M GT
GeForce G 102M, GT 120
Quadro FX (380, 580, 770M, 1700M)
NV98 (G98) GeForce 8400 GS, GeForce 9200M GS, 9300 (GE, GS, M GS)
GeForce G 100, G 105M
Quadro FX (370 LP, 370M), NVS (150M, 160M, 295, 420, 450)
Quadro CX, FX (3800, 4800, 5800)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVA3 (GT215) GeForce GT (240, 320, 335M), GTS (250M, 260M, 350M, 360M) Quadro FX 1800M
NVA5 (GT216) GeForce GT (220, 230M, 240M, 325M, 330M), 315
Quadro 400, FX 880M, NVS 5100M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVA8 (GT218) GeForce 8400 GS, ION 2, GeForce 205, 210, G 210M, 305M, 310(M), 405
Quadro FX (380 LP, 380M), NVS (300, 2100M, 3100M)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVAA (MCP77/MCP78) GeForce 8100, 8200, 8300 mGPU / nForce 700a series, 8200M G
NVAC (MCP79/MCP7A) ION, GeForce 9300, 9400 mGPU / nForce 700i series, 8200M G, 9100M, 9400M (G)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVAF (MCP89) GeForce 320M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GT 605M, GT 610M GT 620M GT 630M GT 635M GT 645M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GTX 650M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GTX 1650 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2019 turing architecture - last old skool support pre Vulkan
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rtx 2050 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 ampere architecture best starting point for vulkan support
|-
| <!--Description-->rtx 2060 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rtx 4060 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
|}
====radeon.hidd====
Michel Shultz ''2D'' graphics driver (standard on most distributions but only for very old GPUs) and bearsofts updated 2013 around Icaros 1.3.1
3D is not implemented by AROS yet but could cover these AMD chipsets
<pre>
2014 SI AMD HD 7xxx
2016 GCN3rd AMD R5E R7E
2019 GCN5th AMD Vega 8
2022 RDNA1 AMD RX5500 desktop only
2023 RDNA2 AMD 680M 780M
2024 RDNA3 AMD 880M 890M
2025 RDNA3.5 AMD 8060S strix halo and AI
2027 RDNA4 AMD
</pre>
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! 2D
! 3D
! Analogue Output
! Digital Output
! Laptop LCD
! Comments
|-
| 7000 (r100)
| 0x1002
| 0x5159
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->{{Maybe|vga15 pin connection but not s-video}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.3
|-
| 7500 (rv200 but still r100 based)
| 0x1002
| 0x5157
| 0x
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->{{Yes|vga15}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.3
|-
| 8000 8500 (r200)
| 0x1002
| 0x514c (8500LE)
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.4
|-
| 9000 9100 9250 (r200)
| 0x1002
| 0x5964 (9000) 0x514d (9100)
| 0x0001
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->{{Maybe|VGA15 but not s-video}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.4
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| 9600 9800 (r300)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1
|-
| x300 x600 (r300)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1
|-
| x700, x800 ([http://en.wikipedia.org/wiki/Radeon_R600 r420])
| 0x
| 0x554d (R430 x800xl)
| 0x0
| <!--2D-->{{Yes|new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1 - x800 XL PCIE (problem with mouse-pointer, some part of the pointer is not transparent)
|-
| x1300 x1550 x1600 x1800 x1900 x1950 ([http://en.wikipedia.org/wiki/Radeon_R520 r520])
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes|new driver}}
| <!--3D-->{{no}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| HD2400 HD2600 HD2900 ([http://en.wikipedia.org/wiki/Radeon_R600 r600])
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|some features with new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 3.3 open CL 1.2 TeraScale architecture
|-
| HD3400 HD3600 HD3800 (r600)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|some features with new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->pci-e 2.0, openGL 3.3
|-
| HD4300 HD4500 HD4600 HD4700 HD4800 ([http://en.wikipedia.org/wiki/Radeon_R600 r700])
| 0x1002
| 0x
| 0x0
| <!--2D-->{{Maybe|but some later cards need 3D engine for faster and more flexible 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 3.3 - DDR3 - GDDR5 was one of AMD's aces for the 4800 series - 4670 liked -
|-
| HD6900 cayman series
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|some features with new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 3.3 open CL not mature (2014) -
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| HD5400 Series HD5430 HD5450 HD5470
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2010 openGL 3.3 openCL - GDDR3 -
|-
| HD5500 Series HD5550 HD5570 HD5600 Series HD5650 HD5670 HD5700 Series HD5750 HD5770
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 3.3 openCL - GDDR5
|-
| HD 5800 Series HD5850 HD5870 HD5900 Series HD5950 HD5970 - HD6xxx not NI chipset ([http://en.wikipedia.org/wiki/Evergreen_(GPU_family) r800 evergreen])
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 openGL 3.3 openCL - DDR5 pci-e 2.1 best avoided for all pci-e 1.0 mobos - Ati TeraScale2 architecture -
|-
| HD6450 [http://en.wikipedia.org/wiki/Northern_Islands_(GPU_family) Northern Islands chipset]
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> - DDR3 -
|-
| HD6600 Series HD6650 HD6570 HD6600 Series HD6650 HD6670
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2011 - DDR5 -
Radeon HD 8470 11 TeraScale 2
Radeon HD 8350 11 TeraScale 2
Radeon HD 7510 11 TeraScale 2
Radeon HD 6550D 11 TeraScale 2
Radeon HD 6530D 11 TeraScale 2
Radeon HD 6410D 11 TeraScale 2
Radeon HD 6370D 11 TeraScale 2
Radeon HD 6320 11 TeraScale 2
Radeon HD 6310 11 TeraScale 2
Radeon HD 6290 11 TeraScale 2
Radeon HD 6250 11 TeraScale 2
|-
| HD6800 Series HD6850 HD6870 HD6700 Series HD6790 to HD6990
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2011 - DDR5 - AMD TeraScale3 -
|-
| <!--Description-->HD7450-HD7670
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 OpenGL but not Vulkan
Radeon HD 7660D 11 TeraScale 3
Radeon HD 7560D 11 TeraScale 3
Radeon HD 7540D 11 TeraScale 3
Radeon HD 7480D 11 TeraScale 3
Radeon HD 6930 11 TeraScale 3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->HD7750 HD 7770 / R7 250X HD7850 HD7870 / R9 270X HD 7950 / R9 280 HD 7970 / R9 280X [http://en.wikipedia.org/wiki/Southern_Islands_(GPU_family) Southern Islands]
*AMD Radeon R7 250XE Cape Verde XT
*AMD Radeon R7 M465X Cape Verde
*AMD Radeon R9 255 Cape Verde PRX
*AMD Radeon HD 7750 Cape Verde PRO
*AMD Radeon R7 250E Cape Verde PRO
*AMD Radeon HD 8740 Cape Verde PRO
*AMD Radeon HD 7730 Cape Verde LE
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 pci-e 3.0 1st Gen GCN architecture -
|-
| <!--Description-->R5 430, FirePro W2100,
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 50W+ openGL openCL 1/3 speed of gtx750ti 1st gen gcn1
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->HD7790 [ Sea Islands ]
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 openGL 4.1 open CL - GCN2.0 Vulkan 1.0 introduced a Shader Engine (SE) comprising one geometry processor, up to 44 CUs (Hawaii chip), rasterizers, ROPs, and L1 cache and Graphics Command Processor for faster audio/video - suits Vulkan 1.1
|-
| <!--Description-->r5 240 240x (slow) R7 250 250x (faster) HD 7790 / R7 260 260X / R7 360 to R5 350 (fast) and last one R5 430 OEM Plus (slow again)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 50W+ GCN 1st gen - openGL 4.x openCL 1.x Vulkan 1.0
|-
| <!--Description-->R9 290 / R9 390 R9 290X / R9 390X
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2014 GCN 1.1 2nd Gen architecture - openGL 4.x openCL 1.x Vulkan 1.1 -
|-
| <!--Description-->R9 Fury Nano
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 GCN 1.2 3rd Gen - openGL openCL vulkan
|-
| <!--Description-->r-200 series r8 275 285 295 375 [Volcanic Islands]
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 GCN1.2 - openGL 4.x openCL 1.x Vulkan 1.2
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 [https://gpuopen.com/download/AMD_GCN3_Instruction_Set_Architecture_rev1.1.pdf GCN3]
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Radeon™ RX 5700/5600/5500 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 GCN 4 - OpenGL 4, Vulkan 1.3 -
|-
| <!--Description-->Radeon™ RX 400/500 Series like rx vega 580
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->Radeon™ Pro WX 9100, x200 Series and Radeon™ Pro W5700/W5500 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Radeon™ RX 7900/7600 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->Radeon™ RX 6900/6800/6700/6600/6500 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|}
==== amd radeon mobile integrated ====
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|-
| <!--Description-->ATI RC410 [Radeon Xpress 200M]
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x5a62 0x5955 0x5974 (200m)
| <!--Revision-->0x00
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->
|-
| <!--Description-->Mobility Radeon 7500
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x4c57 (7500)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->
|-
| <!--Description-->Mobility Radeon 9000
| 0x1002
| 0x4966 (9000)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->
|-
| <!--Description-->Mobility Radeon 9500 9550 (rv360) 9600 (rv350)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon 9800 (rv420)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon X300 (RV370) X600 (RV380)
| 0x1002
| 0x (RV370) 0x5657 (RV380)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon X700 (RV410) X800 (RV423)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon X1200 (RS69M0)
| 0x1002
| 0x791f
| 0x0
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->X1200 IGP (RS690)
|-
| <!--Description-->Mobility Radeon X1300 X1350 X1400(rv515) X1600 (rv530) X1650 (RV535) X1800 (rv520) x1900 (rv570)
| 0x1002
| 0x71c7 (X1650)
| 0x009e
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon 2100
| 0x1002
| 0x796e (2100)
| 0x0
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{No|}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 2400 (rv610) HD2600 (rv630)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 3100 HD3200 HD3450 3470 (RS780MC RV620) 3670 (M86-XT RV635) HD3870 (M88-LXT RV670)
| 0x1002
| 0x9610 and 0x9612 (HD3200) 0x9614 (HD3300)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 4200 4250 (RV620)
| 0x1002
| 0x (HD4200) 0x9715 (HD4250)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 4330 4530 4550 (M92 RV710) 4650 (M96-XT RV730) 4670 RV730XT 4830 (M97 RV740) 4850 (M98 RV770)
| 0x1002
| 0x (HD4350) 0x9442 (RV770) 0x9490 (HD4670)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 530v (M92 RV710) HD 550v (M96 RV730)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->no support yet
|-
| <!--Description-->Mobility Radeon HD 5430 HD5650 (cedar Park LP)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->no support yet
|-
| <!--Description-->Radeon HD 6250 6290 6310 6320 6350M (Redwood Capilano PRO)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->no support yet
|-
| <!--Description-->AMD 7640G, 8450G, 8550G, 8650G Northern Islands
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 Last real support for old graphics standard before Vulkan takeover
|-
| <!--Description-->R5 M230 M240 M255 - R7 M260 M265 (Kaveri Crystal series with Mantle and HSA)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->2015 Maybe better with Vulkan
|-
| <!--Description-->R5E R7E
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->2016 bristol ridge GCN 3.0 IGP (Carrizo Mobile)
|-
| <!--Description-->AMD Vega 3, 6, 8, 11 iGP
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2018 raven ridge GCN 5th Gen
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->5500m 5600m 5800m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA1 NaviX1 Zen 2
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rx680m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA2 NaviX2 Zen 3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->phoenix apu 1103
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 RDNA3 NaviX3 zen 4
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
==== AMDGPU Vulkan desktop ====
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Kaveri 290 290X, 260 260X
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 AMDGPU Vulkan
|-
| <!--Description-->R9 285 / R9 380 R9 380X Fury / Fury X
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->opengl 4 opencl 1 3rd Gen GCN architecture
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX470 RX460 RX480 RX580 polaris10
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 opengl 4 opencl 2 4th Gen GCN architecture vulkan 1.3
|-
| <!--Description-->RX460 RX560D polaris11
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 opengl 4 opencl 2 4th Gen GCN architecture vulkan 1.3
|-
| <!--Description-->RX580 polaris20
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 opengl 4 opencl 2 4th Gen GCN architecture vulkan 1.3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX 5000 5500 Navi 1x
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RNDA 1
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX 6000 Navi 2x
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RNDA 2 Mesa 21.3 decode av1
|-
| <!--Description-->RX6000
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX 7000
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 RNDA 3 navi
|-
| <!--Description-->RX7000
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->RX9070 rx 9060 XT
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2025 rdna4 navi
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2026 udna (aka rdna5)
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
|}
==== AMDGPU Vulkan mobile ====
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->R5E R7E
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->2016 bristol ridge GCN 3.0 IGP (Carrizo Mobile)
|-
| <!--Description-->Vega 8
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> GCN 5
|-
| <!--Description-->Vega iGP 3, 6, 8, 11
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2018 raven ridge - Graphics Core Next (GCN) 5th gen -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->5500m 5600m 5800m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA1 NaviX1 Zen 2
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rx680m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA2 NaviX2 Zen 3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->phoenix apu 1103
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA3 NaviX3 zen 4
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
fyi if a notebooks with two graphic cards, the integrated Intel card (id 0x7d) for low power usage and a discrete Radeon card (id 0x56) which should be used for GPU-intensive applications. By default the Intel card is always used
[https://wiki.archlinux.org/title/ATI Gallium Radeon HD] is not ported yet but is [https://www.phoronix.com/scan.php?page=news_item&px=Linux-5.9-AMDGPU-Stats really big] and complex so another solution may have to be [https://discuss.haiku-os.org/t/the-graphics-acceleration-can-of-worms/10515/5 found] like [https://discuss.haiku-os.org/t/vulkan-lavapipe-software-rendering-is-working-on-haiku/11363/10 vulkan] where support starts from very recent ISA GCN islands HD7000s cards only
*Vulkan
*Gallium
Vulkan software renderer allows to prepares the infrastructure for hardware rendering. Primary difference between software and hardware renderer is output to regular RAM vs GPU RAM, the rest is almost the same. It is possible to render to GPU RAM offscreen.
bare bones basics data flow
application,>>> api/opengl/vulkan>>>>, jit compiler, >>>>memory manger, >>>>gpu hardware
so you need to have a compiler that takes your api call/program/shaders/drawing commands and turns them into a program the gpu can render.
the vulkan to amd gpu compiler for shaders and textures is nearly os agnostic iirc as long as you have solid posix compliance
Unlike OpenGL, Vulkan does not depend on windowing system and it have driver add-on system with standardized API (Mesa also have OpenGL driver add-ons, but it have non-standard Mesa-specific API). OpenGL may need more work for windowing system related code at this point but developing Vulkan on real hardware is more strategic than developing OpenGL, since now Zink 3 running on Vulkan compensates for the lack of OpenGL support by giving performance similar to native accelerated OpenGL
RadeonGfx use client-server model with client-server thread pairs. For each client thread that calls 3D acceleration API, server side thread is created. If client thread terminates, server side thread also exit.
==Rough gfx comparison==
<pre>
Group 1
GeForce RTX 5090 5070 5060 5050
GeForce RTX 4090 4070 4060 4050
Group 2
GeForce RTX 2070
Radeon RX 7600
Quadro RTX 5000
Radeon PRO W6600
GeForce RTX 2060 12GB
Radeon PRO W7500
Quadro GP100
Radeon RX 6800S
GeForce RTX 3070 Laptop GPU
GeForce GTX 1080
GeForce RTX 3060 8GB
Quadro RTX 4000
Radeon Pro W5700
Radeon RX 6600
GeForce RTX 2080 (Mobile)
Radeon RX 7700S
Radeon RX 6700S
Radeon RX 6600S
Quadro RTX 5000 (Mobile)
GeForce GTX 1070 Ti
GeForce RTX 4050 Laptop GPU
Radeon Pro Vega 64X
Radeon RX 5700
Radeon RX Vega 64
GeForce RTX 2060
GeForce RTX 2070 Super with Max-Q Design
Group 3
Radeon RX 6600M
GeForce GTX 1070
Radeon RX 6650M
GeForce RTX 3060 Laptop GPU
Radeon RX Vega 56
Radeon RX 6700M
GeForce RTX 2080 with Max-Q Design
Radeon RX 6800M
GeForce GTX 980 Ti
Radeon R9 Fury
GeForce GTX 980
Quadro M5500
Radeon R9 390X
Radeon RX 580
Radeon RX 5500
Radeon RX 6550M
GeForce GTX 1660 Ti with Max-Q Design
GeForce GTX 780 Ti
GeForce GTX 970
Radeon R9 290X
Radeon RX 480
Radeon RX 5600M
Quadro RTX 3000 with Max-Q Design
Radeon R9 290X / 390X
Ryzen 5 4600HS with Radeon Graphics
Radeon R9 290
Radeon Pro 5500 XT
Radeon R9 M490 *
GeForce GTX 780
Radeon RX 6500M
Quadro M5500
GeForce GTX 1060 with Max-Q Design
Radeon RX 6500
Radeon RX 5300
Intel Arc A770M
GeForce GTX 1650 Ti
Radeon Pro 580X
Radeon RX 6400
GeForce RTX 2050
Ryzen 9 4900HS with Radeon Graphics
Radeon Ryzen 9 6900HS
GeForce GTX 980M
Quadro M5000M
Radeon RX 6300
GeForce GTX 1650 Ti with Max-Q Design
Radeon Pro 570
Ryzen 9 6900HS with Radeon Graphics
GeForce GTX 1050 Ti
Quadro M4000M
Radeon R9 280X 380X
GeForce GTX 1650 with Max-Q Design
GeForce MX570
Radeon R9 280X
Radeon R9 380
Radeon 780M
GeForce GTX 960
GeForce GTX 970M
Quadro M4000M *
GeForce GTX 680
Group 4
Radeon RX 6500M
Quadro M5500
Radeon Pro WX 7100
GeForce GTX 1060 with Max-Q Design
GeForce GTX 1650
Intel Arc A730M
Radeon HD 7970
Radeon R9 M395X
Radeon R9 M485X
Radeon R9 M480 *
Radeon R9 M295X
Radeon R9 M390X *
FirePro W7170M *
Radeon R9 M395
Radeon R7 370
Radeon RX 5500M
GeForce GTX 590
GeForce GTX 880M
GeForce GTX 950
Radeon R9 270X
GeForce GTX 660 Ti
GeForce GTX 760
GeForce GTX 780M
Quadro K5100M
GeForce GTX 680MX
Radeon HD 7870
GeForce GTX 965M
Quadro M3000M *
GeForce GTX 870M
Radeon R9 M290X
Radeon HD 8970M
Radeon Ryzen 7 7735U (680M), Radeon Ryzen 7 7735HS (680M 12C)
GeForce GTX 580
Radeon HD 6970
GeForce GTX 1050
GeForce GTX 680M
GeForce GTX 775M
GeForce GTX 1630
FirePro M6100
Radeon HD 7970M
Radeon R9 M390 *
GeForce GTX 750 Ti
Group 5
GeForce GTX 570
GeForce GTX 480
GeForce GTX 960M
Quadro M2000M *
Quadro K5000M
Quadro K4100M
GeForce GTX 770M
GeForce GTX 860M
GeForce GTX 675MX
GeForce GTX 950M
GeForce GTX 850M
Quadro M1000M
Radeon R9 M280X
Radeon HD 7950M *
GeForce GTX 560 Ti
Radeon HD 6870
GeForce GTX 470
GeForce GT 1030
GeForce MX330
Ryzen 5 PRO 5650GE with Radeon Graphics
Ryzen 7 5800HS
FirePro 3D V8800
GeForce MX250
Group 6
Radeon Pro WX 3200
Ryzen 7 PRO 5750G with Radeon Graphics
Radeon Ryzen 5 5600H
Ryzen 5 Pro 4650G with Radeon Graphics
Radeon Ryzen 7 5800U
Ryzen 7 7730U with Radeon Graphics
Radeon Ryzen 7 5825U
Radeon Pro WX 4150
Radeon Ryzen 5 PRO 4655G
Ryzen 5 4600G with Radeon Graphics
Radeon Ryzen 5 PRO 4655GE
GeForce GTX 485M
FirePro W6150M
Ryzen 7 5800U with Radeon Graphics
Ryzen 5 7530U with Radeon Graphics
Ryzen 7 4800U with Radeon Graphics
Radeon R9 M470
Ryzen 3 PRO 5350G with Radeon Graphics
Radeon RX Vega Ryzen 3 5300U
Ryzen 7 5825U with Radeon Graphics
Ryzen 5 PRO 4400G with Radeon Graphics
Radeon Ryzen 7 PRO 4750GE
Radeon Ryzen 7 4800U
FirePro V7900
Radeon HD 5970
Radeon Ryzen 7 7700X 8-Core
Radeon Ryzen 5 PRO 5650G
Radeon Ryzen 5 4400G
Radeon Ryzen 5 PRO 5650GE
Radeon RX 550X
FirePro V8800
Radeon RX Vega Ryzen 5 5500U
GeForce MX150
Quadro K3100M
Ryzen 7 PRO 5850U with Radeon Graphics
Radeon HD 6970M
Radeon R7 250X
Intel HD 5600
Ryzen 3 4300GE with Radeon Graphics
GeForce GTX 460
Ryzen 7 5700U with Radeon Graphics
Radeon Ryzen 5 7530U
Quadro K620
Ryzen 3 PRO 5350GE with Radeon Graphics
Intel Iris Pro P580
Intel UHD Graphics P630
Ryzen 5 4600H with Radeon Graphics
Ryzen 5 PRO 7530U with Radeon Graphics
Radeon HD 5870
Radeon HD 6870
Ryzen 7 4700G with Radeon Graphics
Ryzen 5 5600U with Radeon Graphics
Radeon HD 7770
Ryzen 3 Pro 4350G with Radeon Graphics
Radeon Ryzen 5 5625U
GeForce GTX 745
Radeon Ryzen 7 4850U Mobile
Radeon Ryzen 3 PRO 7330U
Quadro M600M
Radeon Ryzen 5 5500U
Ryzen 5 5560U with Radeon Graphics
Ryzen 7 4800H with Radeon Graphics
Group 7
GeForce 945M
Ryzen 5 PRO 4650GE with Radeon Graphics
FirePro M5100
Radeon Ryzen 5 5600U
Radeon Ryzen 5 PRO 4500U
GeForce GTX 580M
Ryzen 7 PRO 5875U with Radeon Graphics
Ryzen 3 5300GE with Radeon Graphics
Radeon R9 M385
Quadro 5000M
Radeon Ryzen 7 4700U
Ryzen 5 PRO 5650U with Radeon Graphics
Radeon Ryzen 7 PRO 4750U
Ryzen 7 4700U with Radeon Graphics
Ryzen 7 PRO 4750U with Radeon Graphics
FirePro V7800
Radeon R9 350
Ryzen 3 4300G with Radeon Graphics
Radeon Vega 11 Ryzen 5 PRO 3350G
Radeon Ryzen 5 5560U
GeForce GTX 460 SE
Radeon Pro W5500M
Radeon Vega 11 Ryzen 5 PRO 3400G
Ryzen 5 5500U with Radeon Graphics
Ryzen 5 PRO 4500U with Radeon Graphics
GeForce GT 645
GeForce GTX 765M
Radeon R9 M385X
Ryzen 5 5625U with Radeon Graphics
Ryzen 3 PRO 7330U with Radeon Graphics
Radeon HD 5850
Radeon Vega 11 Ryzen 5 PRO 2400G
Intel Iris Pro 580
Radeon HD 6850
Intel Iris Xe MAX
Radeon Ryzen 7 PRO 5875U
Radeon Ryzen 5 7600 6-Core
GeForce GTX 470M
Ryzen 3 5300G with Radeon Graphics
GeForce GTX 670MX
Radeon RX 640
Qualcomm Adreno Gen 3
Radeon R7 450
GeForce GTX 675M
Radeon Pro WX 4130
Intel Iris Xe MAX 100
Quadro 5000
Radeon RX 570X
Radeon HD 7700-serie
Ryzen 5 4600U with Radeon Graphics
Ryzen 3 PRO 4350GE with Radeon Graphics
Radeon Vega 8
Group 8
GeForce MX230
GeForce GTX 765M
Quadro K4000M
Iris Pro Graphics P580 *
Iris Pro Graphics 580 *
GeForce GTX 645
Quadro M520
GeForce GTX 570M
GeForce MX130
Radeon RX 540
Radeon Ryzen 5 PRO 5675U
Intel UHD Graphics 770
Radeon RX Vega 11 Ryzen 7 3750H
Radeon Vega 11 Ryzen 5 PRO 3400GE
Radeon HD 5850
GeForce GTX 675M
GeForce GTX 580M
Radeon HD 6990M
Radeon R9 M385X *
Radeon R9 M470X *
Radeon R9 M470 *
Radeon R9 M385 *
Radeon R9 M380 *
Radeon R9 M370X
Radeon R9 M275
Radeon HD 7770
GeForce GTX 485M
GeForce GTX 460 768MB
Radeon HD 6790
GeForce GTX 285M SLI
Quadro K3100M
FirePro W5170M *
GeForce GTX 670MX
Quadro 5010M
GeForce GTX 760M
GeForce GTX 670M
Group 9
GeForce 940MX *
Maxwell GPU (940M, GDDR5)
FirePro M8900
Radeon HD 6970M
Radeon R9 M270
Radeon HD 8870M
Radeon HD 7870M
Quadro K3000M
GeForce GTX 570M
FirePro M6000
FirePro M5100
Quadro K2100M
Radeon HD 5770
GeForce GTX 550 Ti
GeForce GTX 280M SLI
Radeon HD 6950M
Radeon R7 250
GeForce GT 755M
GeForce GTX 660M
GeForce 845M
Radeon HD 8850M
Radeon R9 M365X
Radeon R9 M265X
Ryzen 5 PRO 4400GE with Radeon Graphics
FirePro W5130M *
Radeon Vega 8 Ryzen 5 3500U
Radeon HD 7850M
Radeon HD 8790M
FirePro W4170M
FirePro W4190M
FirePro W4100
Radeon Vega 6 Ryzen 3 3300U
Quadro 4000M
GeForce GTX 470M
GeForce GTX 480M
GeForce GT 750M
Iris Pro Graphics 6200
Quadro K1100M
GeForce 940M
Radeon R9 M375
GeForce 930MX *
Radeon R7 M380 *
Radeon R7 M370
Quadro M600M *
GeForce GT 650M
Quadro K620M
GeForce 840M
Radeon R7 M275DX
GeForce GT 745M
Radeon HD 7770M
GeForce GTX 560M
Radeon R7
Iris Pro Graphics 5200
GeForce GT 740M
GeForce 930M
Radeon HD 4850
Group 10
Iris Graphics 550 *
GeForce 830M
Iris Graphics 540
Quadro M500M *
Quadro K2000M
GeForce GTS 450
GeForce GTX 260M SLI
GeForce GT 735M
Mobility Radeon HD 5870
GeForce 825M
Quadro 5000M
FirePro M4000
FirePro M7820
Radeon HD 6870M
GeForce 9800M GTX SLI
Radeon HD 8830M *
Radeon HD 8770M
Radeon R7 M260X
GeForce GTX 460M
GeForce 920MX *
GeForce GT 730M
Radeon HD 7750M
GeForce GT 645M *
FirePro M4100
Radeon HD 8750M
Radeon R6 A10-9600P 4C+6G
Quadro 3000M
Radeon R7 M270
Radeon R7 M265
Quadro FX 3800M
GeForce GTX 285M
Mobility Radeon HD 4870
GeForce GT 640M
Radeon R7 (Kaveri)
Radeon R8 M365DX
Radeon R7 M460 *
Radeon HD 7730M
Radeon R7 M360
GeForce GTX 280M
Radeon HD 8690M
Quadro FX 3700M
Radeon R7 M340
GeForce 920M
Radeon R6 M340DX
HD Graphics 530
HD Graphics P530
Tegra X1 Maxwell GPU
Radeon R7 M260
Radeon R6
Group 11
Mobility Radeon HD 4860
FirePro M7740
Mobility Radeon HD 4850
GeForce GTX 260M
GeForce 9800M GTX
Quadro FX 2800M
Radeon HD 8670D
Radeon HD 7690M XT
FirePro M5950
GeForce GT 640M LE
Radeon R6 (Kaveri)
Radeon HD 8650M *
Radeon HD 8730M
Radeon HD 6770M
GeForce GT 635M
GeForce GT 555M
Radeon R7 A10 PRO-7800B
Radeon HD 5670
Mobility Radeon HD 5850
Radeon HD 6850M
Quadro 2000M
GeForce 9800M GT
GeForce 8800M GTX
Quadro FX 3600M
GeForce GT 445M
GeForce GTS 360M
Group 12
GeForce GT 240
Radeon R7 PRO A10-9700
Radeon HD 7690M
HD Graphics 5600
Radeon HD 8570D
Radeon HD 8670M
Radeon R6 M255DX
Radeon HD 7660D
Radeon HD 6750M
Quadro K1000M
GeForce GT 550M
Radeon HD 8590M *
GeForce GTS 260M
GeForce GTS 160M
GeForce 9800M GTS
GeForce GT 430
Radeon HD 6830M
Mobility Radeon HD 5830
Radeon HD 6730M *
GeForce 9800M GS
Mobility Radeon HD 4830
Mobility Radeon HD 5770
Radeon HD 6570M
Radeon HD 8650G
Radeon HD 7670M
GeForce GT 630M
Radeon HD 7560D
GeForce GTS 150M *
Radeon R5 M335
Radeon R5 M430 *
Radeon R5 M330
Radeon R5 M255
Radeon Vega 3
Quadro 1000M
GeForce 820M
FirePro W2100
HD Graphics 520 620
Iris Graphics 6100
GeForce GT 720M
GeForce 8800M GTS
Radeon R5 M240
Radeon R5 M320 *
Radeon R5 M230
Radeon R5 M315 *
Mobility Radeon HD 5750 *
Radeon HD 8570M
Radeon R7 PRO A10-8850B
HD Graphics 6000
Quadro K610M
Radeon HD 8550M
Iris Graphics 5100
GeForce GT 540M
Mali-T880 MP12 *
Radeon HD 8610G *
Radeon HD 6650M
HD Graphics 4600
Mobility Radeon HD 5730
HD Graphics 5500
Radeon R5 (Carrizo) *
Radeon R5 (Kaveri)
FirePro M5800
NVS 5400M
GeForce 710M
Radeon HD 7660G
GeForce GT 435M
HD Graphics 5000
Quadro K510M *
Radeon HD 5570
Radeon HD 6550M
Radeon HD 7590M *
GeForce GTS 350M
GeForce GTS 250M
Radeon HD 6630M
Radeon HD 7650M
FirePro M2000
Radeon HD 7570M
Radeon HD 7630M
Quadro FX 1800M
Mobility Radeon HD 5650
Radeon HD 8510G *
Radeon HD 6530M
Radeon HD 8550G
Quadro K500M *
GeForce GT 625M *
GeForce GT 620M
GeForce GT 525M
Radeon HD 6550D *
Radeon HD 7610M
Radeon HD 7620G
Radeon HD 8470D
Radeon HD 7640G
Adreno 530
GeForce ULP K1 (Tegra K1 Kepler GPU)
HD Graphics 4400
HD Graphics 510 515 *
NVS 5200M
Mobility Radeon HD 565v
Radeon HD 7550M
Mobility Radeon HD 4670
GeForce GT 425M
GeForce 9700M GTS
Radeon HD 6645G2 *
Quadro FX 2700M
GeForce GT 335M
Radeon HD 7600G
Mobility Radeon HD 3870
Mobility Radeon HD 4650
GeForce GT 220
GeForce GT 420M
Radeon HD 7530M *
Mobility Radeon HD 3850
GeForce GT 330M
Quadro FX 880M
Quadro NVS 5100M
GeForce GT 240M
Radeon HD 7490M *
HD Graphics 5300
Radeon HD 7510M *
GeForce Go 7950 GTX
Quadro FX 3500M
GeForce 8700M GT SLI
GeForce 9700M GT
GeForce GT 230M
Mobility Radeon HD 550v
Radeon HD 7480D
HD Graphics 4000
Mali-T760 MP8
Radeon HD 6620G
HD Graphics (Broadwell) *
Adreno 430
Radeon R5 (Beema/Carrizo-L)
Radeon R4 (Beema) (Kaveri)
HD Graphics (Skylake) *
Radeon HD 6450 GDDR5
Radeon HD 7500G
Radeon HD 8450G
Radeon HD 7470M
Radeon HD 6490M
Radeon HD 8400
Mali-T880 MP4
GeForce GT 520MX
Radeon HD 7520G
GeForce GT 325M
GeForce Go 7800 GTX SLI
GeForce 8600M GT SLI
GeForce Go 7900 GS SLI
GeForce GT 130M
NVS 4200M
GeForce Go 7900 GTX
Quadro FX 2500M
Radeon HD 8350G
Radeon HD 8330
GeForce 9650M GS
GeForce 9650M GT
Radeon R3 (Mullins/Beema)
GeForce 8700M GT
Quadro FX 1700M
Quadro FX 1600M
GeForce Go 7800 GTX
GeForce Go 7900 GS
Quadro NVS 320M
Quadro FX 1500M
GeForce 9600M GT
GeForce GT 220M
Quadro FX 770M
GeForce GT 120M
Radeon HD 7450M
GeForce 610M
GeForce 705M
Mali-T760 MP6
Radeon HD 6470M
FirePro M3900 *
GeForce GT 520M
Radeon HD 7420G
Mobility Radeon HD 3670
Mobility FireGL V5725
PowerVR GX6450
Adreno 420
HD Graphics (Haswell)
Radeon HD 6520G
Radeon HD 8310G *
GeForce 320M
GeForce GT 320M
Mobility Radeon HD 2600 XT
Mobility Radeon X1900
Mobility Radeon X1800XT
Mobility Radeon X1800
GeForce Go 6800 Ultra
GeForce Go 7800
GeForce 9600M GS
GeForce 9500M GS
Radeon HD 7400G
Radeon HD 6480G *
Mobility Radeon HD 2700
GeForce GT 415M
GeForce 410M
Radeon HD 7370M
Adreno 418
HD Graphics (Cherry Trail)
Radeon HD 6370M
Radeon HD 8280
Mobility Radeon HD 5470
Radeon HD 6450M
Radeon HD 7430M *
Mobility Radeon HD 3650
Mobility FireGL V5700
Mobility Radeon HD 5145
Mobility Radeon HD 545v
Radeon R6 (Mullins) *
Radeon HD 8240
Radeon HD 8250
Mobility Radeon HD 4570
Quadro FX 570M
Mobility Radeon HD 5450 *
Radeon R2 (Mullins/Beema) *
GeForce 8600M GT
Mobility Radeon HD 2600
HD Graphics 3000
Quadro FX 380M
GeForce 310M
GeForce G210M
NVS 3100M
GeForce 405M
GeForce 315M
GeForce Go 7600 GT
GeForce 9500M G
GeForce 8600M GS
NVS 2100M
GeForce Go 7700
GeForce Go 6800
Quadro FX Go 1400
Mobility Radeon X800XT
Radeon HD 6430M *
Radeon HD 6380G *
Mobility Radeon HD 5430
Radeon HD 8210
Mobility Radeon HD 540v
Mobility Radeon HD 4550
HD Graphics 2500
HD Graphics (Ivy Bridge)
Quadro NVS 310
Radeon HD 7350M *
Radeon HD 6350M *
Mobility Radeon HD 4530
Mobility Radeon HD 4350
Radeon HD 4350
GeForce 305M
Mobility Radeon X1700
Mobility FireGL V5250
Mobility Radeon X2500
GeForce Go 7600
Quadro NVS 300M
Mobility Radeon X800
Mobility Radeon X1600
Mobility FireGL V5200
Mobility Radeon 9800
GeForce Go 6600
Mobility Radeon X1450
Mobility Radeon X700
Mobility FireGL V5000
GeForce G 110M
Quadro NVS 295
Radeon HD 6330M *
Mobility Radeon HD 4330
GeForce 8400M GT
Quadro NVS 140M
HD Graphics 2000
GeForce 9500M GE *
GeForce 9400M (G) / ION (LE)
HD Graphics (Sandy Bridge) *
Adreno 330
PowerVR G6430
PowerVR GX6250
PowerVR G6400
HD Graphics (Bay Trail)
Mali-T628 MP6
Mali-T760 MP4
Chrome9HD *
Radeon HD 7340
Radeon HD 6320 *
Radeon HD 7310
Radeon HD 6310 *
Radeon HD 8180
Mobility Radeon HD 3470
GeForce 9300M G
ION 2 *
GeForce 9300M GS
Quadro FX 370M
Quadro NVS 160M
GeForce 9200M GS
Mobility Radeon HD 3450
Mobility Radeon HD 3430
Mobility Radeon HD 3410
Mobility Radeon HD 2400 XT
Radeon HD 4270
Radeon HD 4250
Radeon HD 7290 *
Radeon HD 6290 *
Radeon HD 4200
Graphics Media Accelerator (GMA) HD Graphics
Radeon HD 6250
Quadro NVS 150M
Quadro FX 360M
Mobility Radeon X1350
Mobility Radeon X1400
GeForce 9100M G
GeForce 8400M GS
Quadro NVS 135M
Mobility Radeon HD 2400
Radeon HD 3200
Radeon HD 4225 *
Radeon HD 4100 *
SGX554MP4
Mali-T628 MP4
Mobility Radeon HD 3400 *
Radeon HD 3100
GeForce 8400M G
Mali-T860 MP2
Quadro NVS 130M
GeForce 8200M G
Graphics Media Accelerator (GMA) 4700MHD
Graphics Media Accelerator (GMA) 4500MHD
Graphics Media Accelerator (GMA) 4500M
Mali-T604 MP4
GeForce Go 7400
Quadro FX 350M
Quadro NVS 120M
GeForce Go 7300
GeForce Tegra 4 *
PowerVR G6200
Adreno 405 *
Quadro NVS 110M
Mobility Radeon X600
Mobility FireGL V3200
Mobility FireGL V3100
Mobility Radeon HD X2300
Mobility Radeon 9700
Mobility FireGL T2e
Mobility Radeon X1300
GeForce4 4200 Go
Mobility Radeon 9600
Mobility FireGL T2
Mobility Radeon 9550
GeForce Go 7200
GeForce Go 6400
Mobility Radeon X300
GeForce Go 6250
GeForce Go 6200
GeForce FX Go 5700
Quadro FX Go 1000
GeForce FX Go 5600 / 5650
Radeon Xpress X1270
Radeon Xpress X1250
Radeon Xpress X1200
Graphics Media Accelerator (GMA) X3100
Mali-T624
Adreno 320 *
Mali-T760 MP2
Mali-T720 MP4
Mali-450 MP4
Graphics Media Accelerator (GMA) 3650 *
GeForce 7190M *
GeForce 7150M
Radeon Xpress 1150
GeForce Go 6150
GeForce Go 6100
GeForce 7000M
Graphics Media Accelerator (GMA) 3600 *
Mobility Radeon 9200
Mobility FireGL 9000
GeForce FX Go 5200
Mobility Radeon 9000
GeForce 4 488 Go
GeForce 4 460 Go
GeForce 4 440 Go
GeForce 4 420 Go
Graphics Media Accelerator (GMA) 3150
Graphics Media Accelerator (GMA) 950
SGX545 SGX544MP2 SGX543MP2 *
Mali-T720 MP2
Mali-T720
Adreno 302 304 305 306
Mobility Radeon 7500
Mobility FireGL 7800
Graphics Media Accelerator (GMA) 900
Radeon Xpress 200M
Radeon Xpress 1100
Mirage 3+ 672MX
Mirage 3 671MX
Mali-400 MP4 *
GeForce ULP (Tegra 3) *
VideoCore-IV *
Adreno 220 225*
Vivante GC1000+ Dual-Core
Mali-400 MP2 *
GeForce ULP (Tegra 2) *
Graphics Media Accelerator (GMA) 600 *
SGX540 *
Graphics Media Accelerator (GMA) 500
Adreno 205 *
Adreno 203 *
GC800 *
SGX535
SGX531
SGX530
Adreno 200 *
Mali-200 *
GeForce 3 Go *
GeForce 2 Go 200 / 100
Mobility Radeon 9100 IGP
Mobility Radeon 9000 IGP
Mobility Radeon M7
Mobility Radeon M6
Chrome9 HC
Extreme Graphics 2
Mobility Radeon 7000 IGP
Radeon IGP 340M
Radeon IGP 320M
S3G UniChrome Pro II
S3G UniChrome Pro
Castle Rock
Mirage 2 M760
Mirage M661FX
S3 Graphics ProSavage8
Mobility 128 M3
SM502 *
</pre>
Kernel-space drivers like '''radeon''' (older AMD driver for older GPUs), '''amdgpu''' (newer driver for newer GPUs, allows using a few new features), i915, nouveau and a few others. They are what handles the gory details of talking to the GPU itself (writing to proper registers, handling its memory directly, configuring outputs, and so on). Unfortunately most of what they're exposing can be only consumed by a single user of that GPU, which is why we need...
DRM and DRI (Direct Rendering Manager/Infrastructure) controls access to the GPUs, provides interfaces for talking to the GPU concurrently by multiple apps at once (without them breaking each other) and lets the system perform the most basic tasks like setting proper resolution and such if no userspace apps understand how to talk to the GPU exposed. DRI and DRM expose the GPU interfaces mostly as-is, not in a "vendor-neutral" portable way - if you don't have an application developed specifically for a GPU you have, it won't work.
"let's create a vendor-neutral interface for graphics so that apps can ignore the GPU-specific bits and get right to the drawing!" - which is what OpenGL is. User-space drivers implement the OpenGL specification and expose it as an OpenGL library to apps (like games, browsers, etc) instead of the GPU. Mesa is the most popular collection of open-source user-space drivers and contains a few user-space drivers for different GPU families: '''radeonsi''' for most modern AMD GPUs (and '''r600g''', r300g and others for older ones), '''i915/i965''' for old/new Intel GPUs and '''nouveau''' for Nvidia GPUs.
There's also Gallium, which is a bunch of utilities and common code shared among these drivers - if certain things can be done once and work everywhere, they'll land in Gallium and benefit all the drivers. Most Mesa drivers use Gallium (radeonsi, nouveau, software renderers), some don't (intel after gma950).
Displaying 2D windows supports device-specific 2D drivers as well, but nowadays most of these are no longer needed as the modesetting can handle most hardware on its own. As the DRM/DRI got some additional interfaces for what used to be hardware-specific (setting resolutions, refresh rates, etc) and software requiring accelerated 2D drawing was optimized OpenGL-based renderers, dedicated 2D acceleration is slowly going away. Since around 2012, the 3D part of the graphics card deals with 2D operations.
Modern GPUs can also decode video!? There's VDPAU (NVIDIA & AMD GPUs) and VA-API (AMD & Intel GPUs) that can also talk to the GPU exposed via DRM/DRI and issue proper commands to decode/encode a given video stream. Those drivers are GPU-specific too.
So let's say you have some example GPUs, here's how example stacks could look like:
* AMD Radeon HD8750: amdgpu -> DRM/DRI -> Mesa (radeonsi)
* AMD Radeon HD4850: radeon kernel driver -> DRM/DRI -> Mesa (r600g) -> games/apps/etc.
* NVIDIA GeForce 460: nouveau kernel driver -> DRM/DRI -> Mesa (nouveau) -> games/apps.
* Intel GMA950: i915 kernel driver -> DRM/DRI -> Mesa (i945) -> games/apps.
{| class="wikitable sortable" width="90%"
! width="15%" | Description
! width="15%" | Analog Output
! width="15%" | Digital Output
! width="15%" | Laptop LCD
! width=30%" | Comments
|-
| <!--Description-->Fudomi GC888A
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->1080p 100in throw projector
|-
| <!--Description-->Vamvo VF320 (720P)
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->720p 90in
|-
| <!--Description-->Happrun H1
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->1080p 90in
|-
| <!--Description-->Umbolite Magcubic HIPPUS HY320 Mini
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->720p 100in
|-
| <!--Description-->Zentality A10 Plus
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->720p 110in
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->nexigo nova mini
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->nebula mars 3
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->epson lifestudio flex plus portable projector
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->dangbei freedo
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->benq gv50
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
Unless your computer uses a Firewire chipset manufactured by Texas Instruments, FireWire interfaces are likely to act buggy.
AROS is unlikely to ever support FireWire.
Bluetooth is similarly unlikely to be ever supported due to huge cost to be certified.
No, x86 PCMCIA card.resource at the moment. Writing card.resource would be a similar amount of work to writing a typical driver. However, it might be complicated by having to support a variety of PCMCIA-controller chipsets like TI PCI1225, PCI1410, PCI1420, 1450, PCIxx12 and O2, etc. m68k card.resource does not really have many higher level functions, most functions are really simple or poke Gayle registers directly. only exception is CopyTuple(). Amiga card.resource has one significant flaw: it's single-unit. would need card.resource and pccard.library. There was talk in the past of designing a new API for PCMCIA because card.resource only supports one slot, but since most modern laptops only have one slot anyway, I think it might be worthwhile to implement card.resource as-is (at least as a first step). pccard.library would be trivial to port. So, a new API is needed.
rd0po9tm7twsossazndorlc524jddjx
4641123
4641121
2026-06-25T13:22:30Z
Jeff1138
301139
4641123
wikitext
text/x-wiki
Google translation into [http://translate.google.com/translate?hl=en&sl=auto&tl=de&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support German], [http://translate.google.com/translate?hl=en&sl=auto&tl=fr&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support French], [http://translate.google.com/translate?hl=en&sl=auto&tl=nl&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Dutch], [http://translate.google.com/translate?hl=en&sl=auto&tl=it&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Italian], [http://translate.google.com/translate?hl=en&sl=auto&tl=es&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Spanish], [http://translate.google.com/translate?hl=en&sl=auto&tl=hi&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Hindi],
[http://translate.google.com/translate?hl=en&sl=auto&tl=zh-CN&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Chinese Simplified],
[http://translate.google.com/translate?hl=en&sl=auto&tl=pl&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Polish],
[http://translate.google.com/translate?hl=en&sl=auto&tl=ru&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Russian],
{{ArosNav}}
[[#Audio Chipsets]]
[[#Graphic GFX Chipsets]]
[[#Rough gfx comparison]]
[[#]]
==x86 Native Environment==
AROS should run on almost any i386 PC hardware so long as the CPU is newer than an i486, and has a "Floating Point Unit (FPU)". Ideally around 700Mhz and above with at least 256MB of memory is recommended for desktops and around 1GHz and at least 256MB for laptops/notebooks/netbooks. For web browsing, etc above 1GB is usually needed and offers the option to run web browsers, media players and other hard disk heavy usage from RAM: disk.
Motherboards supported
* Most Intel mobos are supported (Skt 775 is ok but newer is better) - additional pci / pci-e cards may be needed for networking, audio, etc
* AMD based socket 939 am2 am2+ am3+, fusion and am4 ryzen based systems work but additional pci / pci-e cards may be needed
Supported graphics cards (gfx)
* Nvidia 2D and 3D 2005-2017.
64bit AROS Nouveau covers '''2D''' 8xxxgs and higher to GTX 900s and '''3D''' from .
32bit AROS supports '''2D''' from TNT through to fermi gtx5xx and '''3D''' acceleration fx5xxx to gtx4xx.
* Intel GMA 2D and 3D 2006-2009.
'''2D''' for many old netbooks and motherboards. '''3D''' for many early netbooks and motherboards
* AMD/ATI 2D only and '''no 3D'''. 1999-2005.
Desktop ie external monitor support only (no laptop internal support) for very early Radeon 7000 through to x600. Experimental 2D version for up to HD3xxx came later
* VESA 2D fallback modes for all graphic cards (GPUs) and with [http://www.youtube.com/watch?v=HKCHZFYj9Kk screen dragging].
It's worth noting however that support isn't guaranteed. Nor will potential power of a card reflect its performance under AROS.
Sound wise there are
* HDaudio support for onboard intel and AMD netbooks, ultrabooks, notebooks and motherboards (2005 to 2020)
* some AC97 codec support for very old motherboards and laptops (ie pre 2004)
* PCI and some PCI-E C-Media CMI8738 for desktop plugin cards
* PCI Creative Soundblaster EMU10K1 cards [http://amigaworld.net/modules/news/article.php?storyid=2512 SBLive]
* PCI semi professional some early VIA Envy24 desktop sound cards
* PCI Sound Blaster 128 aka SB16
Supported [http://en.wikibooks.org/wiki/Aros/Platforms/x86_Network_support network] which could be desktop, laptop, etc
* PCI-E Realtek rtl8169 which also includes the rtl8111 and rtl8110
* PCI Realtek rtl8139 and includes rtl8101 and rtl8100
* PCI intel pro100
* Broadcom 44xx 10/100 integrated in laptops around 2005
* VIA 10/100
* 3com Etherlink 10/100
* Realtek rtl8029 10mbit
Wireless wifi
* atheros 5000 wireless
*realtek 8187 usb
It is very hard to recommend a completely supported motherboard because as soon as newer motherboards arrive so their features change subtly, often introducing non supported parts like ethernet and audio. It is a moving target.
* mini-itx motherboard will only get you 1 pci or pci-e slot
* micro mATX or uATX will have more, typically 2 pci-e or pci slots which helps if any onboard features are not supported.
* full atx will have more slots available
'''N.B''' It is frustrating when a piece of hardware is not supported. Hardware documentation can run to over 100 pages and a lot of hardware do not have any public documentation anyway. Chips from different manufacturers for sound, graphics, SATA, etc. vary just as much, unless they follow a standard such as [https://github.com/acidanthera/AppleALC/wiki/Supported-codecs HDAudio codecs], AHCI etc.
Coding drivers is a far cry from Hello World programs or even a port of existing software. If you do actually want to try then get a hold of documentation on the relevant hardware and start there. Alternatively you could try to find some '''BSD''', MIT or MPL licence drivers as a point of reference. Please , do not think you can just adapt strings in a driver for different strings, it does not work that way. You will '''need''' to start from scratch for each new bit of hardware. Device driver programming require '''embedded''' skills, like manipulation of bits within registers, good debugging skills, dealing with interrupts, lots of patience, etc.
The following specific chipsets and drivers are also available - use Tools/PCITool to confirm Vendor and Product IDs - Please let us know any mistakes or any information to be added, to this General Chat list on [https://arosworld.org/ AROS World]
: Brief Timeline
: 2000-12-06 HIDD first mouse.hidd completed ([http://msaros.blogspot.com/ Michal Schulz])
: 2001-03-31 BOOT first boot from floppy disk with IDE device
: 2001-10-30 BOOT first cd bootable version
: 2002-01-27 HIDD first pci.hidd added (Michal Schulz)
: 2002-04-13 BOOT software HDToolBox added ()
: 2003-04-03 HIDD vesa2.hidd graphic modes added ()
: 2004-03-08 HIDD new pci and ata (pata) devices worked on (Michal Schulz)
: 2004-03-17 HIDD nVidia 2D driver appears (Michal Schulz)
: 2005-01-05 AHI AHI v6 audio system ported (Martin Blom)
: 2005-01-06 AHI SBLive SoundBlaster Live driver ported (Georg Steger)
: 2005-02-04 AHI AC97 playback only driver added (Michal Schulz)
: 2005-06-27 NIC amiTCP stack ported with 3com, NE2000, prism2 drivers (Neil Cafferkey)
: 2005-08-25 NIC nForce2 support added (Michal Schulz)
: 2005-12-24 NIC Intel Pro100 network driver added (Neil Cafferkey)
: 2006-03-25 HIDD ATI radeon 2D driver added (Michal Schulz)
: 2007-03-06 HIDD vesa 1.0 video driver added (Pavel Fedin)
: 2007-03-08 HIDD dospackets and FAT filesystem (Rob Norris)
: 2007-03-21 HIDD usb initial commit (Michal Schulz)
: 2007-10-01 BOOT Installer added (Neil Cafferkey)
: 2007-11-29 PORT 64bit x86 added (Michal Schulz)
: 2008-04-12 BOOT GRUB2 added (Alain Greppin and Nick Andrews)
: 2008-08-26 NIC RTL8139 added ([http://kalamatee.blogspot.com/ Nick Andrews])
: 2008-10-22 PORT to SAM440ep (ppc) (Michal Schulz)
: 2009-02-25 PORT to efika (ppc) (Michal Schulz)
: 2009-05-18 HIDD poseidon usb2.0 stack ported to AROS (Chris Hodges)
: 2009-11-18 NIC RTL8169 network driver arrived (Nick Andrews and [http://pagesperso-orange.fr/franck.charlet/oldnews.html Franck Charlet])
: 2009-12-23 AHI HDAudio based Atom CPU and netbook audio driver arrived (Davy Wentzler)
: 2010-03-09 BOOT USB pendrive stick booting available (Neil Cafferkey)
: 2010-05-26 HIDD Intel GMA900 2D graphics card support (Michal Schulz)
: 2010-09-03 NIC Wireless PCI based NIC arrived (Neil Cafferkey)
: 2011-04-30 HIDD Nvidia 2D and 3D nouveau graphics card support (Deadwood)
: 2011-08-30 HIDD Radeon 2D enhanced AMD driver arrives (Bearsoft)
: 2011-09-17 NIC Wireless USB realtek arrives (Neil Cafferkey)
: 2011-12-09 HIDD Intel 945G 3D Gallium graphics support (Sami)
: 2013-02-25 AHI AC97 VIA 686 audio support (Davy Wentzler and Neil Cafferkey)
: 2013-03-31 PORT early Raspberry PI native support (Nik Andrews)
: 2014-01-16 AHI Envy24 audio chipset support (Davy Wentzler and Neil Cafferkey)
: 2017-02-17 PORT Symmetric MultiProcessing smp added for x86 64bit (Michal Schulz)
: 2018-10-20 PORT Big Endian ARM
: 2021-11-26 NIC Broadcom 44xx ethernet (Neil Cafferkey)
: 2023-01-12 NIC Nvidia MCP61 ethernet (Neil Cafferkey)
: 2025-11 HIDD xHCI USB3 and isoc (Nik Andrews)
[[#top|...to the top]]
===Audio Chipsets===
'''If sound beeps in AHI prefs after Music set then some support is there. Select more than one channel for multiple audio streams, set frequency up to 44 kHz or higher and set the volume if not already set. Ensure you set the music unit 0 to 3 which allows the extra features of the audio card like microphone, line-out, etc).'''
====1996-2000 sb128.audio aka SB16 PCI====
*2021 5.27
as per CREATIVE's website, the model number is the first two digits on the front and first two digits on the back. my card says CT4810 and 161TK110B 995; this translates to CT4816 as the model.
The original AudioPCI 3000 card with the ES1370 had a master clock crystal for 44.1 kHz (22.5792 MHz), used an AKM codec (AK4531, non-AC97) and had 4 channel output; Creative later modified the design with a crystal for 48 kHz (24.576 MHz) and Sigmatel AC97 codec (a CT4700 SB128 with a CT5507 chip, AK4531, 22.5792 MHz crystal and TDA7360 speaker power amp). The issue with these cards involved never quite eliminate the effects of resampling on the 64V, it also shows signs of undersized coupling caps. These Ensoniq cards automatically engaged headphone amplifier (with a 4565 opamp).
Porting involved [http://repo.or.cz/w/AROS.git/commit/b60abd12967144a844980c422ea9e99c056eabca 40897], [http://repo.or.cz/w/AROS.git/commit/b7d6511fca6430a63fbaaa390b4f51bf0203a460 40898 configure], [http://repo.or.cz/w/AROS.git/commit/f51034cd22759a4ec3a2547bddb3a7169d956eaa 40900 bugs], [http://repo.or.cz/w/AROS.git/commit/4f43fc38e3489ea45d12b7b5ba6fff50b69c5746 40901 further bugs], [http://repo.or.cz/w/AROS.git/commit/d23c78aec75f049484b6916d27b6804ce858bb2c 40913 memory IO fixes], [http://repo.or.cz/w/AROS.git/commit/d256860fe3035016952e88d143c6f2611997f2f3 40914 irq fix].
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| Ensoniq AudioPCI 1000
| 0x1274
| 0x5000
|
| {{unk}}
| {{unk}}
| untested - es1370 (u?) AK4531 (u?)
|-
| Ensoniq AudioPCI
| 0x1274
| 0x5000
| 0x00
| {{yes}}
| {{maybe}}
|
|-
| CT4700 Sound Blaster PCI 64 (audioPCI 3000)
| 0x1274
| 0x5000
| 0x7c
| {{yes}}
| {{maybe}}
| works - opamp JRC4565(u?) [http://en.wikipedia.org/wiki/Ensoniq_ES1370 es1370] (u?)
|-
| CT4750 Sound Blaster 64/PCI
|
|
|
| {{unk}}
| {{unk}}
| untested - 4565-1056W (u1) stac9708t(u2) [http://arstechnica.com/civis/viewtopic.php?f=6&t=916891 ct5880-dcq] (u3) 24wc012 (u4)
|-
| CT4751 (SB128PCI)
| 0x1274
| 0x8001
|
| {{unk}}
| {{unk}}
| untested - [http://en.wikipedia.org/wiki/Sound_Blaster#Ensoniq_AudioPCI-based_cards es1371] (u?)
|-
| CT4810 Creative AudioPCI64V
| 0x1274
| 0x1371
| 0x06
| {{yes}}
| {{maybe}}
| works
|-
| CT4811 (SB Vibra 128)
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4812 (Vibra 128)
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4813
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4815
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4816 es1373 (vibra 128)
|
|
|
| {{unk}}
| {{unk}}
| untested but this card has creative's ES1373 as the main chip(U1). it is also different from the other CT4810 (vibra128) in that it does not have a second chip in U2 position. Also there is only one jumper JP1 (2X3).
|-
| CT5801 HP
|
|
|
| {{unk}}
| {{unk}}
| untested - es1373 (u3)
|-
| CT5803 Gateway
| 0x1274
| 0x1371
| 0x08
| {{yes}}
| {{maybe}}
| works 4565-0005b jrc (u1) 4297a-jq ztae0c0002 (u2) es1373 (u3)
|-
| CT4740
| 0x1274
| 0x1371
| 0x08
| {{yes}}
| {{yes}}
|
|-
| CT5805 Compaq OEM Premier Sound Presario 7
|
|
|
| {{unk}}
| {{unk}}
| untested - es1373 (u3)
|-
| CT5806 (Sound Blaster AudioPCI 128D)
|
|
|
| {{unk}}
| {{unk}}
| untested - 4297A-JO EP (u?) ZTAPWC9933 (u2) es1373 (u3)
|-
| CT5807 Dell OEM Dimension 8100
|
|
|
| {{unk}}
| {{unk}}
| untested - es1373 (u?)
|-
| CT5808
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4730 Sound Blaster AudioPCI 64V Ectiva EV1938
| 0x1102
| 0x8938
|
| {{unk}}
| {{unk}}
| untested
|-
| CT5880 on various motherboards
| 0x1274
| 0x5880
|
| {{unk}}
| {{unk}}
| untested [http://www.xbitlabs.com/articles/mainboards/display/ga-6rx.html Gigabyte GA-6RX] (VIA ApolloPro 266 2001], Gigabyte GA-6VM7-4E mobo, [http://active-hardware.com/english/reviews/mainboard/ga-7vtx.htm Gigabyte GA-7VTX] (KT266 2001), Gigabyte [http://www.amdboard.com/gigabytega7vtxh.html GA-7VTXH] (KT266A 2001), [http://www.amdboard.com/gigabytega7vrxp.html Gigabyte 7VRXP] mobo (KT333 2002), MSI MS-6309, MS-6318, MS-6337 (815E Pro), MS-6339 (850Pro) and MS-6340, PCChips Motherboard M571 TXPRO, Soltek SL-65ME+,
|-
| VMware Virtual Workstation(TM)
| 0x1274
| 0x1371
| 0x02
| {{Yes|but not Hi-Fi modes}}
| {{maybe}}
| works
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
<pre>
Revision 0x04 = ES1371 REV_ES1373_A
Revision 0x06 = ES1371 REV_ES1373_B
Revision 0x07 = ES1371 REV_CT5880_A
Revision 0x02 = CT5880 REV_CT5880_C
Revision 0x03 = CT5880 REV_CT5880_D
Revision 0x04 = CT5880 REV_CT5880_E
Revision 0x09 = ES1371 REV_ES1371_B
Revision 0x00 = EV1938 REV_EV1938_A
Revision 0x08 = ES1371 REV_ES1373_8
</pre>
====1999-2001 via-ac97.audio====
*2021 5.10
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| <!--Description-->694X with 686A KT133 PM133 or 693A with VT8231
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3058
| <!--Revision-->
| <!--Playback-->{{Yes| }} redirects earphones correctly
| <!--Recording-->{{Yes| }}
| <!--Comments-->audio controller works but depends on the underlying invisible codec used see AC97 section
|-
| <!--Description-->686B KT133A with VT8231
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3058
| <!--Revision-->0x50
| <!--Playback-->{{Yes|}} reroutes ear pieces right
| <!--Recording-->{{Yes|}}
| <!--Comments-->audio controller works but depends on the underlying codec used see AC97 section below
|-
| <!--Description-->686C
| <!--Vendor ID-->0x1106
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->untested
|-
| <!--Description-->KM266 or KT266 with VT8233, KT266A with VT8233A, VT8233C
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3059
| <!--Revision-->0x10
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->KM333 KT333 with VT8235
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3059
| <!--Revision-->0x30
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
| <!--Description-->KM400 KT400 with VT8237, KT600 with VT8237R,
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3059
| <!--Revision-->0x40 0x50 0x60
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
|}
====1998-2003 emu10kx.audio - Creative Labs SoundBlaster Live! and Audigy====
*2021 6.5
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| PCI512 CT4790 (emu10k1)
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested (1st Gen)
|-
| Live CT4620
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Live CT4760
| 0x1102
| 0x0002
| 0x07
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| playback works
|-
| Live Value CT4670
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| works plays stereo (2nd Gen)
|-
| Live Value DELL CT4780
| 0x1102
| 0x0002
| 0x06
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| plays/records stereo - untested 4.1mode
|-
| Live Value Compaq CT4830
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{Maybe}}
| <!--Recording--> {{unk}}
| not working
|-
| Live Value CT4831
| 0x1102
| 0x0002
| 0x00
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Live Value CT4832
| 0x1102
| 0x0002
| 0x07
| <!--Playback--> {{yes}}
| <!--Recording--> {{partial|Line-In only}}
| works
|-
| Live Value CT4832
| 0x1102
| 0x0002
| 0x08
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| works
|-
| Live Value HP CT4870
| 0x1102
| 0x0002
|
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| Works
|-
| Live Value Gateway CT4871
| 0x1102
| 0x0002
|
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Live! Platinum 5.1 SB0060
| 0x1102
| 0x0002
| 0x00
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
| plays audio/records, untested 5.1 (3rd Gen)
|-
| Live 5.1 SB0100 -SFF
| 0x1102
| 0x0002
| 0x00
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| works
|-
| Live 5.1 Player SB0220
| 0x1102
| 0x0002
| 0x0a
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
| plays audio/records stereo, untested 5.1
|-
| Live 5.1 Digital SB0228
| 0x1102
| 0x0002
| 0x0a
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
| working
|-
| Audigy SB0090 (emu10k2)
| 0x1102
| 0x0004
|
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| <!--Description-->Audigy SB0230
| <!--Vendor ID-->0x1102
| <!--Product ID-->0x0004
| <!--Revision-->0x03
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Yes|Mic only}}
| <!--Comments-->5th Dec 2012 - untested optical tos link. contains also IEEE1394/Firewire (untested)
|-
| Audigy 2 Platinum 6.1 SB0240 SB0250 EMU10K2.5
| 0x1102
| 0x0004
| 0x04
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| works
|-
| Audigy 2 PRO SB0280 EMU10K2.5
| 0x1102
| 0x0004
|
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Audigy 2 ZS SB0350
| 0x1102
| 0x0004
| 0x04
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
|
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| Live 5.1 DELL SB0200 SB0203 emu10kx
| 0x1102
| 0x0006
| 0x0
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
|
|-
| Live 24bit SB0410
| 0x1102
| 0x0007
| 0x
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Live 24bit DELL SB0413
| 0x1102
| 0x0007
| 0x
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy LS SB0310
| 0x1102
| 0x0007
| 0x0
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy SE 7.1 SB0570
| 0x1102
| 0x0007
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 2 ZS SB0320 SB0360 (PRO)
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 2 VALUE SB0400
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 4 VALUE SB0610
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 4 PRO SB0380
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| EMU E-MU 0404 PCI (not USB) EM8852
| 0x1102
| 0x000
| 0x0
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver but linux support needs firmware
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
the green jack is for the main speaker pair AND headphones, so manual switching will be required
If your card is wired for the "AC97" standard, then it's up to your headphone jack to switch the green speaker output in and out
the headphone jack has Normally-closed contacts that will open on insertion, which breaks the signal path back to the sound card (FP_RETURN)
====2000-2010 cmi8738.audio - C-Media====
*2021 5.20
;Read [http://amigaworld.net/modules/news/article.php?storyid=2512 more] and imported on [http://repo.or.cz/w/AROS.git/commit/aff741d60160c6a9d7d39c9e004a25ea3aa13847 20th July 2011] and [http://alsa.opensrc.org/Cmipci alsa docs].
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| Audiotrak MAYA EX5
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| cmi8738-sx 4ch
| 0x13f6
| 0x0111
| 0x10
| <!--Playback-->
| <!--Recording-->
| untested
|-
| e3dx hsp56 CMedia 8738-sx 4ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| EDio SC3000D 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Genius SoundMaker Value PCI C3DX
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Guillemot Maxi Sound Muse
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Hercules Gamesurround Muse LT
| 0x13f6
| 0x0111
| 0x10
| <!--Playback--> {{yes}}
| <!--Recording--> {{no}}
|
|-
| Hercules Gamesurround Muse XL LT 5.1
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Inno audio extreme 5.1 cmi8738/lx pci 6ch
| 0x13f6
| 0x0111
| 0x
| <!--Playback-->
| <!--Recording-->
| untested
|-
| M-Audio (Midiman) DiO 2448
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Sabrent SBT-SP6C 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| StarTech PCISOUND4CH 8738sx 4ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Sweex SC012 CMI8738-lx 4ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Terratec 5.1 PCI
| 0x13f6
| 0x0111
| 0x10
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Terratec Aureon Fun 5.1
|
|
|
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| Has SPDIF
|-
| Trust Sound Expert Digital Surround 5.1 (cm8738-mx 6ch)
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Turtle Beach Riviera CMI8738-MX 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| XSonic CMI 8738 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->CMI8738 6ch PCI-E PCI Express version
| <!--Vendor ID-->0x13f6
| <!--Product ID-->0x0111
| <!--Revision-->0x10
| <!--Playback-->{{Yes|}}
| <!--Recording-->{{Maybe|}}
| <!--Comments-->Chinese based card with playback tested so far
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
====2001-2005 ac97.audio====
*6.4 27-12-2008
The AC97 chips were designed to be pinout interchangeable so that the sound support could change easily and quickly without motherboard redesigns
the green jack is for the main speaker pair AND headphones, so manual switching will be required
If your card is wired for the "AC97" standard, then it's up to your headphone jack to switch the green speaker output in and out, the headphone jack has Normally-closed contacts that will open on insertion, which breaks the signal path back to the sound card (FP_RETURN)
The ProductID and VendorID are for the audio controller only - the important additional codec is '''NOT''' so easily identified.
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| <!--Description-->Avance Logic (now Realtek) ALC100 and ALC101 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->ALC200 and ALC201 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->ALC201A and ALC202 and ALC202A codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->ALC650
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| <!--Comments-->most Nforce2 boards plays audio only - Abit NF7, Asus A7N8X, MSI K7N2, Epox 8RDA+, DFI
|-
| <!--Description-->ALC850 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{No}}
| <!--Comments-->no support for via P4P800 chipset on ASUS A8V-E SE Deluxe mobo - ICaros 1.3
|-
| <!--Description-->Realtek ALC653 codec and ALC655 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested Acorp 7NFU400
|-
| <!--Description-->Realtek ALC658 codec ALC658D
| <!--Vendor ID-->0x8080
| <!--Product ID-->0x24c5
| <!--Revision-->0x0
| <!--Playback-->{{Yes|Prefs Music and Units 0-3 set volume control - playback}}
| <!--Recording-->{{No}}
| <!--Comments-->MSI Motherboard on NB 22-09-2012
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->AD1881 SoundMAX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->Analog Devices first AC97
|-
| <!--Description-->AD1881A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Yes}}
| <!--Revision-->
| <!--Comments-->works with VIA Controller - untested Intel etc
|-
| <!--Description-->AD1881B
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1885 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{No}}
| <!--Comments-->Playback only with issues on D845HV but not working on MS-6367 because Units 0-3 have masked volume control
|-
| <!--Description-->AD1886
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1887
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->ADI AD1888 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{no}}
| <!--Recording-->{{No}}
| <!--Comments--> Icaros 1.51
|-
| <!--Description-->AD1980 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->AD1981A codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested IBM X30
|-
| <!--Description-->Analog Devices SoundMax(TM) AD1981B codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| <!--Comments-->plays back only on IBM T41 Thinkpad
|-
| <!--Description-->AD1985 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{No}}
| <!--Comments-->not working ahi prefs freezes on D865GLC mobo ([http://www.xbitlabs.com/articles/multimedia/display/int-sound2_3.html ]
|-
| <!--Description-->AD1986 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{No}}
| <!--Comments-->untested [http://uk.ts.fujitsu.com/rl/servicesupport/techsupport/Boards/Motherboards/Fujitsu/D1931/D1931.htm D1931] but works (Acer Aspire 3610 laptop)
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->Crystal Semiconductors CS4205, CS4202 codecs
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Cirrus Logic CrystalWare 4236
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->Cirrus Logic CrystalClear SoundFusion CS4297 CS4299 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested IBM T23
|-
| <!--Description-->conexant Cx20468-31 codec (id 30)
| <!--Vendor ID-->0x103c
| <!--Product ID-->0x3085
| <!--Revision-->
| <!--Playback-->{{No|AC97 appears in AHI Prefs}}
| <!--Recording-->{{No}}
| <!--Comments-->Tested AspireOS 1.8 on Gateway W322
|-
| <!--Description-->ESS Technology ES1921 AC'97 2.1
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->CMI 6501 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested on ASROCK SKT-AM2 AM2NF3-VSTA
|-
| <!--Description-->codec CMI9738
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->codec CMI9739
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->C-Media CMI 9739A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments--> untested on EPoX 8RDA3+
|-
| <!--Description-->CMedia CMI 9761A codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested ASRocK K7NF2-RAID
|-
| <!--Description-->C-Media CMI9880
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->National Semi conductor (now TI) LM4540, LM4543, LM4545, LM4546, LM4548, LM4549, LM4550 LM4560
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->STAC9708T codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->SigmaTel (now IDT) C-Major STAC 9460 (D/A only), 9461, 9462, 9463, 9200, 9202, 9250, 9251, 9220, 9221, 9223, 9750
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AKM (Asahi Kasei Microsystems) AK 4540, 4543, 4544A, 4545
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->codec VT1616 (VIA Six-TRAC Vinyl Audio)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->VIA VT1612, VT82C686
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->ESStech ESS ES1968 maestro-2
| <!--Vendor ID-->0x125d
| <!--Product ID-->0x1968
| <!--Revision-->0x
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->ESStech ESS ES1978 maestro2e
| <!--Vendor ID-->0x125d
| <!--Product ID-->0x1978
| <!--Revision-->0x
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->ESStech ESS ES1988 maestro3 allegro-1 codec
| <!--Vendor ID-->0x125d
| <!--Product ID-->0x1988
| <!--Revision-->0x12
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->Yamaha AC97 ymf-743 YMF752 YMF753 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->{{No}}
| <!--Comments-->untested ymf-753
|-
| <!--Description-->YMF724 YMF744 YMF-754 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| SIS 7018 / Trident 4dwave DX/NX / ALi 5451
| 0x1039 (0x1023 Trident)
| 0x7018 (0x2000 Trident DX) (0x2001 Trident NX)
| 0x02
| <!--Playback-->{{No}}
| <!--Recording-->{{No}}
| no support - introduced early 2000s
|-
| SIS 7012
| 0x1039
| 0x7012
|
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| working through 1 speaker only took over from SIS7018 (2002 onwards)
|-
| <!--Description-->Wolfson (now Cirrus Logic) WM9701, WM9701A (AC'97 1.03 spec), WM9703, WM9704 (AC'97 2.1), WM9705, WM9706, WM9707, WM9708
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->WM9709, WM9710, WM9711, WM9712, WM971
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->first Microsoft(TM) Xbox DAC sound chip (AC Link compliant D/A converter)
|-
| <!--Description-->Wolfson WM9717
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| Parallels
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested
|-
| VirtualBox
|
|
|
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| working
|-
| VirtualPC
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested
|-
| <!--Description-->Intel 82801AA Proxmox
| <!--Vendor ID-->0x8086
| <!--Product ID-->0x
| <!--Revision-->
| <!--Playback-->{{unk| }}
| <!--Recording-->{{unk| }}
| <!--Comments-->
|-
|}
====2005-20xx HDAUDIO.audio====
*6.36 2025 [https://github.com/aros-development-team/AROS/commit/43b33a9280b10963ca659de2cc3d1cf289b43a87 reset handler]
*6.35 202 []
*6.34 2019 AROS One 1.5 upwards
*6.29 2018
*6.27 2017 update
*6.25 2014 used for most Icaros 2.x
*6.20 July 2012
*6.17 Nov 2011
*6.15 Jun 2011
*[http://www.clusteruk.com/SitePortalPage.aspx?siteid=1&did=109 6.13] Sep 2010
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="5%" |Vendor ID
! width="5%" |Product ID
! width="5%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| <!--Description-->ALC260
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| <!--Description-->ALC262
* ALC262-VD2-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->LQFP-48
|-
| ALC268 codec
| 0x
| 0x
| 0x
| <!--Playback-->{{Yes|Version 6.17 Acer AOA110 and AOA150 netbooks), works (Dell Mini Inspiron 9 and 10v, }}
| <!--Recording-->{{Yes|Version 6.17 remove QUERY and select 'Mic 1' as input. Tested with 6.15 as well using QuickRecord and AE 4.0.23 under Icaros 1.4.}}
| <!--Comments-->AHI UNITS and Music are set to: hdaudio:HiFi 16 bit stereo++ / Frequency 48000 Hz, Volume +0.0 dB. The hdaudio.config in SYS:Prefs/Env-Archive is WITHOUT the QUERY-line. After changing and saving the config-file turn off and start again the computer. Switch from internal loudspeaker to headphone you must turn off the music before plug in the headphone-cable, otherwise there is no output on the socket. Back from line-out to internal speakers it is the same.
|-
| [http://blog.foool.net/wp-content/uploads/linuxdocs/sound.pdf Linux docs ALC269]
* ALC269Q-GR
* ALC269QSRS-GR
* ALC269W-GR
| 0x
| 0x
| 0x
| <!--Playback-->{{Maybe| }}
| <!--Recording-->{{Unk| }}
| <!--Comments-->TQFP 48 pin Power IC Chip From [https://patchwork.kernel.org/project/alsa-devel/patch/1408118123-15849-1-git-send-email-tiwai@suse.de/ ALC269 & co have many vendor-specific setups with COEF verbs, result in the codec stalling]
|-
| [http://www.alsa-project.org/db/?f=0321f8479fd670cd510f9912b1120fe7edcf2e07 ALC269VB]
* ALC269Q-VB5-GR
* ALC269Q-VB6-CG
* ALC269Q-VB6-GR
| 0x10ec
| 0x0269
| 0x100004, 0x100100, 0x100202
| <!--Playback-->{{Maybe|some versions work}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* v1 works Asus eee PC netbook 901/1000HA 1005HA/1008HA, 1001P,
* v2 maybe working Lenovo S9 S10 S10-2 S10-3 under HDAudio version 6.13
* v3 maybe dell wyse 7010
|-
| [http://alsa-project.org/db/?f=9c1746c5957b0ce72ff9cfffa312e97d14baf785 ALC269VC aka ALC3202]
* ALC269Q-VC2-GR
* ALC269Q-VC3-GR
| 0x10ec
| 0x0269
| 0x100203,
| <!--Playback-->{{Maybe|some versions work}}
| <!--Recording-->{{Unk}}
| <!--Comments-->SMT SMD QFN-48 -
* v1 unknown
* v2 unknown
* v3 x230, dell wyse,
|-
| ALC272
* ALC272-VA4-GR
| 0x10ec
| 0x0272
| 0x0
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Unk}}
|
* works Acer AOD150 and Acer AOD250 works [http://amigaworld.net/modules/newbb/viewtopic.php?topic_id=33755&forum=28#616910 Samsung NP-NC10], works Samsung NF210-A02] netbooks,
|-
| <!--Description-->ALC273
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| <!--Description-->ALC270
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC282
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x
| <!--Revision-->
| <!--Playback-->{{No|Version 6.17}}
| <!--Recording-->{{No|Version 6.17}}
| <!--Comments-->needs retest
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC660 ALC660-VD
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes| }}
| <!--Recording-->
| <!--Comments-->
* works asus F9s, F9e
* untested asus w7j, M51SN, A6Tc, A8Sr,
|-
| <!--Description-->ALC661-GR (2011)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| ALC662
| 0x1043
| 0x82a1
| 0x0
| <!--Playback-->{{Yes|Version 6.17 if QUERY added to top of hdaudio.config}}
| <!--Recording-->{{No|Version 6.17 not working for eee pc 900}}
|
* works Asus eee PC netbook 700/701/900, Atom 270 and 330 mobos, odd clicks (D410 NM10 PineTrail),
|-
| <!--Description-->[http://outpost.fr/rmaa/ALC663.htm ALC663]
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0861
| <!--Revision-->
| <!--Playback-->{{No|Version 6.13}}
| <!--Recording-->{{Unk}}
| <!--Comments-->not bad output like headphone amp part of the codec actually works well but messed up by undersized coupling capacitors to actually support such a low impedance
* not working Asus n50vn x71vn,
|-
| <!--Description-->ALC665
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC666
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC667
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC668
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC670
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->ALC880
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->some 915 and 925 chipset mobos
|-
| <!--Description-->ALC882M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| Realtek ALC883 ALC883-GR ALC883D-GR ALC883DTS-GR ALC883DD-GR codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe|some early versions work }}
| <!--Recording-->{{Unk| }}
| 2005 to 2007 HD Audio codec untested (Asus ),
|-
| Codec ALC885
| 0x10ec
| 0x0885
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
|-
| ALC888
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
|
|-
| ALC888s
* ALC888S-VD2-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}} MSI Wind U90/U100,
| <!--Recording-->{{Unk}}
| LQFP-48
|-
| ALC888b
| 0x8086
| 0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| untested (D510 NM10 Dual Core PineTrail mobo),
|-
| ALC888-VD
| 0x8086
| 0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| untested
|-
| ALC889A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes|works if QUERY added to the top of hdaudio.config in Prefs drawer/directory}}
| <!--Recording-->{{Unk}}
|
|-
| ALC889 Gr
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}} with crackles
| <!--Recording-->{{Unk}}
|
|-
| ALC889
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
| Tested with MSI H55 board
|-
| ALC887 ALC887-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
|
* working on ASUS P5KPL/EPU and Gigabyte GA-E350N-Win8 Rev1.0
|-
| ALC887-VD-CG
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0887
| <!--Revision-->0x100302
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}} Subsystem Id: 0x1458a002
|
|-
| ALC887-VD
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0887 0x1458
| <!--Revision-->0xa002
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{Unk}} index = 2
| ALC887 does not have any volume control ability on the mixer NIDs, so put the volume controls on the dac NIDs instead
* working with intermittent corrupting pop popping skipping stuttering sound issues MSI 760GM-P23 (FX),
* not working Gigabyte H61MA-D3V, AT3IONT-I Deluxe,
|-
| ALC887-VD2
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
| 3jacks
|-
| ALC887-VD2-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
|-
| ALC887-
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
|
|-
| ALC892-CG rev
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| 2011 48-pin LQFP Green package -
|-
| ALC892 ALC892-DTS-CG rev
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
| 2009 introduced
* works
* not working
* untested
|-
| ALC892 rev
| <!--Vendor ID-->0x0x10ec
| <!--Product ID-->0x0892
| <!--Revision-->0x100302
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| 2014
|-
| Realtek ALC886-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| LQFP-48
|-
| Codec ALC861 ALC861-VD
| 0x10ec
| <!--Product ID-->0x0663
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
|
* not working Toshiba Tecra A7
|-
| <!--Description-->ALC1200
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| ALC898
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
| not working
|-
| <!--Description-->ALC1500
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC3232 (aka ALC292)
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0292
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC3234 aka ALC255
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0255
| <!--Revision-->003
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC3287 aka ALC257
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes| }}
| <!--Recording-->{{no| }}
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->AD1882
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1883 HD Codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1884
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| Analog Devices SoundMAX AD1981
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| IBM Thinkpad T60,
|-
| AD1984 hp-m4 codec
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
* audio not working on Lenovo X61, Thinkpad T61,
|-
| AD1986
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
|
|-
| AD1988
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
|-
| <!--Description-->AD1988A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->Cirrus Logic CS4207
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->
| <!--Recording-->
|
|-
| <!--Description-->Cirrus Logic CS4208
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->
| <!--Recording-->
|
|-
| <!--Description-->Conexant CX20549 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe|very very very low volume}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested Fujitsu Amilo SI 1510 1520 no datasheet for the general public
|-
| <!--Description-->Conexant CX20549-12Z codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested HP 530
|-
| <!--Description-->Conexant CX20561 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* working lenovo x200s
* untested Lenovo Essential G555 Notebook, HP Pavilion dv6700,
|-
| <!--Description-->Conexant CX20582 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX2059x CX20590 CX20594-21Z codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX20585 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* working Lenovo Thinkpad T410,
|-
| <!--Description-->Conexant CX20672 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX20671 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX20751-21Z codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes| }}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| <!--Description-->Conexant CX11852 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX11880 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant after 2015 up to 2018 CX7501 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{no|no driver codec}}
| <!--Recording-->{{no|no driver codec}}
| <!--Comments-->Conexant bought by synaptics 2019
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->C-Media CMI9880 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->Gigabyte GA-8GPNXP
|-
| <!--Description-->Silicon Labs 3054
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| VIA 1708A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| untested,
|-
| VIA VT1708B
| <!--Vendor ID-->
| <!--Product ID-->
| 0x0010
| <!--Playback-->{{No|VIA PicoITX}}
| <!--Recording-->{{Unk}}
|
|-
| VIA 1708S
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
|
|-
| <!--Description-->VT2021 10ch
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->Gigabyte Z77MX-D3H, GA-H61M-S2H S2P,
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Creative CA0110-IBG
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->SigmaTel STAC 9220 9221 9223 8ch (7+1)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| <!--Comments-->ECS 945GCT/M-1333 (version 3.0),
|-
| IDT SigmaTec [http://explorer.cekli.com/articles/pdf/hd-audio STAC9227] /28/29/30 codec
| <!--Vendor ID-->0x8384
| <!--Product ID-->0x7626
| <!--Revision-->0x0002
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Unk}}
|
* works HP Compaq mini 110
* untested HP Pavilion HDX9000 CTO Notebook, Intel DG33TL mobo, Dell E520, Intel DP35DP mobo, Dell E6410 Laptop,
|-
| IDT (formerly SigmaTel) IDC STAC 9271/71D
| <!--Vendor ID-->0x8384
| <!--Product ID-->0x7626
| <!--Revision-->0x0002
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
|
|-
| <!--Description-->IDC STAC 9272 9273 9274
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->Intel D5400XS,
|-
| <!--Description-->IDT 92HD73C
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes}}
| <!--Recording-->
| <!--Comments-->headphones only Asus AT4NM10 mobo
|-
| <!--Description-->IDT 92HD75B
| <!--Vendor ID-->0x111d
| <!--Product ID-->0x7608
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* working [http://koti.kapsi.fi/jvaltane/aros/hdaudio/ HP Compaq Mini 700 Netbook - feedback required]
* untested HP Mini 5103 and 5102, HP Compaq 610, HP ProBook Laptop 4520s 4525s 6450b 6550b 6555b, HP EliteBook 2540p 2740p 8440p, Mobile Workstation 8540w 8740w, Pavilion NoteBook DV8,
|-
| <!--Description-->IDC 92HD81XX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC 92HD83XX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC STAC 92HD89XX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Wolfson (now Cirrus Logic) WM8850
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Wolfson WM8860
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->Intel High Definition Audio Revision 1.0. - 4-Channel DAC, 4-channel ADC. - DAC sampling
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
Using Prefs/AHI ensure you set the music unit and at least Units 0 (where most audio comes from) in top left drop down menu to HDaudio - HIFI in the section below. Set Units 1 or 2 to microphone or other outputs. Plus allow more than one channel for multiple audio streams and set frequency up to 44 kHz or higher on the right hand side of the ahi prefs. If sound beeps when you press the test button then all should be OK.
Output <- Codec <- Audio Controller (HDA) <-> Computer
codecs and exact hardware identifier. As mentioned above, HDA is only part of the work here, it gets the audio out of the main chipset in digital format (on a bus called I2S). This is not enough, there is another step needed which is routing that I2S signal to the output, converting it to actual audio, amplifying it, etc. This is handled by a separate chip called a "codec". Sometimes it is initialized by the BIOS, but this is not always the case.
Most audio drivers are made up of two parts a [http://www.kernel.org/doc/Documentation/sound/alsa/HD-Audio.txt Controller + a Codec]. The ProductID and VendorID are for the audio controller only - the important additional codec is '''NOT''' so easily identified.
Some newer versions of codecs are missing at the moment.
Things to try if sound not working
* try to connect something to the audio jack, maybe it is not playing on internal speakers or vice versa
* make sure you try and select all music units e.g. unit0, unit1....
* even if PCI ID's are in Prefs/Env-Archive/HDaudio.config, this doesn't mean it is working, it is the codec that matters
* it might be internally muted
<pre>
add debug=memory to grub boot line - continue booting with F10
Open a shell
Tools/Debug/Bifteck > RAM:audio.txt
</pre>
or
<pre>
Open a shell
Tools/Debug/Sashimi > RAM:audio.txt
Run ahi prefs
Click test tone button
Stop sashimi with Ctrl-C
</pre>
If the boot sound is enabled, you have to use Bifteck to capture AHI debug output. In the GRUB menu, press E on your selected entry, then add "debug=memory" to the options (alongside ATA=, vesa= etc.). Then F10 or Ctrl-X to boot. Once booted, run Tools/Debug/Bifteck again.
or
* try adding QUERYD to the start of ENVARC:hdaudio.config file (also known as Prefs/Env-Archive/) ie. on the first line
* '''OR''' try removing QUERY and QUERYD from the start of the hdaudio.config file
* Reboot
* open a shell
* type: sys:tools/debug/sashimi > ram:debug.txt
* open ahi prefs
* select one of the audio modes - HIFI or otherwise
* press the 'test sound' button
* press ctrl-c in the shell
* post the results to Aros-World
The HD Audio standard was designed to be hardware pinout interchangeable so that the sound support could change easily and quickly. HDA is a standard around particular chips. Each kind of chip has a certain number of DACs and pins, and even the same chip could be hooked up in different ways on different motherboards. The chips are programmable and the operating system can adjust how things are routed. Some pins aren’t even hooked up, so it makes no sense to route sound to them. Also some pins have sensors that can tell when something is plugged in, so that for example the speakers in a laptop can be muted when headphones are plugged in. Pins are also grouped, so for example all the outputs for a 5.1 sound system are grouped. Generally the HDA driver in the operating system is supposed to read the pin set up and figure out a reasonable way to set things up, and disconnected pins should be ignored, etc.
HDAudio standard has headphones on a separate DAC, and it's up to the driver.. it can even send different audio to the headphones without interrupting the main (green) outputs
====Envy24 series ====
A little history. VIA bought the ICE created Envy chipsets [http://www.via.com.tw/en/products/audio/controllers/comparison_controller.jsp VT1712] first. A few years later, they created several cheaper variants VT1724 (mixer missing), VT1721 (low end cut down), VT1720 (embedded on motherboard) and lastly the VT1723 (no support apart from Windows Envy24DT like SYBA SD-PEX63034).
There are PCI Express versions appearing.
The Envy24 is the base product that was originally designed by ICEnsemble, and it supports multi-channel hardware mixing, which is great for professional use. The HT version removes the hardware mixer (unimportant for non-professional uses). The [http://www.avsforum.com/t/364771/envy24ht-s-the-definitive-source HT-S] version is almost exactly the same as the HT, it just uses cheaper DACs. The PT version is exactly the same as the HT-S version, it is just the edition used for on-board audio on motherboards.
N.B. [http://www.soundonsound.com/sos/dec04/articles/pcnotes.htm PCI slot identification] and [http://hsi.web.cern.ch/HSI/s-link/devices/s32pci64/slottypes.html 3.3v PCI].
=====[http://www.opensound.com/readme/README.Envy24.html envy24.audio] - [http://www.anime.net/~goemon/alsa/ VT1712] =====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Playback
! Recording
! Comments
|-
| M-Audio Delta 66 - Rev B 1999
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested AK4524VF CS8404A-CS - needs Delta Series break out box with D-sub lead -
|-
| [http://ixbtlabs.com/articles/maudioaudiophile/index.html Audiophile 2496] Rev A 2000
| 0x14
| 0x
|
| <!--Playback-->{{unk| }}
| <!--Recording-->{{unk| }}
| works audio out on - I2S stereo codec AKM AK4528VF with the 24bit/96kHz DAC and ADC; CS8427 digital transceiver
|-
| [http://ixbtlabs.com/articles/maudioaudiophile/index.html Audiophile 2496] Rev B 2003
| 0x14
| 0x
|
| <!--Playback-->{{Yes }}
| <!--Recording-->
| works well - I2S stereo codec AKM AK4528VF with the 24bit/96kHz DAC and ADC; CS8427 digital transceiver
|-
| M-Audio Delta 410 - 2001 2001 REV-B
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested for D-A AK4529VQ converters with CS8427-CS 5532 1158B or Event Echo Gina 20-Bit Multitrack Interface Breakout Box -
|-
| M-Audio Delta 1010
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested AK5383 and AK4393 - 25 pin dsub -
|-
| M-Audio Delta 1010LT 1010E
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested for D-A AK4529 converters with 2 XLR Microphone inputs with pre amps
* be aware of redesign in 2007 - possible issues
|-
| M Audio Delta 44 - Rev A 2002 - Rev B 2003 - Rev D 2003
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested ICE1712G AK4524VF needs breakout box with 15 pin D-sub lead -
|-
| M-Audio Delta 66 Rev E 2006 - Omni Studio
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested needs break out box with 15 pin D-sub lead -
|-
| <!--Description-->M-Audio Delta DiO 2496
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| Terratec EWX24/96
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| [http://ixbtlabs.com/articles2/terratecdmx6fire/index.html TerraTec 6fire DMX 24/96]
| <!--Vendor ID-->0x1412
| <!--Product ID-->0x1712
| <!--Revision-->0x02
| <!--Playback-->{{No|tried line 1-2 3-4 5-6 7-8 }}
| <!--Recording-->{{No| }}
| untested - AKM and codec
|-
| <!--Description-->Terratec EWSA88MT
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| [http://lists.freebsd.org/pipermail/freebsd-multimedia/2007-March/006087.html Audiotrak Prodigy HD2] 24/96
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Audiotrak (ESI) Maya 1010 1010L
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| EMU 1212M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| EMU 1616M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| <!--Description-->Terratec EWS 88MT EWS 88D
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Hoontech Soundtrack DSP 24
Soundtrack DSP 24 Value
Soundtrack DSP 24 Media 7.1
Event Electronics EZ8
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Digigram VX442
Lionstracs
Mediastation
Terrasoniq TS 88
Roland/Edirol DA-2496
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
=====envy24ht.audio - VIA VT1724=====
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| ESI Juli@
| 0x3031
| 0x4553
| 0x0
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Yes}}
| reported working years ago [http://envy24.svobodno.com/ Envy24HT-S] - AKM 4358 DAC - AKM 4114/4112 DIT
|-
| ESI Juli@ Ego Igo rev K
| 0x3031
| 0x
| 0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| AK4358? DAC - AK4114 AK4112 DIT
|-
| [http://ixbtlabs.com/articles2/multimedia/m-audio-revolution51.html M-Audio Revolution 5.1]
| 0x1412
| 0x3631
| 0x0
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| reported working years ago but discontinued - (Envy24GT) - 3ch AKM 4358 DAC - ADC AKM 5365 -
|-
| [http://ixbtlabs.com/articles2/m-audio-revolution71/index.html M-Audio Revolution 7.1] 24/192
| 0x1412
| 0x3630 0x1724
| 0x0
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| not working - illegal semaphore - 6ch ADC AKM AK4355 24-bit 192 kHz - 2ch DAC AKM AK4381 24-bit 192 kHz - ADC AKM AK5380
|-
| Terratec Aureon Sky 5.1
| 0x153b
| 0x1147
| 0x
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - discontinued
|-
| [http://ixbtlabs.com/articles2/terratec-aureon71/index.html Terratec Aureon Space 7.1]
| 0x153b
| 0x1145
| 0x0
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - Wolfson WM8770 DAC, AC'97 codec SigmaTel STAC9744
|-
| Terratec Aureon Universe 7.1
| 0x153b
| 0x1153 (rev x) 0x1724 (rev3)
| 0x0
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| not working - semaphore error on rev 3 - DAC ADC
|-
| Terratec Phase 22
| 0x153b
| 0x1150
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - Envy24HT-S - AK4524
|-
| Terratec Phase 28
| 0x153b
| 0x1149
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - Envy24HT-S - AK4524
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Playback
| Recording
| Revision
| Comments
|-
| Audiotrak (ESI) Prodigy 7.1
| 0x4933
| 0x4553
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - Wolfson WM8770 and AC'97 SigmaTel STAC9744 codec
|-
| Audiotrak (ESI) Prodigy 7.1 LT
| 0x3132
| 0x4154
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver -
|-
| [http://ixbtlabs.com/articles2/sound/audiotrak-prodigy192.html Audiotrak (ESI) Prodigy 192] 24/96
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - STAC9460S codec
|-
| <!--Description-->Echo Layla 24/96
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
| [http://www.bit-tech.net/custompc/labs/80752/hercules-gamesurround-fortissimo-4.html Hercules Gamesurround Fortissimo 4]
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - Wolfson WM8776 Codec and WM8766 DAC
|-
| [http://ixbtlabs.com/articles2/multimedia/m-audio-audiophile192.html M-Audio Audiophile Delta AP 192k]
| 0x1412
| 0x3632
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - Stereo ADC AKM AK5385A 24-bit 192 kHZ - 8-channel DAC AKM AK4358 24-bit 192 kHz - AKM 4114/4112 DIT
|-
| ONKYO SE-150PCI
| 0x160b
| 0x0001
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver
|-
| <!--Description-->ESI Waveterminal 192x
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
| <!--Description-->Quartet
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments--> - AKM 4114/4112 DIT
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
|}
====hdmiaudio.audio - hdmi no support====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->ATI R6xx HDMI Audio codec support output
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x9840
| <!--Revision-->
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->Not detected
|-
| <!--Description-->NVidia HDMI
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Intel Series 6 CougarPoint HDMI codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Intel HDMI
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|}
[[#top|...to the top]]
===Graphic GFX Chipsets===
[https://gallium.readthedocs.io/en/latest/systems.html PCIe based] graphic chipset is defacto on 64bit AROS and recommended on 32bit.
AGP works on 32bit but faster transfers through the AGP slot are only available on a few supported motherboard chipsets
* Faster AGP Working = SIS 650 board, Intel 865pe AGP slot on MSI 6788-050,
* Not Supported = NForce2 chipsets, most Intel 815/820 chipsets, VIA chipsets, ALi chipsets,
The fallback for all graphics modes is vesa if any native support does not work. There is a choice of very low resolution vga as the last resort
2D tests performed with [http://download.aros3d.org/software/gfxbench.zip gfxbench] in the shell type gfxbench > out.txt (40 seconds blank screen is part of the test), via FreeDoom via limit-removing engine like odamex, chocolate or vanilla doom -timedemo demo1 or doom2 -timedemo demo1, doom.exe -iwad doom2 -file mymap.wad, Duke DNRATE 640x480 windowed
3D tests performed with Demos/Mesa/ , Cube 1080p, Cube 2 windowed not fullscreen 1920 x 1025, Quake3 ~ cl_drawFPS 1, Xonotic , [http://shinh.skr.jp/sdlbench/showtestgl.cgi test gl],
HDMI, DVI and DisplayPort monitors have a native resolution of 480p, 720p, 1080i, 1080p and up
<pre>
HDMI (licensing fee)
1.2 720p res.
1.3 1080 resolution
1.4 4K @ 30Hz
2.0 4K @ 60Hz
2.1 48Gbs for 4K @ 120Hz, 8K @ , VRR, etc
2.2 ultra96
</pre>
<pre>
DisplayPort (VESA introduced)
1.4 4K @ 60Hz
2.1 96Gbs for 4K @ 240Hz, 8K @ 120Hz. MST daisy chain multiple monitors,
</pre>
<pre>
GPMI chinese standard
2.0
</pre>
Might be supported on AROS
*OpenGL4 GPU must have 64-bit floating point FP64 math support, which is a hard requirement for GL 4.0. The max last revision opengl 4.6 (2017) on [https://wiki.gentoo.org/wiki/AMDGPU AMDGPU] RX 5000's / 6000s ([https://forum.batocera.org/d/7491-enable-opengl-46-and-vulkan-for-an-old-radeon-video-card RDNA] and Nvidia RTX might come to AROS) but Intel UHD, Iris Plus or Xe or Arc (will not unless a developer wants the challenge)
*OpenGL3 last revision 3.3 (2011)
Already supported on AROS
*OpenGL2 nvidia-nouveau,
*OpenGL1 intel gma950,
====vga.hidd====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Comments
|-
|
| 0x
| 0x
| 0x0
| Generic VGA Driver, limited to 640x480 in 16 colours - no 3D support
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Comments-->
|-
|}
====vesa.hidd====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Comments
|-
|
| 0x
| 0x
| 0x0
| 2D support for VBE1, VBE2 and VBE3 (most cards) - various resolutions and 24bit colour - no 3D support
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Comments-->
|-
|}
[[#top|...to the top]]
====[[w:en:Intel GMA|Intel GMA]]====
DVI output is not supported at the moment.
If having problems:
* Ensure the latest version is being used.
* Set GMA_MEM to 128 or 256 to test
* Try the FORCEGMA ToolType for 2D, and try the FORCEGALLIUM ToolType for 3D acceleration after 2D is verified to work. ToolTypes should be applied to the Devs/Monitors/IntelGMA monitor icon.
If still having problems:
* At GRUB boot screen edit boot line and add option: debug=memory
* Boot.
* Use shell command: tools/debug/bifteck > RAM:debug.txt
* And post [GMA MONITOR DETECTION] and other related debug lines
{| class="wikitable sortable" width="90%"
! width="5%" |Description
! width="5%" |Vendor ID
! width="5%" |Product ID
! width="3%" |Rev
! width="5%" |2D
! width="5%" |3D
! width="5%" |Analog Output
! width="5%" |Digital Output
! width="5%" |Laptop LCD
! width="30%" |Comments
|-
| 910GL 82910GL GMCH + ICH6
| 0x8086
| 0x2582 0x2592
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| 910GML 82910 GML GMCH + ICH6 Mobile
| 0x8086
| 0x2582 0x2592
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| may need to add forceGMA to grub boot line to work
|-
| 915G 82915G GMCH + ICH6-M
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
|
|-
| 915GL 82915GL GMCH
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
|
|-
| 915GV 82915GV GMCH
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Yes|}}
| <!--3D-->{{No|}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{N/A}}
| HP DC5100 small form factor
|-
| 915GM GMA900
| 0x8086
| 0x
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| tunnel gearbox }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes}}
| asus eee pc 900
|-
| 915GMS
| 0x8086
| 0x
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| tunnel }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes| }}
|
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| [http://www.notebookcheck.net/Intel-Graphics-Media-Accelerator-950.2177.0.html 945GU] - 133 MHz (Lake port for Intel A100 and A110)
| 0x8086
| 0x2772
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| Fujitsu LifeBook U1010,
|-
| 945GMS - 166 MHz / 250 MHz (1.05V)
| 0x8086
| 0x27a2
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes}}
| Dell D430
|-
| 945GSE - 166 MHz (for Atom)
| 0x8086
| 0x27ae
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Yes|[http://www.x.org/wiki/GalliumStatus]}}
| {{Yes}}
| {{No|dvi port}}
| {{Yes| }}
| for atom motherboards and most 2008/2009 netbooks
* 3D Works - AOA110 AOA150, Dell Mini 9, Samsung NC10, Toshiba NB100,
|-
| 945G 82945G GMCH + ICH7
| 0x8086
| 0x27a6
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| untested 2D and 3D
|-
| 945GC 82945GC MCH
| 0x8086
| 0x27a6
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| untested 2D and 3D
|-
| 945PM
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| Dell D420, Compaq nc6400,
|-
| 945GMS - 250 MHz Calistoga
| 0x8086
| 0x
| 0x0
| <!--2D--> {{Yes}}
| <!--3D--> {{Yes|most models}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes}}
|
* 3D Works Dell Latitude 2100, HP Compaq nc6320, Lenovo 3000, Lenovo T60, Samsung Q35, Dell D620, Dell D820,
* 3D untested Toshiba Satellite L100-120, Toshiba Portege M400,
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
|
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GMA 3100 G31
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works 2D but no 3D
|-
| GMA 3100 G33
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works 2D but no 3D
|-
| [http://en.wikipedia.org/wiki/Intel_GMA GMA 3150] netbooks and nettops
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works 2D but no 3D. no vga, dvi or hdmi output for nettops
|-
| <!--Description--> G965
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments-->
|-
| <!--Description--> Q965
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x2992
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{No}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments--> Only tested with VGA output.
|-
| 965GM X3100 (500 MHz)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| some support 2D but no hardware 3D - could not get it to work with VGA or dvi output
* untested Apple MacBook Air, Lenovo Thinkpad X300, Dell Inspiron 1525, Toshiba M9,
|-
| 960GM X3100 (400 MHz)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
|
|-
| 965M X3100 (400 MHz)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| Dell D830,
|-
| 965PM ??
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| Toshiba A9 works with limited 2D acceleration but no hardware 3D
|-
| GL965
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works with limited 2D acceleration but no hardware 3D
|-
| GM965
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works with limited 2D acceleration but no hardware 3D
|-
| GMA X3500 G35
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->X4500M G41 G43 G45 (400Mhz) Mobile 4 Series
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x2a42 0x2a43
| <!--Revision-->0x07
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue--> {{No|}}
| <!--Digital--> {{No|}}
| <!--Laptop LCD--> {{Yes| VESA}}
| <!--Comments-->works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->GMA 4500M HD (533 MHz)
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments-->works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->GMA 4700M HD (640MHZ)
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x2a42
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments-->works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
====[http://nouveau.freedesktop.org/wiki/FeatureMatrix nouveau].hidd (nvidia pci, agp, pci-e desktop)====
PCIe based nvidia graphics (gfx 8xxx) are the base level for 64bit AROS but earlier models still has some support on 32bit AROS
*Desktop, more likely hit rather than miss on early nvidia on Aros 32bit but on Aros 64bit ...
*Laptop, limited support for '''very''' early non-optimus (i.e. just Nvidia gfx only so no Intel and nvidia gfx combinations on 32bit but on 64bit ...)
Please note that the nouveau project is reverse engineering a nvidia graphics driver but takes time because of [https://nouveau.freedesktop.org/ nVidia's closed firmwares], etc
* 2026-06 - DEVS Nouveau.hidd Gallium.hidd Softpipe - LIBS Gallium GLU 20.0 Mesa OpenCL
* 2011-10 - DEVS 6.11 Nouveau.hidd 7.4 Gallium.hidd 9.4 Softpipe - LIBS 2.3 Gallium 1.3 GLU 19.0 Mesa OpenCL 1.x
* 2011-04 - DEVS 5.31 Nouveau.hidd 7.3 Gallium.hidd 9.3 Softpipe - LIBS 2.2 Gallium 1.1 GLU 18.0 Mesa OpenCL n/a
Nouveau support for AROS is limited to OpenGL 2.1 compliance on 32bit even for modern GL4 capable GPUs but on 64bit ...
On Aros 32bit OpenCL supports the NV50 (8000 9000) cards, less support in NVC0 fermi cards (300 upwards)
On Aros 64bit
ADoom3 graphic details ultra, benchmark while playing press the "`" key and type "Timedemo demo1" in the console
{| class="wikitable sortable" width="90%"
! width="5%" | Graphic Card
! width="5%" | Aros 32bit 1024 x 768
! width="5%" | Aros 32bit 800 x 600
! width="5%" | Aros 32bit 640 x 480
! width="5%" | Aros 64bit 1024 x 768
! width="5%" | Aros 64bit 800 x 600
! width="5%" | Aros 64bit 640 x 480
|-
| NV50 Asus EN8400GS SILENT/P/512M PCIe (G98) || || || || || ||
|-
| Gigabyte 8500GT 256M || 42,6 || 57,2 || 68,6 || || ||
|-
| NV96 (G96) Geforce 9500GT 512M || 43 || 53 || 57 || || ||
|-
| NV96 (G96) 9600GT || || || || || ||
|-
| NVA3 (GT215) GT240 || || || || || ||
|-
| NVA5 (GT216) Palit GT220 Sonic 512M || 39,7 || 55,8 || 63,7 || || ||
|-
| NVA8 (GT218) gt210 || || || || || ||
|-
| NVA8 (GT218) ION2 || || || || || ||
|-
| NVC3 (GF106) GT440 GTS 450 || || || || || ||
|-
| NVCF (GF116) NVC0 Fermi GTX 550Ti or GTS 450 v2 || || || || || ||
|-
| NVC8 (GF110) 580GTX || N/A || N/A || N/A || || ||
|-
| NVE0 Kepler GT630 || N/A || N/A || N/A || || ||
|-
| NVE6 (GK106) Kepler GTX660 || N/A || N/A || N/A || || ||
|-
| NVE7 (GK107) GTX 650 || N/A || N/A || N/A || || ||
|-
| NV110 Maxwell GTX 750 || N/A || N/A || N/A || || ||
|-
| NV126 (GM206) GTX950 upwards no reclocking || N/A || N/A || N/A || poor || poor || poor
|-
| NV160 family (Turing) GTX 1650 and RTX 2000 upwards with GSP firmware || N/A || N/A || N/A || unknown || unknown || unknown
|-
| HostGL Ryzen 5 4600H - Nvidia 1650 - Linux mint 21.1 || N/A || N/A || N/A || 150fps || 154fps || 155fps
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| width="5%" | Graphic Card
| width="5%" | Aros 32bit 1024 x 768
| width="5%" | Aros 32bit 800 x 600
| width="5%" | Aros 32bit 640 x 480
| width="5%" | Aros 64bit 1024 x 768
| width="5%" | Aros 64bit 800 x 600
| width="5%" | Aros 64bit 640 x 480
|}
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|-
| <!--Description-->tnt1 (nv04) tnt2 (nv05) m64 value (1998)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|very slow}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| NV04 Riva TNT TNT2 Fahrenheit freezes on via motherboard chipset so rename agp.hidd in SYS:Devs/Drivers or Monitors
|-
| <!--Description-->tnt vanta lt (nv06) 1998 /9
| 0x10de
| 0x002c
| 0x15
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|slow}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| <!--Description-->Geforce 256 (nv10) (2000)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|slow }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| untested Geforce256
|-
| <!--Description-->Geforce 2 Geforce 3 Geforce 4 (nv20) 2000 / 2
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|slow }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| works for some PCI and AGP Geforce2 Geforce3 Geforce4
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| Geforce FX5200 nv34 (2003)
| 0x10DE
| 0x0322 0x
| 0xA1
| <!--2D-->{{Maybe| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->{{Maybe|VGA15 }}
| <!--Digital-->{{Maybe|DVI}}
| <!--Laptop LCD-->{{N/A}}
| NV30 GeForce 5 FX Rankine Hardware OpenGL 1.5 - slower than GF MX 4000 for 2D - max 1024 x768
* not working [https://eab.abime.net/showthread.php?t=92328&page=8 mobos with VIA chipsets 2018]
* working (MSI 0x9174) the previous nouveau 5.x driver
* Others work with 6.x series XFX PV-T34K-NA, ASUS V9520-X/TD
|-
| Geforce FX5500 (nv34) (2003)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{Maybe| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| works
|-
| Geforce 5100 (NV34)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce FX 5200LE (NV34)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5200 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce FX5600 (nv31) (2004)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Maybe| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| works
|-
| GeForce FX 5600 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5600SE
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5600XT
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce FX5700 (nv36) (2004)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes|some}}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{Maybe| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5700VE
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5700 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5700LE
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5800 (NV30)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5800 Ultra (NV30)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900 (NV35)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900XT
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900ZT
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5950 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce 5xxx
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
|
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| Geforce 6200 (nv44) (2005)
| 0x
| 0x00F3 0x014F
| 0x0
| <!--2D-->{{Yes|5.28 Pixel Text}}
| <!--3D-->{{Maybe| use 5.28}}
| <!--Analogue-->{{Yes|VGA15 and s-video - plain 4pin cable lead will work with 7pin}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| NV40 GeForce 6 GeForce 7 Curie AGP Hardware OpenGL 2.1 needing previous 5.x version as regression arose 2011-10
|-
| Geforce 6200 (nv44a) (2006)
| 0x
| 0x0221
| 0x0
| <!--2D-->{{Yes|5.28 Pixel Text }}
| <!--3D-->{{Yes|}}
| <!--Analogue-->{{Yes|VGA15}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| Hardware OpenGL 2.1, PCI version tested OK in 2014-01-02 - Icaros 1.5.2
* not working
*working
|-
| GeForce 6200 with Turbo Cache (NV43)
| 0x
| 0x0161
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce 6200SE with Turbo Cache (NV44)
| 0x
| 0x0162
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce 6200 LE
| 0x10de
| 0x0163
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| PCI-E
|-
| GeForce 6600 LE
| 0x
| 0x00F4 0x0142
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6600
| 0x
| 0x00F2 0x0141
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| 2006 PureVideo HD 1 or VP1 re-used the MPEG-1/MPEG-2 decoding pipeline from FX
|-
| Geforce 6600gt (nv4x) (2005)
| 0x
| 0x00F1 0x0140
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Yes| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| OpenGL tests -
|-
| Geforce 6800 (nv40) (2005)
| 0x
| 0x0041 0x00C1 0x00F0 0x0211
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Yes| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 XE (NV4x)
| 0x
| 0x0043
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 LE
| 0x
| 0x0042 0x00C2 0x0212
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 GT (quadro fx 1400)
| 0x
| 0x0045 0x0046 0x0215
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 6800 GS
| 0x
| 0x0047 0x00C0 0x00F6
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 GTS NV40
| 0x
| 0x0040 0x0F9
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 6800XT
| 0x
| 0x0044 0x0048 0x00C3 0x0218
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6600 VE
| 0x
| 0x0143
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6500 NV44
| 0x
| 0x0160
| 0x0
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6250
| 0x
| 0x0169
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 6xxx
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GeForce 7800 GTX
| 0x
| 0x0090 0x0091
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| tunnel gearbox cube cube2 25}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> 256MB DDR3 - 1 6pin psu connector -
* not working asus en7800gtx/2dhtv/256m/osp/a -
* Works XFX PV-T70F-UDD7 Works in steve jones' scrap pc aros build 2010 2 DVI-I ports
* Untested
|-
| GeForce 7800 GT
| 0x
| 0x0092
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7600gt (G8 ) (nv4 ) (2006)
| 0x
| 0x02E0 0x0391
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL 2.1
* not working
* working
|-
| GeForce 7800 SLI
| 0x
| 0x0095
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GTX
| 0x
| 0x0290
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GT GTO
| 0x
| 0x0291
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GS
| 0x10de
| 0x0292
| 0x0a1
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working
* Works with a few glitches with XFX Pine 0x2218
|-
| GeForce 7950 GX2
| 0x10de
| 0x0293 0x0294
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| GeForce 7950 GT
| 0x
| 0x0295 0x02E4
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GS
| 0x
| 0x02E3
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7600 GS
| 0x
| 0x02E1 0x0392
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7650 GS
| 0x
| 0x0390
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7600 LE
| 0x
| 0x0394
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7800GS (G8 ) (nv4 ) (2006)
| 0x
| 0x0093 0x00F5
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working
* works if AGP motherboard chipset is supported - Hardware OpenGL 2.1
|-
| GeForce 7100 GS
| 0x
| 0x016A
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7350 LE
| 0x
| 0x01D0
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7300le (G8 ) (nv4 ) (2006)
| 0x
| 0x01D1
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7300SE 7200GSGF-7200GS-N-B1 variant (G72)
| 0x10de
| 0x01D3
| 0x0a1
| <!--2D-->
| <!--3D-->
| <!--Analogue-->{{Unk|1x DVI, 1x VGA, 1x S-Video}}
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2007 40W pci-e 1.0 VP1 no unified shaders -
* not working Asus on via chipset (2015),
* works Asus on intel chipset (2015),
|-
| Geforce 7300gt (G8 ) (nv4 ) (2006)
| 0x
| 0x0395 0x0393
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working
* works
|-
| GeForce 7300 GS
| 0x
| 0x01DF
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7500 LE
| 0x
| 0x01DD
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7xxx
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GeForce 8800 Ultra (NV50 family)
| 0x
| 0x0194
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NV50 GeForce 8 to GeForce 200s opengl 3.x - max res - 80nm technology - PureVideo HD 2 or VP2 Nvidia VDPAU Feature Set A (absent from ultra and some 8800gt?) added a dedicated bitstream processor (BSP) and enhanced video processor for H.264, VC-1 acceleration
|-
| Geforce 8800gts (nv50) (G8x) (2007)
| 0x
| 0x0400 0x0600 0x0193
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2007 200w openGL3 openCL - 2x6pin psu
* not working 0x0193 models (2015) on via chipsets,
* works
|-
| Geforce 8800gtx (nv5 ) (G8x) (2007)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2008 200W 1x 6pin connector,
* not working
* working
* untested XFX PV-T88P-YDF4, Alpha Dog Edition runs extremely hot - Gigabyte GV-NX88T512H,
|-
| GeForce 8800 GT
| 0x
| 0x0602 0x0611 0x0193
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->DVI up to 2500 x 1600
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - 6pin psu power connector required
* not working
* untested Asus EN8800GT/HTDP/256M EN8800GT/HTDP/512M EN8800GT/G/HTDP/512M
* works
|-
| GeForce 8800 GT (G92)
| 0x10de
| 0x0611
| 0x0a2
| <!--2D-->{{Yes|6.11 Pixel Text}}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{N/A}}
| <!--Digital-->{{Yes}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3 pci-e 2.0 8800GT 512MB on Icaros 2.0.3 [[File:8800GT aros heads.png|thumb|8800GT]] [[File:8800GT aros tails.png|thumb|8800GT detail]]
|-
| Geforce 8600gt (nv5 ) (G8x) (2007)
| 0x
| 0x0401 0x0402
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res
* not working
* works
|-
| GeForce 8500 GT
| 0x
| 0x0421
| 0x0
| <!--2D-->{{Yes| some color }}
| <!--3D-->{{yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL tests - max opengl 3.x but 2.1 offered - max res
* not working
* works Gigabyte 8500 GT,
|-
| GeForce 8800 GS
| 0x
| 0x0606 0x060D
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res
|-
| GeForce 8600GS
| 0x
| 0x0403
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 3.x VP3 offers complete hardware-decoding for all 3 video codecs of the Blu-ray Disc format: MPEG-2, VC-1, and H.264 - Nvidia VDPAU Feature Set B
|-
| GeForce 8300 GS
| 0x
| 0x0423
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res
|-
| Geforce 8400gs G98GS (end 2007) GT218 (2009)
* Rev2 with 8/16 cores and 128-512MB of DDR2 or GDDR3 memory.
* Rev3 with 8 cores and 512MB-1GB of DDR3 memory (based on Tesla 2.0)
| 0x
| 0x0424 0x0422
| 0x0
| <!--2D-->{{Yes|Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 490 gearbox 505 Cube 135 Cube2 55 quake3 }}
| <!--Analogue-->{{Yes|works digital part of DVI but nothing from any display port}}
| <!--Digital-->{{Yes|output on digital 24 pin array of DDWG's DVI and hdmi}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 50W openGL 3.1 openCL - case single slot - one single-link DVI digital output, supporting up to one 1920x1080 resolution display - analog resolution 640 x 480 to 1024 x 768 16 and 24 bit color - [http://www.phoronix.com/scan.php?page=article&item=nouveau_comp_2011&num=19 runs a little hotter than expected] - G98 VP3 pci-e 2.0 512MB DDR2 -
* not working
* works Asus EN8400GS SILENT/P/512M PCIe (G98),
|-
| Geforce 8400gs (nv50) (G86) (mid-2007)
* Rev1 with 16 cores / 256MB of DDR2 memory.
| 0x
| 0x0404
| 0x0
| <!--2D-->{{Yes|Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 490 gearbox 505 Cube 135 Cube2 55 quake3 }}
| <!--Analogue-->{{Yes|works but not tested thru 4 pins of analog signal of DVI plug}}
| <!--Digital-->{{Yes|output on digital 24 pin array of DDWG's DVI and hdmi}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2008 50W openGL 3.1 openCL - case single slot - one single-link DVI digital output up to 1920x1080 resolution display - analog resolution 640 x 480 to 1024 x 768 16 and 24 bit color - [http://www.phoronix.com/scan.php?page=article&item=nouveau_comp_2011&num=19 runs a little hotter than expected] - G86 VP2 128MB -
* not working XFX PV-T86S-YAJG NVIDIA GeForce 8400 GS 512MB DDR2, Sparkle 8400GS 512MB SX84GS512D2L-DPP,
* works Asus EN8400GS SILENT/HTP/256M SILENT/HTP/512M/A,
|-
| GeForce 8400 SE
| 0x
| 0x0420
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 2.x openCL
|-
| NVidia Quadro NVS290 DMS-59
| 0x
| 0x0403
| 0x0
| <!--2D-->{{no| }}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk|DMS-59 socket}}
| <!--Digital-->{{unk|DMS-59 }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2008 21W - G86S (G86-827-A2) - 16 shading units, 8 texture mapping units, and 4 ROPs. NVIDIA has paired 256 MB DDR2 - PCIe 1.0 x16 Low Profile -
|-
| Geforce Quadro FX 4600 (SDI), 5600
| 0x
| 0x
| 0x0
| <!--2D-->{{Partial|VESA 2d}}
| <!--3D-->{{no| }}
| <!--Analogue-->{{partial| }}
| <!--Digital-->{{partial| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GeForce 9800 GX2 (NV50 family)
| 0x
| 0x0604
| 0x0
| <!--2D-->{{Partial|VESA }}
| <!--3D-->{{no| }}
| <!--Analogue-->{{Partial| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 150w - 65nm technology
|-
| GeForce 9800 GTX
| 0x10de
| 0x0612
| 0x0a2
| <!--2D-->{{Yes| }}
| <!--3D-->{{Maybe|6.11 }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 2x6pin psu -
* not working xfx on via chipset (2015),
* works xfx on chipset intel ,
|-
| GeForce 9800 GTX+
| 0x10de
| 0x0613
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res 2560 x 1920 - case dual slot - 26amp 12v rail on computer psu if 2x6pin connectors needed - 55nm version of the G92 chip - will not work with PCI-e 1.0a slots -
* not working
* works on a few models
|-
| Geforce 9800gt (nv50) (G92a) (2008)
| 0x10de
| 0x0614
| 0x0xa2
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel 495 gearbox 513 Cube 156 Cube2 120 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{partial| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL 3.1 openCL 1.x - case dual slot - 600w 26amp on both 12v rails for 2x6pin psu on gfx card - no fan control - some come with 1x6pin - renamed version of the venerable GeForce 8800 GT - randomly works
* not working Gainward 512M untested
* working Gainward CardExpert (0x0401) Green Edition NE39800TFHD02-PM8D92 1024MB (no 6pin)
|-
| Geforce gf9600 9600gt (nv5 ) (G9x) (2008)
| 0x10de
| 0x0622
| 0x0a1
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel 493 gearbox 675 Cube Cube2 100 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL 3.2 openCL but no fan control - case dual slot - 1 6pin pcie psu connector - 500 Watt or greater power supply with a minimum of 26 Amp on the +12 volt rail - Max Analog: 2048x1536 and Max Digital: 2560x1600 (Dual Link DVI Only) - PCI Express® 2.0 / 1.1 Support - g96 gpu randomly works -
* not working bfg tech ocx,
* works gigabyte gv-n96tsl-512i -
|-
| Geforce gf9500 9500gt (nv5 ) (G9x) (2008)
| 0x10de
| 0x0640
| 0x0a1
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel 480 gearbox 500 Cube Cube2 64 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.2 - case single slot - 350 Watt/400 Watt or greater power supply with a minimum of 18 Amp/22 Amp on the +12 volt rail - Max Analog: 2048x1536 and Max Digital: 2560x1600 (Dual Link DVI Only) - PCI Express® 2.0 / 1.1 Support -
* not working zotac zone fanless, Gainward USA NE29500THHD01-PM8796, PNY G9500GN2E50X+0TE,
* works xfx xne-9500t-td01-pm8596 1024mb ddr2,
|-
| GeForce 9600 GS
| 0x
| 0x0623
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res - will not work with PCI-e 1.0a slots -
* not working
* works
|-
| GeForce 9600 GSO
| 0x
| 0x0610
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res - G92 chopped down - 9600GSO is re-badged 8800GS both very power hungry cards -
|-
| GeForce 9300 GS
| 0x
| 0x06E1
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 opengl 3.x - max res
|-
| Geforce 9400 GT (nv5 ) (G86S) (2008)
| 0x
| 0x
| 0x0
| <!--2D-->{{partial|}}
| <!--3D-->{{unk|}}
| <!--Analogue-->{{unk|1x DVI, 1x VGA, 1x S-Video}}
| <!--Digital-->{{unk|1x DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 50W opengl 3.x - max res
|-
| Geforce 9xxx (nv5 ) (G9x) (2008)
| 0x
| 0x
| 0x0
| <!--2D-->{{unk|}}
| <!--3D-->{{unk|}}
| <!--Analogue-->{{unk|}}
| <!--Digital-->{{unk|}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 opengl 3.x - max res
|-
| <!--Description-->Quadro FX 580 G96 chipset
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2009
|-
| <!--Description-->
NV84 (G84) GeForce 8600 (GT, GTS, M GT, M GS), 8700M GT,
NV92 (G92) GeForce 8800 (GT, GS, GTS 512, M GTS, M GTX)
GeForce 9600 GSO, 9800 (GT, GTX, GTX+, GX2, M GT, M GTX)
NV96 (G96) GeForce 9400 GT, 9500 (GT, M G), 9600 (M GS, M GT),
NV86 (G86) GeForce 8300 GS, 8400 (GS, M G, M GS, M GT), 8500 GT
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NVA0 (GT200) GeForce GTX (260, 275, 280, 285, 295)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->GeForce GTX 280 (NV50 family)
| <!--Vendor ID-->
| <!--Product ID-->0x05E1
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res PureVideo HD 4 (Nvidia Feature Set C or "VDPAU Feature Set C), VP4 added hardware to offload MPEG-4 Advanced Simple Profile (original DivX and Xvid)
|-
| <!--Description-->GeForce GTX 260
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x05E2
| <!--Revision-->
| <!--2D-->{{partial|Vesa}}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> 2 6pin - psu pci express 2.1 -
|-
| Geforce GTS250 250GTS (g92b) (2009)
| 0x10de
| 0x0615
| 0x0a2
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 486 gearbox 508-642 Cube Cube2 80 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> 2x6pin psu VP2 - pci-e 2.x - case dual slots - 738m 1gb ddr3 -
* not working Zotac branded version GDDR3 -
* works PNY gs-250x-zdfl and Gigabyte ??, BFG Tech RGTS2501024OCE, palit ne3ts250fhd52-pm8a92 with 2x6pin on top and hdmi output port,
|-
| <!--Description-->GeForce GT 240 (GT215 family)
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0ca3
| <!--Revision-->0xa2
| <!--2D-->{{Maybe|use VESA}}
| <!--3D-->{{No|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->late 2009 openGl 3.2 - case dual slots - no 6pin psu required with VP4 - All are pcie 2.1 cards and may not work in 1.0a slots -
* not working
* DDR3 with 512MB or 1GB -
* DDR5 -Asus ENGT240 - XFX Pine GT240XYHFC 0x3001 - Gigabyte GV-N240D5-512I rev 1.0 - Zotac AMP! with HDMI 1.3a with DisplayPort 1.1, Dual Link DVI -
* works
|-
| <!--Description-->GT220 (GT216) G220
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0a20
| <!--Revision-->0xa2
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Yes}}
| <!--Digital-->{{Yes|DVI }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> Icaros 2.0.3 GeForce GT220 1GB[[File:GT220 aros heads.png|thumb|GT220]][[File:GT220 aros tails.png|thumb|GT220]]
* untested NVIDIA Quadro® 400 512MB DDR3 GT216 DP DVI, AFox AF220 1Gb DDR3,
|-
| Geforce GT220 220GT G94 Tesla (g92b)
| 0x10de
| 0x0a20
| 0xa2
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 490 gearbox 505 cube 150 cube2 50 Quake3 }}
| <!--Analogue-->{{Unk|1x DVI, 1x VGA}}
| <!--Digital-->{{Yes|DVI but not 1x HDMI }}
| <!--Laptop LCD-->{{N/A}}
| 58W pci express 2.0 cards DDR3 - case single slot -
* not working ASUS ENGT220/DI/1GD2(LP)/V2 -
* works - gainward card expert 0x0401 GDDr3 512MB -
|-
| <!--Description-->GT210 GT 210 210GT G210 based on Tesla 2.0 GT218S GT218-300-A2 variant, GT218-300-B1
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0a65
| <!--Revision-->0xa2
| <!--2D-->{{Yes|6.11 Pixel Text}}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{Unk|1x DVI, 1x VGA}}
| <!--Digital-->{{Maybe|DVI out works but not hdmi or 1x DisplayPort}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 31W OpenGL 3.3 pci-e 2.0 cards - single slot -
* working GT218 based Asus EN210 based silent low profile large passively cooled -
* untested MSI GeForce 210 1GB DDR3 PCIe N210-MD1GD3H/LP,
* not working
|-
| <!--Description-->Quadro NVS 295 (256 MB GDDR3), NVS 450 (256M/512 MB DDR3)
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x
| <!--Revision-->
| <!--2D-->{{yes| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->
| <!--Digital-->{{partial|2 or 4 dp ports}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 25w low performance - G98s with 8 shading units, 4 texture mapping units, and 4 ROPs on PCI-Express 1.0 x16 -
*not working some NVIDIA Quadro NVS 295 2 dp ports (DELL, HP),
*working
|-
| <!--Description-->GT310 Tesla 310, 315, GT 320, GT 330 GT 340
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{Maybe|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2010 50w OpenGL 3.3 openCL all similar in performance to GT2xx except gt31x (poor)
|-
| <!--Description-->Quadro NVS310 NVIDIA NVS 310
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital--> 2 dp
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 25w GF119S (GF119-825-A1) 48 shading units, 8 texture mapping units, and 4 ROPs on PCI-Express 2.0 x16 - 512 MB DDR3 - PureVideo VP5 VDPAU Feature Set D -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description--> GTX 470, GTX 480 GF10 GF10* core (NVC0 family)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{Maybe| tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2010 215w 2x6 plugs - NVC0 family (Fermi) GF100 (GF100-275-A3) Fermi 448 shading units, 56 texture mapping units, and 40 ROPs with 1,280 MB GDDR5 - OpenGL4.5 OpenCL1.1 Tessellation - case dual slots -
|-
| Geforce GTX460 460GTX (G104) 256bit, 1GB v2 192bit and GTX 465
| 0x10de
| 0x0e22
| 0xa1
| <!--2D-->{{Maybe|VESA }}
| <!--3D-->{{Maybe| tunnel gearbox cube 055-111 cube2 50}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVC0 family (Fermi) OpenGL 4.x but - 2x6pin psu - case dual slots -
* not working evga 768MB GDDR5 192bit 01G-P3-1373-ER or 01G-P3-1372-TR
* works 1GB GDDR5 256bit 01G-P3-1371-ER
|-
| <!--Description-->Geforce GTX 460SE 192bit
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0e23
| <!--Revision-->0x91 or 0xa1
| <!--2D-->{{Yes| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->{{Yes| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> nouveau 6.11 - 2 6pin psu needed - case dual slots -
* not working
* works EVGA 01g-p3-1366-b6 et 1024MB p1041 -
|-
| Geforce GT450 GTS450 450GTS GF106
| 0x10de
| 0x0dc4
| 0x0a1
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel gearbox cube cube2 50 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes|DVI }}
| <!--Laptop LCD-->{{N/A}}
| 2010 Hardware OpenGL 4.2 but nouveau at 3.3 - most need 1x 6pin psu - case dual slots -
* not working
* DDR3 1 or 2GB - Palit NEAS450NHD41F,
* GDDR5 512Mb or 1GB - MSI MPN N450GTSM2D1GD5OC, Asus MPN ENGTS450DI1GD5,
* works Gainward Card Expert NE5S4500FHd51,
|-
| <!--Description-->GT 440 GF108 chipset or better OEM GF106
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 6.11 Pixel Text}}
| <!--3D-->{{Maybe| tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGl 4.1 opencl 1.x - no 6 pin psu - 96 cuda cores 128bit - case dual slots -
* not working
* OEM
* GDDR5 512MB to 1GB ASUSTeK ENGT440/DI/1GD5
* GDDR3 Asus 1gb to 2gb,
* works
|-
| <!--Description-->GT430 430GT (GF108)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|6.11 Pixel Text}}
| <!--3D-->{{Maybe|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->ddr3 memory 64bit or 128bit - buggy await new revision of driver
* not working
* works
|-
| <!--Description-->nVidia Quadro FX1800 768MB GDDR3 Full Height Graphics Card Workstation
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 6.11 Pixel Text}}
| <!--3D-->{{no|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->{{Maybe|DVI-I 2xDP}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->59W 768 MB GDDR3 memory using a 192-bit memory interface - OpenGL 3.3 -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GTX 590 Fermi
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->OpenGL4.4 OpenCL 1.1 - GDDR5 - 6pin and 8pin psu connectors - 512 cuda - case dual slots -
* not working
* works
|-
| <!--Description-->GTX 580,
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->PureVideo HD 5" or "VP5" (Nvidia Feature Set D or VDPAU Feature Set D) 4k UHD 3840 × 2160 H.264 decode -
|-
| <!--Description-->GTX 570,
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{Maybe|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working Zotac GTX 570, Gainward GTX560TI/570 Phantom,
* works gigabyte, evga
|-
| <!--Description-->Geforce 5xx 560gtx Fermi GTX 560,
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->opengl 4.x - 2 6pin psu - 384 cuda cores - case dual slots - will not work with PCI-e 1.0a slots -
* not working Asus ENGTX560 DC/2DI/1GD5,
* Ti LE 448 cuda GDDR5 320bit
* Ti 256bit
* works
|-
| <!--Description-->GTX 560 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working evga GTX 560Ti 01GP31560KR - Gainward GTX560TI/570 Phantom,
* works
|-
| <!--Description-->GTX 550 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x1201
| <!--Revision-->
| <!--2D-->{{Maybe|VESA Doom Doom2 Duke }}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->can hang on boot up on I2C Init or suffer random lockups on OpenGL apps - most need 1 6pin min 400W 24A on the +12V1 / +12V2 dual 12V rails of the computers' power supply unit - 192 cuda cores - case dual slots used - will not work with PCI-e 1.0a slots -
* not working eVGA GeForce GTX 550 Ti (1024 MB) (01GP31556KR) -
* untested asus Extreme, eVGA GeForce GTX 550 Ti (1024 MB) (01GP31557KR) - -
* works
|-
| <!--Description-->GT 545 and OEM GF116
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 4.2 opencl 1.x - GDDR5 with OEM only -
|-
| <!--Description-->GT530 OEM
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 6.11 Pixel Text}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->96 cuda cores - 1GB or 2GB DDR3 128bit
|-
| <!--Description-->GT520 520GT
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->untested 48 cuda cores - DDR3 64bit
|-
| <!--Description-->510, GT 530
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D 6.11 Pixel Text}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> ddr 3 - 50w max -
|-
| <!--Description-->GT610 Fermi GF119
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVS 315 300 GF119S
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{No|VESA}} needs special dms-59 cable
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 fermi 315 PNY VCNVS315-T 1Gb DDR3 but needs special dms-59 cable -
|-
| <!--Description-->GT630 GF108 Fermi
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->not accelerated 2015 - like the GT730 below - 96 cuda cores whilst kepler version has 384 - 128bit to keplers' 64bit bandwidth - kepler has 2GB DDR3
* not working Gigabyte
* DDR3
* GDDR5
* works
|-
| <!--Description-->Geforce GT 730
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe| use VESA 6.11 Pixel Text}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> fermi version has 96 cuda cores 128bit GF108
* not working Asus
* works
|-
| <!--Description-->nVIDIA Quadro 4000
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}} 2 dp ports
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->142W 2Gb GDDR5 - PCI Express 2.0 x16 ; full Height card with 1x 6-Pin PCIe power need - CUDA Cores 256 - OpenGL 4.5
|-
| <!--Description-->nVIDIA Quadro 5000
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2011 200W 2.5Gb GDDR5 320 bit - PCI Express 2.0 x16 full Height card with 2x 6-Pin PCIe power need -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce GTX Titan GeForce GTX Titan Black GeForce GTX Titan Z
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVE0 family (Kepler) GeForce 600 GeForce 700 GeForce GTX Titan Kepler
|-
| <!--Description-->GeForce GTX 780 GeForce GTX 780 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->PureVideo HD 6" or "VP6" (Nvidia Feature Set E or VDPAU Feature Set E) significantly improved performance when decoding H.264 and MPEG-2
|-
| <!--Description-->GeForce GTX 770
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->opengl 4.4 opencl 1.1
|-
| <!--Description-->GeForce GTX 760 GeForce GTX 760 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce GT 740
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce GT 730 Kepler
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> two versions fermi 96 cores 128bit GF108 and kepler 384 cores 64bit GK208
|-
| <!--Description-->680gtx GK104 core gtx680 680m
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVE0 family (Kepler)
|-
| <!--Description-->GTX 690 Kepler NVE0
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->pci-e 3.0, OpenGL 4.4 OpenCL 1.1
|-
| <!--Description-->GTX 670
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GTX 660 GTX 660 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GTX 650 GTX 650 Ti GTX 650 Ti Boost
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVE0 family (Kepler) most need 1 6pin psu
* not working asus ENGTX560 DC/2DI/1GD5
* works
|-
| <!--Description-->Geforce GT 640
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* 128bit DDR3
* 192bit DDR3 1.5 to 3GB 50W
* 128bit GDDR5 75W
|-
| <!--Description-->GT 620 GT 640
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->Quadro K2000
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 - 50w single slot - NVE7 (GK107) -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce 750ti, GeForce 900
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->[https://nouveau.freedesktop.org/FeatureMatrix.html NV110] Maxwell -
|-
| <!--Description-->Nvidia GTX 750
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x1381
| <!--Revision-->0xa2
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2026 nvidia test
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->GM206 2nd gen maxwell PureVideo HD 7" or "VP7" (Nvidia Feature Set F or VDPAU Feature Set F) adds full hardware-decode of H.265 HEVC Version 1 (Main and Main 10 profiles and full fixed function VP9 (video codec) hardware decoding
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Quadro K620 quadro p620 2gb gddr5 128bit and quadro p1000 4gb gt1030 30w
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 50w slim low profile -
|-
| <!--Description-->GeForce gtx 1060, GeForce 1070
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NV130 Pascal
|-
| <!--Description-->gtx 1050ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->NV130 family (Pascal)
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV132 (GP102) NVIDIA Titan (X, Xp), GeForce GTX 1080 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV134 (GP104) GeForce GTX (1070, 1080)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV136 (GP106) GeForce GTX 1060
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV137 (GP107) GeForce GTX (1050, 1050 Ti)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV138 (GP108) GeForce GT 1030
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV162 (TU102) NVIDIA Titan RTX, GeForce RTX 2080 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV164 (TU104) GeForce RTX (2070 Super, 2080, 2080 Super)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2020 NV160 family (Turing) unified gsp-rm firmware - best starting point for Vulkan support
|-
| <!--Description-->NV166 (TU106) GeForce RTX (2060, 2060 Super, 2070)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV168 (TU116) GeForce GTX (1650 Super, 1660, 1660 Ti, 1660 Super)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV167 (TU117) GeForce GTX 1650
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->gtx 1650ti super
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2018 old style
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV172 (GA102) GeForce RTX (3080, 3090)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 av1 decoding ampere
|-
| <!--Description-->NV174 (GA104) GeForce RTX (3060 Ti, 3070, 3080 Mobile)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->NV170 family (Ampere)
|-
| <!--Description-->NV176 (GA106) GeForce RTX (3050, 3060)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV177 (GA107) GeForce RTX 3050
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV192 (AD102) GeForce RTX 4090
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV193 (AD103) GeForce RTX 4080
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->NV190 family (Ada Lovelace)
|-
| <!--Description-->NV194 (AD104) GeForce RTX (4070, 4070 Ti)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV196 (AD106) GeForce RTX 4060 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV197 (AD107) GeForce RTX 4060
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
|}
==== nouveau mobile integrated ====
If you purchased a notebook with an NVidia sticker on it, most of the time you have a optimus based one, ie Intel CPU+GPU melded with Nvidia GPU, Optimus was slated at one point to go into desktop PCs but the industry ended up rejecting that concept
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|-
| GeForce 6100 nForce 405
| 0x
| 0x03D1 0x0242
| 0x0
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
|
|-
| <!--Description-->GeForce 6100 nForce 400
| <!--Vendor ID-->
| <!--Product ID-->0x03D2
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce 6100 nForce 420
| <!--Vendor ID-->
| <!--Product ID-->0x03D5
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce 6150 LE
| <!--Vendor ID-->
| <!--Product ID-->0x0241
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6150SE nForce 430
| 0x
| 0x03D0
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| working
|-
| <!--Description-->GeForce 6150
| <!--Vendor ID-->
| <!--Product ID-->0x0240
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7150M / nForce 630M
| <!--Vendor ID-->
| <!--Product ID-->0x0531
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7000M / nForce 610M
| <!--Vendor ID-->
| <!--Product ID-->0x0533
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7050 PV / NVIDIA nForce 630a
| <!--Vendor ID-->
| <!--Product ID-->0x053A 0x053B
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Geforce IGP 7025 nForce 630a
| 0x
| 0x053E
| 0x0
| <!--2D-->{{Yes|some}}
| <!--3D-->{{Yes|some}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No| }}
| some support on some chipsets
|-
| GeForce 7100 / nForce 630i (C73)
| 0x10de
| 0x07e1
| 0x0a2
| <!--2D-->{{Maybe}}
| <!--3D-->{{Maybe}}
| <!--Analogue-->{{Maybe}}
| <!--Digital-->{{Maybe}}
| <!--Laptop LCD-->{{N/A}}
| Icaros 2.0.3 and Gigabyte 73-pvm-s2h rev. 1.0 but will not boot on [https://ae.amigalife.org/index.php?topic=806.msg8765#new Acer x270 with Icaros 2.3]
|-
| <!--Description-->GeForce 7150 / NVIDIA nForce 630i
| <!--Vendor ID-->
| <!--Product ID-->0x07E0
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7050 / NVIDIA nForce 610i
| <!--Vendor ID-->
| <!--Product ID-->0x07E3
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Geforce IGP 8100 (nForce 720a)
| 0x
| 0x084F
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
|
|-
| GeForce 8100P
| 0x
| 0x0847
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
|
|-
| <!--Description-->Geforce 8200 8300 nForce 730a
| <!--Vendor ID-->
| <!--Product ID-->0x084A 0x0848 (GeForce 8300) 0x0849 (GeForce 8200) 0x084B (GeForce 8200)
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->working on some 8300's with Icaros 1.5 but others untested
|-
| <!--Description-->nForce 780a SLI
| <!--Vendor ID-->
| <!--Product ID-->0x084C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->nForce 750a SLI
| <!--Vendor ID-->
| <!--Product ID-->0x084D
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Nvidia Geforce IGP 9300 (nForce MCP7a)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->works
|
|-
| <!--Description-->9400 (ION)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->If AROS detects GPU chipset, works well
|-
| <!--Description-->9700M ()
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Geforce ION 2
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->works well
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce Go 6150
| <!--Vendor ID-->
| <!--Product ID-->0x0244
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6100
| <!--Vendor ID-->
| <!--Product ID-->0x0247
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6200
| <!--Vendor ID-->
| <!--Product ID-->0x0164 0x0167
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6400
| <!--Vendor ID-->
| <!--Product ID-->0x0166 0x0168
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->Sony Laptop
|-
| <!--Description-->GeForce Go 6800
| <!--Vendor ID-->
| <!--Product ID-->0x00C8
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6800 Ultra
| <!--Vendor ID-->
| <!--Product ID-->0x00C9
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600
| <!--Vendor ID-->
| <!--Product ID-->0x0144
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600 TE/6200 TE
| <!--Vendor ID-->
| <!--Product ID-->0x0146
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600
| <!--Vendor ID-->
| <!--Product ID-->0x0148
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600 GT
| <!--Vendor ID-->
| <!--Product ID-->0x0149
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7200
| <!--Vendor ID-->
| <!--Product ID-->0x01D6
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7300
| <!--Vendor ID-->
| <!--Product ID-->0x01D7
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->untested
|-
| <!--Description-->GeForce Go 7400
| <!--Vendor ID-->
| <!--Product ID-->0x01D8
| <!--Revision-->
| <!--2D-->
| <!--3D-->works 2D and 3d issues though
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7800
| <!--Vendor ID-->
| <!--Product ID-->0x098
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7800 GTX
| <!--Vendor ID-->
| <!--Product ID-->0x0099
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7950 GTX
| <!--Vendor ID-->
| <!--Product ID-->0x0297
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7900 GS
| <!--Vendor ID-->
| <!--Product ID-->0x0298
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7900 GTX
| <!--Vendor ID-->
| <!--Product ID-->0x0299
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7600
| <!--Vendor ID-->
| <!--Product ID-->0x0398
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7600 GT
| <!--Vendor ID-->
| <!--Product ID-->0x0399
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 6610 XL
| <!--Vendor ID-->
| <!--Product ID-->0x0145
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 6700 XL
| <!--Vendor ID-->
| <!--Product ID-->0x0147
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce 8700M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0409
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8600M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0425
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8400M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0426
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8400M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0427
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8400M G
| <!--Vendor ID-->
| <!--Product ID-->0x0428
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8800M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x0609
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8800M GTX
| <!--Vendor ID-->
| <!--Product ID-->0x060C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9500M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0405
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8600M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0407
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9650M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0408
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9400M GT
| <!--Vendor ID-->
| <!--Product ID-->0x042C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9300M G
| <!--Vendor ID-->
| <!--Product ID-->0x042E
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9100M G
| <!--Vendor ID-->
| <!--Product ID-->0x0844
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9800M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x0628
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9700M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x062A
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9800M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x062C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9600M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0647
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9600M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0648
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9600M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0649
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9500M G
| <!--Vendor ID-->
| <!--Product ID-->0x064B
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9300M GS
| <!--Vendor ID-->
| <!--Product ID-->0x06E5
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9200M GS
| <!--Vendor ID-->
| <!--Product ID-->0x06E8
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9300M GS
| <!--Vendor ID-->
| <!--Product ID-->0x06E8
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->NV50 (G80) Quadro FX (4600 (SDI), 5600)
Quadro FX (2800M, 3600M, 3700, 3700M, 3800M, 4700 X2), VX 200
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV94 (G94) 9700M GTS, 9800M GTS, GeForce G 110M, GT 130(M), GT 140, Quadro FX (1800, 2700M)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV84 (G84) 8700M GT, GeForce 9500M GS, 9650M GS
Quadro FX (370, 570, 570M, 1600M, 1700), NVS 320M
NV86 (G86) GeForce 8300 GS, 8400 (GS, M G, M GS, M GT), 8500 GT, GeForce 9300M G
Quadro FX 360M, NVS (130M, 135M, 140M, 290)
GeForce GTS 150(M), GTS 160M, GTS 240, GTS 250, GTX (260M, 280M, 285M), GT (330, 340)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV96 (G96) 9650M GT, 9700M GT
GeForce G 102M, GT 120
Quadro FX (380, 580, 770M, 1700M)
NV98 (G98) GeForce 8400 GS, GeForce 9200M GS, 9300 (GE, GS, M GS)
GeForce G 100, G 105M
Quadro FX (370 LP, 370M), NVS (150M, 160M, 295, 420, 450)
Quadro CX, FX (3800, 4800, 5800)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVA3 (GT215) GeForce GT (240, 320, 335M), GTS (250M, 260M, 350M, 360M) Quadro FX 1800M
NVA5 (GT216) GeForce GT (220, 230M, 240M, 325M, 330M), 315
Quadro 400, FX 880M, NVS 5100M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVA8 (GT218) GeForce 8400 GS, ION 2, GeForce 205, 210, G 210M, 305M, 310(M), 405
Quadro FX (380 LP, 380M), NVS (300, 2100M, 3100M)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVAA (MCP77/MCP78) GeForce 8100, 8200, 8300 mGPU / nForce 700a series, 8200M G
NVAC (MCP79/MCP7A) ION, GeForce 9300, 9400 mGPU / nForce 700i series, 8200M G, 9100M, 9400M (G)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVAF (MCP89) GeForce 320M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NVC0 (GF100) Fermi GeForce GTX 480M, Quadro 5000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVC1 (GF108) GeForce GT 415M, 420M, 425M, 435M, 520M, 525M, 540M, 550M, 555M, 630M, 635M, 640M LE, Quadro 1000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVC3 (GF106) Fermi GeForce GT 445M, 555M, 630M, 635M), GTX 460M, Quadro 2000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVC4 (GF104) GeForce GTX 470M, 485M, Quadro 5000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVCE (GF114) GeForce GTX 570M, 580M, 670M, 675M,
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVD7 (GF117) Fermi Geforce GT 620M, 625M, (some) 630M, 710M, 720M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVD9 (GF119) Fermi GeForce 410M, GT 520M, 520MX, 610M, Quadro NVS 4200M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NVE4 (GK104) GeForce GTX 670M, 680M, 775M, 780M, 860M, Quadro K3000M, K3100M, K4000M, K4100M, K5000M, K5100M,
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVE7 (GK107) GeForce GT640M, 645M, 650M, 710M, 720M, 730M, 740M, 745M, 750M, 755M, GTX 660M, K500M, K1000M, K1100M, K2000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GTX 1650 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2019 turing architecture - last old skool support pre Vulkan
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rtx 2050 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 ampere architecture best starting point for vulkan support
|-
| <!--Description-->rtx 2060 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rtx 4060 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
|}
====radeon.hidd====
Michel Shultz ''2D'' graphics driver (standard on most distributions but only for very old GPUs) and bearsofts updated 2013 around Icaros 1.3.1
3D is not implemented by AROS yet but could cover these AMD chipsets
<pre>
2014 SI AMD HD 7xxx
2016 GCN3rd AMD R5E R7E
2019 GCN5th AMD Vega 8
2022 RDNA1 AMD RX5500 desktop only
2023 RDNA2 AMD 680M 780M
2024 RDNA3 AMD 880M 890M
2025 RDNA3.5 AMD 8060S strix halo and AI
2027 RDNA4 AMD
</pre>
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! 2D
! 3D
! Analogue Output
! Digital Output
! Laptop LCD
! Comments
|-
| 7000 (r100)
| 0x1002
| 0x5159
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->{{Maybe|vga15 pin connection but not s-video}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.3
|-
| 7500 (rv200 but still r100 based)
| 0x1002
| 0x5157
| 0x
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->{{Yes|vga15}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.3
|-
| 8000 8500 (r200)
| 0x1002
| 0x514c (8500LE)
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.4
|-
| 9000 9100 9250 (r200)
| 0x1002
| 0x5964 (9000) 0x514d (9100)
| 0x0001
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->{{Maybe|VGA15 but not s-video}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.4
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| 9600 9800 (r300)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1
|-
| x300 x600 (r300)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1
|-
| x700, x800 ([http://en.wikipedia.org/wiki/Radeon_R600 r420])
| 0x
| 0x554d (R430 x800xl)
| 0x0
| <!--2D-->{{Yes|new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1 - x800 XL PCIE (problem with mouse-pointer, some part of the pointer is not transparent)
|-
| x1300 x1550 x1600 x1800 x1900 x1950 ([http://en.wikipedia.org/wiki/Radeon_R520 r520])
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes|new driver}}
| <!--3D-->{{no}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| HD2400 HD2600 HD2900 ([http://en.wikipedia.org/wiki/Radeon_R600 r600])
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|some features with new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 3.3 open CL 1.2 TeraScale architecture
|-
| HD3400 HD3600 HD3800 (r600)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|some features with new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->pci-e 2.0, openGL 3.3
|-
| HD4300 HD4500 HD4600 HD4700 HD4800 ([http://en.wikipedia.org/wiki/Radeon_R600 r700])
| 0x1002
| 0x
| 0x0
| <!--2D-->{{Maybe|but some later cards need 3D engine for faster and more flexible 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 3.3 - DDR3 - GDDR5 was one of AMD's aces for the 4800 series - 4670 liked -
|-
| HD6900 cayman series
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|some features with new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 3.3 open CL not mature (2014) -
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| HD5400 Series HD5430 HD5450 HD5470
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2010 openGL 3.3 openCL - GDDR3 -
|-
| HD5500 Series HD5550 HD5570 HD5600 Series HD5650 HD5670 HD5700 Series HD5750 HD5770
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 3.3 openCL - GDDR5
|-
| HD 5800 Series HD5850 HD5870 HD5900 Series HD5950 HD5970 - HD6xxx not NI chipset ([http://en.wikipedia.org/wiki/Evergreen_(GPU_family) r800 evergreen])
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 openGL 3.3 openCL - DDR5 pci-e 2.1 best avoided for all pci-e 1.0 mobos - Ati TeraScale2 architecture -
|-
| HD6450 [http://en.wikipedia.org/wiki/Northern_Islands_(GPU_family) Northern Islands chipset]
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> - DDR3 -
|-
| HD6600 Series HD6650 HD6570 HD6600 Series HD6650 HD6670
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2011 - DDR5 -
Radeon HD 8470 11 TeraScale 2
Radeon HD 8350 11 TeraScale 2
Radeon HD 7510 11 TeraScale 2
Radeon HD 6550D 11 TeraScale 2
Radeon HD 6530D 11 TeraScale 2
Radeon HD 6410D 11 TeraScale 2
Radeon HD 6370D 11 TeraScale 2
Radeon HD 6320 11 TeraScale 2
Radeon HD 6310 11 TeraScale 2
Radeon HD 6290 11 TeraScale 2
Radeon HD 6250 11 TeraScale 2
|-
| HD6800 Series HD6850 HD6870 HD6700 Series HD6790 to HD6990
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2011 - DDR5 - AMD TeraScale3 -
|-
| <!--Description-->HD7450-HD7670
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 OpenGL but not Vulkan
Radeon HD 7660D 11 TeraScale 3
Radeon HD 7560D 11 TeraScale 3
Radeon HD 7540D 11 TeraScale 3
Radeon HD 7480D 11 TeraScale 3
Radeon HD 6930 11 TeraScale 3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->HD7750 HD 7770 / R7 250X HD7850 HD7870 / R9 270X HD 7950 / R9 280 HD 7970 / R9 280X [http://en.wikipedia.org/wiki/Southern_Islands_(GPU_family) Southern Islands]
*AMD Radeon R7 250XE Cape Verde XT
*AMD Radeon R7 M465X Cape Verde
*AMD Radeon R9 255 Cape Verde PRX
*AMD Radeon HD 7750 Cape Verde PRO
*AMD Radeon R7 250E Cape Verde PRO
*AMD Radeon HD 8740 Cape Verde PRO
*AMD Radeon HD 7730 Cape Verde LE
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 pci-e 3.0 1st Gen GCN architecture -
|-
| <!--Description-->R5 430, FirePro W2100,
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 50W+ openGL openCL 1/3 speed of gtx750ti 1st gen gcn1
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->HD7790 [ Sea Islands ]
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 openGL 4.1 open CL - GCN2.0 Vulkan 1.0 introduced a Shader Engine (SE) comprising one geometry processor, up to 44 CUs (Hawaii chip), rasterizers, ROPs, and L1 cache and Graphics Command Processor for faster audio/video - suits Vulkan 1.1
|-
| <!--Description-->r5 240 240x (slow) R7 250 250x (faster) HD 7790 / R7 260 260X / R7 360 to R5 350 (fast) and last one R5 430 OEM Plus (slow again)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 50W+ GCN 1st gen - openGL 4.x openCL 1.x Vulkan 1.0
|-
| <!--Description-->R9 290 / R9 390 R9 290X / R9 390X
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2014 GCN 1.1 2nd Gen architecture - openGL 4.x openCL 1.x Vulkan 1.1 -
|-
| <!--Description-->R9 Fury Nano
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 GCN 1.2 3rd Gen - openGL openCL vulkan
|-
| <!--Description-->r-200 series r8 275 285 295 375 [Volcanic Islands]
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 GCN1.2 - openGL 4.x openCL 1.x Vulkan 1.2
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 [https://gpuopen.com/download/AMD_GCN3_Instruction_Set_Architecture_rev1.1.pdf GCN3]
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Radeon™ RX 5700/5600/5500 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 GCN 4 - OpenGL 4, Vulkan 1.3 -
|-
| <!--Description-->Radeon™ RX 400/500 Series like rx vega 580
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->Radeon™ Pro WX 9100, x200 Series and Radeon™ Pro W5700/W5500 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Radeon™ RX 7900/7600 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->Radeon™ RX 6900/6800/6700/6600/6500 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|}
==== amd radeon mobile integrated ====
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|-
| <!--Description-->ATI RC410 [Radeon Xpress 200M]
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x5a62 0x5955 0x5974 (200m)
| <!--Revision-->0x00
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->
|-
| <!--Description-->Mobility Radeon 7500
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x4c57 (7500)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->
|-
| <!--Description-->Mobility Radeon 9000
| 0x1002
| 0x4966 (9000)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->
|-
| <!--Description-->Mobility Radeon 9500 9550 (rv360) 9600 (rv350)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon 9800 (rv420)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon X300 (RV370) X600 (RV380)
| 0x1002
| 0x (RV370) 0x5657 (RV380)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon X700 (RV410) X800 (RV423)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon X1200 (RS69M0)
| 0x1002
| 0x791f
| 0x0
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->X1200 IGP (RS690)
|-
| <!--Description-->Mobility Radeon X1300 X1350 X1400(rv515) X1600 (rv530) X1650 (RV535) X1800 (rv520) x1900 (rv570)
| 0x1002
| 0x71c7 (X1650)
| 0x009e
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon 2100
| 0x1002
| 0x796e (2100)
| 0x0
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{No|}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 2400 (rv610) HD2600 (rv630)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 3100 HD3200 HD3450 3470 (RS780MC RV620) 3670 (M86-XT RV635) HD3870 (M88-LXT RV670)
| 0x1002
| 0x9610 and 0x9612 (HD3200) 0x9614 (HD3300)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 4200 4250 (RV620)
| 0x1002
| 0x (HD4200) 0x9715 (HD4250)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 4330 4530 4550 (M92 RV710) 4650 (M96-XT RV730) 4670 RV730XT 4830 (M97 RV740) 4850 (M98 RV770)
| 0x1002
| 0x (HD4350) 0x9442 (RV770) 0x9490 (HD4670)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 530v (M92 RV710) HD 550v (M96 RV730)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->no support yet
|-
| <!--Description-->Mobility Radeon HD 5430 HD5650 (cedar Park LP)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->no support yet
|-
| <!--Description-->Radeon HD 6250 6290 6310 6320 6350M (Redwood Capilano PRO)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->no support yet
|-
| <!--Description-->AMD 7640G, 8450G, 8550G, 8650G Northern Islands
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 Last real support for old graphics standard before Vulkan takeover
|-
| <!--Description-->R5 M230 M240 M255 - R7 M260 M265 (Kaveri Crystal series with Mantle and HSA)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->2015 Maybe better with Vulkan
|-
| <!--Description-->R5E R7E
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->2016 bristol ridge GCN 3.0 IGP (Carrizo Mobile)
|-
| <!--Description-->AMD Vega 3, 6, 8, 11 iGP
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2018 raven ridge GCN 5th Gen
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->5500m 5600m 5800m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA1 NaviX1 Zen 2
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rx680m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA2 NaviX2 Zen 3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->phoenix apu 1103
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 RDNA3 NaviX3 zen 4
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
==== AMDGPU Vulkan desktop ====
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Kaveri 290 290X, 260 260X
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 AMDGPU Vulkan
|-
| <!--Description-->R9 285 / R9 380 R9 380X Fury / Fury X
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->opengl 4 opencl 1 3rd Gen GCN architecture
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX470 RX460 RX480 RX580 polaris10
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 opengl 4 opencl 2 4th Gen GCN architecture vulkan 1.3
|-
| <!--Description-->RX460 RX560D polaris11
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 opengl 4 opencl 2 4th Gen GCN architecture vulkan 1.3
|-
| <!--Description-->RX580 polaris20
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 opengl 4 opencl 2 4th Gen GCN architecture vulkan 1.3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX 5000 5500 Navi 1x
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RNDA 1
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX 6000 Navi 2x
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RNDA 2 Mesa 21.3 decode av1
|-
| <!--Description-->RX6000
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX 7000
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 RNDA 3 navi
|-
| <!--Description-->RX7000
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->RX9070 rx 9060 XT
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2025 rdna4 navi
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2026 udna (aka rdna5)
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
|}
==== AMDGPU Vulkan mobile ====
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->R5E R7E
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->2016 bristol ridge GCN 3.0 IGP (Carrizo Mobile)
|-
| <!--Description-->Vega 8
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> GCN 5
|-
| <!--Description-->Vega iGP 3, 6, 8, 11
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2018 raven ridge - Graphics Core Next (GCN) 5th gen -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->5500m 5600m 5800m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA1 NaviX1 Zen 2
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rx680m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA2 NaviX2 Zen 3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->phoenix apu 1103
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA3 NaviX3 zen 4
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
fyi if a notebooks with two graphic cards, the integrated Intel card (id 0x7d) for low power usage and a discrete Radeon card (id 0x56) which should be used for GPU-intensive applications. By default the Intel card is always used
[https://wiki.archlinux.org/title/ATI Gallium Radeon HD] is not ported yet but is [https://www.phoronix.com/scan.php?page=news_item&px=Linux-5.9-AMDGPU-Stats really big] and complex so another solution may have to be [https://discuss.haiku-os.org/t/the-graphics-acceleration-can-of-worms/10515/5 found] like [https://discuss.haiku-os.org/t/vulkan-lavapipe-software-rendering-is-working-on-haiku/11363/10 vulkan] where support starts from very recent ISA GCN islands HD7000s cards only
*Vulkan
*Gallium
Vulkan software renderer allows to prepares the infrastructure for hardware rendering. Primary difference between software and hardware renderer is output to regular RAM vs GPU RAM, the rest is almost the same. It is possible to render to GPU RAM offscreen.
bare bones basics data flow
application,>>> api/opengl/vulkan>>>>, jit compiler, >>>>memory manger, >>>>gpu hardware
so you need to have a compiler that takes your api call/program/shaders/drawing commands and turns them into a program the gpu can render.
the vulkan to amd gpu compiler for shaders and textures is nearly os agnostic iirc as long as you have solid posix compliance
Unlike OpenGL, Vulkan does not depend on windowing system and it have driver add-on system with standardized API (Mesa also have OpenGL driver add-ons, but it have non-standard Mesa-specific API). OpenGL may need more work for windowing system related code at this point but developing Vulkan on real hardware is more strategic than developing OpenGL, since now Zink 3 running on Vulkan compensates for the lack of OpenGL support by giving performance similar to native accelerated OpenGL
RadeonGfx use client-server model with client-server thread pairs. For each client thread that calls 3D acceleration API, server side thread is created. If client thread terminates, server side thread also exit.
==Rough gfx comparison==
<pre>
Group 1
GeForce RTX 5090 5070 5060 5050
GeForce RTX 4090 4070 4060 4050
Group 2
GeForce RTX 2070
Radeon RX 7600
Quadro RTX 5000
Radeon PRO W6600
GeForce RTX 2060 12GB
Radeon PRO W7500
Quadro GP100
Radeon RX 6800S
GeForce RTX 3070 Laptop GPU
GeForce GTX 1080
GeForce RTX 3060 8GB
Quadro RTX 4000
Radeon Pro W5700
Radeon RX 6600
GeForce RTX 2080 (Mobile)
Radeon RX 7700S
Radeon RX 6700S
Radeon RX 6600S
Quadro RTX 5000 (Mobile)
GeForce GTX 1070 Ti
GeForce RTX 4050 Laptop GPU
Radeon Pro Vega 64X
Radeon RX 5700
Radeon RX Vega 64
GeForce RTX 2060
GeForce RTX 2070 Super with Max-Q Design
Group 3
Radeon RX 6600M
GeForce GTX 1070
Radeon RX 6650M
GeForce RTX 3060 Laptop GPU
Radeon RX Vega 56
Radeon RX 6700M
GeForce RTX 2080 with Max-Q Design
Radeon RX 6800M
GeForce GTX 980 Ti
Radeon R9 Fury
GeForce GTX 980
Quadro M5500
Radeon R9 390X
Radeon RX 580
Radeon RX 5500
Radeon RX 6550M
GeForce GTX 1660 Ti with Max-Q Design
GeForce GTX 780 Ti
GeForce GTX 970
Radeon R9 290X
Radeon RX 480
Radeon RX 5600M
Quadro RTX 3000 with Max-Q Design
Radeon R9 290X / 390X
Ryzen 5 4600HS with Radeon Graphics
Radeon R9 290
Radeon Pro 5500 XT
Radeon R9 M490 *
GeForce GTX 780
Radeon RX 6500M
Quadro M5500
GeForce GTX 1060 with Max-Q Design
Radeon RX 6500
Radeon RX 5300
Intel Arc A770M
GeForce GTX 1650 Ti
Radeon Pro 580X
Radeon RX 6400
GeForce RTX 2050
Ryzen 9 4900HS with Radeon Graphics
Radeon Ryzen 9 6900HS
GeForce GTX 980M
Quadro M5000M
Radeon RX 6300
GeForce GTX 1650 Ti with Max-Q Design
Radeon Pro 570
Ryzen 9 6900HS with Radeon Graphics
GeForce GTX 1050 Ti
Quadro M4000M
Radeon R9 280X 380X
GeForce GTX 1650 with Max-Q Design
GeForce MX570
Radeon R9 280X
Radeon R9 380
Radeon 780M
GeForce GTX 960
GeForce GTX 970M
Quadro M4000M *
GeForce GTX 680
Group 4
Radeon RX 6500M
Quadro M5500
Radeon Pro WX 7100
GeForce GTX 1060 with Max-Q Design
GeForce GTX 1650
Intel Arc A730M
Radeon HD 7970
Radeon R9 M395X
Radeon R9 M485X
Radeon R9 M480 *
Radeon R9 M295X
Radeon R9 M390X *
FirePro W7170M *
Radeon R9 M395
Radeon R7 370
Radeon RX 5500M
GeForce GTX 590
GeForce GTX 880M
GeForce GTX 950
Radeon R9 270X
GeForce GTX 660 Ti
GeForce GTX 760
GeForce GTX 780M
Quadro K5100M
GeForce GTX 680MX
Radeon HD 7870
GeForce GTX 965M
Quadro M3000M *
GeForce GTX 870M
Radeon R9 M290X
Radeon HD 8970M
Radeon Ryzen 7 7735U (680M), Radeon Ryzen 7 7735HS (680M 12C)
GeForce GTX 580
Radeon HD 6970
GeForce GTX 1050
GeForce GTX 680M
GeForce GTX 775M
GeForce GTX 1630
FirePro M6100
Radeon HD 7970M
Radeon R9 M390 *
GeForce GTX 750 Ti
Group 5
GeForce GTX 570
GeForce GTX 480
GeForce GTX 960M
Quadro M2000M *
Quadro K5000M
Quadro K4100M
GeForce GTX 770M
GeForce GTX 860M
GeForce GTX 675MX
GeForce GTX 950M
GeForce GTX 850M
Quadro M1000M
Radeon R9 M280X
Radeon HD 7950M *
GeForce GTX 560 Ti
Radeon HD 6870
GeForce GTX 470
GeForce GT 1030
GeForce MX330
Ryzen 5 PRO 5650GE with Radeon Graphics
Ryzen 7 5800HS
FirePro 3D V8800
GeForce MX250
Group 6
Radeon Pro WX 3200
Ryzen 7 PRO 5750G with Radeon Graphics
Radeon Ryzen 5 5600H
Ryzen 5 Pro 4650G with Radeon Graphics
Radeon Ryzen 7 5800U
Ryzen 7 7730U with Radeon Graphics
Radeon Ryzen 7 5825U
Radeon Pro WX 4150
Radeon Ryzen 5 PRO 4655G
Ryzen 5 4600G with Radeon Graphics
Radeon Ryzen 5 PRO 4655GE
GeForce GTX 485M
FirePro W6150M
Ryzen 7 5800U with Radeon Graphics
Ryzen 5 7530U with Radeon Graphics
Ryzen 7 4800U with Radeon Graphics
Radeon R9 M470
Ryzen 3 PRO 5350G with Radeon Graphics
Radeon RX Vega Ryzen 3 5300U
Ryzen 7 5825U with Radeon Graphics
Ryzen 5 PRO 4400G with Radeon Graphics
Radeon Ryzen 7 PRO 4750GE
Radeon Ryzen 7 4800U
FirePro V7900
Radeon HD 5970
Radeon Ryzen 7 7700X 8-Core
Radeon Ryzen 5 PRO 5650G
Radeon Ryzen 5 4400G
Radeon Ryzen 5 PRO 5650GE
Radeon RX 550X
FirePro V8800
Radeon RX Vega Ryzen 5 5500U
GeForce MX150
Quadro K3100M
Ryzen 7 PRO 5850U with Radeon Graphics
Radeon HD 6970M
Radeon R7 250X
Intel HD 5600
Ryzen 3 4300GE with Radeon Graphics
GeForce GTX 460
Ryzen 7 5700U with Radeon Graphics
Radeon Ryzen 5 7530U
Quadro K620
Ryzen 3 PRO 5350GE with Radeon Graphics
Intel Iris Pro P580
Intel UHD Graphics P630
Ryzen 5 4600H with Radeon Graphics
Ryzen 5 PRO 7530U with Radeon Graphics
Radeon HD 5870
Radeon HD 6870
Ryzen 7 4700G with Radeon Graphics
Ryzen 5 5600U with Radeon Graphics
Radeon HD 7770
Ryzen 3 Pro 4350G with Radeon Graphics
Radeon Ryzen 5 5625U
GeForce GTX 745
Radeon Ryzen 7 4850U Mobile
Radeon Ryzen 3 PRO 7330U
Quadro M600M
Radeon Ryzen 5 5500U
Ryzen 5 5560U with Radeon Graphics
Ryzen 7 4800H with Radeon Graphics
Group 7
GeForce 945M
Ryzen 5 PRO 4650GE with Radeon Graphics
FirePro M5100
Radeon Ryzen 5 5600U
Radeon Ryzen 5 PRO 4500U
GeForce GTX 580M
Ryzen 7 PRO 5875U with Radeon Graphics
Ryzen 3 5300GE with Radeon Graphics
Radeon R9 M385
Quadro 5000M
Radeon Ryzen 7 4700U
Ryzen 5 PRO 5650U with Radeon Graphics
Radeon Ryzen 7 PRO 4750U
Ryzen 7 4700U with Radeon Graphics
Ryzen 7 PRO 4750U with Radeon Graphics
FirePro V7800
Radeon R9 350
Ryzen 3 4300G with Radeon Graphics
Radeon Vega 11 Ryzen 5 PRO 3350G
Radeon Ryzen 5 5560U
GeForce GTX 460 SE
Radeon Pro W5500M
Radeon Vega 11 Ryzen 5 PRO 3400G
Ryzen 5 5500U with Radeon Graphics
Ryzen 5 PRO 4500U with Radeon Graphics
GeForce GT 645
GeForce GTX 765M
Radeon R9 M385X
Ryzen 5 5625U with Radeon Graphics
Ryzen 3 PRO 7330U with Radeon Graphics
Radeon HD 5850
Radeon Vega 11 Ryzen 5 PRO 2400G
Intel Iris Pro 580
Radeon HD 6850
Intel Iris Xe MAX
Radeon Ryzen 7 PRO 5875U
Radeon Ryzen 5 7600 6-Core
GeForce GTX 470M
Ryzen 3 5300G with Radeon Graphics
GeForce GTX 670MX
Radeon RX 640
Qualcomm Adreno Gen 3
Radeon R7 450
GeForce GTX 675M
Radeon Pro WX 4130
Intel Iris Xe MAX 100
Quadro 5000
Radeon RX 570X
Radeon HD 7700-serie
Ryzen 5 4600U with Radeon Graphics
Ryzen 3 PRO 4350GE with Radeon Graphics
Radeon Vega 8
Group 8
GeForce MX230
GeForce GTX 765M
Quadro K4000M
Iris Pro Graphics P580 *
Iris Pro Graphics 580 *
GeForce GTX 645
Quadro M520
GeForce GTX 570M
GeForce MX130
Radeon RX 540
Radeon Ryzen 5 PRO 5675U
Intel UHD Graphics 770
Radeon RX Vega 11 Ryzen 7 3750H
Radeon Vega 11 Ryzen 5 PRO 3400GE
Radeon HD 5850
GeForce GTX 675M
GeForce GTX 580M
Radeon HD 6990M
Radeon R9 M385X *
Radeon R9 M470X *
Radeon R9 M470 *
Radeon R9 M385 *
Radeon R9 M380 *
Radeon R9 M370X
Radeon R9 M275
Radeon HD 7770
GeForce GTX 485M
GeForce GTX 460 768MB
Radeon HD 6790
GeForce GTX 285M SLI
Quadro K3100M
FirePro W5170M *
GeForce GTX 670MX
Quadro 5010M
GeForce GTX 760M
GeForce GTX 670M
Group 9
GeForce 940MX *
Maxwell GPU (940M, GDDR5)
FirePro M8900
Radeon HD 6970M
Radeon R9 M270
Radeon HD 8870M
Radeon HD 7870M
Quadro K3000M
GeForce GTX 570M
FirePro M6000
FirePro M5100
Quadro K2100M
Radeon HD 5770
GeForce GTX 550 Ti
GeForce GTX 280M SLI
Radeon HD 6950M
Radeon R7 250
GeForce GT 755M
GeForce GTX 660M
GeForce 845M
Radeon HD 8850M
Radeon R9 M365X
Radeon R9 M265X
Ryzen 5 PRO 4400GE with Radeon Graphics
FirePro W5130M *
Radeon Vega 8 Ryzen 5 3500U
Radeon HD 7850M
Radeon HD 8790M
FirePro W4170M
FirePro W4190M
FirePro W4100
Radeon Vega 6 Ryzen 3 3300U
Quadro 4000M
GeForce GTX 470M
GeForce GTX 480M
GeForce GT 750M
Iris Pro Graphics 6200
Quadro K1100M
GeForce 940M
Radeon R9 M375
GeForce 930MX *
Radeon R7 M380 *
Radeon R7 M370
Quadro M600M *
GeForce GT 650M
Quadro K620M
GeForce 840M
Radeon R7 M275DX
GeForce GT 745M
Radeon HD 7770M
GeForce GTX 560M
Radeon R7
Iris Pro Graphics 5200
GeForce GT 740M
GeForce 930M
Radeon HD 4850
Group 10
Iris Graphics 550 *
GeForce 830M
Iris Graphics 540
Quadro M500M *
Quadro K2000M
GeForce GTS 450
GeForce GTX 260M SLI
GeForce GT 735M
Mobility Radeon HD 5870
GeForce 825M
Quadro 5000M
FirePro M4000
FirePro M7820
Radeon HD 6870M
GeForce 9800M GTX SLI
Radeon HD 8830M *
Radeon HD 8770M
Radeon R7 M260X
GeForce GTX 460M
GeForce 920MX *
GeForce GT 730M
Radeon HD 7750M
GeForce GT 645M *
FirePro M4100
Radeon HD 8750M
Radeon R6 A10-9600P 4C+6G
Quadro 3000M
Radeon R7 M270
Radeon R7 M265
Quadro FX 3800M
GeForce GTX 285M
Mobility Radeon HD 4870
GeForce GT 640M
Radeon R7 (Kaveri)
Radeon R8 M365DX
Radeon R7 M460 *
Radeon HD 7730M
Radeon R7 M360
GeForce GTX 280M
Radeon HD 8690M
Quadro FX 3700M
Radeon R7 M340
GeForce 920M
Radeon R6 M340DX
HD Graphics 530
HD Graphics P530
Tegra X1 Maxwell GPU
Radeon R7 M260
Radeon R6
Group 11
Mobility Radeon HD 4860
FirePro M7740
Mobility Radeon HD 4850
GeForce GTX 260M
GeForce 9800M GTX
Quadro FX 2800M
Radeon HD 8670D
Radeon HD 7690M XT
FirePro M5950
GeForce GT 640M LE
Radeon R6 (Kaveri)
Radeon HD 8650M *
Radeon HD 8730M
Radeon HD 6770M
GeForce GT 635M
GeForce GT 555M
Radeon R7 A10 PRO-7800B
Radeon HD 5670
Mobility Radeon HD 5850
Radeon HD 6850M
Quadro 2000M
GeForce 9800M GT
GeForce 8800M GTX
Quadro FX 3600M
GeForce GT 445M
GeForce GTS 360M
Group 12
GeForce GT 240
Radeon R7 PRO A10-9700
Radeon HD 7690M
HD Graphics 5600
Radeon HD 8570D
Radeon HD 8670M
Radeon R6 M255DX
Radeon HD 7660D
Radeon HD 6750M
Quadro K1000M
GeForce GT 550M
Radeon HD 8590M *
GeForce GTS 260M
GeForce GTS 160M
GeForce 9800M GTS
GeForce GT 430
Radeon HD 6830M
Mobility Radeon HD 5830
Radeon HD 6730M *
GeForce 9800M GS
Mobility Radeon HD 4830
Mobility Radeon HD 5770
Radeon HD 6570M
Radeon HD 8650G
Radeon HD 7670M
GeForce GT 630M
Radeon HD 7560D
GeForce GTS 150M *
Radeon R5 M335
Radeon R5 M430 *
Radeon R5 M330
Radeon R5 M255
Radeon Vega 3
Quadro 1000M
GeForce 820M
FirePro W2100
HD Graphics 520 620
Iris Graphics 6100
GeForce GT 720M
GeForce 8800M GTS
Radeon R5 M240
Radeon R5 M320 *
Radeon R5 M230
Radeon R5 M315 *
Mobility Radeon HD 5750 *
Radeon HD 8570M
Radeon R7 PRO A10-8850B
HD Graphics 6000
Quadro K610M
Radeon HD 8550M
Iris Graphics 5100
GeForce GT 540M
Mali-T880 MP12 *
Radeon HD 8610G *
Radeon HD 6650M
HD Graphics 4600
Mobility Radeon HD 5730
HD Graphics 5500
Radeon R5 (Carrizo) *
Radeon R5 (Kaveri)
FirePro M5800
NVS 5400M
GeForce 710M
Radeon HD 7660G
GeForce GT 435M
HD Graphics 5000
Quadro K510M *
Radeon HD 5570
Radeon HD 6550M
Radeon HD 7590M *
GeForce GTS 350M
GeForce GTS 250M
Radeon HD 6630M
Radeon HD 7650M
FirePro M2000
Radeon HD 7570M
Radeon HD 7630M
Quadro FX 1800M
Mobility Radeon HD 5650
Radeon HD 8510G *
Radeon HD 6530M
Radeon HD 8550G
Quadro K500M *
GeForce GT 625M *
GeForce GT 620M
GeForce GT 525M
Radeon HD 6550D *
Radeon HD 7610M
Radeon HD 7620G
Radeon HD 8470D
Radeon HD 7640G
Adreno 530
GeForce ULP K1 (Tegra K1 Kepler GPU)
HD Graphics 4400
HD Graphics 510 515 *
NVS 5200M
Mobility Radeon HD 565v
Radeon HD 7550M
Mobility Radeon HD 4670
GeForce GT 425M
GeForce 9700M GTS
Radeon HD 6645G2 *
Quadro FX 2700M
GeForce GT 335M
Radeon HD 7600G
Mobility Radeon HD 3870
Mobility Radeon HD 4650
GeForce GT 220
GeForce GT 420M
Radeon HD 7530M *
Mobility Radeon HD 3850
GeForce GT 330M
Quadro FX 880M
Quadro NVS 5100M
GeForce GT 240M
Radeon HD 7490M *
HD Graphics 5300
Radeon HD 7510M *
GeForce Go 7950 GTX
Quadro FX 3500M
GeForce 8700M GT SLI
GeForce 9700M GT
GeForce GT 230M
Mobility Radeon HD 550v
Radeon HD 7480D
HD Graphics 4000
Mali-T760 MP8
Radeon HD 6620G
HD Graphics (Broadwell) *
Adreno 430
Radeon R5 (Beema/Carrizo-L)
Radeon R4 (Beema) (Kaveri)
HD Graphics (Skylake) *
Radeon HD 6450 GDDR5
Radeon HD 7500G
Radeon HD 8450G
Radeon HD 7470M
Radeon HD 6490M
Radeon HD 8400
Mali-T880 MP4
GeForce GT 520MX
Radeon HD 7520G
GeForce GT 325M
GeForce Go 7800 GTX SLI
GeForce 8600M GT SLI
GeForce Go 7900 GS SLI
GeForce GT 130M
NVS 4200M
GeForce Go 7900 GTX
Quadro FX 2500M
Radeon HD 8350G
Radeon HD 8330
GeForce 9650M GS
GeForce 9650M GT
Radeon R3 (Mullins/Beema)
GeForce 8700M GT
Quadro FX 1700M
Quadro FX 1600M
GeForce Go 7800 GTX
GeForce Go 7900 GS
Quadro NVS 320M
Quadro FX 1500M
GeForce 9600M GT
GeForce GT 220M
Quadro FX 770M
GeForce GT 120M
Radeon HD 7450M
GeForce 610M
GeForce 705M
Mali-T760 MP6
Radeon HD 6470M
FirePro M3900 *
GeForce GT 520M
Radeon HD 7420G
Mobility Radeon HD 3670
Mobility FireGL V5725
PowerVR GX6450
Adreno 420
HD Graphics (Haswell)
Radeon HD 6520G
Radeon HD 8310G *
GeForce 320M
GeForce GT 320M
Mobility Radeon HD 2600 XT
Mobility Radeon X1900
Mobility Radeon X1800XT
Mobility Radeon X1800
GeForce Go 6800 Ultra
GeForce Go 7800
GeForce 9600M GS
GeForce 9500M GS
Radeon HD 7400G
Radeon HD 6480G *
Mobility Radeon HD 2700
GeForce GT 415M
GeForce 410M
Radeon HD 7370M
Adreno 418
HD Graphics (Cherry Trail)
Radeon HD 6370M
Radeon HD 8280
Mobility Radeon HD 5470
Radeon HD 6450M
Radeon HD 7430M *
Mobility Radeon HD 3650
Mobility FireGL V5700
Mobility Radeon HD 5145
Mobility Radeon HD 545v
Radeon R6 (Mullins) *
Radeon HD 8240
Radeon HD 8250
Mobility Radeon HD 4570
Quadro FX 570M
Mobility Radeon HD 5450 *
Radeon R2 (Mullins/Beema) *
GeForce 8600M GT
Mobility Radeon HD 2600
HD Graphics 3000
Quadro FX 380M
GeForce 310M
GeForce G210M
NVS 3100M
GeForce 405M
GeForce 315M
GeForce Go 7600 GT
GeForce 9500M G
GeForce 8600M GS
NVS 2100M
GeForce Go 7700
GeForce Go 6800
Quadro FX Go 1400
Mobility Radeon X800XT
Radeon HD 6430M *
Radeon HD 6380G *
Mobility Radeon HD 5430
Radeon HD 8210
Mobility Radeon HD 540v
Mobility Radeon HD 4550
HD Graphics 2500
HD Graphics (Ivy Bridge)
Quadro NVS 310
Radeon HD 7350M *
Radeon HD 6350M *
Mobility Radeon HD 4530
Mobility Radeon HD 4350
Radeon HD 4350
GeForce 305M
Mobility Radeon X1700
Mobility FireGL V5250
Mobility Radeon X2500
GeForce Go 7600
Quadro NVS 300M
Mobility Radeon X800
Mobility Radeon X1600
Mobility FireGL V5200
Mobility Radeon 9800
GeForce Go 6600
Mobility Radeon X1450
Mobility Radeon X700
Mobility FireGL V5000
GeForce G 110M
Quadro NVS 295
Radeon HD 6330M *
Mobility Radeon HD 4330
GeForce 8400M GT
Quadro NVS 140M
HD Graphics 2000
GeForce 9500M GE *
GeForce 9400M (G) / ION (LE)
HD Graphics (Sandy Bridge) *
Adreno 330
PowerVR G6430
PowerVR GX6250
PowerVR G6400
HD Graphics (Bay Trail)
Mali-T628 MP6
Mali-T760 MP4
Chrome9HD *
Radeon HD 7340
Radeon HD 6320 *
Radeon HD 7310
Radeon HD 6310 *
Radeon HD 8180
Mobility Radeon HD 3470
GeForce 9300M G
ION 2 *
GeForce 9300M GS
Quadro FX 370M
Quadro NVS 160M
GeForce 9200M GS
Mobility Radeon HD 3450
Mobility Radeon HD 3430
Mobility Radeon HD 3410
Mobility Radeon HD 2400 XT
Radeon HD 4270
Radeon HD 4250
Radeon HD 7290 *
Radeon HD 6290 *
Radeon HD 4200
Graphics Media Accelerator (GMA) HD Graphics
Radeon HD 6250
Quadro NVS 150M
Quadro FX 360M
Mobility Radeon X1350
Mobility Radeon X1400
GeForce 9100M G
GeForce 8400M GS
Quadro NVS 135M
Mobility Radeon HD 2400
Radeon HD 3200
Radeon HD 4225 *
Radeon HD 4100 *
SGX554MP4
Mali-T628 MP4
Mobility Radeon HD 3400 *
Radeon HD 3100
GeForce 8400M G
Mali-T860 MP2
Quadro NVS 130M
GeForce 8200M G
Graphics Media Accelerator (GMA) 4700MHD
Graphics Media Accelerator (GMA) 4500MHD
Graphics Media Accelerator (GMA) 4500M
Mali-T604 MP4
GeForce Go 7400
Quadro FX 350M
Quadro NVS 120M
GeForce Go 7300
GeForce Tegra 4 *
PowerVR G6200
Adreno 405 *
Quadro NVS 110M
Mobility Radeon X600
Mobility FireGL V3200
Mobility FireGL V3100
Mobility Radeon HD X2300
Mobility Radeon 9700
Mobility FireGL T2e
Mobility Radeon X1300
GeForce4 4200 Go
Mobility Radeon 9600
Mobility FireGL T2
Mobility Radeon 9550
GeForce Go 7200
GeForce Go 6400
Mobility Radeon X300
GeForce Go 6250
GeForce Go 6200
GeForce FX Go 5700
Quadro FX Go 1000
GeForce FX Go 5600 / 5650
Radeon Xpress X1270
Radeon Xpress X1250
Radeon Xpress X1200
Graphics Media Accelerator (GMA) X3100
Mali-T624
Adreno 320 *
Mali-T760 MP2
Mali-T720 MP4
Mali-450 MP4
Graphics Media Accelerator (GMA) 3650 *
GeForce 7190M *
GeForce 7150M
Radeon Xpress 1150
GeForce Go 6150
GeForce Go 6100
GeForce 7000M
Graphics Media Accelerator (GMA) 3600 *
Mobility Radeon 9200
Mobility FireGL 9000
GeForce FX Go 5200
Mobility Radeon 9000
GeForce 4 488 Go
GeForce 4 460 Go
GeForce 4 440 Go
GeForce 4 420 Go
Graphics Media Accelerator (GMA) 3150
Graphics Media Accelerator (GMA) 950
SGX545 SGX544MP2 SGX543MP2 *
Mali-T720 MP2
Mali-T720
Adreno 302 304 305 306
Mobility Radeon 7500
Mobility FireGL 7800
Graphics Media Accelerator (GMA) 900
Radeon Xpress 200M
Radeon Xpress 1100
Mirage 3+ 672MX
Mirage 3 671MX
Mali-400 MP4 *
GeForce ULP (Tegra 3) *
VideoCore-IV *
Adreno 220 225*
Vivante GC1000+ Dual-Core
Mali-400 MP2 *
GeForce ULP (Tegra 2) *
Graphics Media Accelerator (GMA) 600 *
SGX540 *
Graphics Media Accelerator (GMA) 500
Adreno 205 *
Adreno 203 *
GC800 *
SGX535
SGX531
SGX530
Adreno 200 *
Mali-200 *
GeForce 3 Go *
GeForce 2 Go 200 / 100
Mobility Radeon 9100 IGP
Mobility Radeon 9000 IGP
Mobility Radeon M7
Mobility Radeon M6
Chrome9 HC
Extreme Graphics 2
Mobility Radeon 7000 IGP
Radeon IGP 340M
Radeon IGP 320M
S3G UniChrome Pro II
S3G UniChrome Pro
Castle Rock
Mirage 2 M760
Mirage M661FX
S3 Graphics ProSavage8
Mobility 128 M3
SM502 *
</pre>
Kernel-space drivers like '''radeon''' (older AMD driver for older GPUs), '''amdgpu''' (newer driver for newer GPUs, allows using a few new features), i915, nouveau and a few others. They are what handles the gory details of talking to the GPU itself (writing to proper registers, handling its memory directly, configuring outputs, and so on). Unfortunately most of what they're exposing can be only consumed by a single user of that GPU, which is why we need...
DRM and DRI (Direct Rendering Manager/Infrastructure) controls access to the GPUs, provides interfaces for talking to the GPU concurrently by multiple apps at once (without them breaking each other) and lets the system perform the most basic tasks like setting proper resolution and such if no userspace apps understand how to talk to the GPU exposed. DRI and DRM expose the GPU interfaces mostly as-is, not in a "vendor-neutral" portable way - if you don't have an application developed specifically for a GPU you have, it won't work.
"let's create a vendor-neutral interface for graphics so that apps can ignore the GPU-specific bits and get right to the drawing!" - which is what OpenGL is. User-space drivers implement the OpenGL specification and expose it as an OpenGL library to apps (like games, browsers, etc) instead of the GPU. Mesa is the most popular collection of open-source user-space drivers and contains a few user-space drivers for different GPU families: '''radeonsi''' for most modern AMD GPUs (and '''r600g''', r300g and others for older ones), '''i915/i965''' for old/new Intel GPUs and '''nouveau''' for Nvidia GPUs.
There's also Gallium, which is a bunch of utilities and common code shared among these drivers - if certain things can be done once and work everywhere, they'll land in Gallium and benefit all the drivers. Most Mesa drivers use Gallium (radeonsi, nouveau, software renderers), some don't (intel after gma950).
Displaying 2D windows supports device-specific 2D drivers as well, but nowadays most of these are no longer needed as the modesetting can handle most hardware on its own. As the DRM/DRI got some additional interfaces for what used to be hardware-specific (setting resolutions, refresh rates, etc) and software requiring accelerated 2D drawing was optimized OpenGL-based renderers, dedicated 2D acceleration is slowly going away. Since around 2012, the 3D part of the graphics card deals with 2D operations.
Modern GPUs can also decode video!? There's VDPAU (NVIDIA & AMD GPUs) and VA-API (AMD & Intel GPUs) that can also talk to the GPU exposed via DRM/DRI and issue proper commands to decode/encode a given video stream. Those drivers are GPU-specific too.
So let's say you have some example GPUs, here's how example stacks could look like:
* AMD Radeon HD8750: amdgpu -> DRM/DRI -> Mesa (radeonsi)
* AMD Radeon HD4850: radeon kernel driver -> DRM/DRI -> Mesa (r600g) -> games/apps/etc.
* NVIDIA GeForce 460: nouveau kernel driver -> DRM/DRI -> Mesa (nouveau) -> games/apps.
* Intel GMA950: i915 kernel driver -> DRM/DRI -> Mesa (i945) -> games/apps.
{| class="wikitable sortable" width="90%"
! width="15%" | Description
! width="15%" | Analog Output
! width="15%" | Digital Output
! width="15%" | Laptop LCD
! width=30%" | Comments
|-
| <!--Description-->Fudomi GC888A
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->1080p 100in throw projector
|-
| <!--Description-->Vamvo VF320 (720P)
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->720p 90in
|-
| <!--Description-->Happrun H1
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->1080p 90in
|-
| <!--Description-->Umbolite Magcubic HIPPUS HY320 Mini
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->720p 100in
|-
| <!--Description-->Zentality A10 Plus
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->720p 110in
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->nexigo nova mini
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->nebula mars 3
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->epson lifestudio flex plus portable projector
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->dangbei freedo
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->benq gv50
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
Unless your computer uses a Firewire chipset manufactured by Texas Instruments, FireWire interfaces are likely to act buggy.
AROS is unlikely to ever support FireWire.
Bluetooth is similarly unlikely to be ever supported due to huge cost to be certified.
No, x86 PCMCIA card.resource at the moment. Writing card.resource would be a similar amount of work to writing a typical driver. However, it might be complicated by having to support a variety of PCMCIA-controller chipsets like TI PCI1225, PCI1410, PCI1420, 1450, PCIxx12 and O2, etc. m68k card.resource does not really have many higher level functions, most functions are really simple or poke Gayle registers directly. only exception is CopyTuple(). Amiga card.resource has one significant flaw: it's single-unit. would need card.resource and pccard.library. There was talk in the past of designing a new API for PCMCIA because card.resource only supports one slot, but since most modern laptops only have one slot anyway, I think it might be worthwhile to implement card.resource as-is (at least as a first step). pccard.library would be trivial to port. So, a new API is needed.
g1honn15eervjwcu5pnabolnegfxvps
4641124
4641123
2026-06-25T13:27:35Z
Jeff1138
301139
4641124
wikitext
text/x-wiki
Google translation into [http://translate.google.com/translate?hl=en&sl=auto&tl=de&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support German], [http://translate.google.com/translate?hl=en&sl=auto&tl=fr&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support French], [http://translate.google.com/translate?hl=en&sl=auto&tl=nl&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Dutch], [http://translate.google.com/translate?hl=en&sl=auto&tl=it&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Italian], [http://translate.google.com/translate?hl=en&sl=auto&tl=es&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Spanish], [http://translate.google.com/translate?hl=en&sl=auto&tl=hi&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Hindi],
[http://translate.google.com/translate?hl=en&sl=auto&tl=zh-CN&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Chinese Simplified],
[http://translate.google.com/translate?hl=en&sl=auto&tl=pl&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Polish],
[http://translate.google.com/translate?hl=en&sl=auto&tl=ru&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Russian],
{{ArosNav}}
[[#Audio Chipsets]]
[[#Graphic GFX Chipsets]]
[[#Rough gfx comparison]]
[[#]]
==x86 Native Environment==
AROS should run on almost any i386 PC hardware so long as the CPU is newer than an i486, and has a "Floating Point Unit (FPU)". Ideally around 700Mhz and above with at least 256MB of memory is recommended for desktops and around 1GHz and at least 256MB for laptops/notebooks/netbooks. For web browsing, etc above 1GB is usually needed and offers the option to run web browsers, media players and other hard disk heavy usage from RAM: disk.
Motherboards supported
* Most Intel mobos are supported (Skt 775 is ok but newer is better) - additional pci / pci-e cards may be needed for networking, audio, etc
* AMD based socket 939 am2 am2+ am3+, fusion and am4 ryzen based systems work but additional pci / pci-e cards may be needed
Supported graphics cards (gfx)
* Nvidia 2D and 3D 2005-2017.
64bit AROS Nouveau covers '''2D''' 8xxxgs and higher to GTX 900s and '''3D''' from .
32bit AROS supports '''2D''' from TNT through to fermi gtx5xx and '''3D''' acceleration fx5xxx to gtx4xx.
* Intel GMA 2D and 3D 2006-2009.
'''2D''' for many old netbooks and motherboards. '''3D''' for many early netbooks and motherboards
* AMD/ATI 2D only and '''no 3D'''. 1999-2005.
Desktop ie external monitor support only (no laptop internal support) for very early Radeon 7000 through to x600. Experimental 2D version for up to HD3xxx came later
* VESA 2D fallback modes for all graphic cards (GPUs) and with [http://www.youtube.com/watch?v=HKCHZFYj9Kk screen dragging].
It's worth noting however that support isn't guaranteed. Nor will potential power of a card reflect its performance under AROS.
Sound wise there are
* HDaudio support for onboard intel and AMD netbooks, ultrabooks, notebooks and motherboards (2005 to 2020)
* some AC97 codec support for very old motherboards and laptops (ie pre 2004)
* PCI and some PCI-E C-Media CMI8738 for desktop plugin cards
* PCI Creative Soundblaster EMU10K1 cards [http://amigaworld.net/modules/news/article.php?storyid=2512 SBLive]
* PCI semi professional some early VIA Envy24 desktop sound cards
* PCI Sound Blaster 128 aka SB16
Supported [http://en.wikibooks.org/wiki/Aros/Platforms/x86_Network_support network] which could be desktop, laptop, etc
* PCI-E Realtek rtl8169 which also includes the rtl8111 and rtl8110
* PCI Realtek rtl8139 and includes rtl8101 and rtl8100
* PCI intel pro100
* Broadcom 44xx 10/100 integrated in laptops around 2005
* VIA 10/100
* 3com Etherlink 10/100
* Realtek rtl8029 10mbit
Wireless wifi
* atheros 5000 wireless
*realtek 8187 usb
It is very hard to recommend a completely supported motherboard because as soon as newer motherboards arrive so their features change subtly, often introducing non supported parts like ethernet and audio. It is a moving target.
* mini-itx motherboard will only get you 1 pci or pci-e slot
* micro mATX or uATX will have more, typically 2 pci-e or pci slots which helps if any onboard features are not supported.
* full atx will have more slots available
'''N.B''' It is frustrating when a piece of hardware is not supported. Hardware documentation can run to over 100 pages and a lot of hardware do not have any public documentation anyway. Chips from different manufacturers for sound, graphics, SATA, etc. vary just as much, unless they follow a standard such as [https://github.com/acidanthera/AppleALC/wiki/Supported-codecs HDAudio codecs], AHCI etc.
Coding drivers is a far cry from Hello World programs or even a port of existing software. If you do actually want to try then get a hold of documentation on the relevant hardware and start there. Alternatively you could try to find some '''BSD''', MIT or MPL licence drivers as a point of reference. Please , do not think you can just adapt strings in a driver for different strings, it does not work that way. You will '''need''' to start from scratch for each new bit of hardware. Device driver programming require '''embedded''' skills, like manipulation of bits within registers, good debugging skills, dealing with interrupts, lots of patience, etc.
The following specific chipsets and drivers are also available - use Tools/PCITool to confirm Vendor and Product IDs - Please let us know any mistakes or any information to be added, to this General Chat list on [https://arosworld.org/ AROS World]
: Brief Timeline
: 2000-12-06 HIDD first mouse.hidd completed ([http://msaros.blogspot.com/ Michal Schulz])
: 2001-03-31 BOOT first boot from floppy disk with IDE device
: 2001-10-30 BOOT first cd bootable version
: 2002-01-27 HIDD first pci.hidd added (Michal Schulz)
: 2002-04-13 BOOT software HDToolBox added ()
: 2003-04-03 HIDD vesa2.hidd graphic modes added ()
: 2004-03-08 HIDD new pci and ata (pata) devices worked on (Michal Schulz)
: 2004-03-17 HIDD nVidia 2D driver appears (Michal Schulz)
: 2005-01-05 AHI AHI v6 audio system ported (Martin Blom)
: 2005-01-06 AHI SBLive SoundBlaster Live driver ported (Georg Steger)
: 2005-02-04 AHI AC97 playback only driver added (Michal Schulz)
: 2005-06-27 NIC amiTCP stack ported with 3com, NE2000, prism2 drivers (Neil Cafferkey)
: 2005-08-25 NIC nForce2 support added (Michal Schulz)
: 2005-12-24 NIC Intel Pro100 network driver added (Neil Cafferkey)
: 2006-03-25 HIDD ATI radeon 2D driver added (Michal Schulz)
: 2007-03-06 HIDD vesa 1.0 video driver added (Pavel Fedin)
: 2007-03-08 HIDD dospackets and FAT filesystem (Rob Norris)
: 2007-03-21 HIDD usb initial commit (Michal Schulz)
: 2007-10-01 BOOT Installer added (Neil Cafferkey)
: 2007-11-29 PORT 64bit x86 added (Michal Schulz)
: 2008-04-12 BOOT GRUB2 added (Alain Greppin and Nick Andrews)
: 2008-08-26 NIC RTL8139 added ([http://kalamatee.blogspot.com/ Nick Andrews])
: 2008-10-22 PORT to SAM440ep (ppc) (Michal Schulz)
: 2009-02-25 PORT to efika (ppc) (Michal Schulz)
: 2009-05-18 HIDD poseidon usb2.0 stack ported to AROS (Chris Hodges)
: 2009-11-18 NIC RTL8169 network driver arrived (Nick Andrews and [http://pagesperso-orange.fr/franck.charlet/oldnews.html Franck Charlet])
: 2009-12-23 AHI HDAudio based Atom CPU and netbook audio driver arrived (Davy Wentzler)
: 2010-03-09 BOOT USB pendrive stick booting available (Neil Cafferkey)
: 2010-05-26 HIDD Intel GMA900 2D graphics card support (Michal Schulz)
: 2010-09-03 NIC Wireless PCI based NIC arrived (Neil Cafferkey)
: 2011-04-30 HIDD Nvidia 2D and 3D nouveau graphics card support (Deadwood)
: 2011-08-30 HIDD Radeon 2D enhanced AMD driver arrives (Bearsoft)
: 2011-09-17 NIC Wireless USB realtek arrives (Neil Cafferkey)
: 2011-12-09 HIDD Intel 945G 3D Gallium graphics support (Sami)
: 2013-02-25 AHI AC97 VIA 686 audio support (Davy Wentzler and Neil Cafferkey)
: 2013-03-31 PORT early Raspberry PI native support (Nik Andrews)
: 2014-01-16 AHI Envy24 audio chipset support (Davy Wentzler and Neil Cafferkey)
: 2017-02-17 PORT Symmetric MultiProcessing smp added for x86 64bit (Michal Schulz)
: 2018-10-20 PORT Big Endian ARM
: 2021-11-26 NIC Broadcom 44xx ethernet (Neil Cafferkey)
: 2023-01-12 NIC Nvidia MCP61 ethernet (Neil Cafferkey)
: 2025-11 HIDD xHCI USB3 and isoc (Nik Andrews)
[[#top|...to the top]]
===Audio Chipsets===
'''If sound beeps in AHI prefs after Music set then some support is there. Select more than one channel for multiple audio streams, set frequency up to 44 kHz or higher and set the volume if not already set. Ensure you set the music unit 0 to 3 which allows the extra features of the audio card like microphone, line-out, etc).'''
====1996-2000 sb128.audio aka SB16 PCI====
*2021 5.27
as per CREATIVE's website, the model number is the first two digits on the front and first two digits on the back. my card says CT4810 and 161TK110B 995; this translates to CT4816 as the model.
The original AudioPCI 3000 card with the ES1370 had a master clock crystal for 44.1 kHz (22.5792 MHz), used an AKM codec (AK4531, non-AC97) and had 4 channel output; Creative later modified the design with a crystal for 48 kHz (24.576 MHz) and Sigmatel AC97 codec (a CT4700 SB128 with a CT5507 chip, AK4531, 22.5792 MHz crystal and TDA7360 speaker power amp). The issue with these cards involved never quite eliminate the effects of resampling on the 64V, it also shows signs of undersized coupling caps. These Ensoniq cards automatically engaged headphone amplifier (with a 4565 opamp).
Porting involved [http://repo.or.cz/w/AROS.git/commit/b60abd12967144a844980c422ea9e99c056eabca 40897], [http://repo.or.cz/w/AROS.git/commit/b7d6511fca6430a63fbaaa390b4f51bf0203a460 40898 configure], [http://repo.or.cz/w/AROS.git/commit/f51034cd22759a4ec3a2547bddb3a7169d956eaa 40900 bugs], [http://repo.or.cz/w/AROS.git/commit/4f43fc38e3489ea45d12b7b5ba6fff50b69c5746 40901 further bugs], [http://repo.or.cz/w/AROS.git/commit/d23c78aec75f049484b6916d27b6804ce858bb2c 40913 memory IO fixes], [http://repo.or.cz/w/AROS.git/commit/d256860fe3035016952e88d143c6f2611997f2f3 40914 irq fix].
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| Ensoniq AudioPCI 1000
| 0x1274
| 0x5000
|
| {{unk}}
| {{unk}}
| untested - es1370 (u?) AK4531 (u?)
|-
| Ensoniq AudioPCI
| 0x1274
| 0x5000
| 0x00
| {{yes}}
| {{maybe}}
|
|-
| CT4700 Sound Blaster PCI 64 (audioPCI 3000)
| 0x1274
| 0x5000
| 0x7c
| {{yes}}
| {{maybe}}
| works - opamp JRC4565(u?) [http://en.wikipedia.org/wiki/Ensoniq_ES1370 es1370] (u?)
|-
| CT4750 Sound Blaster 64/PCI
|
|
|
| {{unk}}
| {{unk}}
| untested - 4565-1056W (u1) stac9708t(u2) [http://arstechnica.com/civis/viewtopic.php?f=6&t=916891 ct5880-dcq] (u3) 24wc012 (u4)
|-
| CT4751 (SB128PCI)
| 0x1274
| 0x8001
|
| {{unk}}
| {{unk}}
| untested - [http://en.wikipedia.org/wiki/Sound_Blaster#Ensoniq_AudioPCI-based_cards es1371] (u?)
|-
| CT4810 Creative AudioPCI64V
| 0x1274
| 0x1371
| 0x06
| {{yes}}
| {{maybe}}
| works
|-
| CT4811 (SB Vibra 128)
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4812 (Vibra 128)
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4813
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4815
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4816 es1373 (vibra 128)
|
|
|
| {{unk}}
| {{unk}}
| untested but this card has creative's ES1373 as the main chip(U1). it is also different from the other CT4810 (vibra128) in that it does not have a second chip in U2 position. Also there is only one jumper JP1 (2X3).
|-
| CT5801 HP
|
|
|
| {{unk}}
| {{unk}}
| untested - es1373 (u3)
|-
| CT5803 Gateway
| 0x1274
| 0x1371
| 0x08
| {{yes}}
| {{maybe}}
| works 4565-0005b jrc (u1) 4297a-jq ztae0c0002 (u2) es1373 (u3)
|-
| CT4740
| 0x1274
| 0x1371
| 0x08
| {{yes}}
| {{yes}}
|
|-
| CT5805 Compaq OEM Premier Sound Presario 7
|
|
|
| {{unk}}
| {{unk}}
| untested - es1373 (u3)
|-
| CT5806 (Sound Blaster AudioPCI 128D)
|
|
|
| {{unk}}
| {{unk}}
| untested - 4297A-JO EP (u?) ZTAPWC9933 (u2) es1373 (u3)
|-
| CT5807 Dell OEM Dimension 8100
|
|
|
| {{unk}}
| {{unk}}
| untested - es1373 (u?)
|-
| CT5808
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4730 Sound Blaster AudioPCI 64V Ectiva EV1938
| 0x1102
| 0x8938
|
| {{unk}}
| {{unk}}
| untested
|-
| CT5880 on various motherboards
| 0x1274
| 0x5880
|
| {{unk}}
| {{unk}}
| untested [http://www.xbitlabs.com/articles/mainboards/display/ga-6rx.html Gigabyte GA-6RX] (VIA ApolloPro 266 2001], Gigabyte GA-6VM7-4E mobo, [http://active-hardware.com/english/reviews/mainboard/ga-7vtx.htm Gigabyte GA-7VTX] (KT266 2001), Gigabyte [http://www.amdboard.com/gigabytega7vtxh.html GA-7VTXH] (KT266A 2001), [http://www.amdboard.com/gigabytega7vrxp.html Gigabyte 7VRXP] mobo (KT333 2002), MSI MS-6309, MS-6318, MS-6337 (815E Pro), MS-6339 (850Pro) and MS-6340, PCChips Motherboard M571 TXPRO, Soltek SL-65ME+,
|-
| VMware Virtual Workstation(TM)
| 0x1274
| 0x1371
| 0x02
| {{Yes|but not Hi-Fi modes}}
| {{maybe}}
| works
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
<pre>
Revision 0x04 = ES1371 REV_ES1373_A
Revision 0x06 = ES1371 REV_ES1373_B
Revision 0x07 = ES1371 REV_CT5880_A
Revision 0x02 = CT5880 REV_CT5880_C
Revision 0x03 = CT5880 REV_CT5880_D
Revision 0x04 = CT5880 REV_CT5880_E
Revision 0x09 = ES1371 REV_ES1371_B
Revision 0x00 = EV1938 REV_EV1938_A
Revision 0x08 = ES1371 REV_ES1373_8
</pre>
====1999-2001 via-ac97.audio====
*2021 5.10
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| <!--Description-->694X with 686A KT133 PM133 or 693A with VT8231
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3058
| <!--Revision-->
| <!--Playback-->{{Yes| }} redirects earphones correctly
| <!--Recording-->{{Yes| }}
| <!--Comments-->audio controller works but depends on the underlying invisible codec used see AC97 section
|-
| <!--Description-->686B KT133A with VT8231
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3058
| <!--Revision-->0x50
| <!--Playback-->{{Yes|}} reroutes ear pieces right
| <!--Recording-->{{Yes|}}
| <!--Comments-->audio controller works but depends on the underlying codec used see AC97 section below
|-
| <!--Description-->686C
| <!--Vendor ID-->0x1106
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->untested
|-
| <!--Description-->KM266 or KT266 with VT8233, KT266A with VT8233A, VT8233C
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3059
| <!--Revision-->0x10
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->KM333 KT333 with VT8235
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3059
| <!--Revision-->0x30
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
| <!--Description-->KM400 KT400 with VT8237, KT600 with VT8237R,
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3059
| <!--Revision-->0x40 0x50 0x60
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
|}
====1998-2003 emu10kx.audio - Creative Labs SoundBlaster Live! and Audigy====
*2021 6.5
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| PCI512 CT4790 (emu10k1)
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested (1st Gen)
|-
| Live CT4620
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Live CT4760
| 0x1102
| 0x0002
| 0x07
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| playback works
|-
| Live Value CT4670
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| works plays stereo (2nd Gen)
|-
| Live Value DELL CT4780
| 0x1102
| 0x0002
| 0x06
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| plays/records stereo - untested 4.1mode
|-
| Live Value Compaq CT4830
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{Maybe}}
| <!--Recording--> {{unk}}
| not working
|-
| Live Value CT4831
| 0x1102
| 0x0002
| 0x00
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Live Value CT4832
| 0x1102
| 0x0002
| 0x07
| <!--Playback--> {{yes}}
| <!--Recording--> {{partial|Line-In only}}
| works
|-
| Live Value CT4832
| 0x1102
| 0x0002
| 0x08
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| works
|-
| Live Value HP CT4870
| 0x1102
| 0x0002
|
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| Works
|-
| Live Value Gateway CT4871
| 0x1102
| 0x0002
|
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Live! Platinum 5.1 SB0060
| 0x1102
| 0x0002
| 0x00
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
| plays audio/records, untested 5.1 (3rd Gen)
|-
| Live 5.1 SB0100 -SFF
| 0x1102
| 0x0002
| 0x00
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| works
|-
| Live 5.1 Player SB0220
| 0x1102
| 0x0002
| 0x0a
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
| plays audio/records stereo, untested 5.1
|-
| Live 5.1 Digital SB0228
| 0x1102
| 0x0002
| 0x0a
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
| working
|-
| Audigy SB0090 (emu10k2)
| 0x1102
| 0x0004
|
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| <!--Description-->Audigy SB0230
| <!--Vendor ID-->0x1102
| <!--Product ID-->0x0004
| <!--Revision-->0x03
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Yes|Mic only}}
| <!--Comments-->5th Dec 2012 - untested optical tos link. contains also IEEE1394/Firewire (untested)
|-
| Audigy 2 Platinum 6.1 SB0240 SB0250 EMU10K2.5
| 0x1102
| 0x0004
| 0x04
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| works
|-
| Audigy 2 PRO SB0280 EMU10K2.5
| 0x1102
| 0x0004
|
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Audigy 2 ZS SB0350
| 0x1102
| 0x0004
| 0x04
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
|
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| Live 5.1 DELL SB0200 SB0203 emu10kx
| 0x1102
| 0x0006
| 0x0
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
|
|-
| Live 24bit SB0410
| 0x1102
| 0x0007
| 0x
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Live 24bit DELL SB0413
| 0x1102
| 0x0007
| 0x
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy LS SB0310
| 0x1102
| 0x0007
| 0x0
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy SE 7.1 SB0570
| 0x1102
| 0x0007
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 2 ZS SB0320 SB0360 (PRO)
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 2 VALUE SB0400
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 4 VALUE SB0610
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 4 PRO SB0380
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| EMU E-MU 0404 PCI (not USB) EM8852
| 0x1102
| 0x000
| 0x0
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver but linux support needs firmware
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
the green jack is for the main speaker pair AND headphones, so manual switching will be required
If your card is wired for the "AC97" standard, then it's up to your headphone jack to switch the green speaker output in and out
the headphone jack has Normally-closed contacts that will open on insertion, which breaks the signal path back to the sound card (FP_RETURN)
====2000-2010 cmi8738.audio - C-Media====
*2021 5.20
;Read [http://amigaworld.net/modules/news/article.php?storyid=2512 more] and imported on [http://repo.or.cz/w/AROS.git/commit/aff741d60160c6a9d7d39c9e004a25ea3aa13847 20th July 2011] and [http://alsa.opensrc.org/Cmipci alsa docs].
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| Audiotrak MAYA EX5
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| cmi8738-sx 4ch
| 0x13f6
| 0x0111
| 0x10
| <!--Playback-->
| <!--Recording-->
| untested
|-
| e3dx hsp56 CMedia 8738-sx 4ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| EDio SC3000D 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Genius SoundMaker Value PCI C3DX
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Guillemot Maxi Sound Muse
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Hercules Gamesurround Muse LT
| 0x13f6
| 0x0111
| 0x10
| <!--Playback--> {{yes}}
| <!--Recording--> {{no}}
|
|-
| Hercules Gamesurround Muse XL LT 5.1
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Inno audio extreme 5.1 cmi8738/lx pci 6ch
| 0x13f6
| 0x0111
| 0x
| <!--Playback-->
| <!--Recording-->
| untested
|-
| M-Audio (Midiman) DiO 2448
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Sabrent SBT-SP6C 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| StarTech PCISOUND4CH 8738sx 4ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Sweex SC012 CMI8738-lx 4ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Terratec 5.1 PCI
| 0x13f6
| 0x0111
| 0x10
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Terratec Aureon Fun 5.1
|
|
|
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| Has SPDIF
|-
| Trust Sound Expert Digital Surround 5.1 (cm8738-mx 6ch)
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Turtle Beach Riviera CMI8738-MX 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| XSonic CMI 8738 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->CMI8738 6ch PCI-E PCI Express version
| <!--Vendor ID-->0x13f6
| <!--Product ID-->0x0111
| <!--Revision-->0x10
| <!--Playback-->{{Yes|}}
| <!--Recording-->{{Maybe|}}
| <!--Comments-->Chinese based card with playback tested so far
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
====2001-2005 ac97.audio====
*6.4 27-12-2008
The AC97 chips were designed to be pinout interchangeable so that the sound support could change easily and quickly without motherboard redesigns
the green jack is for the main speaker pair AND headphones, so manual switching will be required
If your card is wired for the "AC97" standard, then it's up to your headphone jack to switch the green speaker output in and out, the headphone jack has Normally-closed contacts that will open on insertion, which breaks the signal path back to the sound card (FP_RETURN)
The ProductID and VendorID are for the audio controller only - the important additional codec is '''NOT''' so easily identified.
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| <!--Description-->Avance Logic (now Realtek) ALC100 and ALC101 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->ALC200 and ALC201 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->ALC201A and ALC202 and ALC202A codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->ALC650
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| <!--Comments-->most Nforce2 boards plays audio only - Abit NF7, Asus A7N8X, MSI K7N2, Epox 8RDA+, DFI
|-
| <!--Description-->ALC850 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{No}}
| <!--Comments-->no support for via P4P800 chipset on ASUS A8V-E SE Deluxe mobo - ICaros 1.3
|-
| <!--Description-->Realtek ALC653 codec and ALC655 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested Acorp 7NFU400
|-
| <!--Description-->Realtek ALC658 codec ALC658D
| <!--Vendor ID-->0x8080
| <!--Product ID-->0x24c5
| <!--Revision-->0x0
| <!--Playback-->{{Yes|Prefs Music and Units 0-3 set volume control - playback}}
| <!--Recording-->{{No}}
| <!--Comments-->MSI Motherboard on NB 22-09-2012
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->AD1881 SoundMAX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->Analog Devices first AC97
|-
| <!--Description-->AD1881A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Yes}}
| <!--Revision-->
| <!--Comments-->works with VIA Controller - untested Intel etc
|-
| <!--Description-->AD1881B
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1885 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{No}}
| <!--Comments-->Playback only with issues on D845HV but not working on MS-6367 because Units 0-3 have masked volume control
|-
| <!--Description-->AD1886
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1887
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->ADI AD1888 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{no}}
| <!--Recording-->{{No}}
| <!--Comments--> Icaros 1.51
|-
| <!--Description-->AD1980 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->AD1981A codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested IBM X30
|-
| <!--Description-->Analog Devices SoundMax(TM) AD1981B codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| <!--Comments-->plays back only on IBM T41 Thinkpad
|-
| <!--Description-->AD1985 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{No}}
| <!--Comments-->not working ahi prefs freezes on D865GLC mobo ([http://www.xbitlabs.com/articles/multimedia/display/int-sound2_3.html ]
|-
| <!--Description-->AD1986 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{No}}
| <!--Comments-->untested [http://uk.ts.fujitsu.com/rl/servicesupport/techsupport/Boards/Motherboards/Fujitsu/D1931/D1931.htm D1931] but works (Acer Aspire 3610 laptop)
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->Crystal Semiconductors CS4205, CS4202 codecs
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Cirrus Logic CrystalWare 4236
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->Cirrus Logic CrystalClear SoundFusion CS4297 CS4299 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested IBM T23
|-
| <!--Description-->conexant Cx20468-31 codec (id 30)
| <!--Vendor ID-->0x103c
| <!--Product ID-->0x3085
| <!--Revision-->
| <!--Playback-->{{No|AC97 appears in AHI Prefs}}
| <!--Recording-->{{No}}
| <!--Comments-->Tested AspireOS 1.8 on Gateway W322
|-
| <!--Description-->ESS Technology ES1921 AC'97 2.1
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->CMI 6501 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested on ASROCK SKT-AM2 AM2NF3-VSTA
|-
| <!--Description-->codec CMI9738
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->codec CMI9739
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->C-Media CMI 9739A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments--> untested on EPoX 8RDA3+
|-
| <!--Description-->CMedia CMI 9761A codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested ASRocK K7NF2-RAID
|-
| <!--Description-->C-Media CMI9880
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->National Semi conductor (now TI) LM4540, LM4543, LM4545, LM4546, LM4548, LM4549, LM4550 LM4560
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->STAC9708T codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->SigmaTel (now IDT) C-Major STAC 9460 (D/A only), 9461, 9462, 9463, 9200, 9202, 9250, 9251, 9220, 9221, 9223, 9750
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AKM (Asahi Kasei Microsystems) AK 4540, 4543, 4544A, 4545
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->codec VT1616 (VIA Six-TRAC Vinyl Audio)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->VIA VT1612, VT82C686
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->ESStech ESS ES1968 maestro-2
| <!--Vendor ID-->0x125d
| <!--Product ID-->0x1968
| <!--Revision-->0x
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->ESStech ESS ES1978 maestro2e
| <!--Vendor ID-->0x125d
| <!--Product ID-->0x1978
| <!--Revision-->0x
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->ESStech ESS ES1988 maestro3 allegro-1 codec
| <!--Vendor ID-->0x125d
| <!--Product ID-->0x1988
| <!--Revision-->0x12
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->Yamaha AC97 ymf-743 YMF752 YMF753 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->{{No}}
| <!--Comments-->untested ymf-753
|-
| <!--Description-->YMF724 YMF744 YMF-754 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| SIS 7018 / Trident 4dwave DX/NX / ALi 5451
| 0x1039 (0x1023 Trident)
| 0x7018 (0x2000 Trident DX) (0x2001 Trident NX)
| 0x02
| <!--Playback-->{{No}}
| <!--Recording-->{{No}}
| no support - introduced early 2000s
|-
| SIS 7012
| 0x1039
| 0x7012
|
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| working through 1 speaker only took over from SIS7018 (2002 onwards)
|-
| <!--Description-->Wolfson (now Cirrus Logic) WM9701, WM9701A (AC'97 1.03 spec), WM9703, WM9704 (AC'97 2.1), WM9705, WM9706, WM9707, WM9708
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->WM9709, WM9710, WM9711, WM9712, WM971
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->first Microsoft(TM) Xbox DAC sound chip (AC Link compliant D/A converter)
|-
| <!--Description-->Wolfson WM9717
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| Parallels
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested
|-
| VirtualBox
|
|
|
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| working
|-
| VirtualPC
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested
|-
| <!--Description-->Intel 82801AA Proxmox
| <!--Vendor ID-->0x8086
| <!--Product ID-->0x
| <!--Revision-->
| <!--Playback-->{{unk| }}
| <!--Recording-->{{unk| }}
| <!--Comments-->
|-
|}
====2005-20xx HDAUDIO.audio====
*6.36 2025 [https://github.com/aros-development-team/AROS/commit/43b33a9280b10963ca659de2cc3d1cf289b43a87 reset handler]
*6.35 202 []
*6.34 2019 AROS One 1.5 upwards
*6.29 2018
*6.27 2017 update
*6.25 2014 used for most Icaros 2.x
*6.20 July 2012
*6.17 Nov 2011
*6.15 Jun 2011
*[http://www.clusteruk.com/SitePortalPage.aspx?siteid=1&did=109 6.13] Sep 2010
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="5%" |Vendor ID
! width="5%" |Product ID
! width="5%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| <!--Description-->ALC260
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| <!--Description-->ALC262
* ALC262-VD2-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->LQFP-48
|-
| ALC268 codec
| 0x
| 0x
| 0x
| <!--Playback-->{{Yes|Version 6.17 Acer AOA110 and AOA150 netbooks), works (Dell Mini Inspiron 9 and 10v, }}
| <!--Recording-->{{Yes|Version 6.17 remove QUERY and select 'Mic 1' as input. Tested with 6.15 as well using QuickRecord and AE 4.0.23 under Icaros 1.4.}}
| <!--Comments-->AHI UNITS and Music are set to: hdaudio:HiFi 16 bit stereo++ / Frequency 48000 Hz, Volume +0.0 dB. The hdaudio.config in SYS:Prefs/Env-Archive is WITHOUT the QUERY-line. After changing and saving the config-file turn off and start again the computer. Switch from internal loudspeaker to headphone you must turn off the music before plug in the headphone-cable, otherwise there is no output on the socket. Back from line-out to internal speakers it is the same.
|-
| [http://blog.foool.net/wp-content/uploads/linuxdocs/sound.pdf Linux docs ALC269]
* ALC269Q-GR
* ALC269QSRS-GR
* ALC269W-GR
| 0x
| 0x
| 0x
| <!--Playback-->{{Maybe| }}
| <!--Recording-->{{Unk| }}
| <!--Comments-->TQFP 48 pin Power IC Chip From [https://patchwork.kernel.org/project/alsa-devel/patch/1408118123-15849-1-git-send-email-tiwai@suse.de/ ALC269 & co have many vendor-specific setups with COEF verbs, result in the codec stalling]
|-
| [http://www.alsa-project.org/db/?f=0321f8479fd670cd510f9912b1120fe7edcf2e07 ALC269VB]
* ALC269Q-VB5-GR
* ALC269Q-VB6-CG
* ALC269Q-VB6-GR
| 0x10ec
| 0x0269
| 0x100004, 0x100100, 0x100202
| <!--Playback-->{{Maybe|some versions work}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* v1 works Asus eee PC netbook 901/1000HA 1005HA/1008HA, 1001P,
* v2 maybe working Lenovo S9 S10 S10-2 S10-3 under HDAudio version 6.13
* v3 maybe dell wyse 7010
|-
| [http://alsa-project.org/db/?f=9c1746c5957b0ce72ff9cfffa312e97d14baf785 ALC269VC aka ALC3202]
* ALC269Q-VC2-GR
* ALC269Q-VC3-GR
| 0x10ec
| 0x0269
| 0x100203,
| <!--Playback-->{{Maybe|some versions work}}
| <!--Recording-->{{Unk}}
| <!--Comments-->SMT SMD QFN-48 -
* v1 unknown
* v2 unknown
* v3 x230, dell wyse,
|-
| ALC272
* ALC272-VA4-GR
| 0x10ec
| 0x0272
| 0x0
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Unk}}
|
* works Acer AOD150 and Acer AOD250 works [http://amigaworld.net/modules/newbb/viewtopic.php?topic_id=33755&forum=28#616910 Samsung NP-NC10], works Samsung NF210-A02] netbooks,
|-
| <!--Description-->ALC273
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| <!--Description-->ALC270
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC282
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x
| <!--Revision-->
| <!--Playback-->{{No|Version 6.17}}
| <!--Recording-->{{No|Version 6.17}}
| <!--Comments-->needs retest
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC660 ALC660-VD
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes| }}
| <!--Recording-->
| <!--Comments-->
* works asus F9s, F9e
* untested asus w7j, M51SN, A6Tc, A8Sr,
|-
| <!--Description-->ALC661-GR (2011)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| ALC662
| 0x1043
| 0x82a1
| 0x0
| <!--Playback-->{{Yes|Version 6.17 if QUERY added to top of hdaudio.config}}
| <!--Recording-->{{No|Version 6.17 not working for eee pc 900}}
|
* works Asus eee PC netbook 700/701/900, Atom 270 and 330 mobos, odd clicks (D410 NM10 PineTrail),
|-
| <!--Description-->[http://outpost.fr/rmaa/ALC663.htm ALC663]
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0861
| <!--Revision-->
| <!--Playback-->{{No|Version 6.13}}
| <!--Recording-->{{Unk}}
| <!--Comments-->not bad output like headphone amp part of the codec actually works well but messed up by undersized coupling capacitors to actually support such a low impedance
* not working Asus n50vn x71vn,
|-
| <!--Description-->ALC665
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC666
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC667
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC668
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC670
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->ALC880
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->some 915 and 925 chipset mobos
|-
| <!--Description-->ALC882M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| Realtek ALC883 ALC883-GR ALC883D-GR ALC883DTS-GR ALC883DD-GR codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe|some early versions work }}
| <!--Recording-->{{Unk| }}
| 2005 to 2007 HD Audio codec untested (Asus ),
|-
| Codec ALC885
| 0x10ec
| 0x0885
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
|-
| ALC888
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
|
|-
| ALC888s
* ALC888S-VD2-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}} MSI Wind U90/U100,
| <!--Recording-->{{Unk}}
| LQFP-48
|-
| ALC888b
| 0x8086
| 0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| untested (D510 NM10 Dual Core PineTrail mobo),
|-
| ALC888-VD
| 0x8086
| 0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| untested
|-
| ALC889A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes|works if QUERY added to the top of hdaudio.config in Prefs drawer/directory}}
| <!--Recording-->{{Unk}}
|
|-
| ALC889 Gr
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}} with crackles
| <!--Recording-->{{Unk}}
|
|-
| ALC889
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
| Tested with MSI H55 board
|-
| ALC887 ALC887-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
|
* working on ASUS P5KPL/EPU and Gigabyte GA-E350N-Win8 Rev1.0
|-
| ALC887-VD-CG
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0887
| <!--Revision-->0x100302
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}} Subsystem Id: 0x1458a002
|
|-
| ALC887-VD
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0887 0x1458
| <!--Revision-->0xa002
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{Unk}} index = 2
| ALC887 does not have any volume control ability on the mixer NIDs, so put the volume controls on the dac NIDs instead
* working with intermittent corrupting pop popping skipping stuttering sound issues MSI 760GM-P23 (FX),
* not working Gigabyte H61MA-D3V, AT3IONT-I Deluxe,
|-
| ALC887-VD2
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
| 3jacks
|-
| ALC887-VD2-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
|-
| ALC887-
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
|
|-
| ALC892-CG rev
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| 2011 48-pin LQFP Green package -
|-
| ALC892 ALC892-DTS-CG rev
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
| 2009 introduced
* works
* not working
* untested
|-
| ALC892 rev
| <!--Vendor ID-->0x0x10ec
| <!--Product ID-->0x0892
| <!--Revision-->0x100302
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| 2014
|-
| Realtek ALC886-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| LQFP-48
|-
| Codec ALC861 ALC861-VD
| 0x10ec
| <!--Product ID-->0x0663
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
|
* not working Toshiba Tecra A7
|-
| <!--Description-->ALC1200
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| ALC898
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
| not working
|-
| <!--Description-->ALC1500
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC3232 (aka ALC292)
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0292
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC3234 aka ALC255
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0255
| <!--Revision-->003
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC3287 aka ALC257
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes| }}
| <!--Recording-->{{no| }}
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->AD1882
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1883 HD Codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1884
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| Analog Devices SoundMAX AD1981
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| IBM Thinkpad T60,
|-
| AD1984 hp-m4 codec
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
* audio not working on Lenovo X61, Thinkpad T61,
|-
| AD1986
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
|
|-
| AD1988
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
|-
| <!--Description-->AD1988A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->Cirrus Logic CS4207
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->
| <!--Recording-->
|
|-
| <!--Description-->Cirrus Logic CS4208
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->
| <!--Recording-->
|
|-
| <!--Description-->Conexant CX20549 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe|very very very low volume}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested Fujitsu Amilo SI 1510 1520 no datasheet for the general public
|-
| <!--Description-->Conexant CX20549-12Z codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested HP 530
|-
| <!--Description-->Conexant CX20561 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* working lenovo x200s
* untested Lenovo Essential G555 Notebook, HP Pavilion dv6700,
|-
| <!--Description-->Conexant CX20582 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX2059x CX20590 CX20594-21Z codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX20585 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* working Lenovo Thinkpad T410,
|-
| <!--Description-->Conexant CX20672 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX20671 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX20751-21Z codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes| }}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| <!--Description-->Conexant CX11852 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX11880 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant after 2015 up to 2018 CX7501 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{no|no driver codec}}
| <!--Recording-->{{no|no driver codec}}
| <!--Comments-->Conexant bought by synaptics 2019
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->C-Media CMI9880 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->Gigabyte GA-8GPNXP
|-
| <!--Description-->Silicon Labs 3054
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| VIA 1708A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| untested,
|-
| VIA VT1708B
| <!--Vendor ID-->
| <!--Product ID-->
| 0x0010
| <!--Playback-->{{No|VIA PicoITX}}
| <!--Recording-->{{Unk}}
|
|-
| VIA 1708S
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
|
|-
| <!--Description-->VT2021 10ch
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->Gigabyte Z77MX-D3H, GA-H61M-S2H S2P,
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Creative CA0110-IBG
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->SigmaTel STAC 9220 9221 9223 8ch (7+1)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| <!--Comments-->ECS 945GCT/M-1333 (version 3.0),
|-
| IDT SigmaTec [http://explorer.cekli.com/articles/pdf/hd-audio STAC9227] /28/29/30 codec
| <!--Vendor ID-->0x8384
| <!--Product ID-->0x7626
| <!--Revision-->0x0002
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Unk}}
|
* works HP Compaq mini 110
* untested HP Pavilion HDX9000 CTO Notebook, Intel DG33TL mobo, Dell E520, Intel DP35DP mobo, Dell E6410 Laptop,
|-
| IDT (formerly SigmaTel) IDC STAC 9271/71D
| <!--Vendor ID-->0x8384
| <!--Product ID-->0x7626
| <!--Revision-->0x0002
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
|
|-
| <!--Description-->IDC STAC 9272 9273 9274
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->Intel D5400XS,
|-
| <!--Description-->IDT 92HD73C
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes}}
| <!--Recording-->
| <!--Comments-->headphones only Asus AT4NM10 mobo
|-
| <!--Description-->IDT 92HD75B
| <!--Vendor ID-->0x111d
| <!--Product ID-->0x7608
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* working [http://koti.kapsi.fi/jvaltane/aros/hdaudio/ HP Compaq Mini 700 Netbook - feedback required]
* untested HP Mini 5103 and 5102, HP Compaq 610, HP ProBook Laptop 4520s 4525s 6450b 6550b 6555b, HP EliteBook 2540p 2740p 8440p, Mobile Workstation 8540w 8740w, Pavilion NoteBook DV8,
|-
| <!--Description-->IDC 92HD81XX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC 92HD83XX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC STAC 92HD89XX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Wolfson (now Cirrus Logic) WM8850
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Wolfson WM8860
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->Intel High Definition Audio Revision 1.0. - 4-Channel DAC, 4-channel ADC. - DAC sampling
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
Using Prefs/AHI ensure you set the music unit and at least Units 0 (where most audio comes from) in top left drop down menu to HDaudio - HIFI in the section below. Set Units 1 or 2 to microphone or other outputs. Plus allow more than one channel for multiple audio streams and set frequency up to 44 kHz or higher on the right hand side of the ahi prefs. If sound beeps when you press the test button then all should be OK.
Output <- Codec <- Audio Controller (HDA) <-> Computer
codecs and exact hardware identifier. As mentioned above, HDA is only part of the work here, it gets the audio out of the main chipset in digital format (on a bus called I2S). This is not enough, there is another step needed which is routing that I2S signal to the output, converting it to actual audio, amplifying it, etc. This is handled by a separate chip called a "codec". Sometimes it is initialized by the BIOS, but this is not always the case.
Most audio drivers are made up of two parts a [http://www.kernel.org/doc/Documentation/sound/alsa/HD-Audio.txt Controller + a Codec]. The ProductID and VendorID are for the audio controller only - the important additional codec is '''NOT''' so easily identified.
Some newer versions of codecs are missing at the moment.
Things to try if sound not working
* try to connect something to the audio jack, maybe it is not playing on internal speakers or vice versa
* make sure you try and select all music units e.g. unit0, unit1....
* even if PCI ID's are in Prefs/Env-Archive/HDaudio.config, this doesn't mean it is working, it is the codec that matters
* it might be internally muted
<pre>
add debug=memory to grub boot line - continue booting with F10
Open a shell
Tools/Debug/Bifteck > RAM:audio.txt
</pre>
or
<pre>
Open a shell
Tools/Debug/Sashimi > RAM:audio.txt
Run ahi prefs
Click test tone button
Stop sashimi with Ctrl-C
</pre>
If the boot sound is enabled, you have to use Bifteck to capture AHI debug output. In the GRUB menu, press E on your selected entry, then add "debug=memory" to the options (alongside ATA=, vesa= etc.). Then F10 or Ctrl-X to boot. Once booted, run Tools/Debug/Bifteck again.
or
* try adding QUERYD to the start of ENVARC:hdaudio.config file (also known as Prefs/Env-Archive/) ie. on the first line
* '''OR''' try removing QUERY and QUERYD from the start of the hdaudio.config file
* Reboot
* open a shell
* type: sys:tools/debug/sashimi > ram:debug.txt
* open ahi prefs
* select one of the audio modes - HIFI or otherwise
* press the 'test sound' button
* press ctrl-c in the shell
* post the results to Aros-World
The HD Audio standard was designed to be hardware pinout interchangeable so that the sound support could change easily and quickly. HDA is a standard around particular chips. Each kind of chip has a certain number of DACs and pins, and even the same chip could be hooked up in different ways on different motherboards. The chips are programmable and the operating system can adjust how things are routed. Some pins aren’t even hooked up, so it makes no sense to route sound to them. Also some pins have sensors that can tell when something is plugged in, so that for example the speakers in a laptop can be muted when headphones are plugged in. Pins are also grouped, so for example all the outputs for a 5.1 sound system are grouped. Generally the HDA driver in the operating system is supposed to read the pin set up and figure out a reasonable way to set things up, and disconnected pins should be ignored, etc.
HDAudio standard has headphones on a separate DAC, and it's up to the driver.. it can even send different audio to the headphones without interrupting the main (green) outputs
====Envy24 series ====
A little history. VIA bought the ICE created Envy chipsets [http://www.via.com.tw/en/products/audio/controllers/comparison_controller.jsp VT1712] first. A few years later, they created several cheaper variants VT1724 (mixer missing), VT1721 (low end cut down), VT1720 (embedded on motherboard) and lastly the VT1723 (no support apart from Windows Envy24DT like SYBA SD-PEX63034).
There are PCI Express versions appearing.
The Envy24 is the base product that was originally designed by ICEnsemble, and it supports multi-channel hardware mixing, which is great for professional use. The HT version removes the hardware mixer (unimportant for non-professional uses). The [http://www.avsforum.com/t/364771/envy24ht-s-the-definitive-source HT-S] version is almost exactly the same as the HT, it just uses cheaper DACs. The PT version is exactly the same as the HT-S version, it is just the edition used for on-board audio on motherboards.
N.B. [http://www.soundonsound.com/sos/dec04/articles/pcnotes.htm PCI slot identification] and [http://hsi.web.cern.ch/HSI/s-link/devices/s32pci64/slottypes.html 3.3v PCI].
=====[http://www.opensound.com/readme/README.Envy24.html envy24.audio] - [http://www.anime.net/~goemon/alsa/ VT1712] =====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Playback
! Recording
! Comments
|-
| M-Audio Delta 66 - Rev B 1999
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested AK4524VF CS8404A-CS - needs Delta Series break out box with D-sub lead -
|-
| [http://ixbtlabs.com/articles/maudioaudiophile/index.html Audiophile 2496] Rev A 2000
| 0x14
| 0x
|
| <!--Playback-->{{unk| }}
| <!--Recording-->{{unk| }}
| works audio out on - I2S stereo codec AKM AK4528VF with the 24bit/96kHz DAC and ADC; CS8427 digital transceiver
|-
| [http://ixbtlabs.com/articles/maudioaudiophile/index.html Audiophile 2496] Rev B 2003
| 0x14
| 0x
|
| <!--Playback-->{{Yes }}
| <!--Recording-->
| works well - I2S stereo codec AKM AK4528VF with the 24bit/96kHz DAC and ADC; CS8427 digital transceiver
|-
| M-Audio Delta 410 - 2001 2001 REV-B
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested for D-A AK4529VQ converters with CS8427-CS 5532 1158B or Event Echo Gina 20-Bit Multitrack Interface Breakout Box -
|-
| M-Audio Delta 1010
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested AK5383 and AK4393 - 25 pin dsub -
|-
| M-Audio Delta 1010LT 1010E
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested for D-A AK4529 converters with 2 XLR Microphone inputs with pre amps
* be aware of redesign in 2007 - possible issues
|-
| M Audio Delta 44 - Rev A 2002 - Rev B 2003 - Rev D 2003
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested ICE1712G AK4524VF needs breakout box with 15 pin D-sub lead -
|-
| M-Audio Delta 66 Rev E 2006 - Omni Studio
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested needs break out box with 15 pin D-sub lead -
|-
| <!--Description-->M-Audio Delta DiO 2496
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| Terratec EWX24/96
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| [http://ixbtlabs.com/articles2/terratecdmx6fire/index.html TerraTec 6fire DMX 24/96]
| <!--Vendor ID-->0x1412
| <!--Product ID-->0x1712
| <!--Revision-->0x02
| <!--Playback-->{{No|tried line 1-2 3-4 5-6 7-8 }}
| <!--Recording-->{{No| }}
| untested - AKM and codec
|-
| <!--Description-->Terratec EWSA88MT
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| [http://lists.freebsd.org/pipermail/freebsd-multimedia/2007-March/006087.html Audiotrak Prodigy HD2] 24/96
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Audiotrak (ESI) Maya 1010 1010L
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| EMU 1212M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| EMU 1616M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| <!--Description-->Terratec EWS 88MT EWS 88D
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Hoontech Soundtrack DSP 24
Soundtrack DSP 24 Value
Soundtrack DSP 24 Media 7.1
Event Electronics EZ8
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Digigram VX442
Lionstracs
Mediastation
Terrasoniq TS 88
Roland/Edirol DA-2496
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
=====envy24ht.audio - VIA VT1724=====
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| ESI Juli@
| 0x3031
| 0x4553
| 0x0
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Yes}}
| reported working years ago [http://envy24.svobodno.com/ Envy24HT-S] - AKM 4358 DAC - AKM 4114/4112 DIT
|-
| ESI Juli@ Ego Igo rev K
| 0x3031
| 0x
| 0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| AK4358? DAC - AK4114 AK4112 DIT
|-
| [http://ixbtlabs.com/articles2/multimedia/m-audio-revolution51.html M-Audio Revolution 5.1]
| 0x1412
| 0x3631
| 0x0
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| reported working years ago but discontinued - (Envy24GT) - 3ch AKM 4358 DAC - ADC AKM 5365 -
|-
| [http://ixbtlabs.com/articles2/m-audio-revolution71/index.html M-Audio Revolution 7.1] 24/192
| 0x1412
| 0x3630 0x1724
| 0x0
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| not working - illegal semaphore - 6ch ADC AKM AK4355 24-bit 192 kHz - 2ch DAC AKM AK4381 24-bit 192 kHz - ADC AKM AK5380
|-
| Terratec Aureon Sky 5.1
| 0x153b
| 0x1147
| 0x
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - discontinued
|-
| [http://ixbtlabs.com/articles2/terratec-aureon71/index.html Terratec Aureon Space 7.1]
| 0x153b
| 0x1145
| 0x0
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - Wolfson WM8770 DAC, AC'97 codec SigmaTel STAC9744
|-
| Terratec Aureon Universe 7.1
| 0x153b
| 0x1153 (rev x) 0x1724 (rev3)
| 0x0
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| not working - semaphore error on rev 3 - DAC ADC
|-
| Terratec Phase 22
| 0x153b
| 0x1150
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - Envy24HT-S - AK4524
|-
| Terratec Phase 28
| 0x153b
| 0x1149
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - Envy24HT-S - AK4524
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Playback
| Recording
| Revision
| Comments
|-
| Audiotrak (ESI) Prodigy 7.1
| 0x4933
| 0x4553
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - Wolfson WM8770 and AC'97 SigmaTel STAC9744 codec
|-
| Audiotrak (ESI) Prodigy 7.1 LT
| 0x3132
| 0x4154
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver -
|-
| [http://ixbtlabs.com/articles2/sound/audiotrak-prodigy192.html Audiotrak (ESI) Prodigy 192] 24/96
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - STAC9460S codec
|-
| <!--Description-->Echo Layla 24/96
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
| [http://www.bit-tech.net/custompc/labs/80752/hercules-gamesurround-fortissimo-4.html Hercules Gamesurround Fortissimo 4]
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - Wolfson WM8776 Codec and WM8766 DAC
|-
| [http://ixbtlabs.com/articles2/multimedia/m-audio-audiophile192.html M-Audio Audiophile Delta AP 192k]
| 0x1412
| 0x3632
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - Stereo ADC AKM AK5385A 24-bit 192 kHZ - 8-channel DAC AKM AK4358 24-bit 192 kHz - AKM 4114/4112 DIT
|-
| ONKYO SE-150PCI
| 0x160b
| 0x0001
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver
|-
| <!--Description-->ESI Waveterminal 192x
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
| <!--Description-->Quartet
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments--> - AKM 4114/4112 DIT
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
|}
====hdmiaudio.audio - hdmi no support====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->ATI R6xx HDMI Audio codec support output
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x9840
| <!--Revision-->
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->Not detected
|-
| <!--Description-->NVidia HDMI
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Intel Series 6 CougarPoint HDMI codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Intel HDMI
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|}
[[#top|...to the top]]
===Graphic GFX Chipsets===
[https://gallium.readthedocs.io/en/latest/systems.html PCIe based] graphic chipset is defacto on 64bit AROS and recommended on 32bit.
AGP works on 32bit but faster transfers through the AGP slot are only available on a few supported motherboard chipsets
* Faster AGP Working = SIS 650 board, Intel 865pe AGP slot on MSI 6788-050,
* Not Supported = NForce2 chipsets, most Intel 815/820 chipsets, VIA chipsets, ALi chipsets,
The fallback for all graphics modes is vesa if any native support does not work. There is a choice of very low resolution vga as the last resort
2D tests performed with [http://download.aros3d.org/software/gfxbench.zip gfxbench] in the shell type gfxbench > out.txt (40 seconds blank screen is part of the test), via FreeDoom via limit-removing engine like odamex, chocolate or vanilla doom -timedemo demo1 or doom2 -timedemo demo1, doom.exe -iwad doom2 -file mymap.wad, Duke DNRATE 640x480 windowed
3D tests performed with Demos/Mesa/ , Cube 1080p, Cube 2 windowed not fullscreen 1920 x 1025, Quake3 ~ cl_drawFPS 1, Xonotic , [http://shinh.skr.jp/sdlbench/showtestgl.cgi test gl],
HDMI, DVI and DisplayPort monitors have a native resolution of 480p, 720p, 1080i, 1080p and up
<pre>
HDMI (licensing fee)
1.2 720p res.
1.3 1080 resolution
1.4 4K @ 30Hz
2.0 4K @ 60Hz
2.1 48Gbs for 4K @ 120Hz, 8K @ , VRR, etc
2.2 ultra96
</pre>
<pre>
DisplayPort (VESA introduced)
1.4 4K @ 60Hz
2.1 96Gbs for 4K @ 240Hz, 8K @ 120Hz. MST daisy chain multiple monitors,
</pre>
<pre>
GPMI chinese standard
2.0
</pre>
Might be supported on AROS
*OpenGL4 GPU must have 64-bit floating point FP64 math support, which is a hard requirement for GL 4.0. The max last revision opengl 4.6 (2017) on [https://wiki.gentoo.org/wiki/AMDGPU AMDGPU] RX 5000's / 6000s ([https://forum.batocera.org/d/7491-enable-opengl-46-and-vulkan-for-an-old-radeon-video-card RDNA] and Nvidia RTX might come to AROS) but Intel UHD, Iris Plus or Xe or Arc (will not unless a developer wants the challenge)
*OpenGL3 last revision 3.3 (2011)
Already supported on AROS
*OpenGL2 nvidia-nouveau,
*OpenGL1 intel gma950,
====vga.hidd====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Comments
|-
|
| 0x
| 0x
| 0x0
| Generic VGA Driver, limited to 640x480 in 16 colours - no 3D support
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Comments-->
|-
|}
====vesa.hidd====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Comments
|-
|
| 0x
| 0x
| 0x0
| 2D support for VBE1, VBE2 and VBE3 (most cards) - various resolutions and 24bit colour - no 3D support
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Comments-->
|-
|}
[[#top|...to the top]]
====[[w:en:Intel GMA|Intel GMA]]====
DVI output is not supported at the moment.
If having problems:
* Ensure the latest version is being used.
* Set GMA_MEM to 128 or 256 to test
* Try the FORCEGMA ToolType for 2D, and try the FORCEGALLIUM ToolType for 3D acceleration after 2D is verified to work. ToolTypes should be applied to the Devs/Monitors/IntelGMA monitor icon.
If still having problems:
* At GRUB boot screen edit boot line and add option: debug=memory
* Boot.
* Use shell command: tools/debug/bifteck > RAM:debug.txt
* And post [GMA MONITOR DETECTION] and other related debug lines
{| class="wikitable sortable" width="90%"
! width="5%" |Description
! width="5%" |Vendor ID
! width="5%" |Product ID
! width="3%" |Rev
! width="5%" |2D
! width="5%" |3D
! width="5%" |Analog Output
! width="5%" |Digital Output
! width="5%" |Laptop LCD
! width="30%" |Comments
|-
| 910GL 82910GL GMCH + ICH6
| 0x8086
| 0x2582 0x2592
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| 910GML 82910 GML GMCH + ICH6 Mobile
| 0x8086
| 0x2582 0x2592
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| may need to add forceGMA to grub boot line to work
|-
| 915G 82915G GMCH + ICH6-M
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
|
|-
| 915GL 82915GL GMCH
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
|
|-
| 915GV 82915GV GMCH
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Yes|}}
| <!--3D-->{{No|}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{N/A}}
| HP DC5100 small form factor
|-
| 915GM GMA900
| 0x8086
| 0x
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| tunnel gearbox }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes}}
| asus eee pc 900
|-
| 915GMS
| 0x8086
| 0x
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| tunnel }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes| }}
|
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| [http://www.notebookcheck.net/Intel-Graphics-Media-Accelerator-950.2177.0.html 945GU] - 133 MHz (Lake port for Intel A100 and A110)
| 0x8086
| 0x2772
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| Fujitsu LifeBook U1010,
|-
| 945GMS - 166 MHz / 250 MHz (1.05V)
| 0x8086
| 0x27a2
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes}}
| Dell D430
|-
| 945GSE - 166 MHz (for Atom)
| 0x8086
| 0x27ae
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Yes|[http://www.x.org/wiki/GalliumStatus]}}
| {{Yes}}
| {{No|dvi port}}
| {{Yes| }}
| for atom motherboards and most 2008/2009 netbooks
* 3D Works - AOA110 AOA150, Dell Mini 9, Samsung NC10, Toshiba NB100,
|-
| 945G 82945G GMCH + ICH7
| 0x8086
| 0x27a6
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| untested 2D and 3D
|-
| 945GC 82945GC MCH
| 0x8086
| 0x27a6
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| untested 2D and 3D
|-
| 945PM
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| Dell D420, Compaq nc6400,
|-
| 945GMS - 250 MHz Calistoga
| 0x8086
| 0x
| 0x0
| <!--2D--> {{Yes}}
| <!--3D--> {{Yes|most models}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes}}
|
* 3D Works Dell Latitude 2100, HP Compaq nc6320, Lenovo 3000, Lenovo T60, Samsung Q35, Dell D620, Dell D820,
* 3D untested Toshiba Satellite L100-120, Toshiba Portege M400,
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
|
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GMA 3100 G31
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works 2D but no 3D
|-
| GMA 3100 G33
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works 2D but no 3D
|-
| [http://en.wikipedia.org/wiki/Intel_GMA GMA 3150] netbooks and nettops
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works 2D but no 3D. no vga, dvi or hdmi output for nettops
|-
| <!--Description--> G965
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments-->
|-
| <!--Description--> Q965
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x2992
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{No}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments--> Only tested with VGA output.
|-
| 965GM X3100 (500 MHz)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| some support 2D but no hardware 3D - could not get it to work with VGA or dvi output
* untested Apple MacBook Air, Lenovo Thinkpad X300, Dell Inspiron 1525, Toshiba M9,
|-
| 960GM X3100 (400 MHz)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
|
|-
| 965M X3100 (400 MHz)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| Dell D830,
|-
| 965PM ??
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| Toshiba A9 works with limited 2D acceleration but no hardware 3D
|-
| GL965
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works with limited 2D acceleration but no hardware 3D
|-
| GM965
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works with limited 2D acceleration but no hardware 3D
|-
| GMA X3500 G35
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->X4500M G41 G43 G45 (400Mhz) Mobile 4 Series
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x2a42 0x2a43
| <!--Revision-->0x07
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue--> {{No|}}
| <!--Digital--> {{No|}}
| <!--Laptop LCD--> {{Yes| VESA}}
| <!--Comments-->works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->GMA 4500M HD (533 MHz)
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments-->works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->GMA 4700M HD (640MHZ)
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x2a42
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments-->works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
====[http://nouveau.freedesktop.org/wiki/FeatureMatrix nouveau].hidd (nvidia pci, agp, pci-e desktop)====
PCIe based nvidia graphics (gfx 8xxx) are the base level for 64bit AROS but earlier models still has some support on 32bit AROS
*Desktop, more likely hit rather than miss on early nvidia on Aros 32bit but on Aros 64bit ...
*Laptop, limited support for '''very''' early non-optimus (i.e. just Nvidia gfx only so no Intel and nvidia gfx combinations on 32bit but on 64bit ...)
Please note that the nouveau project is reverse engineering a nvidia graphics driver but takes time because of [https://nouveau.freedesktop.org/ nVidia's closed firmwares], etc
* 2026-06 - DEVS Nouveau.hidd Gallium.hidd Softpipe - LIBS Gallium GLU 20.0 Mesa OpenCL
* 2011-10 - DEVS 6.11 Nouveau.hidd 7.4 Gallium.hidd 9.4 Softpipe - LIBS 2.3 Gallium 1.3 GLU 19.0 Mesa OpenCL 1.x
* 2011-04 - DEVS 5.31 Nouveau.hidd 7.3 Gallium.hidd 9.3 Softpipe - LIBS 2.2 Gallium 1.1 GLU 18.0 Mesa OpenCL n/a
Nouveau support for AROS is limited to OpenGL 2.1 compliance on 32bit even for modern GL4 capable GPUs but on 64bit ...
On Aros 32bit OpenCL supports the NV50 (8000 9000) cards, less support in NVC0 fermi cards (300 upwards)
On Aros 64bit
ADoom3 graphic details ultra, benchmark while playing press the "`" key and type "Timedemo demo1" in the console
{| class="wikitable sortable" width="90%"
! width="5%" | Graphic Card
! width="5%" | Aros 32bit 1024 x 768
! width="5%" | Aros 32bit 800 x 600
! width="5%" | Aros 32bit 640 x 480
! width="5%" | Aros 64bit 1024 x 768
! width="5%" | Aros 64bit 800 x 600
! width="5%" | Aros 64bit 640 x 480
|-
| NV50 Asus EN8400GS SILENT/P/512M PCIe (G98) || || || || || ||
|-
| Gigabyte 8500GT 256M || 42,6 || 57,2 || 68,6 || || ||
|-
| NV96 (G96) Geforce 9500GT 512M || 43 || 53 || 57 || || ||
|-
| NV96 (G96) 9600GT || || || || || ||
|-
| NVA3 (GT215) GT240 || || || || || ||
|-
| NVA5 (GT216) Palit GT220 Sonic 512M || 39,7 || 55,8 || 63,7 || || ||
|-
| NVA8 (GT218) gt210 || || || || || ||
|-
| NVA8 (GT218) ION2 || || || || || ||
|-
| NVC3 (GF106) GT440 GTS 450 || || || || || ||
|-
| NVCF (GF116) NVC0 Fermi GTX 550Ti or GTS 450 v2 || || || || || ||
|-
| NVC8 (GF110) 580GTX || N/A || N/A || N/A || || ||
|-
| NVE0 Kepler GT630 || N/A || N/A || N/A || || ||
|-
| NVE6 (GK106) Kepler GTX660 || N/A || N/A || N/A || || ||
|-
| NVE7 (GK107) GTX 650 || N/A || N/A || N/A || || ||
|-
| NV110 Maxwell GTX 750 || N/A || N/A || N/A || || ||
|-
| NV126 (GM206) GTX950 upwards no reclocking || N/A || N/A || N/A || poor || poor || poor
|-
| NV160 family (Turing) GTX 1650 and RTX 2000 upwards with GSP firmware || N/A || N/A || N/A || unknown || unknown || unknown
|-
| HostGL Ryzen 5 4600H - Nvidia 1650 - Linux mint 21.1 || N/A || N/A || N/A || 150fps || 154fps || 155fps
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| width="5%" | Graphic Card
| width="5%" | Aros 32bit 1024 x 768
| width="5%" | Aros 32bit 800 x 600
| width="5%" | Aros 32bit 640 x 480
| width="5%" | Aros 64bit 1024 x 768
| width="5%" | Aros 64bit 800 x 600
| width="5%" | Aros 64bit 640 x 480
|}
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|-
| <!--Description-->tnt1 (nv04) tnt2 (nv05) m64 value (1998)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|very slow}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| NV04 Riva TNT TNT2 Fahrenheit freezes on via motherboard chipset so rename agp.hidd in SYS:Devs/Drivers or Monitors
|-
| <!--Description-->tnt vanta lt (nv06) 1998 /9
| 0x10de
| 0x002c
| 0x15
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|slow}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| <!--Description-->Geforce 256 (nv10) (2000)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|slow }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| untested Geforce256
|-
| <!--Description-->Geforce 2 Geforce 3 Geforce 4 (nv20) 2000 / 2
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|slow }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| works for some PCI and AGP Geforce2 Geforce3 Geforce4
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| Geforce FX5200 nv34 (2003)
| 0x10DE
| 0x0322 0x
| 0xA1
| <!--2D-->{{Maybe| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->{{Maybe|VGA15 }}
| <!--Digital-->{{Maybe|DVI}}
| <!--Laptop LCD-->{{N/A}}
| NV30 GeForce 5 FX Rankine Hardware OpenGL 1.5 - slower than GF MX 4000 for 2D - max 1024 x768
* not working [https://eab.abime.net/showthread.php?t=92328&page=8 mobos with VIA chipsets 2018]
* working (MSI 0x9174) the previous nouveau 5.x driver
* Others work with 6.x series XFX PV-T34K-NA, ASUS V9520-X/TD
|-
| Geforce FX5500 (nv34) (2003)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{Maybe| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| works
|-
| Geforce 5100 (NV34)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce FX 5200LE (NV34)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5200 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce FX5600 (nv31) (2004)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Maybe| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| works
|-
| GeForce FX 5600 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5600SE
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5600XT
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce FX5700 (nv36) (2004)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes|some}}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{Maybe| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5700VE
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5700 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5700LE
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5800 (NV30)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5800 Ultra (NV30)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900 (NV35)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900XT
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900ZT
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5950 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce 5xxx
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
|
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| Geforce 6200 (nv44) (2005)
| 0x
| 0x00F3 0x014F
| 0x0
| <!--2D-->{{Yes|5.28 Pixel Text}}
| <!--3D-->{{Maybe| use 5.28}}
| <!--Analogue-->{{Yes|VGA15 and s-video - plain 4pin cable lead will work with 7pin}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| NV40 GeForce 6 GeForce 7 Curie AGP Hardware OpenGL 2.1 needing previous 5.x version as regression arose 2011-10
|-
| Geforce 6200 (nv44a) (2006)
| 0x
| 0x0221
| 0x0
| <!--2D-->{{Yes|5.28 Pixel Text }}
| <!--3D-->{{Yes|}}
| <!--Analogue-->{{Yes|VGA15}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| Hardware OpenGL 2.1, PCI version tested OK in 2014-01-02 - Icaros 1.5.2
* not working
*working
|-
| GeForce 6200 with Turbo Cache (NV43)
| 0x
| 0x0161
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce 6200SE with Turbo Cache (NV44)
| 0x
| 0x0162
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce 6200 LE
| 0x10de
| 0x0163
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| PCI-E
|-
| GeForce 6600 LE
| 0x
| 0x00F4 0x0142
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6600
| 0x
| 0x00F2 0x0141
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| 2006 PureVideo HD 1 or VP1 re-used the MPEG-1/MPEG-2 decoding pipeline from FX
|-
| Geforce 6600gt (nv4x) (2005)
| 0x
| 0x00F1 0x0140
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Yes| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| OpenGL tests -
|-
| Geforce 6800 (nv40) (2005)
| 0x
| 0x0041 0x00C1 0x00F0 0x0211
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Yes| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 XE (NV4x)
| 0x
| 0x0043
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 LE
| 0x
| 0x0042 0x00C2 0x0212
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 GT (quadro fx 1400)
| 0x
| 0x0045 0x0046 0x0215
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 6800 GS
| 0x
| 0x0047 0x00C0 0x00F6
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 GTS NV40
| 0x
| 0x0040 0x0F9
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 6800XT
| 0x
| 0x0044 0x0048 0x00C3 0x0218
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6600 VE
| 0x
| 0x0143
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6500 NV44
| 0x
| 0x0160
| 0x0
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6250
| 0x
| 0x0169
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 6xxx
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GeForce 7800 GTX
| 0x
| 0x0090 0x0091
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| tunnel gearbox cube cube2 25}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> 256MB DDR3 - 1 6pin psu connector -
* not working asus en7800gtx/2dhtv/256m/osp/a -
* Works XFX PV-T70F-UDD7 Works in steve jones' scrap pc aros build 2010 2 DVI-I ports
* Untested
|-
| GeForce 7800 GT
| 0x
| 0x0092
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7600gt (G8 ) (nv4 ) (2006)
| 0x
| 0x02E0 0x0391
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL 2.1
* not working
* working
|-
| GeForce 7800 SLI
| 0x
| 0x0095
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GTX
| 0x
| 0x0290
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GT GTO
| 0x
| 0x0291
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GS
| 0x10de
| 0x0292
| 0x0a1
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working
* Works with a few glitches with XFX Pine 0x2218
|-
| GeForce 7950 GX2
| 0x10de
| 0x0293 0x0294
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| GeForce 7950 GT
| 0x
| 0x0295 0x02E4
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GS
| 0x
| 0x02E3
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7600 GS
| 0x
| 0x02E1 0x0392
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7650 GS
| 0x
| 0x0390
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7600 LE
| 0x
| 0x0394
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7800GS (G8 ) (nv4 ) (2006)
| 0x
| 0x0093 0x00F5
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working
* works if AGP motherboard chipset is supported - Hardware OpenGL 2.1
|-
| GeForce 7100 GS
| 0x
| 0x016A
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7350 LE
| 0x
| 0x01D0
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7300le (G8 ) (nv4 ) (2006)
| 0x
| 0x01D1
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7300SE 7200GSGF-7200GS-N-B1 variant (G72)
| 0x10de
| 0x01D3
| 0x0a1
| <!--2D-->
| <!--3D-->
| <!--Analogue-->{{Unk|1x DVI, 1x VGA, 1x S-Video}}
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2007 40W pci-e 1.0 VP1 no unified shaders -
* not working Asus on via chipset (2015),
* works Asus on intel chipset (2015),
|-
| Geforce 7300gt (G8 ) (nv4 ) (2006)
| 0x
| 0x0395 0x0393
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working
* works
|-
| GeForce 7300 GS
| 0x
| 0x01DF
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7500 LE
| 0x
| 0x01DD
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7xxx
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GeForce 8800 Ultra (NV50 family)
| 0x
| 0x0194
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NV50 GeForce 8 to GeForce 200s opengl 3.x - max res - 80nm technology - PureVideo HD 2 or VP2 Nvidia VDPAU Feature Set A (absent from ultra and some 8800gt?) added a dedicated bitstream processor (BSP) and enhanced video processor for H.264, VC-1 acceleration
|-
| Geforce 8800gts (nv50) (G8x) (2007)
| 0x
| 0x0400 0x0600 0x0193
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2007 200w openGL3 openCL - 2x6pin psu
* not working 0x0193 models (2015) on via chipsets,
* works
|-
| Geforce 8800gtx (nv5 ) (G8x) (2007)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2008 200W 1x 6pin connector,
* not working
* working
* untested XFX PV-T88P-YDF4, Alpha Dog Edition runs extremely hot - Gigabyte GV-NX88T512H,
|-
| GeForce 8800 GT
| 0x
| 0x0602 0x0611 0x0193
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->DVI up to 2500 x 1600
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - 6pin psu power connector required
* not working
* untested Asus EN8800GT/HTDP/256M EN8800GT/HTDP/512M EN8800GT/G/HTDP/512M
* works
|-
| GeForce 8800 GT (G92)
| 0x10de
| 0x0611
| 0x0a2
| <!--2D-->{{Yes|6.11 Pixel Text}}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{N/A}}
| <!--Digital-->{{Yes}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3 pci-e 2.0 8800GT 512MB on Icaros 2.0.3 [[File:8800GT aros heads.png|thumb|8800GT]] [[File:8800GT aros tails.png|thumb|8800GT detail]]
|-
| Geforce 8600gt (nv5 ) (G8x) (2007)
| 0x
| 0x0401 0x0402
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res
* not working
* works
|-
| GeForce 8500 GT
| 0x
| 0x0421
| 0x0
| <!--2D-->{{Yes| some color }}
| <!--3D-->{{yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL tests - max opengl 3.x but 2.1 offered - max res
* not working
* works Gigabyte 8500 GT,
|-
| GeForce 8800 GS
| 0x
| 0x0606 0x060D
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res
|-
| GeForce 8600GS
| 0x
| 0x0403
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 3.x VP3 offers complete hardware-decoding for all 3 video codecs of the Blu-ray Disc format: MPEG-2, VC-1, and H.264 - Nvidia VDPAU Feature Set B
|-
| GeForce 8300 GS
| 0x
| 0x0423
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res
|-
| Geforce 8400gs G98GS (end 2007) GT218 (2009)
* Rev2 with 8/16 cores and 128-512MB of DDR2 or GDDR3 memory.
* Rev3 with 8 cores and 512MB-1GB of DDR3 memory (based on Tesla 2.0)
| 0x
| 0x0424 0x0422
| 0x0
| <!--2D-->{{Yes|Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 490 gearbox 505 Cube 135 Cube2 55 quake3 }}
| <!--Analogue-->{{Yes|works digital part of DVI but nothing from any display port}}
| <!--Digital-->{{Yes|output on digital 24 pin array of DDWG's DVI and hdmi}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 50W openGL 3.1 openCL - case single slot - one single-link DVI digital output, supporting up to one 1920x1080 resolution display - analog resolution 640 x 480 to 1024 x 768 16 and 24 bit color - [http://www.phoronix.com/scan.php?page=article&item=nouveau_comp_2011&num=19 runs a little hotter than expected] - G98 VP3 pci-e 2.0 512MB DDR2 -
* not working
* works Asus EN8400GS SILENT/P/512M PCIe (G98),
|-
| Geforce 8400gs (nv50) (G86) (mid-2007)
* Rev1 with 16 cores / 256MB of DDR2 memory.
| 0x
| 0x0404
| 0x0
| <!--2D-->{{Yes|Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 490 gearbox 505 Cube 135 Cube2 55 quake3 }}
| <!--Analogue-->{{Yes|works but not tested thru 4 pins of analog signal of DVI plug}}
| <!--Digital-->{{Yes|output on digital 24 pin array of DDWG's DVI and hdmi}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2008 50W openGL 3.1 openCL - case single slot - one single-link DVI digital output up to 1920x1080 resolution display - analog resolution 640 x 480 to 1024 x 768 16 and 24 bit color - [http://www.phoronix.com/scan.php?page=article&item=nouveau_comp_2011&num=19 runs a little hotter than expected] - G86 VP2 128MB -
* not working XFX PV-T86S-YAJG NVIDIA GeForce 8400 GS 512MB DDR2, Sparkle 8400GS 512MB SX84GS512D2L-DPP,
* works Asus EN8400GS SILENT/HTP/256M SILENT/HTP/512M/A,
|-
| GeForce 8400 SE
| 0x
| 0x0420
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 2.x openCL
|-
| NVidia Quadro NVS290 DMS-59
| 0x
| 0x0403
| 0x0
| <!--2D-->{{no| }}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk|DMS-59 socket}}
| <!--Digital-->{{unk|DMS-59 }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2008 21W - G86S (G86-827-A2) - 16 shading units, 8 texture mapping units, and 4 ROPs. NVIDIA has paired 256 MB DDR2 - PCIe 1.0 x16 Low Profile -
|-
| Geforce Quadro FX 4600 (SDI), 5600
| 0x
| 0x
| 0x0
| <!--2D-->{{Partial|VESA 2d}}
| <!--3D-->{{no| }}
| <!--Analogue-->{{partial| }}
| <!--Digital-->{{partial| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GeForce 9800 GX2 (NV50 family)
| 0x
| 0x0604
| 0x0
| <!--2D-->{{Partial|VESA }}
| <!--3D-->{{no| }}
| <!--Analogue-->{{Partial| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 150w - 65nm technology
|-
| GeForce 9800 GTX
| 0x10de
| 0x0612
| 0x0a2
| <!--2D-->{{Yes| }}
| <!--3D-->{{Maybe|6.11 }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 2x6pin psu -
* not working xfx on via chipset (2015),
* works xfx on chipset intel ,
|-
| GeForce 9800 GTX+
| 0x10de
| 0x0613
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res 2560 x 1920 - case dual slot - 26amp 12v rail on computer psu if 2x6pin connectors needed - 55nm version of the G92 chip - will not work with PCI-e 1.0a slots -
* not working
* works on a few models
|-
| Geforce 9800gt (nv50) (G92a) (2008)
| 0x10de
| 0x0614
| 0x0xa2
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel 495 gearbox 513 Cube 156 Cube2 120 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{partial| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL 3.1 openCL 1.x - case dual slot - 600w 26amp on both 12v rails for 2x6pin psu on gfx card - no fan control - some come with 1x6pin - renamed version of the venerable GeForce 8800 GT - randomly works
* not working Gainward 512M untested
* working Gainward CardExpert (0x0401) Green Edition NE39800TFHD02-PM8D92 1024MB (no 6pin)
|-
| Geforce gf9600 9600gt (nv5 ) (G9x) (2008)
| 0x10de
| 0x0622
| 0x0a1
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel 493 gearbox 675 Cube Cube2 100 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL 3.2 openCL but no fan control - case dual slot - 1 6pin pcie psu connector - 500 Watt or greater power supply with a minimum of 26 Amp on the +12 volt rail - Max Analog: 2048x1536 and Max Digital: 2560x1600 (Dual Link DVI Only) - PCI Express® 2.0 / 1.1 Support - g96 gpu randomly works -
* not working bfg tech ocx,
* works gigabyte gv-n96tsl-512i -
|-
| Geforce gf9500 9500gt (nv5 ) (G9x) (2008)
| 0x10de
| 0x0640
| 0x0a1
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel 480 gearbox 500 Cube Cube2 64 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.2 - case single slot - 350 Watt/400 Watt or greater power supply with a minimum of 18 Amp/22 Amp on the +12 volt rail - Max Analog: 2048x1536 and Max Digital: 2560x1600 (Dual Link DVI Only) - PCI Express® 2.0 / 1.1 Support -
* not working zotac zone fanless, Gainward USA NE29500THHD01-PM8796, PNY G9500GN2E50X+0TE,
* works xfx xne-9500t-td01-pm8596 1024mb ddr2,
|-
| GeForce 9600 GS
| 0x
| 0x0623
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res - will not work with PCI-e 1.0a slots -
* not working
* works
|-
| GeForce 9600 GSO
| 0x
| 0x0610
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res - G92 chopped down - 9600GSO is re-badged 8800GS both very power hungry cards -
|-
| GeForce 9300 GS
| 0x
| 0x06E1
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 opengl 3.x - max res
|-
| Geforce 9400 GT (nv5 ) (G86S) (2008)
| 0x
| 0x
| 0x0
| <!--2D-->{{partial|}}
| <!--3D-->{{unk|}}
| <!--Analogue-->{{unk|1x DVI, 1x VGA, 1x S-Video}}
| <!--Digital-->{{unk|1x DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 50W opengl 3.x - max res
|-
| Geforce 9xxx (nv5 ) (G9x) (2008)
| 0x
| 0x
| 0x0
| <!--2D-->{{unk|}}
| <!--3D-->{{unk|}}
| <!--Analogue-->{{unk|}}
| <!--Digital-->{{unk|}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 opengl 3.x - max res
|-
| <!--Description-->Quadro FX 580 G96 chipset
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2009
|-
| <!--Description-->
NV84 (G84) GeForce 8600 (GT, GTS, M GT, M GS), 8700M GT,
NV92 (G92) GeForce 8800 (GT, GS, GTS 512, M GTS, M GTX)
GeForce 9600 GSO, 9800 (GT, GTX, GTX+, GX2, M GT, M GTX)
NV96 (G96) GeForce 9400 GT, 9500 (GT, M G), 9600 (M GS, M GT),
NV86 (G86) GeForce 8300 GS, 8400 (GS, M G, M GS, M GT), 8500 GT
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NVA0 (GT200) Tesla GeForce GTX (260, 275, 280, 285, 295)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->GeForce GTX 280 (NV50 family)
| <!--Vendor ID-->
| <!--Product ID-->0x05E1
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res PureVideo HD 4 (Nvidia Feature Set C or "VDPAU Feature Set C), VP4 added hardware to offload MPEG-4 Advanced Simple Profile (original DivX and Xvid)
|-
| <!--Description-->GeForce GTX 260
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x05E2
| <!--Revision-->
| <!--2D-->{{partial|Vesa}}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> 2 6pin - psu pci express 2.1 -
|-
| Geforce GTS250 250GTS (g92b) (2009)
| 0x10de
| 0x0615
| 0x0a2
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 486 gearbox 508-642 Cube Cube2 80 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> 2x6pin psu VP2 - pci-e 2.x - case dual slots - 738m 1gb ddr3 -
* not working Zotac branded version GDDR3 -
* works PNY gs-250x-zdfl and Gigabyte ??, BFG Tech RGTS2501024OCE, palit ne3ts250fhd52-pm8a92 with 2x6pin on top and hdmi output port,
|-
| <!--Description-->GeForce GT 240 (GT215 family)
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0ca3
| <!--Revision-->0xa2
| <!--2D-->{{Maybe|use VESA}}
| <!--3D-->{{No|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->late 2009 openGl 3.2 - case dual slots - no 6pin psu required with VP4 - All are pcie 2.1 cards and may not work in 1.0a slots -
* not working
* DDR3 with 512MB or 1GB -
* DDR5 -Asus ENGT240 - XFX Pine GT240XYHFC 0x3001 - Gigabyte GV-N240D5-512I rev 1.0 - Zotac AMP! with HDMI 1.3a with DisplayPort 1.1, Dual Link DVI -
* works
|-
| <!--Description-->GT220 (GT216) G220
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0a20
| <!--Revision-->0xa2
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Yes}}
| <!--Digital-->{{Yes|DVI }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> Icaros 2.0.3 GeForce GT220 1GB[[File:GT220 aros heads.png|thumb|GT220]][[File:GT220 aros tails.png|thumb|GT220]]
* untested NVIDIA Quadro® 400 512MB DDR3 GT216 DP DVI, AFox AF220 1Gb DDR3,
|-
| Geforce GT220 220GT G94 Tesla (g92b)
| 0x10de
| 0x0a20
| 0xa2
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 490 gearbox 505 cube 150 cube2 50 Quake3 }}
| <!--Analogue-->{{Unk|1x DVI, 1x VGA}}
| <!--Digital-->{{Yes|DVI but not 1x HDMI }}
| <!--Laptop LCD-->{{N/A}}
| 58W pci express 2.0 cards DDR3 - case single slot -
* not working ASUS ENGT220/DI/1GD2(LP)/V2 -
* works - gainward card expert 0x0401 GDDr3 512MB -
|-
| <!--Description-->GT210 GT 210 210GT G210 based on Tesla 2.0 GT218S GT218-300-A2 variant, GT218-300-B1
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0a65
| <!--Revision-->0xa2
| <!--2D-->{{Yes|6.11 Pixel Text}}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{Unk|1x DVI, 1x VGA}}
| <!--Digital-->{{Maybe|DVI out works but not hdmi or 1x DisplayPort}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 31W OpenGL 3.3 pci-e 2.0 cards - single slot -
* working GT218 based Asus EN210 based silent low profile large passively cooled -
* untested MSI GeForce 210 1GB DDR3 PCIe N210-MD1GD3H/LP,
* not working
|-
| <!--Description-->Nvidia ION2 (GT218) Tesla
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2012
|-
| <!--Description-->Quadro NVS 295 (256 MB GDDR3), NVS 450 (256M/512 MB DDR3)
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x
| <!--Revision-->
| <!--2D-->{{yes| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->
| <!--Digital-->{{partial|2 or 4 dp ports}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 25w low performance - G98s with 8 shading units, 4 texture mapping units, and 4 ROPs on PCI-Express 1.0 x16 -
*not working some NVIDIA Quadro NVS 295 2 dp ports (DELL, HP),
*working
|-
| <!--Description-->GT310 Tesla 310, 315, GT 320, GT 330 GT 340
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{Maybe|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2010 50w OpenGL 3.3 openCL all similar in performance to GT2xx except gt31x (poor)
|-
| <!--Description-->Quadro NVS310 NVIDIA NVS 310
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital--> 2 dp
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 25w GF119S (GF119-825-A1) 48 shading units, 8 texture mapping units, and 4 ROPs on PCI-Express 2.0 x16 - 512 MB DDR3 - PureVideo VP5 VDPAU Feature Set D -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description--> GTX 470, GTX 480 GF10 GF10* core (NVC0 family)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{Maybe| tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2010 215w 2x6 plugs - NVC0 family (Fermi) GF100 (GF100-275-A3) Fermi 448 shading units, 56 texture mapping units, and 40 ROPs with 1,280 MB GDDR5 - OpenGL4.5 OpenCL1.1 Tessellation - case dual slots -
|-
| Geforce GTX460 460GTX (G104) 256bit, 1GB v2 192bit and GTX 465
| 0x10de
| 0x0e22
| 0xa1
| <!--2D-->{{Maybe|VESA }}
| <!--3D-->{{Maybe| tunnel gearbox cube 055-111 cube2 50}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVC0 family (Fermi) OpenGL 4.x but - 2x6pin psu - case dual slots -
* not working evga 768MB GDDR5 192bit 01G-P3-1373-ER or 01G-P3-1372-TR
* works 1GB GDDR5 256bit 01G-P3-1371-ER
|-
| <!--Description-->Geforce GTX 460SE 192bit
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0e23
| <!--Revision-->0x91 or 0xa1
| <!--2D-->{{Yes| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->{{Yes| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> nouveau 6.11 - 2 6pin psu needed - case dual slots -
* not working
* works EVGA 01g-p3-1366-b6 et 1024MB p1041 -
|-
| Geforce GT450 GTS450 450GTS GF106
| 0x10de
| 0x0dc4
| 0x0a1
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel gearbox cube cube2 50 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes|DVI }}
| <!--Laptop LCD-->{{N/A}}
| 2010 Hardware OpenGL 4.2 but nouveau at 3.3 - most need 1x 6pin psu - case dual slots -
* not working
* DDR3 1 or 2GB - Palit NEAS450NHD41F,
* GDDR5 512Mb or 1GB - MSI MPN N450GTSM2D1GD5OC, Asus MPN ENGTS450DI1GD5,
* works Gainward Card Expert NE5S4500FHd51,
|-
| <!--Description-->GT 440 GF108 chipset or better OEM GF106
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 6.11 Pixel Text}}
| <!--3D-->{{Maybe| tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGl 4.1 opencl 1.x - no 6 pin psu - 96 cuda cores 128bit - case dual slots -
* not working
* OEM
* GDDR5 512MB to 1GB ASUSTeK ENGT440/DI/1GD5
* GDDR3 Asus 1gb to 2gb,
* works
|-
| <!--Description-->GT430 430GT (GF108)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|6.11 Pixel Text}}
| <!--3D-->{{Maybe|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->ddr3 memory 64bit or 128bit - buggy await new revision of driver
* not working
* works
|-
| <!--Description-->nVidia Quadro FX1800 768MB GDDR3 Full Height Graphics Card Workstation
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 6.11 Pixel Text}}
| <!--3D-->{{no|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->{{Maybe|DVI-I 2xDP}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->59W 768 MB GDDR3 memory using a 192-bit memory interface - OpenGL 3.3 -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GTX 590 Fermi
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->OpenGL4.4 OpenCL 1.1 - GDDR5 - 6pin and 8pin psu connectors - 512 cuda - case dual slots -
* not working
* works
|-
| <!--Description-->GTX 580,
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->PureVideo HD 5" or "VP5" (Nvidia Feature Set D or VDPAU Feature Set D) 4k UHD 3840 × 2160 H.264 decode -
|-
| <!--Description-->GTX 570,
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{Maybe|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working Zotac GTX 570, Gainward GTX560TI/570 Phantom,
* works gigabyte, evga
|-
| <!--Description-->Geforce 5xx 560gtx Fermi GTX 560,
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->opengl 4.x - 2 6pin psu - 384 cuda cores - case dual slots - will not work with PCI-e 1.0a slots -
* not working Asus ENGTX560 DC/2DI/1GD5,
* Ti LE 448 cuda GDDR5 320bit
* Ti 256bit
* works
|-
| <!--Description-->GTX 560 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working evga GTX 560Ti 01GP31560KR - Gainward GTX560TI/570 Phantom,
* works
|-
| <!--Description-->GTX 550 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x1201
| <!--Revision-->
| <!--2D-->{{Maybe|VESA Doom Doom2 Duke }}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->can hang on boot up on I2C Init or suffer random lockups on OpenGL apps - most need 1 6pin min 400W 24A on the +12V1 / +12V2 dual 12V rails of the computers' power supply unit - 192 cuda cores - case dual slots used - will not work with PCI-e 1.0a slots -
* not working eVGA GeForce GTX 550 Ti (1024 MB) (01GP31556KR) -
* untested asus Extreme, eVGA GeForce GTX 550 Ti (1024 MB) (01GP31557KR) - -
* works
|-
| <!--Description-->GT 545 and OEM GF116
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 4.2 opencl 1.x - GDDR5 with OEM only -
|-
| <!--Description-->GT530 OEM
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 6.11 Pixel Text}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->96 cuda cores - 1GB or 2GB DDR3 128bit
|-
| <!--Description-->GT520 520GT
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->untested 48 cuda cores - DDR3 64bit
|-
| <!--Description-->510, GT 530
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D 6.11 Pixel Text}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> ddr 3 - 50w max -
|-
| <!--Description-->GT610 Fermi GF119
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVS 315 300 GF119S
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{No|VESA}} needs special dms-59 cable
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 fermi 315 PNY VCNVS315-T 1Gb DDR3 but needs special dms-59 cable -
|-
| <!--Description-->GT630 GF108 Fermi
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->not accelerated 2015 - like the GT730 below - 96 cuda cores whilst kepler version has 384 - 128bit to keplers' 64bit bandwidth - kepler has 2GB DDR3
* not working Gigabyte
* DDR3
* GDDR5
* works
|-
| <!--Description-->Geforce GT 730
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe| use VESA 6.11 Pixel Text}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> fermi version has 96 cuda cores 128bit GF108
* not working Asus
* works
|-
| <!--Description-->nVIDIA Quadro 4000
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}} 2 dp ports
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->142W 2Gb GDDR5 - PCI Express 2.0 x16 ; full Height card with 1x 6-Pin PCIe power need - CUDA Cores 256 - OpenGL 4.5
|-
| <!--Description-->nVIDIA Quadro 5000
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2011 200W 2.5Gb GDDR5 320 bit - PCI Express 2.0 x16 full Height card with 2x 6-Pin PCIe power need -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce GTX Titan GeForce GTX Titan Black GeForce GTX Titan Z
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVE0 family (Kepler) GeForce 600 GeForce 700 GeForce GTX Titan Kepler
|-
| <!--Description-->GeForce GTX 780 GeForce GTX 780 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->PureVideo HD 6" or "VP6" (Nvidia Feature Set E or VDPAU Feature Set E) significantly improved performance when decoding H.264 and MPEG-2
|-
| <!--Description-->GeForce GTX 770
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->opengl 4.4 opencl 1.1
|-
| <!--Description-->GeForce GTX 760 GeForce GTX 760 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce GT 740
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce GT 730 Kepler
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> two versions fermi 96 cores 128bit GF108 and kepler 384 cores 64bit GK208
|-
| <!--Description-->680gtx GK104 core gtx680 680m
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVE0 family (Kepler)
|-
| <!--Description-->GTX 690 Kepler NVE0
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->pci-e 3.0, OpenGL 4.4 OpenCL 1.1
|-
| <!--Description-->GTX 670
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GTX 660 GTX 660 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GTX 650 GTX 650 Ti GTX 650 Ti Boost
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVE0 family (Kepler) most need 1 6pin psu
* not working asus ENGTX560 DC/2DI/1GD5
* works
|-
| <!--Description-->Geforce GT 640
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* 128bit DDR3
* 192bit DDR3 1.5 to 3GB 50W
* 128bit GDDR5 75W
|-
| <!--Description-->GT 620 GT 640
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->Quadro K2000
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 - 50w single slot - NVE7 (GK107) -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce 750ti, GeForce 900
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->[https://nouveau.freedesktop.org/FeatureMatrix.html NV110] Maxwell -
|-
| <!--Description-->Nvidia GTX 750
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x1381
| <!--Revision-->0xa2
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2026 nvidia test
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->GM206 2nd gen maxwell PureVideo HD 7" or "VP7" (Nvidia Feature Set F or VDPAU Feature Set F) adds full hardware-decode of H.265 HEVC Version 1 (Main and Main 10 profiles and full fixed function VP9 (video codec) hardware decoding
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Quadro K620 quadro p620 2gb gddr5 128bit and quadro p1000 4gb gt1030 30w
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 50w slim low profile -
|-
| <!--Description-->GeForce gtx 1060, GeForce 1070
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NV130 Pascal
|-
| <!--Description-->gtx 1050ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->NV130 family (Pascal)
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV132 (GP102) NVIDIA Titan (X, Xp), GeForce GTX 1080 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV134 (GP104) GeForce GTX (1070, 1080)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV136 (GP106) GeForce GTX 1060
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV137 (GP107) GeForce GTX (1050, 1050 Ti)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV138 (GP108) GeForce GT 1030
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV162 (TU102) NVIDIA Titan RTX, GeForce RTX 2080 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV164 (TU104) GeForce RTX (2070 Super, 2080, 2080 Super)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2020 NV160 family (Turing) unified gsp-rm firmware - best starting point for Vulkan support
|-
| <!--Description-->NV166 (TU106) GeForce RTX (2060, 2060 Super, 2070)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV168 (TU116) GeForce GTX (1650 Super, 1660, 1660 Ti, 1660 Super)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV167 (TU117) GeForce GTX 1650
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->gtx 1650ti super
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2018 old style
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV172 (GA102) GeForce RTX (3080, 3090)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 av1 decoding ampere
|-
| <!--Description-->NV174 (GA104) GeForce RTX (3060 Ti, 3070, 3080 Mobile)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->NV170 family (Ampere)
|-
| <!--Description-->NV176 (GA106) GeForce RTX (3050, 3060)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV177 (GA107) GeForce RTX 3050
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV192 (AD102) GeForce RTX 4090
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV193 (AD103) GeForce RTX 4080
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->NV190 family (Ada Lovelace)
|-
| <!--Description-->NV194 (AD104) GeForce RTX (4070, 4070 Ti)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV196 (AD106) GeForce RTX 4060 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV197 (AD107) GeForce RTX 4060
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
|}
==== nouveau mobile integrated ====
If you purchased a notebook with an NVidia sticker on it, most of the time you have a optimus based one, ie Intel CPU+GPU melded with Nvidia GPU, Optimus was slated at one point to go into desktop PCs but the industry ended up rejecting that concept
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|-
| GeForce 6100 nForce 405
| 0x
| 0x03D1 0x0242
| 0x0
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
|
|-
| <!--Description-->GeForce 6100 nForce 400
| <!--Vendor ID-->
| <!--Product ID-->0x03D2
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce 6100 nForce 420
| <!--Vendor ID-->
| <!--Product ID-->0x03D5
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce 6150 LE
| <!--Vendor ID-->
| <!--Product ID-->0x0241
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6150SE nForce 430
| 0x
| 0x03D0
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| working
|-
| <!--Description-->GeForce 6150
| <!--Vendor ID-->
| <!--Product ID-->0x0240
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7150M / nForce 630M
| <!--Vendor ID-->
| <!--Product ID-->0x0531
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7000M / nForce 610M
| <!--Vendor ID-->
| <!--Product ID-->0x0533
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7050 PV / NVIDIA nForce 630a
| <!--Vendor ID-->
| <!--Product ID-->0x053A 0x053B
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Geforce IGP 7025 nForce 630a
| 0x
| 0x053E
| 0x0
| <!--2D-->{{Yes|some}}
| <!--3D-->{{Yes|some}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No| }}
| some support on some chipsets
|-
| GeForce 7100 / nForce 630i (C73)
| 0x10de
| 0x07e1
| 0x0a2
| <!--2D-->{{Maybe}}
| <!--3D-->{{Maybe}}
| <!--Analogue-->{{Maybe}}
| <!--Digital-->{{Maybe}}
| <!--Laptop LCD-->{{N/A}}
| Icaros 2.0.3 and Gigabyte 73-pvm-s2h rev. 1.0 but will not boot on [https://ae.amigalife.org/index.php?topic=806.msg8765#new Acer x270 with Icaros 2.3]
|-
| <!--Description-->GeForce 7150 / NVIDIA nForce 630i
| <!--Vendor ID-->
| <!--Product ID-->0x07E0
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7050 / NVIDIA nForce 610i
| <!--Vendor ID-->
| <!--Product ID-->0x07E3
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Geforce IGP 8100 (nForce 720a)
| 0x
| 0x084F
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
|
|-
| GeForce 8100P
| 0x
| 0x0847
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
|
|-
| <!--Description-->Geforce 8200 8300 nForce 730a
| <!--Vendor ID-->
| <!--Product ID-->0x084A 0x0848 (GeForce 8300) 0x0849 (GeForce 8200) 0x084B (GeForce 8200)
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->working on some 8300's with Icaros 1.5 but others untested
|-
| <!--Description-->nForce 780a SLI
| <!--Vendor ID-->
| <!--Product ID-->0x084C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->nForce 750a SLI
| <!--Vendor ID-->
| <!--Product ID-->0x084D
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Nvidia Geforce IGP 9300 (nForce MCP7a)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->works
|
|-
| <!--Description-->9400 (ION)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->If AROS detects GPU chipset, works well
|-
| <!--Description-->9700M ()
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Geforce ION 2
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->works well
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce Go 6150
| <!--Vendor ID-->
| <!--Product ID-->0x0244
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6100
| <!--Vendor ID-->
| <!--Product ID-->0x0247
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6200
| <!--Vendor ID-->
| <!--Product ID-->0x0164 0x0167
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6400
| <!--Vendor ID-->
| <!--Product ID-->0x0166 0x0168
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->Sony Laptop
|-
| <!--Description-->GeForce Go 6800
| <!--Vendor ID-->
| <!--Product ID-->0x00C8
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6800 Ultra
| <!--Vendor ID-->
| <!--Product ID-->0x00C9
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600
| <!--Vendor ID-->
| <!--Product ID-->0x0144
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600 TE/6200 TE
| <!--Vendor ID-->
| <!--Product ID-->0x0146
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600
| <!--Vendor ID-->
| <!--Product ID-->0x0148
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600 GT
| <!--Vendor ID-->
| <!--Product ID-->0x0149
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7200
| <!--Vendor ID-->
| <!--Product ID-->0x01D6
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7300
| <!--Vendor ID-->
| <!--Product ID-->0x01D7
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->untested
|-
| <!--Description-->GeForce Go 7400
| <!--Vendor ID-->
| <!--Product ID-->0x01D8
| <!--Revision-->
| <!--2D-->
| <!--3D-->works 2D and 3d issues though
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7800
| <!--Vendor ID-->
| <!--Product ID-->0x098
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7800 GTX
| <!--Vendor ID-->
| <!--Product ID-->0x0099
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7950 GTX
| <!--Vendor ID-->
| <!--Product ID-->0x0297
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7900 GS
| <!--Vendor ID-->
| <!--Product ID-->0x0298
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7900 GTX
| <!--Vendor ID-->
| <!--Product ID-->0x0299
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7600
| <!--Vendor ID-->
| <!--Product ID-->0x0398
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7600 GT
| <!--Vendor ID-->
| <!--Product ID-->0x0399
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 6610 XL
| <!--Vendor ID-->
| <!--Product ID-->0x0145
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 6700 XL
| <!--Vendor ID-->
| <!--Product ID-->0x0147
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce 8700M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0409
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8600M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0425
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8400M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0426
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8400M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0427
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8400M G
| <!--Vendor ID-->
| <!--Product ID-->0x0428
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8800M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x0609
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8800M GTX
| <!--Vendor ID-->
| <!--Product ID-->0x060C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9500M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0405
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8600M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0407
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9650M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0408
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9400M GT
| <!--Vendor ID-->
| <!--Product ID-->0x042C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9300M G
| <!--Vendor ID-->
| <!--Product ID-->0x042E
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9100M G
| <!--Vendor ID-->
| <!--Product ID-->0x0844
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9800M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x0628
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9700M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x062A
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9800M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x062C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9600M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0647
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9600M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0648
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9600M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0649
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9500M G
| <!--Vendor ID-->
| <!--Product ID-->0x064B
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9300M GS
| <!--Vendor ID-->
| <!--Product ID-->0x06E5
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9200M GS
| <!--Vendor ID-->
| <!--Product ID-->0x06E8
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9300M GS
| <!--Vendor ID-->
| <!--Product ID-->0x06E8
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->NV50 (G80) Quadro FX (4600 (SDI), 5600)
Quadro FX (2800M, 3600M, 3700, 3700M, 3800M, 4700 X2), VX 200
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV94 (G94) 9700M GTS, 9800M GTS, GeForce G 110M, GT 130(M), GT 140, Quadro FX (1800, 2700M)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV84 (G84) Tesla 8700M GT, GeForce 9500M GS, 9650M GS
Quadro FX (370, 570, 570M, 1600M, 1700), NVS 320M
NV86 (G86) GeForce 8300 GS, 8400 (GS, M G, M GS, M GT), 8500 GT, GeForce 9300M G
Quadro FX 360M, NVS (130M, 135M, 140M, 290)
GeForce GTS 150(M), GTS 160M, GTS 240, GTS 250, GTX (260M, 280M, 285M), GT (330, 340)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV96 (G96) 9650M GT, 9700M GT
GeForce G 102M, GT 120
Quadro FX (380, 580, 770M, 1700M)
NV98 (G98) GeForce 8400 GS, GeForce 9200M GS, 9300 (GE, GS, M GS)
GeForce G 100, G 105M
Quadro FX (370 LP, 370M), NVS (150M, 160M, 295, 420, 450)
Quadro CX, FX (3800, 4800, 5800)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVA3 (GT215) GeForce GT (240, 320, 335M), GTS (250M, 260M, 350M, 360M) Quadro FX 1800M
NVA5 (GT216) GeForce GT (220, 230M, 240M, 325M, 330M), 315
Quadro 400, FX 880M, NVS 5100M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVA8 (GT218) Tesla GeForce 8400 GS, GeForce 210M, 305M, 310M, Quadro FX 380M, NVS 2100M, 3100M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVAA (MCP77/MCP78) GeForce 8100, 8200, 8300 mGPU / nForce 700a series, 8200M G
NVAC (MCP79/MCP7A) ION, GeForce 9300, 9400 mGPU / nForce 700i series, 8200M G, 9100M, 9400M (G)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVAF (MCP89) GeForce 320M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NVC0 (GF100) Fermi GeForce GTX 480M, Quadro 5000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVC1 (GF108) GeForce GT 415M, 420M, 425M, 435M, 520M, 525M, 540M, 550M, 555M, 630M, 635M, 640M LE, Quadro 1000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVC3 (GF106) Fermi GeForce GT 445M, 555M, 630M, 635M), GTX 460M, Quadro 2000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVC4 (GF104) GeForce GTX 470M, 485M, Quadro 5000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVCE (GF114) GeForce GTX 570M, 580M, 670M, 675M,
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVD7 (GF117) Fermi Geforce GT 620M, 625M, (some) 630M, 710M, 720M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVD9 (GF119) Fermi GeForce 410M, GT 520M, 520MX, 610M, Quadro NVS 4200M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NVE4 (GK104) GeForce GTX 670M, 680M, 775M, 780M, 860M, Quadro K3000M, K3100M, K4000M, K4100M, K5000M, K5100M,
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVE7 (GK107) GeForce GT640M, 645M, 650M, 710M, 720M, 730M, 740M, 745M, 750M, 755M, GTX 660M, K500M, K1000M, K1100M, K2000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GTX 1650 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2019 turing architecture - last old skool support pre Vulkan
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rtx 2050 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 ampere architecture best starting point for vulkan support
|-
| <!--Description-->rtx 2060 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rtx 4060 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
|}
====radeon.hidd====
Michel Shultz ''2D'' graphics driver (standard on most distributions but only for very old GPUs) and bearsofts updated 2013 around Icaros 1.3.1
3D is not implemented by AROS yet but could cover these AMD chipsets
<pre>
2014 SI AMD HD 7xxx
2016 GCN3rd AMD R5E R7E
2019 GCN5th AMD Vega 8
2022 RDNA1 AMD RX5500 desktop only
2023 RDNA2 AMD 680M 780M
2024 RDNA3 AMD 880M 890M
2025 RDNA3.5 AMD 8060S strix halo and AI
2027 RDNA4 AMD
</pre>
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! 2D
! 3D
! Analogue Output
! Digital Output
! Laptop LCD
! Comments
|-
| 7000 (r100)
| 0x1002
| 0x5159
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->{{Maybe|vga15 pin connection but not s-video}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.3
|-
| 7500 (rv200 but still r100 based)
| 0x1002
| 0x5157
| 0x
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->{{Yes|vga15}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.3
|-
| 8000 8500 (r200)
| 0x1002
| 0x514c (8500LE)
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.4
|-
| 9000 9100 9250 (r200)
| 0x1002
| 0x5964 (9000) 0x514d (9100)
| 0x0001
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->{{Maybe|VGA15 but not s-video}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.4
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| 9600 9800 (r300)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1
|-
| x300 x600 (r300)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1
|-
| x700, x800 ([http://en.wikipedia.org/wiki/Radeon_R600 r420])
| 0x
| 0x554d (R430 x800xl)
| 0x0
| <!--2D-->{{Yes|new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1 - x800 XL PCIE (problem with mouse-pointer, some part of the pointer is not transparent)
|-
| x1300 x1550 x1600 x1800 x1900 x1950 ([http://en.wikipedia.org/wiki/Radeon_R520 r520])
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes|new driver}}
| <!--3D-->{{no}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| HD2400 HD2600 HD2900 ([http://en.wikipedia.org/wiki/Radeon_R600 r600])
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|some features with new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 3.3 open CL 1.2 TeraScale architecture
|-
| HD3400 HD3600 HD3800 (r600)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|some features with new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->pci-e 2.0, openGL 3.3
|-
| HD4300 HD4500 HD4600 HD4700 HD4800 ([http://en.wikipedia.org/wiki/Radeon_R600 r700])
| 0x1002
| 0x
| 0x0
| <!--2D-->{{Maybe|but some later cards need 3D engine for faster and more flexible 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 3.3 - DDR3 - GDDR5 was one of AMD's aces for the 4800 series - 4670 liked -
|-
| HD6900 cayman series
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|some features with new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 3.3 open CL not mature (2014) -
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| HD5400 Series HD5430 HD5450 HD5470
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2010 openGL 3.3 openCL - GDDR3 -
|-
| HD5500 Series HD5550 HD5570 HD5600 Series HD5650 HD5670 HD5700 Series HD5750 HD5770
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 3.3 openCL - GDDR5
|-
| HD 5800 Series HD5850 HD5870 HD5900 Series HD5950 HD5970 - HD6xxx not NI chipset ([http://en.wikipedia.org/wiki/Evergreen_(GPU_family) r800 evergreen])
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 openGL 3.3 openCL - DDR5 pci-e 2.1 best avoided for all pci-e 1.0 mobos - Ati TeraScale2 architecture -
|-
| HD6450 [http://en.wikipedia.org/wiki/Northern_Islands_(GPU_family) Northern Islands chipset]
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> - DDR3 -
|-
| HD6600 Series HD6650 HD6570 HD6600 Series HD6650 HD6670
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2011 - DDR5 -
Radeon HD 8470 11 TeraScale 2
Radeon HD 8350 11 TeraScale 2
Radeon HD 7510 11 TeraScale 2
Radeon HD 6550D 11 TeraScale 2
Radeon HD 6530D 11 TeraScale 2
Radeon HD 6410D 11 TeraScale 2
Radeon HD 6370D 11 TeraScale 2
Radeon HD 6320 11 TeraScale 2
Radeon HD 6310 11 TeraScale 2
Radeon HD 6290 11 TeraScale 2
Radeon HD 6250 11 TeraScale 2
|-
| HD6800 Series HD6850 HD6870 HD6700 Series HD6790 to HD6990
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2011 - DDR5 - AMD TeraScale3 -
|-
| <!--Description-->HD7450-HD7670
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 OpenGL but not Vulkan
Radeon HD 7660D 11 TeraScale 3
Radeon HD 7560D 11 TeraScale 3
Radeon HD 7540D 11 TeraScale 3
Radeon HD 7480D 11 TeraScale 3
Radeon HD 6930 11 TeraScale 3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->HD7750 HD 7770 / R7 250X HD7850 HD7870 / R9 270X HD 7950 / R9 280 HD 7970 / R9 280X [http://en.wikipedia.org/wiki/Southern_Islands_(GPU_family) Southern Islands]
*AMD Radeon R7 250XE Cape Verde XT
*AMD Radeon R7 M465X Cape Verde
*AMD Radeon R9 255 Cape Verde PRX
*AMD Radeon HD 7750 Cape Verde PRO
*AMD Radeon R7 250E Cape Verde PRO
*AMD Radeon HD 8740 Cape Verde PRO
*AMD Radeon HD 7730 Cape Verde LE
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 pci-e 3.0 1st Gen GCN architecture -
|-
| <!--Description-->R5 430, FirePro W2100,
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 50W+ openGL openCL 1/3 speed of gtx750ti 1st gen gcn1
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->HD7790 [ Sea Islands ]
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 openGL 4.1 open CL - GCN2.0 Vulkan 1.0 introduced a Shader Engine (SE) comprising one geometry processor, up to 44 CUs (Hawaii chip), rasterizers, ROPs, and L1 cache and Graphics Command Processor for faster audio/video - suits Vulkan 1.1
|-
| <!--Description-->r5 240 240x (slow) R7 250 250x (faster) HD 7790 / R7 260 260X / R7 360 to R5 350 (fast) and last one R5 430 OEM Plus (slow again)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 50W+ GCN 1st gen - openGL 4.x openCL 1.x Vulkan 1.0
|-
| <!--Description-->R9 290 / R9 390 R9 290X / R9 390X
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2014 GCN 1.1 2nd Gen architecture - openGL 4.x openCL 1.x Vulkan 1.1 -
|-
| <!--Description-->R9 Fury Nano
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 GCN 1.2 3rd Gen - openGL openCL vulkan
|-
| <!--Description-->r-200 series r8 275 285 295 375 [Volcanic Islands]
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 GCN1.2 - openGL 4.x openCL 1.x Vulkan 1.2
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 [https://gpuopen.com/download/AMD_GCN3_Instruction_Set_Architecture_rev1.1.pdf GCN3]
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Radeon™ RX 5700/5600/5500 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 GCN 4 - OpenGL 4, Vulkan 1.3 -
|-
| <!--Description-->Radeon™ RX 400/500 Series like rx vega 580
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->Radeon™ Pro WX 9100, x200 Series and Radeon™ Pro W5700/W5500 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Radeon™ RX 7900/7600 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->Radeon™ RX 6900/6800/6700/6600/6500 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|}
==== amd radeon mobile integrated ====
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|-
| <!--Description-->ATI RC410 [Radeon Xpress 200M]
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x5a62 0x5955 0x5974 (200m)
| <!--Revision-->0x00
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->
|-
| <!--Description-->Mobility Radeon 7500
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x4c57 (7500)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->
|-
| <!--Description-->Mobility Radeon 9000
| 0x1002
| 0x4966 (9000)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->
|-
| <!--Description-->Mobility Radeon 9500 9550 (rv360) 9600 (rv350)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon 9800 (rv420)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon X300 (RV370) X600 (RV380)
| 0x1002
| 0x (RV370) 0x5657 (RV380)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon X700 (RV410) X800 (RV423)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon X1200 (RS69M0)
| 0x1002
| 0x791f
| 0x0
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->X1200 IGP (RS690)
|-
| <!--Description-->Mobility Radeon X1300 X1350 X1400(rv515) X1600 (rv530) X1650 (RV535) X1800 (rv520) x1900 (rv570)
| 0x1002
| 0x71c7 (X1650)
| 0x009e
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon 2100
| 0x1002
| 0x796e (2100)
| 0x0
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{No|}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 2400 (rv610) HD2600 (rv630)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 3100 HD3200 HD3450 3470 (RS780MC RV620) 3670 (M86-XT RV635) HD3870 (M88-LXT RV670)
| 0x1002
| 0x9610 and 0x9612 (HD3200) 0x9614 (HD3300)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 4200 4250 (RV620)
| 0x1002
| 0x (HD4200) 0x9715 (HD4250)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 4330 4530 4550 (M92 RV710) 4650 (M96-XT RV730) 4670 RV730XT 4830 (M97 RV740) 4850 (M98 RV770)
| 0x1002
| 0x (HD4350) 0x9442 (RV770) 0x9490 (HD4670)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 530v (M92 RV710) HD 550v (M96 RV730)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->no support yet
|-
| <!--Description-->Mobility Radeon HD 5430 HD5650 (cedar Park LP)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->no support yet
|-
| <!--Description-->Radeon HD 6250 6290 6310 6320 6350M (Redwood Capilano PRO)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->no support yet
|-
| <!--Description-->AMD 7640G, 8450G, 8550G, 8650G Northern Islands
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 Last real support for old graphics standard before Vulkan takeover
|-
| <!--Description-->R5 M230 M240 M255 - R7 M260 M265 (Kaveri Crystal series with Mantle and HSA)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->2015 Maybe better with Vulkan
|-
| <!--Description-->R5E R7E
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->2016 bristol ridge GCN 3.0 IGP (Carrizo Mobile)
|-
| <!--Description-->AMD Vega 3, 6, 8, 11 iGP
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2018 raven ridge GCN 5th Gen
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->5500m 5600m 5800m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA1 NaviX1 Zen 2
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rx680m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA2 NaviX2 Zen 3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->phoenix apu 1103
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 RDNA3 NaviX3 zen 4
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
==== AMDGPU Vulkan desktop ====
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Kaveri 290 290X, 260 260X
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 AMDGPU Vulkan
|-
| <!--Description-->R9 285 / R9 380 R9 380X Fury / Fury X
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->opengl 4 opencl 1 3rd Gen GCN architecture
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX470 RX460 RX480 RX580 polaris10
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 opengl 4 opencl 2 4th Gen GCN architecture vulkan 1.3
|-
| <!--Description-->RX460 RX560D polaris11
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 opengl 4 opencl 2 4th Gen GCN architecture vulkan 1.3
|-
| <!--Description-->RX580 polaris20
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 opengl 4 opencl 2 4th Gen GCN architecture vulkan 1.3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX 5000 5500 Navi 1x
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RNDA 1
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX 6000 Navi 2x
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RNDA 2 Mesa 21.3 decode av1
|-
| <!--Description-->RX6000
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX 7000
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 RNDA 3 navi
|-
| <!--Description-->RX7000
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->RX9070 rx 9060 XT
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2025 rdna4 navi
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2026 udna (aka rdna5)
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
|}
==== AMDGPU Vulkan mobile ====
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->R5E R7E
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->2016 bristol ridge GCN 3.0 IGP (Carrizo Mobile)
|-
| <!--Description-->Vega 8
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> GCN 5
|-
| <!--Description-->Vega iGP 3, 6, 8, 11
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2018 raven ridge - Graphics Core Next (GCN) 5th gen -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->5500m 5600m 5800m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA1 NaviX1 Zen 2
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rx680m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA2 NaviX2 Zen 3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->phoenix apu 1103
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA3 NaviX3 zen 4
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
fyi if a notebooks with two graphic cards, the integrated Intel card (id 0x7d) for low power usage and a discrete Radeon card (id 0x56) which should be used for GPU-intensive applications. By default the Intel card is always used
[https://wiki.archlinux.org/title/ATI Gallium Radeon HD] is not ported yet but is [https://www.phoronix.com/scan.php?page=news_item&px=Linux-5.9-AMDGPU-Stats really big] and complex so another solution may have to be [https://discuss.haiku-os.org/t/the-graphics-acceleration-can-of-worms/10515/5 found] like [https://discuss.haiku-os.org/t/vulkan-lavapipe-software-rendering-is-working-on-haiku/11363/10 vulkan] where support starts from very recent ISA GCN islands HD7000s cards only
*Vulkan
*Gallium
Vulkan software renderer allows to prepares the infrastructure for hardware rendering. Primary difference between software and hardware renderer is output to regular RAM vs GPU RAM, the rest is almost the same. It is possible to render to GPU RAM offscreen.
bare bones basics data flow
application,>>> api/opengl/vulkan>>>>, jit compiler, >>>>memory manger, >>>>gpu hardware
so you need to have a compiler that takes your api call/program/shaders/drawing commands and turns them into a program the gpu can render.
the vulkan to amd gpu compiler for shaders and textures is nearly os agnostic iirc as long as you have solid posix compliance
Unlike OpenGL, Vulkan does not depend on windowing system and it have driver add-on system with standardized API (Mesa also have OpenGL driver add-ons, but it have non-standard Mesa-specific API). OpenGL may need more work for windowing system related code at this point but developing Vulkan on real hardware is more strategic than developing OpenGL, since now Zink 3 running on Vulkan compensates for the lack of OpenGL support by giving performance similar to native accelerated OpenGL
RadeonGfx use client-server model with client-server thread pairs. For each client thread that calls 3D acceleration API, server side thread is created. If client thread terminates, server side thread also exit.
==Rough gfx comparison==
<pre>
Group 1
GeForce RTX 5090 5070 5060 5050
GeForce RTX 4090 4070 4060 4050
Group 2
GeForce RTX 2070
Radeon RX 7600
Quadro RTX 5000
Radeon PRO W6600
GeForce RTX 2060 12GB
Radeon PRO W7500
Quadro GP100
Radeon RX 6800S
GeForce RTX 3070 Laptop GPU
GeForce GTX 1080
GeForce RTX 3060 8GB
Quadro RTX 4000
Radeon Pro W5700
Radeon RX 6600
GeForce RTX 2080 (Mobile)
Radeon RX 7700S
Radeon RX 6700S
Radeon RX 6600S
Quadro RTX 5000 (Mobile)
GeForce GTX 1070 Ti
GeForce RTX 4050 Laptop GPU
Radeon Pro Vega 64X
Radeon RX 5700
Radeon RX Vega 64
GeForce RTX 2060
GeForce RTX 2070 Super with Max-Q Design
Group 3
Radeon RX 6600M
GeForce GTX 1070
Radeon RX 6650M
GeForce RTX 3060 Laptop GPU
Radeon RX Vega 56
Radeon RX 6700M
GeForce RTX 2080 with Max-Q Design
Radeon RX 6800M
GeForce GTX 980 Ti
Radeon R9 Fury
GeForce GTX 980
Quadro M5500
Radeon R9 390X
Radeon RX 580
Radeon RX 5500
Radeon RX 6550M
GeForce GTX 1660 Ti with Max-Q Design
GeForce GTX 780 Ti
GeForce GTX 970
Radeon R9 290X
Radeon RX 480
Radeon RX 5600M
Quadro RTX 3000 with Max-Q Design
Radeon R9 290X / 390X
Ryzen 5 4600HS with Radeon Graphics
Radeon R9 290
Radeon Pro 5500 XT
Radeon R9 M490 *
GeForce GTX 780
Radeon RX 6500M
Quadro M5500
GeForce GTX 1060 with Max-Q Design
Radeon RX 6500
Radeon RX 5300
Intel Arc A770M
GeForce GTX 1650 Ti
Radeon Pro 580X
Radeon RX 6400
GeForce RTX 2050
Ryzen 9 4900HS with Radeon Graphics
Radeon Ryzen 9 6900HS
GeForce GTX 980M
Quadro M5000M
Radeon RX 6300
GeForce GTX 1650 Ti with Max-Q Design
Radeon Pro 570
Ryzen 9 6900HS with Radeon Graphics
GeForce GTX 1050 Ti
Quadro M4000M
Radeon R9 280X 380X
GeForce GTX 1650 with Max-Q Design
GeForce MX570
Radeon R9 280X
Radeon R9 380
Radeon 780M
GeForce GTX 960
GeForce GTX 970M
Quadro M4000M *
GeForce GTX 680
Group 4
Radeon RX 6500M
Quadro M5500
Radeon Pro WX 7100
GeForce GTX 1060 with Max-Q Design
GeForce GTX 1650
Intel Arc A730M
Radeon HD 7970
Radeon R9 M395X
Radeon R9 M485X
Radeon R9 M480 *
Radeon R9 M295X
Radeon R9 M390X *
FirePro W7170M *
Radeon R9 M395
Radeon R7 370
Radeon RX 5500M
GeForce GTX 590
GeForce GTX 880M
GeForce GTX 950
Radeon R9 270X
GeForce GTX 660 Ti
GeForce GTX 760
GeForce GTX 780M
Quadro K5100M
GeForce GTX 680MX
Radeon HD 7870
GeForce GTX 965M
Quadro M3000M *
GeForce GTX 870M
Radeon R9 M290X
Radeon HD 8970M
Radeon Ryzen 7 7735U (680M), Radeon Ryzen 7 7735HS (680M 12C)
GeForce GTX 580
Radeon HD 6970
GeForce GTX 1050
GeForce GTX 680M
GeForce GTX 775M
GeForce GTX 1630
FirePro M6100
Radeon HD 7970M
Radeon R9 M390 *
GeForce GTX 750 Ti
Group 5
GeForce GTX 570
GeForce GTX 480
GeForce GTX 960M
Quadro M2000M *
Quadro K5000M
Quadro K4100M
GeForce GTX 770M
GeForce GTX 860M
GeForce GTX 675MX
GeForce GTX 950M
GeForce GTX 850M
Quadro M1000M
Radeon R9 M280X
Radeon HD 7950M *
GeForce GTX 560 Ti
Radeon HD 6870
GeForce GTX 470
GeForce GT 1030
GeForce MX330
Ryzen 5 PRO 5650GE with Radeon Graphics
Ryzen 7 5800HS
FirePro 3D V8800
GeForce MX250
Group 6
Radeon Pro WX 3200
Ryzen 7 PRO 5750G with Radeon Graphics
Radeon Ryzen 5 5600H
Ryzen 5 Pro 4650G with Radeon Graphics
Radeon Ryzen 7 5800U
Ryzen 7 7730U with Radeon Graphics
Radeon Ryzen 7 5825U
Radeon Pro WX 4150
Radeon Ryzen 5 PRO 4655G
Ryzen 5 4600G with Radeon Graphics
Radeon Ryzen 5 PRO 4655GE
GeForce GTX 485M
FirePro W6150M
Ryzen 7 5800U with Radeon Graphics
Ryzen 5 7530U with Radeon Graphics
Ryzen 7 4800U with Radeon Graphics
Radeon R9 M470
Ryzen 3 PRO 5350G with Radeon Graphics
Radeon RX Vega Ryzen 3 5300U
Ryzen 7 5825U with Radeon Graphics
Ryzen 5 PRO 4400G with Radeon Graphics
Radeon Ryzen 7 PRO 4750GE
Radeon Ryzen 7 4800U
FirePro V7900
Radeon HD 5970
Radeon Ryzen 7 7700X 8-Core
Radeon Ryzen 5 PRO 5650G
Radeon Ryzen 5 4400G
Radeon Ryzen 5 PRO 5650GE
Radeon RX 550X
FirePro V8800
Radeon RX Vega Ryzen 5 5500U
GeForce MX150
Quadro K3100M
Ryzen 7 PRO 5850U with Radeon Graphics
Radeon HD 6970M
Radeon R7 250X
Intel HD 5600
Ryzen 3 4300GE with Radeon Graphics
GeForce GTX 460
Ryzen 7 5700U with Radeon Graphics
Radeon Ryzen 5 7530U
Quadro K620
Ryzen 3 PRO 5350GE with Radeon Graphics
Intel Iris Pro P580
Intel UHD Graphics P630
Ryzen 5 4600H with Radeon Graphics
Ryzen 5 PRO 7530U with Radeon Graphics
Radeon HD 5870
Radeon HD 6870
Ryzen 7 4700G with Radeon Graphics
Ryzen 5 5600U with Radeon Graphics
Radeon HD 7770
Ryzen 3 Pro 4350G with Radeon Graphics
Radeon Ryzen 5 5625U
GeForce GTX 745
Radeon Ryzen 7 4850U Mobile
Radeon Ryzen 3 PRO 7330U
Quadro M600M
Radeon Ryzen 5 5500U
Ryzen 5 5560U with Radeon Graphics
Ryzen 7 4800H with Radeon Graphics
Group 7
GeForce 945M
Ryzen 5 PRO 4650GE with Radeon Graphics
FirePro M5100
Radeon Ryzen 5 5600U
Radeon Ryzen 5 PRO 4500U
GeForce GTX 580M
Ryzen 7 PRO 5875U with Radeon Graphics
Ryzen 3 5300GE with Radeon Graphics
Radeon R9 M385
Quadro 5000M
Radeon Ryzen 7 4700U
Ryzen 5 PRO 5650U with Radeon Graphics
Radeon Ryzen 7 PRO 4750U
Ryzen 7 4700U with Radeon Graphics
Ryzen 7 PRO 4750U with Radeon Graphics
FirePro V7800
Radeon R9 350
Ryzen 3 4300G with Radeon Graphics
Radeon Vega 11 Ryzen 5 PRO 3350G
Radeon Ryzen 5 5560U
GeForce GTX 460 SE
Radeon Pro W5500M
Radeon Vega 11 Ryzen 5 PRO 3400G
Ryzen 5 5500U with Radeon Graphics
Ryzen 5 PRO 4500U with Radeon Graphics
GeForce GT 645
GeForce GTX 765M
Radeon R9 M385X
Ryzen 5 5625U with Radeon Graphics
Ryzen 3 PRO 7330U with Radeon Graphics
Radeon HD 5850
Radeon Vega 11 Ryzen 5 PRO 2400G
Intel Iris Pro 580
Radeon HD 6850
Intel Iris Xe MAX
Radeon Ryzen 7 PRO 5875U
Radeon Ryzen 5 7600 6-Core
GeForce GTX 470M
Ryzen 3 5300G with Radeon Graphics
GeForce GTX 670MX
Radeon RX 640
Qualcomm Adreno Gen 3
Radeon R7 450
GeForce GTX 675M
Radeon Pro WX 4130
Intel Iris Xe MAX 100
Quadro 5000
Radeon RX 570X
Radeon HD 7700-serie
Ryzen 5 4600U with Radeon Graphics
Ryzen 3 PRO 4350GE with Radeon Graphics
Radeon Vega 8
Group 8
GeForce MX230
GeForce GTX 765M
Quadro K4000M
Iris Pro Graphics P580 *
Iris Pro Graphics 580 *
GeForce GTX 645
Quadro M520
GeForce GTX 570M
GeForce MX130
Radeon RX 540
Radeon Ryzen 5 PRO 5675U
Intel UHD Graphics 770
Radeon RX Vega 11 Ryzen 7 3750H
Radeon Vega 11 Ryzen 5 PRO 3400GE
Radeon HD 5850
GeForce GTX 675M
GeForce GTX 580M
Radeon HD 6990M
Radeon R9 M385X *
Radeon R9 M470X *
Radeon R9 M470 *
Radeon R9 M385 *
Radeon R9 M380 *
Radeon R9 M370X
Radeon R9 M275
Radeon HD 7770
GeForce GTX 485M
GeForce GTX 460 768MB
Radeon HD 6790
GeForce GTX 285M SLI
Quadro K3100M
FirePro W5170M *
GeForce GTX 670MX
Quadro 5010M
GeForce GTX 760M
GeForce GTX 670M
Group 9
GeForce 940MX *
Maxwell GPU (940M, GDDR5)
FirePro M8900
Radeon HD 6970M
Radeon R9 M270
Radeon HD 8870M
Radeon HD 7870M
Quadro K3000M
GeForce GTX 570M
FirePro M6000
FirePro M5100
Quadro K2100M
Radeon HD 5770
GeForce GTX 550 Ti
GeForce GTX 280M SLI
Radeon HD 6950M
Radeon R7 250
GeForce GT 755M
GeForce GTX 660M
GeForce 845M
Radeon HD 8850M
Radeon R9 M365X
Radeon R9 M265X
Ryzen 5 PRO 4400GE with Radeon Graphics
FirePro W5130M *
Radeon Vega 8 Ryzen 5 3500U
Radeon HD 7850M
Radeon HD 8790M
FirePro W4170M
FirePro W4190M
FirePro W4100
Radeon Vega 6 Ryzen 3 3300U
Quadro 4000M
GeForce GTX 470M
GeForce GTX 480M
GeForce GT 750M
Iris Pro Graphics 6200
Quadro K1100M
GeForce 940M
Radeon R9 M375
GeForce 930MX *
Radeon R7 M380 *
Radeon R7 M370
Quadro M600M *
GeForce GT 650M
Quadro K620M
GeForce 840M
Radeon R7 M275DX
GeForce GT 745M
Radeon HD 7770M
GeForce GTX 560M
Radeon R7
Iris Pro Graphics 5200
GeForce GT 740M
GeForce 930M
Radeon HD 4850
Group 10
Iris Graphics 550 *
GeForce 830M
Iris Graphics 540
Quadro M500M *
Quadro K2000M
GeForce GTS 450
GeForce GTX 260M SLI
GeForce GT 735M
Mobility Radeon HD 5870
GeForce 825M
Quadro 5000M
FirePro M4000
FirePro M7820
Radeon HD 6870M
GeForce 9800M GTX SLI
Radeon HD 8830M *
Radeon HD 8770M
Radeon R7 M260X
GeForce GTX 460M
GeForce 920MX *
GeForce GT 730M
Radeon HD 7750M
GeForce GT 645M *
FirePro M4100
Radeon HD 8750M
Radeon R6 A10-9600P 4C+6G
Quadro 3000M
Radeon R7 M270
Radeon R7 M265
Quadro FX 3800M
GeForce GTX 285M
Mobility Radeon HD 4870
GeForce GT 640M
Radeon R7 (Kaveri)
Radeon R8 M365DX
Radeon R7 M460 *
Radeon HD 7730M
Radeon R7 M360
GeForce GTX 280M
Radeon HD 8690M
Quadro FX 3700M
Radeon R7 M340
GeForce 920M
Radeon R6 M340DX
HD Graphics 530
HD Graphics P530
Tegra X1 Maxwell GPU
Radeon R7 M260
Radeon R6
Group 11
Mobility Radeon HD 4860
FirePro M7740
Mobility Radeon HD 4850
GeForce GTX 260M
GeForce 9800M GTX
Quadro FX 2800M
Radeon HD 8670D
Radeon HD 7690M XT
FirePro M5950
GeForce GT 640M LE
Radeon R6 (Kaveri)
Radeon HD 8650M *
Radeon HD 8730M
Radeon HD 6770M
GeForce GT 635M
GeForce GT 555M
Radeon R7 A10 PRO-7800B
Radeon HD 5670
Mobility Radeon HD 5850
Radeon HD 6850M
Quadro 2000M
GeForce 9800M GT
GeForce 8800M GTX
Quadro FX 3600M
GeForce GT 445M
GeForce GTS 360M
Group 12
GeForce GT 240
Radeon R7 PRO A10-9700
Radeon HD 7690M
HD Graphics 5600
Radeon HD 8570D
Radeon HD 8670M
Radeon R6 M255DX
Radeon HD 7660D
Radeon HD 6750M
Quadro K1000M
GeForce GT 550M
Radeon HD 8590M *
GeForce GTS 260M
GeForce GTS 160M
GeForce 9800M GTS
GeForce GT 430
Radeon HD 6830M
Mobility Radeon HD 5830
Radeon HD 6730M *
GeForce 9800M GS
Mobility Radeon HD 4830
Mobility Radeon HD 5770
Radeon HD 6570M
Radeon HD 8650G
Radeon HD 7670M
GeForce GT 630M
Radeon HD 7560D
GeForce GTS 150M *
Radeon R5 M335
Radeon R5 M430 *
Radeon R5 M330
Radeon R5 M255
Radeon Vega 3
Quadro 1000M
GeForce 820M
FirePro W2100
HD Graphics 520 620
Iris Graphics 6100
GeForce GT 720M
GeForce 8800M GTS
Radeon R5 M240
Radeon R5 M320 *
Radeon R5 M230
Radeon R5 M315 *
Mobility Radeon HD 5750 *
Radeon HD 8570M
Radeon R7 PRO A10-8850B
HD Graphics 6000
Quadro K610M
Radeon HD 8550M
Iris Graphics 5100
GeForce GT 540M
Mali-T880 MP12 *
Radeon HD 8610G *
Radeon HD 6650M
HD Graphics 4600
Mobility Radeon HD 5730
HD Graphics 5500
Radeon R5 (Carrizo) *
Radeon R5 (Kaveri)
FirePro M5800
NVS 5400M
GeForce 710M
Radeon HD 7660G
GeForce GT 435M
HD Graphics 5000
Quadro K510M *
Radeon HD 5570
Radeon HD 6550M
Radeon HD 7590M *
GeForce GTS 350M
GeForce GTS 250M
Radeon HD 6630M
Radeon HD 7650M
FirePro M2000
Radeon HD 7570M
Radeon HD 7630M
Quadro FX 1800M
Mobility Radeon HD 5650
Radeon HD 8510G *
Radeon HD 6530M
Radeon HD 8550G
Quadro K500M *
GeForce GT 625M *
GeForce GT 620M
GeForce GT 525M
Radeon HD 6550D *
Radeon HD 7610M
Radeon HD 7620G
Radeon HD 8470D
Radeon HD 7640G
Adreno 530
GeForce ULP K1 (Tegra K1 Kepler GPU)
HD Graphics 4400
HD Graphics 510 515 *
NVS 5200M
Mobility Radeon HD 565v
Radeon HD 7550M
Mobility Radeon HD 4670
GeForce GT 425M
GeForce 9700M GTS
Radeon HD 6645G2 *
Quadro FX 2700M
GeForce GT 335M
Radeon HD 7600G
Mobility Radeon HD 3870
Mobility Radeon HD 4650
GeForce GT 220
GeForce GT 420M
Radeon HD 7530M *
Mobility Radeon HD 3850
GeForce GT 330M
Quadro FX 880M
Quadro NVS 5100M
GeForce GT 240M
Radeon HD 7490M *
HD Graphics 5300
Radeon HD 7510M *
GeForce Go 7950 GTX
Quadro FX 3500M
GeForce 8700M GT SLI
GeForce 9700M GT
GeForce GT 230M
Mobility Radeon HD 550v
Radeon HD 7480D
HD Graphics 4000
Mali-T760 MP8
Radeon HD 6620G
HD Graphics (Broadwell) *
Adreno 430
Radeon R5 (Beema/Carrizo-L)
Radeon R4 (Beema) (Kaveri)
HD Graphics (Skylake) *
Radeon HD 6450 GDDR5
Radeon HD 7500G
Radeon HD 8450G
Radeon HD 7470M
Radeon HD 6490M
Radeon HD 8400
Mali-T880 MP4
GeForce GT 520MX
Radeon HD 7520G
GeForce GT 325M
GeForce Go 7800 GTX SLI
GeForce 8600M GT SLI
GeForce Go 7900 GS SLI
GeForce GT 130M
NVS 4200M
GeForce Go 7900 GTX
Quadro FX 2500M
Radeon HD 8350G
Radeon HD 8330
GeForce 9650M GS
GeForce 9650M GT
Radeon R3 (Mullins/Beema)
GeForce 8700M GT
Quadro FX 1700M
Quadro FX 1600M
GeForce Go 7800 GTX
GeForce Go 7900 GS
Quadro NVS 320M
Quadro FX 1500M
GeForce 9600M GT
GeForce GT 220M
Quadro FX 770M
GeForce GT 120M
Radeon HD 7450M
GeForce 610M
GeForce 705M
Mali-T760 MP6
Radeon HD 6470M
FirePro M3900 *
GeForce GT 520M
Radeon HD 7420G
Mobility Radeon HD 3670
Mobility FireGL V5725
PowerVR GX6450
Adreno 420
HD Graphics (Haswell)
Radeon HD 6520G
Radeon HD 8310G *
GeForce 320M
GeForce GT 320M
Mobility Radeon HD 2600 XT
Mobility Radeon X1900
Mobility Radeon X1800XT
Mobility Radeon X1800
GeForce Go 6800 Ultra
GeForce Go 7800
GeForce 9600M GS
GeForce 9500M GS
Radeon HD 7400G
Radeon HD 6480G *
Mobility Radeon HD 2700
GeForce GT 415M
GeForce 410M
Radeon HD 7370M
Adreno 418
HD Graphics (Cherry Trail)
Radeon HD 6370M
Radeon HD 8280
Mobility Radeon HD 5470
Radeon HD 6450M
Radeon HD 7430M *
Mobility Radeon HD 3650
Mobility FireGL V5700
Mobility Radeon HD 5145
Mobility Radeon HD 545v
Radeon R6 (Mullins) *
Radeon HD 8240
Radeon HD 8250
Mobility Radeon HD 4570
Quadro FX 570M
Mobility Radeon HD 5450 *
Radeon R2 (Mullins/Beema) *
GeForce 8600M GT
Mobility Radeon HD 2600
HD Graphics 3000
Quadro FX 380M
GeForce 310M
GeForce G210M
NVS 3100M
GeForce 405M
GeForce 315M
GeForce Go 7600 GT
GeForce 9500M G
GeForce 8600M GS
NVS 2100M
GeForce Go 7700
GeForce Go 6800
Quadro FX Go 1400
Mobility Radeon X800XT
Radeon HD 6430M *
Radeon HD 6380G *
Mobility Radeon HD 5430
Radeon HD 8210
Mobility Radeon HD 540v
Mobility Radeon HD 4550
HD Graphics 2500
HD Graphics (Ivy Bridge)
Quadro NVS 310
Radeon HD 7350M *
Radeon HD 6350M *
Mobility Radeon HD 4530
Mobility Radeon HD 4350
Radeon HD 4350
GeForce 305M
Mobility Radeon X1700
Mobility FireGL V5250
Mobility Radeon X2500
GeForce Go 7600
Quadro NVS 300M
Mobility Radeon X800
Mobility Radeon X1600
Mobility FireGL V5200
Mobility Radeon 9800
GeForce Go 6600
Mobility Radeon X1450
Mobility Radeon X700
Mobility FireGL V5000
GeForce G 110M
Quadro NVS 295
Radeon HD 6330M *
Mobility Radeon HD 4330
GeForce 8400M GT
Quadro NVS 140M
HD Graphics 2000
GeForce 9500M GE *
GeForce 9400M (G) / ION (LE)
HD Graphics (Sandy Bridge) *
Adreno 330
PowerVR G6430
PowerVR GX6250
PowerVR G6400
HD Graphics (Bay Trail)
Mali-T628 MP6
Mali-T760 MP4
Chrome9HD *
Radeon HD 7340
Radeon HD 6320 *
Radeon HD 7310
Radeon HD 6310 *
Radeon HD 8180
Mobility Radeon HD 3470
GeForce 9300M G
ION 2 *
GeForce 9300M GS
Quadro FX 370M
Quadro NVS 160M
GeForce 9200M GS
Mobility Radeon HD 3450
Mobility Radeon HD 3430
Mobility Radeon HD 3410
Mobility Radeon HD 2400 XT
Radeon HD 4270
Radeon HD 4250
Radeon HD 7290 *
Radeon HD 6290 *
Radeon HD 4200
Graphics Media Accelerator (GMA) HD Graphics
Radeon HD 6250
Quadro NVS 150M
Quadro FX 360M
Mobility Radeon X1350
Mobility Radeon X1400
GeForce 9100M G
GeForce 8400M GS
Quadro NVS 135M
Mobility Radeon HD 2400
Radeon HD 3200
Radeon HD 4225 *
Radeon HD 4100 *
SGX554MP4
Mali-T628 MP4
Mobility Radeon HD 3400 *
Radeon HD 3100
GeForce 8400M G
Mali-T860 MP2
Quadro NVS 130M
GeForce 8200M G
Graphics Media Accelerator (GMA) 4700MHD
Graphics Media Accelerator (GMA) 4500MHD
Graphics Media Accelerator (GMA) 4500M
Mali-T604 MP4
GeForce Go 7400
Quadro FX 350M
Quadro NVS 120M
GeForce Go 7300
GeForce Tegra 4 *
PowerVR G6200
Adreno 405 *
Quadro NVS 110M
Mobility Radeon X600
Mobility FireGL V3200
Mobility FireGL V3100
Mobility Radeon HD X2300
Mobility Radeon 9700
Mobility FireGL T2e
Mobility Radeon X1300
GeForce4 4200 Go
Mobility Radeon 9600
Mobility FireGL T2
Mobility Radeon 9550
GeForce Go 7200
GeForce Go 6400
Mobility Radeon X300
GeForce Go 6250
GeForce Go 6200
GeForce FX Go 5700
Quadro FX Go 1000
GeForce FX Go 5600 / 5650
Radeon Xpress X1270
Radeon Xpress X1250
Radeon Xpress X1200
Graphics Media Accelerator (GMA) X3100
Mali-T624
Adreno 320 *
Mali-T760 MP2
Mali-T720 MP4
Mali-450 MP4
Graphics Media Accelerator (GMA) 3650 *
GeForce 7190M *
GeForce 7150M
Radeon Xpress 1150
GeForce Go 6150
GeForce Go 6100
GeForce 7000M
Graphics Media Accelerator (GMA) 3600 *
Mobility Radeon 9200
Mobility FireGL 9000
GeForce FX Go 5200
Mobility Radeon 9000
GeForce 4 488 Go
GeForce 4 460 Go
GeForce 4 440 Go
GeForce 4 420 Go
Graphics Media Accelerator (GMA) 3150
Graphics Media Accelerator (GMA) 950
SGX545 SGX544MP2 SGX543MP2 *
Mali-T720 MP2
Mali-T720
Adreno 302 304 305 306
Mobility Radeon 7500
Mobility FireGL 7800
Graphics Media Accelerator (GMA) 900
Radeon Xpress 200M
Radeon Xpress 1100
Mirage 3+ 672MX
Mirage 3 671MX
Mali-400 MP4 *
GeForce ULP (Tegra 3) *
VideoCore-IV *
Adreno 220 225*
Vivante GC1000+ Dual-Core
Mali-400 MP2 *
GeForce ULP (Tegra 2) *
Graphics Media Accelerator (GMA) 600 *
SGX540 *
Graphics Media Accelerator (GMA) 500
Adreno 205 *
Adreno 203 *
GC800 *
SGX535
SGX531
SGX530
Adreno 200 *
Mali-200 *
GeForce 3 Go *
GeForce 2 Go 200 / 100
Mobility Radeon 9100 IGP
Mobility Radeon 9000 IGP
Mobility Radeon M7
Mobility Radeon M6
Chrome9 HC
Extreme Graphics 2
Mobility Radeon 7000 IGP
Radeon IGP 340M
Radeon IGP 320M
S3G UniChrome Pro II
S3G UniChrome Pro
Castle Rock
Mirage 2 M760
Mirage M661FX
S3 Graphics ProSavage8
Mobility 128 M3
SM502 *
</pre>
Kernel-space drivers like '''radeon''' (older AMD driver for older GPUs), '''amdgpu''' (newer driver for newer GPUs, allows using a few new features), i915, nouveau and a few others. They are what handles the gory details of talking to the GPU itself (writing to proper registers, handling its memory directly, configuring outputs, and so on). Unfortunately most of what they're exposing can be only consumed by a single user of that GPU, which is why we need...
DRM and DRI (Direct Rendering Manager/Infrastructure) controls access to the GPUs, provides interfaces for talking to the GPU concurrently by multiple apps at once (without them breaking each other) and lets the system perform the most basic tasks like setting proper resolution and such if no userspace apps understand how to talk to the GPU exposed. DRI and DRM expose the GPU interfaces mostly as-is, not in a "vendor-neutral" portable way - if you don't have an application developed specifically for a GPU you have, it won't work.
"let's create a vendor-neutral interface for graphics so that apps can ignore the GPU-specific bits and get right to the drawing!" - which is what OpenGL is. User-space drivers implement the OpenGL specification and expose it as an OpenGL library to apps (like games, browsers, etc) instead of the GPU. Mesa is the most popular collection of open-source user-space drivers and contains a few user-space drivers for different GPU families: '''radeonsi''' for most modern AMD GPUs (and '''r600g''', r300g and others for older ones), '''i915/i965''' for old/new Intel GPUs and '''nouveau''' for Nvidia GPUs.
There's also Gallium, which is a bunch of utilities and common code shared among these drivers - if certain things can be done once and work everywhere, they'll land in Gallium and benefit all the drivers. Most Mesa drivers use Gallium (radeonsi, nouveau, software renderers), some don't (intel after gma950).
Displaying 2D windows supports device-specific 2D drivers as well, but nowadays most of these are no longer needed as the modesetting can handle most hardware on its own. As the DRM/DRI got some additional interfaces for what used to be hardware-specific (setting resolutions, refresh rates, etc) and software requiring accelerated 2D drawing was optimized OpenGL-based renderers, dedicated 2D acceleration is slowly going away. Since around 2012, the 3D part of the graphics card deals with 2D operations.
Modern GPUs can also decode video!? There's VDPAU (NVIDIA & AMD GPUs) and VA-API (AMD & Intel GPUs) that can also talk to the GPU exposed via DRM/DRI and issue proper commands to decode/encode a given video stream. Those drivers are GPU-specific too.
So let's say you have some example GPUs, here's how example stacks could look like:
* AMD Radeon HD8750: amdgpu -> DRM/DRI -> Mesa (radeonsi)
* AMD Radeon HD4850: radeon kernel driver -> DRM/DRI -> Mesa (r600g) -> games/apps/etc.
* NVIDIA GeForce 460: nouveau kernel driver -> DRM/DRI -> Mesa (nouveau) -> games/apps.
* Intel GMA950: i915 kernel driver -> DRM/DRI -> Mesa (i945) -> games/apps.
{| class="wikitable sortable" width="90%"
! width="15%" | Description
! width="15%" | Analog Output
! width="15%" | Digital Output
! width="15%" | Laptop LCD
! width=30%" | Comments
|-
| <!--Description-->Fudomi GC888A
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->1080p 100in throw projector
|-
| <!--Description-->Vamvo VF320 (720P)
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->720p 90in
|-
| <!--Description-->Happrun H1
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->1080p 90in
|-
| <!--Description-->Umbolite Magcubic HIPPUS HY320 Mini
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->720p 100in
|-
| <!--Description-->Zentality A10 Plus
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->720p 110in
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->nexigo nova mini
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->nebula mars 3
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->epson lifestudio flex plus portable projector
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->dangbei freedo
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->benq gv50
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
Unless your computer uses a Firewire chipset manufactured by Texas Instruments, FireWire interfaces are likely to act buggy.
AROS is unlikely to ever support FireWire.
Bluetooth is similarly unlikely to be ever supported due to huge cost to be certified.
No, x86 PCMCIA card.resource at the moment. Writing card.resource would be a similar amount of work to writing a typical driver. However, it might be complicated by having to support a variety of PCMCIA-controller chipsets like TI PCI1225, PCI1410, PCI1420, 1450, PCIxx12 and O2, etc. m68k card.resource does not really have many higher level functions, most functions are really simple or poke Gayle registers directly. only exception is CopyTuple(). Amiga card.resource has one significant flaw: it's single-unit. would need card.resource and pccard.library. There was talk in the past of designing a new API for PCMCIA because card.resource only supports one slot, but since most modern laptops only have one slot anyway, I think it might be worthwhile to implement card.resource as-is (at least as a first step). pccard.library would be trivial to port. So, a new API is needed.
iuv7dxufru08oe3prry5ekreykbotr4
4641126
4641124
2026-06-25T13:39:38Z
Jeff1138
301139
4641126
wikitext
text/x-wiki
Google translation into [http://translate.google.com/translate?hl=en&sl=auto&tl=de&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support German], [http://translate.google.com/translate?hl=en&sl=auto&tl=fr&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support French], [http://translate.google.com/translate?hl=en&sl=auto&tl=nl&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Dutch], [http://translate.google.com/translate?hl=en&sl=auto&tl=it&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Italian], [http://translate.google.com/translate?hl=en&sl=auto&tl=es&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Spanish], [http://translate.google.com/translate?hl=en&sl=auto&tl=hi&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Hindi],
[http://translate.google.com/translate?hl=en&sl=auto&tl=zh-CN&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Chinese Simplified],
[http://translate.google.com/translate?hl=en&sl=auto&tl=pl&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Polish],
[http://translate.google.com/translate?hl=en&sl=auto&tl=ru&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Russian],
{{ArosNav}}
[[#Audio Chipsets]]
[[#Graphic GFX Chipsets]]
[[#Rough gfx comparison]]
[[#]]
==x86 Native Environment==
AROS should run on almost any i386 PC hardware so long as the CPU is newer than an i486, and has a "Floating Point Unit (FPU)". Ideally around 700Mhz and above with at least 256MB of memory is recommended for desktops and around 1GHz and at least 256MB for laptops/notebooks/netbooks. For web browsing, etc above 1GB is usually needed and offers the option to run web browsers, media players and other hard disk heavy usage from RAM: disk.
Motherboards supported
* Most Intel mobos are supported (Skt 775 is ok but newer is better) - additional pci / pci-e cards may be needed for networking, audio, etc
* AMD based socket 939 am2 am2+ am3+, fusion and am4 ryzen based systems work but additional pci / pci-e cards may be needed
Supported graphics cards (gfx)
* Nvidia 2D and 3D 2005-2017.
64bit AROS Nouveau covers '''2D''' 8xxxgs and higher to GTX 900s and '''3D''' from .
32bit AROS supports '''2D''' from TNT through to fermi gtx5xx and '''3D''' acceleration fx5xxx to gtx4xx.
* Intel GMA 2D and 3D 2006-2009.
'''2D''' for many old netbooks and motherboards. '''3D''' for many early netbooks and motherboards
* AMD/ATI 2D only and '''no 3D'''. 1999-2005.
Desktop ie external monitor support only (no laptop internal support) for very early Radeon 7000 through to x600. Experimental 2D version for up to HD3xxx came later
* VESA 2D fallback modes for all graphic cards (GPUs) and with [http://www.youtube.com/watch?v=HKCHZFYj9Kk screen dragging].
It's worth noting however that support isn't guaranteed. Nor will potential power of a card reflect its performance under AROS.
Sound wise there are
* HDaudio support for onboard intel and AMD netbooks, ultrabooks, notebooks and motherboards (2005 to 2020)
* some AC97 codec support for very old motherboards and laptops (ie pre 2004)
* PCI and some PCI-E C-Media CMI8738 for desktop plugin cards
* PCI Creative Soundblaster EMU10K1 cards [http://amigaworld.net/modules/news/article.php?storyid=2512 SBLive]
* PCI semi professional some early VIA Envy24 desktop sound cards
* PCI Sound Blaster 128 aka SB16
Supported [http://en.wikibooks.org/wiki/Aros/Platforms/x86_Network_support network] which could be desktop, laptop, etc
* PCI-E Realtek rtl8169 which also includes the rtl8111 and rtl8110
* PCI Realtek rtl8139 and includes rtl8101 and rtl8100
* PCI intel pro100
* Broadcom 44xx 10/100 integrated in laptops around 2005
* VIA 10/100
* 3com Etherlink 10/100
* Realtek rtl8029 10mbit
Wireless wifi
* atheros 5000 wireless
*realtek 8187 usb
It is very hard to recommend a completely supported motherboard because as soon as newer motherboards arrive so their features change subtly, often introducing non supported parts like ethernet and audio. It is a moving target.
* mini-itx motherboard will only get you 1 pci or pci-e slot
* micro mATX or uATX will have more, typically 2 pci-e or pci slots which helps if any onboard features are not supported.
* full atx will have more slots available
'''N.B''' It is frustrating when a piece of hardware is not supported. Hardware documentation can run to over 100 pages and a lot of hardware do not have any public documentation anyway. Chips from different manufacturers for sound, graphics, SATA, etc. vary just as much, unless they follow a standard such as [https://github.com/acidanthera/AppleALC/wiki/Supported-codecs HDAudio codecs], AHCI etc.
Coding drivers is a far cry from Hello World programs or even a port of existing software. If you do actually want to try then get a hold of documentation on the relevant hardware and start there. Alternatively you could try to find some '''BSD''', MIT or MPL licence drivers as a point of reference. Please , do not think you can just adapt strings in a driver for different strings, it does not work that way. You will '''need''' to start from scratch for each new bit of hardware. Device driver programming require '''embedded''' skills, like manipulation of bits within registers, good debugging skills, dealing with interrupts, lots of patience, etc.
The following specific chipsets and drivers are also available - use Tools/PCITool to confirm Vendor and Product IDs - Please let us know any mistakes or any information to be added, to this General Chat list on [https://arosworld.org/ AROS World]
: Brief Timeline
: 2000-12-06 HIDD first mouse.hidd completed ([http://msaros.blogspot.com/ Michal Schulz])
: 2001-03-31 BOOT first boot from floppy disk with IDE device
: 2001-10-30 BOOT first cd bootable version
: 2002-01-27 HIDD first pci.hidd added (Michal Schulz)
: 2002-04-13 BOOT software HDToolBox added ()
: 2003-04-03 HIDD vesa2.hidd graphic modes added ()
: 2004-03-08 HIDD new pci and ata (pata) devices worked on (Michal Schulz)
: 2004-03-17 HIDD nVidia 2D driver appears (Michal Schulz)
: 2005-01-05 AHI AHI v6 audio system ported (Martin Blom)
: 2005-01-06 AHI SBLive SoundBlaster Live driver ported (Georg Steger)
: 2005-02-04 AHI AC97 playback only driver added (Michal Schulz)
: 2005-06-27 NIC amiTCP stack ported with 3com, NE2000, prism2 drivers (Neil Cafferkey)
: 2005-08-25 NIC nForce2 support added (Michal Schulz)
: 2005-12-24 NIC Intel Pro100 network driver added (Neil Cafferkey)
: 2006-03-25 HIDD ATI radeon 2D driver added (Michal Schulz)
: 2007-03-06 HIDD vesa 1.0 video driver added (Pavel Fedin)
: 2007-03-08 HIDD dospackets and FAT filesystem (Rob Norris)
: 2007-03-21 HIDD usb initial commit (Michal Schulz)
: 2007-10-01 BOOT Installer added (Neil Cafferkey)
: 2007-11-29 PORT 64bit x86 added (Michal Schulz)
: 2008-04-12 BOOT GRUB2 added (Alain Greppin and Nick Andrews)
: 2008-08-26 NIC RTL8139 added ([http://kalamatee.blogspot.com/ Nick Andrews])
: 2008-10-22 PORT to SAM440ep (ppc) (Michal Schulz)
: 2009-02-25 PORT to efika (ppc) (Michal Schulz)
: 2009-05-18 HIDD poseidon usb2.0 stack ported to AROS (Chris Hodges)
: 2009-11-18 NIC RTL8169 network driver arrived (Nick Andrews and [http://pagesperso-orange.fr/franck.charlet/oldnews.html Franck Charlet])
: 2009-12-23 AHI HDAudio based Atom CPU and netbook audio driver arrived (Davy Wentzler)
: 2010-03-09 BOOT USB pendrive stick booting available (Neil Cafferkey)
: 2010-05-26 HIDD Intel GMA900 2D graphics card support (Michal Schulz)
: 2010-09-03 NIC Wireless PCI based NIC arrived (Neil Cafferkey)
: 2011-04-30 HIDD Nvidia 2D and 3D nouveau graphics card support (Deadwood)
: 2011-08-30 HIDD Radeon 2D enhanced AMD driver arrives (Bearsoft)
: 2011-09-17 NIC Wireless USB realtek arrives (Neil Cafferkey)
: 2011-12-09 HIDD Intel 945G 3D Gallium graphics support (Sami)
: 2013-02-25 AHI AC97 VIA 686 audio support (Davy Wentzler and Neil Cafferkey)
: 2013-03-31 PORT early Raspberry PI native support (Nik Andrews)
: 2014-01-16 AHI Envy24 audio chipset support (Davy Wentzler and Neil Cafferkey)
: 2017-02-17 PORT Symmetric MultiProcessing smp added for x86 64bit (Michal Schulz)
: 2018-10-20 PORT Big Endian ARM
: 2021-11-26 NIC Broadcom 44xx ethernet (Neil Cafferkey)
: 2023-01-12 NIC Nvidia MCP61 ethernet (Neil Cafferkey)
: 2025-11 HIDD xHCI USB3 and isoc (Nik Andrews)
[[#top|...to the top]]
===Audio Chipsets===
'''If sound beeps in AHI prefs after Music set then some support is there. Select more than one channel for multiple audio streams, set frequency up to 44 kHz or higher and set the volume if not already set. Ensure you set the music unit 0 to 3 which allows the extra features of the audio card like microphone, line-out, etc).'''
====1996-2000 sb128.audio aka SB16 PCI====
*2021 5.27
as per CREATIVE's website, the model number is the first two digits on the front and first two digits on the back. my card says CT4810 and 161TK110B 995; this translates to CT4816 as the model.
The original AudioPCI 3000 card with the ES1370 had a master clock crystal for 44.1 kHz (22.5792 MHz), used an AKM codec (AK4531, non-AC97) and had 4 channel output; Creative later modified the design with a crystal for 48 kHz (24.576 MHz) and Sigmatel AC97 codec (a CT4700 SB128 with a CT5507 chip, AK4531, 22.5792 MHz crystal and TDA7360 speaker power amp). The issue with these cards involved never quite eliminate the effects of resampling on the 64V, it also shows signs of undersized coupling caps. These Ensoniq cards automatically engaged headphone amplifier (with a 4565 opamp).
Porting involved [http://repo.or.cz/w/AROS.git/commit/b60abd12967144a844980c422ea9e99c056eabca 40897], [http://repo.or.cz/w/AROS.git/commit/b7d6511fca6430a63fbaaa390b4f51bf0203a460 40898 configure], [http://repo.or.cz/w/AROS.git/commit/f51034cd22759a4ec3a2547bddb3a7169d956eaa 40900 bugs], [http://repo.or.cz/w/AROS.git/commit/4f43fc38e3489ea45d12b7b5ba6fff50b69c5746 40901 further bugs], [http://repo.or.cz/w/AROS.git/commit/d23c78aec75f049484b6916d27b6804ce858bb2c 40913 memory IO fixes], [http://repo.or.cz/w/AROS.git/commit/d256860fe3035016952e88d143c6f2611997f2f3 40914 irq fix].
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| Ensoniq AudioPCI 1000
| 0x1274
| 0x5000
|
| {{unk}}
| {{unk}}
| untested - es1370 (u?) AK4531 (u?)
|-
| Ensoniq AudioPCI
| 0x1274
| 0x5000
| 0x00
| {{yes}}
| {{maybe}}
|
|-
| CT4700 Sound Blaster PCI 64 (audioPCI 3000)
| 0x1274
| 0x5000
| 0x7c
| {{yes}}
| {{maybe}}
| works - opamp JRC4565(u?) [http://en.wikipedia.org/wiki/Ensoniq_ES1370 es1370] (u?)
|-
| CT4750 Sound Blaster 64/PCI
|
|
|
| {{unk}}
| {{unk}}
| untested - 4565-1056W (u1) stac9708t(u2) [http://arstechnica.com/civis/viewtopic.php?f=6&t=916891 ct5880-dcq] (u3) 24wc012 (u4)
|-
| CT4751 (SB128PCI)
| 0x1274
| 0x8001
|
| {{unk}}
| {{unk}}
| untested - [http://en.wikipedia.org/wiki/Sound_Blaster#Ensoniq_AudioPCI-based_cards es1371] (u?)
|-
| CT4810 Creative AudioPCI64V
| 0x1274
| 0x1371
| 0x06
| {{yes}}
| {{maybe}}
| works
|-
| CT4811 (SB Vibra 128)
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4812 (Vibra 128)
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4813
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4815
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4816 es1373 (vibra 128)
|
|
|
| {{unk}}
| {{unk}}
| untested but this card has creative's ES1373 as the main chip(U1). it is also different from the other CT4810 (vibra128) in that it does not have a second chip in U2 position. Also there is only one jumper JP1 (2X3).
|-
| CT5801 HP
|
|
|
| {{unk}}
| {{unk}}
| untested - es1373 (u3)
|-
| CT5803 Gateway
| 0x1274
| 0x1371
| 0x08
| {{yes}}
| {{maybe}}
| works 4565-0005b jrc (u1) 4297a-jq ztae0c0002 (u2) es1373 (u3)
|-
| CT4740
| 0x1274
| 0x1371
| 0x08
| {{yes}}
| {{yes}}
|
|-
| CT5805 Compaq OEM Premier Sound Presario 7
|
|
|
| {{unk}}
| {{unk}}
| untested - es1373 (u3)
|-
| CT5806 (Sound Blaster AudioPCI 128D)
|
|
|
| {{unk}}
| {{unk}}
| untested - 4297A-JO EP (u?) ZTAPWC9933 (u2) es1373 (u3)
|-
| CT5807 Dell OEM Dimension 8100
|
|
|
| {{unk}}
| {{unk}}
| untested - es1373 (u?)
|-
| CT5808
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4730 Sound Blaster AudioPCI 64V Ectiva EV1938
| 0x1102
| 0x8938
|
| {{unk}}
| {{unk}}
| untested
|-
| CT5880 on various motherboards
| 0x1274
| 0x5880
|
| {{unk}}
| {{unk}}
| untested [http://www.xbitlabs.com/articles/mainboards/display/ga-6rx.html Gigabyte GA-6RX] (VIA ApolloPro 266 2001], Gigabyte GA-6VM7-4E mobo, [http://active-hardware.com/english/reviews/mainboard/ga-7vtx.htm Gigabyte GA-7VTX] (KT266 2001), Gigabyte [http://www.amdboard.com/gigabytega7vtxh.html GA-7VTXH] (KT266A 2001), [http://www.amdboard.com/gigabytega7vrxp.html Gigabyte 7VRXP] mobo (KT333 2002), MSI MS-6309, MS-6318, MS-6337 (815E Pro), MS-6339 (850Pro) and MS-6340, PCChips Motherboard M571 TXPRO, Soltek SL-65ME+,
|-
| VMware Virtual Workstation(TM)
| 0x1274
| 0x1371
| 0x02
| {{Yes|but not Hi-Fi modes}}
| {{maybe}}
| works
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
<pre>
Revision 0x04 = ES1371 REV_ES1373_A
Revision 0x06 = ES1371 REV_ES1373_B
Revision 0x07 = ES1371 REV_CT5880_A
Revision 0x02 = CT5880 REV_CT5880_C
Revision 0x03 = CT5880 REV_CT5880_D
Revision 0x04 = CT5880 REV_CT5880_E
Revision 0x09 = ES1371 REV_ES1371_B
Revision 0x00 = EV1938 REV_EV1938_A
Revision 0x08 = ES1371 REV_ES1373_8
</pre>
====1999-2001 via-ac97.audio====
*2021 5.10
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| <!--Description-->694X with 686A KT133 PM133 or 693A with VT8231
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3058
| <!--Revision-->
| <!--Playback-->{{Yes| }} redirects earphones correctly
| <!--Recording-->{{Yes| }}
| <!--Comments-->audio controller works but depends on the underlying invisible codec used see AC97 section
|-
| <!--Description-->686B KT133A with VT8231
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3058
| <!--Revision-->0x50
| <!--Playback-->{{Yes|}} reroutes ear pieces right
| <!--Recording-->{{Yes|}}
| <!--Comments-->audio controller works but depends on the underlying codec used see AC97 section below
|-
| <!--Description-->686C
| <!--Vendor ID-->0x1106
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->untested
|-
| <!--Description-->KM266 or KT266 with VT8233, KT266A with VT8233A, VT8233C
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3059
| <!--Revision-->0x10
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->KM333 KT333 with VT8235
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3059
| <!--Revision-->0x30
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
| <!--Description-->KM400 KT400 with VT8237, KT600 with VT8237R,
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3059
| <!--Revision-->0x40 0x50 0x60
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
|}
====1998-2003 emu10kx.audio - Creative Labs SoundBlaster Live! and Audigy====
*2021 6.5
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| PCI512 CT4790 (emu10k1)
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested (1st Gen)
|-
| Live CT4620
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Live CT4760
| 0x1102
| 0x0002
| 0x07
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| playback works
|-
| Live Value CT4670
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| works plays stereo (2nd Gen)
|-
| Live Value DELL CT4780
| 0x1102
| 0x0002
| 0x06
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| plays/records stereo - untested 4.1mode
|-
| Live Value Compaq CT4830
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{Maybe}}
| <!--Recording--> {{unk}}
| not working
|-
| Live Value CT4831
| 0x1102
| 0x0002
| 0x00
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Live Value CT4832
| 0x1102
| 0x0002
| 0x07
| <!--Playback--> {{yes}}
| <!--Recording--> {{partial|Line-In only}}
| works
|-
| Live Value CT4832
| 0x1102
| 0x0002
| 0x08
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| works
|-
| Live Value HP CT4870
| 0x1102
| 0x0002
|
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| Works
|-
| Live Value Gateway CT4871
| 0x1102
| 0x0002
|
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Live! Platinum 5.1 SB0060
| 0x1102
| 0x0002
| 0x00
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
| plays audio/records, untested 5.1 (3rd Gen)
|-
| Live 5.1 SB0100 -SFF
| 0x1102
| 0x0002
| 0x00
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| works
|-
| Live 5.1 Player SB0220
| 0x1102
| 0x0002
| 0x0a
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
| plays audio/records stereo, untested 5.1
|-
| Live 5.1 Digital SB0228
| 0x1102
| 0x0002
| 0x0a
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
| working
|-
| Audigy SB0090 (emu10k2)
| 0x1102
| 0x0004
|
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| <!--Description-->Audigy SB0230
| <!--Vendor ID-->0x1102
| <!--Product ID-->0x0004
| <!--Revision-->0x03
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Yes|Mic only}}
| <!--Comments-->5th Dec 2012 - untested optical tos link. contains also IEEE1394/Firewire (untested)
|-
| Audigy 2 Platinum 6.1 SB0240 SB0250 EMU10K2.5
| 0x1102
| 0x0004
| 0x04
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| works
|-
| Audigy 2 PRO SB0280 EMU10K2.5
| 0x1102
| 0x0004
|
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Audigy 2 ZS SB0350
| 0x1102
| 0x0004
| 0x04
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
|
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| Live 5.1 DELL SB0200 SB0203 emu10kx
| 0x1102
| 0x0006
| 0x0
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
|
|-
| Live 24bit SB0410
| 0x1102
| 0x0007
| 0x
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Live 24bit DELL SB0413
| 0x1102
| 0x0007
| 0x
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy LS SB0310
| 0x1102
| 0x0007
| 0x0
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy SE 7.1 SB0570
| 0x1102
| 0x0007
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 2 ZS SB0320 SB0360 (PRO)
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 2 VALUE SB0400
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 4 VALUE SB0610
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 4 PRO SB0380
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| EMU E-MU 0404 PCI (not USB) EM8852
| 0x1102
| 0x000
| 0x0
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver but linux support needs firmware
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
the green jack is for the main speaker pair AND headphones, so manual switching will be required
If your card is wired for the "AC97" standard, then it's up to your headphone jack to switch the green speaker output in and out
the headphone jack has Normally-closed contacts that will open on insertion, which breaks the signal path back to the sound card (FP_RETURN)
====2000-2010 cmi8738.audio - C-Media====
*2021 5.20
;Read [http://amigaworld.net/modules/news/article.php?storyid=2512 more] and imported on [http://repo.or.cz/w/AROS.git/commit/aff741d60160c6a9d7d39c9e004a25ea3aa13847 20th July 2011] and [http://alsa.opensrc.org/Cmipci alsa docs].
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| Audiotrak MAYA EX5
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| cmi8738-sx 4ch
| 0x13f6
| 0x0111
| 0x10
| <!--Playback-->
| <!--Recording-->
| untested
|-
| e3dx hsp56 CMedia 8738-sx 4ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| EDio SC3000D 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Genius SoundMaker Value PCI C3DX
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Guillemot Maxi Sound Muse
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Hercules Gamesurround Muse LT
| 0x13f6
| 0x0111
| 0x10
| <!--Playback--> {{yes}}
| <!--Recording--> {{no}}
|
|-
| Hercules Gamesurround Muse XL LT 5.1
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Inno audio extreme 5.1 cmi8738/lx pci 6ch
| 0x13f6
| 0x0111
| 0x
| <!--Playback-->
| <!--Recording-->
| untested
|-
| M-Audio (Midiman) DiO 2448
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Sabrent SBT-SP6C 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| StarTech PCISOUND4CH 8738sx 4ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Sweex SC012 CMI8738-lx 4ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Terratec 5.1 PCI
| 0x13f6
| 0x0111
| 0x10
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Terratec Aureon Fun 5.1
|
|
|
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| Has SPDIF
|-
| Trust Sound Expert Digital Surround 5.1 (cm8738-mx 6ch)
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Turtle Beach Riviera CMI8738-MX 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| XSonic CMI 8738 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->CMI8738 6ch PCI-E PCI Express version
| <!--Vendor ID-->0x13f6
| <!--Product ID-->0x0111
| <!--Revision-->0x10
| <!--Playback-->{{Yes|}}
| <!--Recording-->{{Maybe|}}
| <!--Comments-->Chinese based card with playback tested so far
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
====2001-2005 ac97.audio====
*6.4 27-12-2008
The AC97 chips were designed to be pinout interchangeable so that the sound support could change easily and quickly without motherboard redesigns
the green jack is for the main speaker pair AND headphones, so manual switching will be required
If your card is wired for the "AC97" standard, then it's up to your headphone jack to switch the green speaker output in and out, the headphone jack has Normally-closed contacts that will open on insertion, which breaks the signal path back to the sound card (FP_RETURN)
The ProductID and VendorID are for the audio controller only - the important additional codec is '''NOT''' so easily identified.
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| <!--Description-->Avance Logic (now Realtek) ALC100 and ALC101 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->ALC200 and ALC201 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->ALC201A and ALC202 and ALC202A codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->ALC650
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| <!--Comments-->most Nforce2 boards plays audio only - Abit NF7, Asus A7N8X, MSI K7N2, Epox 8RDA+, DFI
|-
| <!--Description-->ALC850 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{No}}
| <!--Comments-->no support for via P4P800 chipset on ASUS A8V-E SE Deluxe mobo - ICaros 1.3
|-
| <!--Description-->Realtek ALC653 codec and ALC655 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested Acorp 7NFU400
|-
| <!--Description-->Realtek ALC658 codec ALC658D
| <!--Vendor ID-->0x8080
| <!--Product ID-->0x24c5
| <!--Revision-->0x0
| <!--Playback-->{{Yes|Prefs Music and Units 0-3 set volume control - playback}}
| <!--Recording-->{{No}}
| <!--Comments-->MSI Motherboard on NB 22-09-2012
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->AD1881 SoundMAX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->Analog Devices first AC97
|-
| <!--Description-->AD1881A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Yes}}
| <!--Revision-->
| <!--Comments-->works with VIA Controller - untested Intel etc
|-
| <!--Description-->AD1881B
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1885 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{No}}
| <!--Comments-->Playback only with issues on D845HV but not working on MS-6367 because Units 0-3 have masked volume control
|-
| <!--Description-->AD1886
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1887
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->ADI AD1888 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{no}}
| <!--Recording-->{{No}}
| <!--Comments--> Icaros 1.51
|-
| <!--Description-->AD1980 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->AD1981A codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested IBM X30
|-
| <!--Description-->Analog Devices SoundMax(TM) AD1981B codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| <!--Comments-->plays back only on IBM T41 Thinkpad
|-
| <!--Description-->AD1985 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{No}}
| <!--Comments-->not working ahi prefs freezes on D865GLC mobo ([http://www.xbitlabs.com/articles/multimedia/display/int-sound2_3.html ]
|-
| <!--Description-->AD1986 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{No}}
| <!--Comments-->untested [http://uk.ts.fujitsu.com/rl/servicesupport/techsupport/Boards/Motherboards/Fujitsu/D1931/D1931.htm D1931] but works (Acer Aspire 3610 laptop)
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->Crystal Semiconductors CS4205, CS4202 codecs
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Cirrus Logic CrystalWare 4236
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->Cirrus Logic CrystalClear SoundFusion CS4297 CS4299 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested IBM T23
|-
| <!--Description-->conexant Cx20468-31 codec (id 30)
| <!--Vendor ID-->0x103c
| <!--Product ID-->0x3085
| <!--Revision-->
| <!--Playback-->{{No|AC97 appears in AHI Prefs}}
| <!--Recording-->{{No}}
| <!--Comments-->Tested AspireOS 1.8 on Gateway W322
|-
| <!--Description-->ESS Technology ES1921 AC'97 2.1
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->CMI 6501 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested on ASROCK SKT-AM2 AM2NF3-VSTA
|-
| <!--Description-->codec CMI9738
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->codec CMI9739
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->C-Media CMI 9739A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments--> untested on EPoX 8RDA3+
|-
| <!--Description-->CMedia CMI 9761A codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested ASRocK K7NF2-RAID
|-
| <!--Description-->C-Media CMI9880
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->National Semi conductor (now TI) LM4540, LM4543, LM4545, LM4546, LM4548, LM4549, LM4550 LM4560
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->STAC9708T codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->SigmaTel (now IDT) C-Major STAC 9460 (D/A only), 9461, 9462, 9463, 9200, 9202, 9250, 9251, 9220, 9221, 9223, 9750
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AKM (Asahi Kasei Microsystems) AK 4540, 4543, 4544A, 4545
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->codec VT1616 (VIA Six-TRAC Vinyl Audio)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->VIA VT1612, VT82C686
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->ESStech ESS ES1968 maestro-2
| <!--Vendor ID-->0x125d
| <!--Product ID-->0x1968
| <!--Revision-->0x
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->ESStech ESS ES1978 maestro2e
| <!--Vendor ID-->0x125d
| <!--Product ID-->0x1978
| <!--Revision-->0x
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->ESStech ESS ES1988 maestro3 allegro-1 codec
| <!--Vendor ID-->0x125d
| <!--Product ID-->0x1988
| <!--Revision-->0x12
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->Yamaha AC97 ymf-743 YMF752 YMF753 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->{{No}}
| <!--Comments-->untested ymf-753
|-
| <!--Description-->YMF724 YMF744 YMF-754 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| SIS 7018 / Trident 4dwave DX/NX / ALi 5451
| 0x1039 (0x1023 Trident)
| 0x7018 (0x2000 Trident DX) (0x2001 Trident NX)
| 0x02
| <!--Playback-->{{No}}
| <!--Recording-->{{No}}
| no support - introduced early 2000s
|-
| SIS 7012
| 0x1039
| 0x7012
|
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| working through 1 speaker only took over from SIS7018 (2002 onwards)
|-
| <!--Description-->Wolfson (now Cirrus Logic) WM9701, WM9701A (AC'97 1.03 spec), WM9703, WM9704 (AC'97 2.1), WM9705, WM9706, WM9707, WM9708
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->WM9709, WM9710, WM9711, WM9712, WM971
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->first Microsoft(TM) Xbox DAC sound chip (AC Link compliant D/A converter)
|-
| <!--Description-->Wolfson WM9717
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| Parallels
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested
|-
| VirtualBox
|
|
|
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| working
|-
| VirtualPC
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested
|-
| <!--Description-->Intel 82801AA Proxmox
| <!--Vendor ID-->0x8086
| <!--Product ID-->0x
| <!--Revision-->
| <!--Playback-->{{unk| }}
| <!--Recording-->{{unk| }}
| <!--Comments-->
|-
|}
====2005-20xx HDAUDIO.audio====
*6.36 2025 [https://github.com/aros-development-team/AROS/commit/43b33a9280b10963ca659de2cc3d1cf289b43a87 reset handler]
*6.35 202 []
*6.34 2019 AROS One 1.5 upwards
*6.29 2018
*6.27 2017 update
*6.25 2014 used for most Icaros 2.x
*6.20 July 2012
*6.17 Nov 2011
*6.15 Jun 2011
*[http://www.clusteruk.com/SitePortalPage.aspx?siteid=1&did=109 6.13] Sep 2010
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="5%" |Vendor ID
! width="5%" |Product ID
! width="5%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| <!--Description-->ALC260
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| <!--Description-->ALC262
* ALC262-VD2-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->LQFP-48
|-
| ALC268 codec
| 0x
| 0x
| 0x
| <!--Playback-->{{Yes|Version 6.17 Acer AOA110 and AOA150 netbooks), works (Dell Mini Inspiron 9 and 10v, }}
| <!--Recording-->{{Yes|Version 6.17 remove QUERY and select 'Mic 1' as input. Tested with 6.15 as well using QuickRecord and AE 4.0.23 under Icaros 1.4.}}
| <!--Comments-->AHI UNITS and Music are set to: hdaudio:HiFi 16 bit stereo++ / Frequency 48000 Hz, Volume +0.0 dB. The hdaudio.config in SYS:Prefs/Env-Archive is WITHOUT the QUERY-line. After changing and saving the config-file turn off and start again the computer. Switch from internal loudspeaker to headphone you must turn off the music before plug in the headphone-cable, otherwise there is no output on the socket. Back from line-out to internal speakers it is the same.
|-
| [http://blog.foool.net/wp-content/uploads/linuxdocs/sound.pdf Linux docs ALC269]
* ALC269Q-GR
* ALC269QSRS-GR
* ALC269W-GR
| 0x
| 0x
| 0x
| <!--Playback-->{{Maybe| }}
| <!--Recording-->{{Unk| }}
| <!--Comments-->TQFP 48 pin Power IC Chip From [https://patchwork.kernel.org/project/alsa-devel/patch/1408118123-15849-1-git-send-email-tiwai@suse.de/ ALC269 & co have many vendor-specific setups with COEF verbs, result in the codec stalling]
|-
| [http://www.alsa-project.org/db/?f=0321f8479fd670cd510f9912b1120fe7edcf2e07 ALC269VB]
* ALC269Q-VB5-GR
* ALC269Q-VB6-CG
* ALC269Q-VB6-GR
| 0x10ec
| 0x0269
| 0x100004, 0x100100, 0x100202
| <!--Playback-->{{Maybe|some versions work}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* v1 works Asus eee PC netbook 901/1000HA 1005HA/1008HA, 1001P,
* v2 maybe working Lenovo S9 S10 S10-2 S10-3 under HDAudio version 6.13
* v3 maybe dell wyse 7010
|-
| [http://alsa-project.org/db/?f=9c1746c5957b0ce72ff9cfffa312e97d14baf785 ALC269VC aka ALC3202]
* ALC269Q-VC2-GR
* ALC269Q-VC3-GR
| 0x10ec
| 0x0269
| 0x100203,
| <!--Playback-->{{Maybe|some versions work}}
| <!--Recording-->{{Unk}}
| <!--Comments-->SMT SMD QFN-48 -
* v1 unknown
* v2 unknown
* v3 x230, dell wyse,
|-
| ALC272
* ALC272-VA4-GR
| 0x10ec
| 0x0272
| 0x0
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Unk}}
|
* works Acer AOD150 and Acer AOD250 works [http://amigaworld.net/modules/newbb/viewtopic.php?topic_id=33755&forum=28#616910 Samsung NP-NC10], works Samsung NF210-A02] netbooks,
|-
| <!--Description-->ALC273
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| <!--Description-->ALC270
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC282
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x
| <!--Revision-->
| <!--Playback-->{{No|Version 6.17}}
| <!--Recording-->{{No|Version 6.17}}
| <!--Comments-->needs retest
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC660 ALC660-VD
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes| }}
| <!--Recording-->
| <!--Comments-->
* works asus F9s, F9e
* untested asus w7j, M51SN, A6Tc, A8Sr,
|-
| <!--Description-->ALC661-GR (2011)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| ALC662
| 0x1043
| 0x82a1
| 0x0
| <!--Playback-->{{Yes|Version 6.17 if QUERY added to top of hdaudio.config}}
| <!--Recording-->{{No|Version 6.17 not working for eee pc 900}}
|
* works Asus eee PC netbook 700/701/900, Atom 270 and 330 mobos, odd clicks (D410 NM10 PineTrail),
|-
| <!--Description-->[http://outpost.fr/rmaa/ALC663.htm ALC663]
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0861
| <!--Revision-->
| <!--Playback-->{{No|Version 6.13}}
| <!--Recording-->{{Unk}}
| <!--Comments-->not bad output like headphone amp part of the codec actually works well but messed up by undersized coupling capacitors to actually support such a low impedance
* not working Asus n50vn x71vn,
|-
| <!--Description-->ALC665
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC666
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC667
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC668
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC670
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->ALC880
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->some 915 and 925 chipset mobos
|-
| <!--Description-->ALC882M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| Realtek ALC883 ALC883-GR ALC883D-GR ALC883DTS-GR ALC883DD-GR codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe|some early versions work }}
| <!--Recording-->{{Unk| }}
| 2005 to 2007 HD Audio codec untested (Asus ),
|-
| Codec ALC885
| 0x10ec
| 0x0885
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
|-
| ALC888
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
|
|-
| ALC888s
* ALC888S-VD2-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}} MSI Wind U90/U100,
| <!--Recording-->{{Unk}}
| LQFP-48
|-
| ALC888b
| 0x8086
| 0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| untested (D510 NM10 Dual Core PineTrail mobo),
|-
| ALC888-VD
| 0x8086
| 0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| untested
|-
| ALC889A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes|works if QUERY added to the top of hdaudio.config in Prefs drawer/directory}}
| <!--Recording-->{{Unk}}
|
|-
| ALC889 Gr
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}} with crackles
| <!--Recording-->{{Unk}}
|
|-
| ALC889
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
| Tested with MSI H55 board
|-
| ALC887 ALC887-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
|
* working on ASUS P5KPL/EPU and Gigabyte GA-E350N-Win8 Rev1.0
|-
| ALC887-VD-CG
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0887
| <!--Revision-->0x100302
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}} Subsystem Id: 0x1458a002
|
|-
| ALC887-VD
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0887 0x1458
| <!--Revision-->0xa002
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{Unk}} index = 2
| ALC887 does not have any volume control ability on the mixer NIDs, so put the volume controls on the dac NIDs instead
* working with intermittent corrupting pop popping skipping stuttering sound issues MSI 760GM-P23 (FX),
* not working Gigabyte H61MA-D3V, AT3IONT-I Deluxe,
|-
| ALC887-VD2
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
| 3jacks
|-
| ALC887-VD2-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
|-
| ALC887-
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
|
|-
| ALC892-CG rev
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| 2011 48-pin LQFP Green package -
|-
| ALC892 ALC892-DTS-CG rev
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
| 2009 introduced
* works
* not working
* untested
|-
| ALC892 rev
| <!--Vendor ID-->0x0x10ec
| <!--Product ID-->0x0892
| <!--Revision-->0x100302
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| 2014
|-
| Realtek ALC886-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| LQFP-48
|-
| Codec ALC861 ALC861-VD
| 0x10ec
| <!--Product ID-->0x0663
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
|
* not working Toshiba Tecra A7
|-
| <!--Description-->ALC1200
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| ALC898
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
| not working
|-
| <!--Description-->ALC1500
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC3232 (aka ALC292)
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0292
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC3234 aka ALC255
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0255
| <!--Revision-->003
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC3287 aka ALC257
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes| }}
| <!--Recording-->{{no| }}
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->AD1882
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1883 HD Codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1884
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| Analog Devices SoundMAX AD1981
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| IBM Thinkpad T60,
|-
| AD1984 hp-m4 codec
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
* audio not working on Lenovo X61, Thinkpad T61,
|-
| AD1986
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
|
|-
| AD1988
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
|-
| <!--Description-->AD1988A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->Cirrus Logic CS4207
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->
| <!--Recording-->
|
|-
| <!--Description-->Cirrus Logic CS4208
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->
| <!--Recording-->
|
|-
| <!--Description-->Conexant CX20549 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe|very very very low volume}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested Fujitsu Amilo SI 1510 1520 no datasheet for the general public
|-
| <!--Description-->Conexant CX20549-12Z codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested HP 530
|-
| <!--Description-->Conexant CX20561 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* working lenovo x200s
* untested Lenovo Essential G555 Notebook, HP Pavilion dv6700,
|-
| <!--Description-->Conexant CX20582 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX2059x CX20590 CX20594-21Z codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX20585 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* working Lenovo Thinkpad T410,
|-
| <!--Description-->Conexant CX20672 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX20671 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX20751-21Z codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes| }}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| <!--Description-->Conexant CX11852 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX11880 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant after 2015 up to 2018 CX7501 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{no|no driver codec}}
| <!--Recording-->{{no|no driver codec}}
| <!--Comments-->Conexant bought by synaptics 2019
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->C-Media CMI9880 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->Gigabyte GA-8GPNXP
|-
| <!--Description-->Silicon Labs 3054
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| VIA 1708A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| untested,
|-
| VIA VT1708B
| <!--Vendor ID-->
| <!--Product ID-->
| 0x0010
| <!--Playback-->{{No|VIA PicoITX}}
| <!--Recording-->{{Unk}}
|
|-
| VIA 1708S
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
|
|-
| <!--Description-->VT2021 10ch
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->Gigabyte Z77MX-D3H, GA-H61M-S2H S2P,
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Creative CA0110-IBG
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->SigmaTel STAC 9220 9221 9223 8ch (7+1)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| <!--Comments-->ECS 945GCT/M-1333 (version 3.0),
|-
| IDT SigmaTec [http://explorer.cekli.com/articles/pdf/hd-audio STAC9227] /28/29/30 codec
| <!--Vendor ID-->0x8384
| <!--Product ID-->0x7626
| <!--Revision-->0x0002
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Unk}}
|
* works HP Compaq mini 110
* untested HP Pavilion HDX9000 CTO Notebook, Intel DG33TL mobo, Dell E520, Intel DP35DP mobo, Dell E6410 Laptop,
|-
| IDT (formerly SigmaTel) IDC STAC 9271/71D
| <!--Vendor ID-->0x8384
| <!--Product ID-->0x7626
| <!--Revision-->0x0002
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
|
|-
| <!--Description-->IDC STAC 9272 9273 9274
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->Intel D5400XS,
|-
| <!--Description-->IDT 92HD73C
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes}}
| <!--Recording-->
| <!--Comments-->headphones only Asus AT4NM10 mobo
|-
| <!--Description-->IDT 92HD75B
| <!--Vendor ID-->0x111d
| <!--Product ID-->0x7608
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* working [http://koti.kapsi.fi/jvaltane/aros/hdaudio/ HP Compaq Mini 700 Netbook - feedback required]
* untested HP Mini 5103 and 5102, HP Compaq 610, HP ProBook Laptop 4520s 4525s 6450b 6550b 6555b, HP EliteBook 2540p 2740p 8440p, Mobile Workstation 8540w 8740w, Pavilion NoteBook DV8,
|-
| <!--Description-->IDC 92HD81XX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC 92HD83XX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC STAC 92HD89XX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Wolfson (now Cirrus Logic) WM8850
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Wolfson WM8860
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->Intel High Definition Audio Revision 1.0. - 4-Channel DAC, 4-channel ADC. - DAC sampling
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
Using Prefs/AHI ensure you set the music unit and at least Units 0 (where most audio comes from) in top left drop down menu to HDaudio - HIFI in the section below. Set Units 1 or 2 to microphone or other outputs. Plus allow more than one channel for multiple audio streams and set frequency up to 44 kHz or higher on the right hand side of the ahi prefs. If sound beeps when you press the test button then all should be OK.
Output <- Codec <- Audio Controller (HDA) <-> Computer
codecs and exact hardware identifier. As mentioned above, HDA is only part of the work here, it gets the audio out of the main chipset in digital format (on a bus called I2S). This is not enough, there is another step needed which is routing that I2S signal to the output, converting it to actual audio, amplifying it, etc. This is handled by a separate chip called a "codec". Sometimes it is initialized by the BIOS, but this is not always the case.
Most audio drivers are made up of two parts a [http://www.kernel.org/doc/Documentation/sound/alsa/HD-Audio.txt Controller + a Codec]. The ProductID and VendorID are for the audio controller only - the important additional codec is '''NOT''' so easily identified.
Some newer versions of codecs are missing at the moment.
Things to try if sound not working
* try to connect something to the audio jack, maybe it is not playing on internal speakers or vice versa
* make sure you try and select all music units e.g. unit0, unit1....
* even if PCI ID's are in Prefs/Env-Archive/HDaudio.config, this doesn't mean it is working, it is the codec that matters
* it might be internally muted
<pre>
add debug=memory to grub boot line - continue booting with F10
Open a shell
Tools/Debug/Bifteck > RAM:audio.txt
</pre>
or
<pre>
Open a shell
Tools/Debug/Sashimi > RAM:audio.txt
Run ahi prefs
Click test tone button
Stop sashimi with Ctrl-C
</pre>
If the boot sound is enabled, you have to use Bifteck to capture AHI debug output. In the GRUB menu, press E on your selected entry, then add "debug=memory" to the options (alongside ATA=, vesa= etc.). Then F10 or Ctrl-X to boot. Once booted, run Tools/Debug/Bifteck again.
or
* try adding QUERYD to the start of ENVARC:hdaudio.config file (also known as Prefs/Env-Archive/) ie. on the first line
* '''OR''' try removing QUERY and QUERYD from the start of the hdaudio.config file
* Reboot
* open a shell
* type: sys:tools/debug/sashimi > ram:debug.txt
* open ahi prefs
* select one of the audio modes - HIFI or otherwise
* press the 'test sound' button
* press ctrl-c in the shell
* post the results to Aros-World
The HD Audio standard was designed to be hardware pinout interchangeable so that the sound support could change easily and quickly. HDA is a standard around particular chips. Each kind of chip has a certain number of DACs and pins, and even the same chip could be hooked up in different ways on different motherboards. The chips are programmable and the operating system can adjust how things are routed. Some pins aren’t even hooked up, so it makes no sense to route sound to them. Also some pins have sensors that can tell when something is plugged in, so that for example the speakers in a laptop can be muted when headphones are plugged in. Pins are also grouped, so for example all the outputs for a 5.1 sound system are grouped. Generally the HDA driver in the operating system is supposed to read the pin set up and figure out a reasonable way to set things up, and disconnected pins should be ignored, etc.
HDAudio standard has headphones on a separate DAC, and it's up to the driver.. it can even send different audio to the headphones without interrupting the main (green) outputs
====Envy24 series ====
A little history. VIA bought the ICE created Envy chipsets [http://www.via.com.tw/en/products/audio/controllers/comparison_controller.jsp VT1712] first. A few years later, they created several cheaper variants VT1724 (mixer missing), VT1721 (low end cut down), VT1720 (embedded on motherboard) and lastly the VT1723 (no support apart from Windows Envy24DT like SYBA SD-PEX63034).
There are PCI Express versions appearing.
The Envy24 is the base product that was originally designed by ICEnsemble, and it supports multi-channel hardware mixing, which is great for professional use. The HT version removes the hardware mixer (unimportant for non-professional uses). The [http://www.avsforum.com/t/364771/envy24ht-s-the-definitive-source HT-S] version is almost exactly the same as the HT, it just uses cheaper DACs. The PT version is exactly the same as the HT-S version, it is just the edition used for on-board audio on motherboards.
N.B. [http://www.soundonsound.com/sos/dec04/articles/pcnotes.htm PCI slot identification] and [http://hsi.web.cern.ch/HSI/s-link/devices/s32pci64/slottypes.html 3.3v PCI].
=====[http://www.opensound.com/readme/README.Envy24.html envy24.audio] - [http://www.anime.net/~goemon/alsa/ VT1712] =====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Playback
! Recording
! Comments
|-
| M-Audio Delta 66 - Rev B 1999
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested AK4524VF CS8404A-CS - needs Delta Series break out box with D-sub lead -
|-
| [http://ixbtlabs.com/articles/maudioaudiophile/index.html Audiophile 2496] Rev A 2000
| 0x14
| 0x
|
| <!--Playback-->{{unk| }}
| <!--Recording-->{{unk| }}
| works audio out on - I2S stereo codec AKM AK4528VF with the 24bit/96kHz DAC and ADC; CS8427 digital transceiver
|-
| [http://ixbtlabs.com/articles/maudioaudiophile/index.html Audiophile 2496] Rev B 2003
| 0x14
| 0x
|
| <!--Playback-->{{Yes }}
| <!--Recording-->
| works well - I2S stereo codec AKM AK4528VF with the 24bit/96kHz DAC and ADC; CS8427 digital transceiver
|-
| M-Audio Delta 410 - 2001 2001 REV-B
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested for D-A AK4529VQ converters with CS8427-CS 5532 1158B or Event Echo Gina 20-Bit Multitrack Interface Breakout Box -
|-
| M-Audio Delta 1010
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested AK5383 and AK4393 - 25 pin dsub -
|-
| M-Audio Delta 1010LT 1010E
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested for D-A AK4529 converters with 2 XLR Microphone inputs with pre amps
* be aware of redesign in 2007 - possible issues
|-
| M Audio Delta 44 - Rev A 2002 - Rev B 2003 - Rev D 2003
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested ICE1712G AK4524VF needs breakout box with 15 pin D-sub lead -
|-
| M-Audio Delta 66 Rev E 2006 - Omni Studio
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested needs break out box with 15 pin D-sub lead -
|-
| <!--Description-->M-Audio Delta DiO 2496
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| Terratec EWX24/96
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| [http://ixbtlabs.com/articles2/terratecdmx6fire/index.html TerraTec 6fire DMX 24/96]
| <!--Vendor ID-->0x1412
| <!--Product ID-->0x1712
| <!--Revision-->0x02
| <!--Playback-->{{No|tried line 1-2 3-4 5-6 7-8 }}
| <!--Recording-->{{No| }}
| untested - AKM and codec
|-
| <!--Description-->Terratec EWSA88MT
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| [http://lists.freebsd.org/pipermail/freebsd-multimedia/2007-March/006087.html Audiotrak Prodigy HD2] 24/96
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Audiotrak (ESI) Maya 1010 1010L
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| EMU 1212M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| EMU 1616M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| <!--Description-->Terratec EWS 88MT EWS 88D
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Hoontech Soundtrack DSP 24
Soundtrack DSP 24 Value
Soundtrack DSP 24 Media 7.1
Event Electronics EZ8
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Digigram VX442
Lionstracs
Mediastation
Terrasoniq TS 88
Roland/Edirol DA-2496
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
=====envy24ht.audio - VIA VT1724=====
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| ESI Juli@
| 0x3031
| 0x4553
| 0x0
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Yes}}
| reported working years ago [http://envy24.svobodno.com/ Envy24HT-S] - AKM 4358 DAC - AKM 4114/4112 DIT
|-
| ESI Juli@ Ego Igo rev K
| 0x3031
| 0x
| 0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| AK4358? DAC - AK4114 AK4112 DIT
|-
| [http://ixbtlabs.com/articles2/multimedia/m-audio-revolution51.html M-Audio Revolution 5.1]
| 0x1412
| 0x3631
| 0x0
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| reported working years ago but discontinued - (Envy24GT) - 3ch AKM 4358 DAC - ADC AKM 5365 -
|-
| [http://ixbtlabs.com/articles2/m-audio-revolution71/index.html M-Audio Revolution 7.1] 24/192
| 0x1412
| 0x3630 0x1724
| 0x0
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| not working - illegal semaphore - 6ch ADC AKM AK4355 24-bit 192 kHz - 2ch DAC AKM AK4381 24-bit 192 kHz - ADC AKM AK5380
|-
| Terratec Aureon Sky 5.1
| 0x153b
| 0x1147
| 0x
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - discontinued
|-
| [http://ixbtlabs.com/articles2/terratec-aureon71/index.html Terratec Aureon Space 7.1]
| 0x153b
| 0x1145
| 0x0
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - Wolfson WM8770 DAC, AC'97 codec SigmaTel STAC9744
|-
| Terratec Aureon Universe 7.1
| 0x153b
| 0x1153 (rev x) 0x1724 (rev3)
| 0x0
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| not working - semaphore error on rev 3 - DAC ADC
|-
| Terratec Phase 22
| 0x153b
| 0x1150
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - Envy24HT-S - AK4524
|-
| Terratec Phase 28
| 0x153b
| 0x1149
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - Envy24HT-S - AK4524
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Playback
| Recording
| Revision
| Comments
|-
| Audiotrak (ESI) Prodigy 7.1
| 0x4933
| 0x4553
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - Wolfson WM8770 and AC'97 SigmaTel STAC9744 codec
|-
| Audiotrak (ESI) Prodigy 7.1 LT
| 0x3132
| 0x4154
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver -
|-
| [http://ixbtlabs.com/articles2/sound/audiotrak-prodigy192.html Audiotrak (ESI) Prodigy 192] 24/96
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - STAC9460S codec
|-
| <!--Description-->Echo Layla 24/96
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
| [http://www.bit-tech.net/custompc/labs/80752/hercules-gamesurround-fortissimo-4.html Hercules Gamesurround Fortissimo 4]
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - Wolfson WM8776 Codec and WM8766 DAC
|-
| [http://ixbtlabs.com/articles2/multimedia/m-audio-audiophile192.html M-Audio Audiophile Delta AP 192k]
| 0x1412
| 0x3632
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - Stereo ADC AKM AK5385A 24-bit 192 kHZ - 8-channel DAC AKM AK4358 24-bit 192 kHz - AKM 4114/4112 DIT
|-
| ONKYO SE-150PCI
| 0x160b
| 0x0001
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver
|-
| <!--Description-->ESI Waveterminal 192x
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
| <!--Description-->Quartet
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments--> - AKM 4114/4112 DIT
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
|}
====hdmiaudio.audio - hdmi no support====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->ATI R6xx HDMI Audio codec support output
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x9840
| <!--Revision-->
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->Not detected
|-
| <!--Description-->NVidia HDMI
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Intel Series 6 CougarPoint HDMI codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Intel HDMI
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|}
[[#top|...to the top]]
===Graphic GFX Chipsets===
[https://gallium.readthedocs.io/en/latest/systems.html PCIe based] graphic chipset is defacto on 64bit AROS and recommended on 32bit.
AGP works on 32bit but faster transfers through the AGP slot are only available on a few supported motherboard chipsets
* Faster AGP Working = SIS 650 board, Intel 865pe AGP slot on MSI 6788-050,
* Not Supported = NForce2 chipsets, most Intel 815/820 chipsets, VIA chipsets, ALi chipsets,
The fallback for all graphics modes is vesa if any native support does not work. There is a choice of very low resolution vga as the last resort
2D tests performed with [http://download.aros3d.org/software/gfxbench.zip gfxbench] in the shell type gfxbench > out.txt (40 seconds blank screen is part of the test), via FreeDoom via limit-removing engine like odamex, chocolate or vanilla doom -timedemo demo1 or doom2 -timedemo demo1, doom.exe -iwad doom2 -file mymap.wad, Duke DNRATE 640x480 windowed
3D tests performed with Demos/Mesa/ , Cube 1080p, Cube 2 windowed not fullscreen 1920 x 1025, Quake3 ~ cl_drawFPS 1, Xonotic , [http://shinh.skr.jp/sdlbench/showtestgl.cgi test gl],
HDMI, DVI and DisplayPort monitors have a native resolution of 480p, 720p, 1080i, 1080p and up
<pre>
HDMI (licensing fee)
1.2 720p res.
1.3 1080 resolution
1.4 4K @ 30Hz
2.0 4K @ 60Hz
2.1 48Gbs for 4K @ 120Hz, 8K @ , VRR, etc
2.2 ultra96
</pre>
<pre>
DisplayPort (VESA introduced)
1.4 4K @ 60Hz
2.1 96Gbs for 4K @ 240Hz, 8K @ 120Hz. MST daisy chain multiple monitors,
</pre>
<pre>
GPMI chinese standard
2.0
</pre>
Might be supported on AROS
*OpenGL4 GPU must have 64-bit floating point FP64 math support, which is a hard requirement for GL 4.0. The max last revision opengl 4.6 (2017) on [https://wiki.gentoo.org/wiki/AMDGPU AMDGPU] RX 5000's / 6000s ([https://forum.batocera.org/d/7491-enable-opengl-46-and-vulkan-for-an-old-radeon-video-card RDNA] and Nvidia RTX might come to AROS) but Intel UHD, Iris Plus or Xe or Arc (will not unless a developer wants the challenge)
*OpenGL3 last revision 3.3 (2011)
Already supported on AROS
*OpenGL2 nvidia-nouveau,
*OpenGL1 intel gma950,
====vga.hidd====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Comments
|-
|
| 0x
| 0x
| 0x0
| Generic VGA Driver, limited to 640x480 in 16 colours - no 3D support
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Comments-->
|-
|}
====vesa.hidd====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Comments
|-
|
| 0x
| 0x
| 0x0
| 2D support for VBE1, VBE2 and VBE3 (most cards) - various resolutions and 24bit colour - no 3D support
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Comments-->
|-
|}
[[#top|...to the top]]
====[[w:en:Intel GMA|Intel GMA]]====
DVI output is not supported at the moment.
If having problems:
* Ensure the latest version is being used.
* Set GMA_MEM to 128 or 256 to test
* Try the FORCEGMA ToolType for 2D, and try the FORCEGALLIUM ToolType for 3D acceleration after 2D is verified to work. ToolTypes should be applied to the Devs/Monitors/IntelGMA monitor icon.
If still having problems:
* At GRUB boot screen edit boot line and add option: debug=memory
* Boot.
* Use shell command: tools/debug/bifteck > RAM:debug.txt
* And post [GMA MONITOR DETECTION] and other related debug lines
{| class="wikitable sortable" width="90%"
! width="5%" |Description
! width="5%" |Vendor ID
! width="5%" |Product ID
! width="3%" |Rev
! width="5%" |2D
! width="5%" |3D
! width="5%" |Analog Output
! width="5%" |Digital Output
! width="5%" |Laptop LCD
! width="30%" |Comments
|-
| 910GL 82910GL GMCH + ICH6
| 0x8086
| 0x2582 0x2592
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| 910GML 82910 GML GMCH + ICH6 Mobile
| 0x8086
| 0x2582 0x2592
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| may need to add forceGMA to grub boot line to work
|-
| 915G 82915G GMCH + ICH6-M
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
|
|-
| 915GL 82915GL GMCH
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
|
|-
| 915GV 82915GV GMCH
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Yes|}}
| <!--3D-->{{No|}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{N/A}}
| HP DC5100 small form factor
|-
| 915GM GMA900
| 0x8086
| 0x
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| tunnel gearbox }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes}}
| asus eee pc 900
|-
| 915GMS
| 0x8086
| 0x
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| tunnel }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes| }}
|
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| [http://www.notebookcheck.net/Intel-Graphics-Media-Accelerator-950.2177.0.html 945GU] - 133 MHz (Lake port for Intel A100 and A110)
| 0x8086
| 0x2772
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| Fujitsu LifeBook U1010,
|-
| 945GMS - 166 MHz / 250 MHz (1.05V)
| 0x8086
| 0x27a2
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes}}
| Dell D430
|-
| 945GSE - 166 MHz (for Atom)
| 0x8086
| 0x27ae
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Yes|[http://www.x.org/wiki/GalliumStatus]}}
| {{Yes}}
| {{No|dvi port}}
| {{Yes| }}
| for atom motherboards and most 2008/2009 netbooks
* 3D Works - AOA110 AOA150, Dell Mini 9, Samsung NC10, Toshiba NB100,
|-
| 945G 82945G GMCH + ICH7
| 0x8086
| 0x27a6
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| untested 2D and 3D
|-
| 945GC 82945GC MCH
| 0x8086
| 0x27a6
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| untested 2D and 3D
|-
| 945PM
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| Dell D420, Compaq nc6400,
|-
| 945GMS - 250 MHz Calistoga
| 0x8086
| 0x
| 0x0
| <!--2D--> {{Yes}}
| <!--3D--> {{Yes|most models}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes}}
|
* 3D Works Dell Latitude 2100, HP Compaq nc6320, Lenovo 3000, Lenovo T60, Samsung Q35, Dell D620, Dell D820,
* 3D untested Toshiba Satellite L100-120, Toshiba Portege M400,
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
|
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GMA 3100 G31
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works 2D but no 3D
|-
| GMA 3100 G33
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works 2D but no 3D
|-
| [http://en.wikipedia.org/wiki/Intel_GMA GMA 3150] netbooks and nettops
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works 2D but no 3D. no vga, dvi or hdmi output for nettops
|-
| <!--Description--> G965
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments-->
|-
| <!--Description--> Q965
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x2992
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{No}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments--> Only tested with VGA output.
|-
| 965GM X3100 (500 MHz)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| some support 2D but no hardware 3D - could not get it to work with VGA or dvi output
* untested Apple MacBook Air, Lenovo Thinkpad X300, Dell Inspiron 1525, Toshiba M9,
|-
| 960GM X3100 (400 MHz)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
|
|-
| 965M X3100 (400 MHz)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| Dell D830,
|-
| 965PM ??
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| Toshiba A9 works with limited 2D acceleration but no hardware 3D
|-
| GL965
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works with limited 2D acceleration but no hardware 3D
|-
| GM965
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works with limited 2D acceleration but no hardware 3D
|-
| GMA X3500 G35
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->X4500M G41 G43 G45 (400Mhz) Mobile 4 Series
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x2a42 0x2a43
| <!--Revision-->0x07
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue--> {{No|}}
| <!--Digital--> {{No|}}
| <!--Laptop LCD--> {{Yes| VESA}}
| <!--Comments-->works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->GMA 4500M HD (533 MHz)
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments-->works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->GMA 4700M HD (640MHZ)
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x2a42
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments-->works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
====[http://nouveau.freedesktop.org/wiki/FeatureMatrix nouveau].hidd (nvidia pci, agp, pci-e desktop)====
PCIe based nvidia graphics (gfx 8xxx) are the base level for 64bit AROS but earlier models still has some support on 32bit AROS
*Desktop, more likely hit rather than miss on early nvidia on Aros 32bit but on Aros 64bit ...
*Laptop, limited support for '''very''' early non-optimus (i.e. just Nvidia gfx only so no Intel and nvidia gfx combinations on 32bit but on 64bit ...)
Please note that the nouveau project is reverse engineering a nvidia graphics driver but takes time because of [https://nouveau.freedesktop.org/ nVidia's closed firmwares], etc
* 2026-06 - DEVS Nouveau.hidd Gallium.hidd Softpipe - LIBS Gallium GLU 20.0 Mesa OpenCL
* 2011-10 - DEVS 6.11 Nouveau.hidd 7.4 Gallium.hidd 9.4 Softpipe - LIBS 2.3 Gallium 1.3 GLU 19.0 Mesa OpenCL 1.x
* 2011-04 - DEVS 5.31 Nouveau.hidd 7.3 Gallium.hidd 9.3 Softpipe - LIBS 2.2 Gallium 1.1 GLU 18.0 Mesa OpenCL n/a
Nouveau support for AROS is limited to OpenGL 2.1 compliance on 32bit even for modern GL4 capable GPUs but on 64bit ...
On Aros 32bit OpenCL supports the NV50 (8000 9000) cards, less support in NVC0 fermi cards (300 upwards)
On Aros 64bit
ADoom3 graphic details ultra, benchmark while playing press the "`" key and type "Timedemo demo1" in the console
{| class="wikitable sortable" width="90%"
! width="5%" | Graphic Card
! width="5%" | Aros 32bit 1024 x 768
! width="5%" | Aros 32bit 800 x 600
! width="5%" | Aros 32bit 640 x 480
! width="5%" | Aros 64bit 1024 x 768
! width="5%" | Aros 64bit 800 x 600
! width="5%" | Aros 64bit 640 x 480
|-
| NV50 Asus EN8400GS SILENT/P/512M PCIe (G98) || || || || || ||
|-
| Gigabyte 8500GT 256M || 42,6 || 57,2 || 68,6 || || ||
|-
| NV96 (G96) Geforce 9500GT 512M || 43 || 53 || 57 || || ||
|-
| NV96 (G96) 9600GT || || || || || ||
|-
| NVA3 (GT215) GT240 || || || || || ||
|-
| NVA5 (GT216) Palit GT220 Sonic 512M || 39,7 || 55,8 || 63,7 || || ||
|-
| NVA8 (GT218) gt210 || || || || || ||
|-
| NVA8 (GT218) ION2 || || || || || ||
|-
| NVC3 (GF106) GT440 GTS 450 || || || || || ||
|-
| NVCF (GF116) NVC0 Fermi GTX 550Ti or GTS 450 v2 || || || || || ||
|-
| NVC8 (GF110) 580GTX || N/A || N/A || N/A || || ||
|-
| NVE0 Kepler GT630 || N/A || N/A || N/A || || ||
|-
| NVE6 (GK106) Kepler GTX660 || N/A || N/A || N/A || || ||
|-
| NVE7 (GK107) GTX 650 || N/A || N/A || N/A || || ||
|-
| NV110 Maxwell GTX 750 || N/A || N/A || N/A || || ||
|-
| NV126 (GM206) GTX950 upwards no reclocking || N/A || N/A || N/A || poor || poor || poor
|-
| NV160 family (Turing) GTX 1650 and RTX 2000 upwards with GSP firmware || N/A || N/A || N/A || unknown || unknown || unknown
|-
| HostGL Ryzen 5 4600H - Nvidia 1650 - Linux mint 21.1 || N/A || N/A || N/A || 150fps || 154fps || 155fps
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| width="5%" | Graphic Card
| width="5%" | Aros 32bit 1024 x 768
| width="5%" | Aros 32bit 800 x 600
| width="5%" | Aros 32bit 640 x 480
| width="5%" | Aros 64bit 1024 x 768
| width="5%" | Aros 64bit 800 x 600
| width="5%" | Aros 64bit 640 x 480
|}
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|-
| <!--Description-->tnt1 (nv04) tnt2 (nv05) m64 value (1998)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|very slow}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| NV04 Riva TNT TNT2 Fahrenheit freezes on via motherboard chipset so rename agp.hidd in SYS:Devs/Drivers or Monitors
|-
| <!--Description-->tnt vanta lt (nv06) 1998 /9
| 0x10de
| 0x002c
| 0x15
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|slow}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| <!--Description-->Geforce 256 (nv10) (2000)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|slow }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| untested Geforce256
|-
| <!--Description-->Geforce 2 Geforce 3 Geforce 4 (nv20) 2000 / 2
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|slow }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| works for some PCI and AGP Geforce2 Geforce3 Geforce4
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| Geforce FX5200 nv34 (2003)
| 0x10DE
| 0x0322 0x
| 0xA1
| <!--2D-->{{Maybe| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->{{Maybe|VGA15 }}
| <!--Digital-->{{Maybe|DVI}}
| <!--Laptop LCD-->{{N/A}}
| NV30 GeForce 5 FX Rankine Hardware OpenGL 1.5 - slower than GF MX 4000 for 2D - max 1024 x768
* not working [https://eab.abime.net/showthread.php?t=92328&page=8 mobos with VIA chipsets 2018]
* working (MSI 0x9174) the previous nouveau 5.x driver
* Others work with 6.x series XFX PV-T34K-NA, ASUS V9520-X/TD
|-
| Geforce FX5500 (nv34) (2003)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{Maybe| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| works
|-
| Geforce 5100 (NV34)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce FX 5200LE (NV34)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5200 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce FX5600 (nv31) (2004)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Maybe| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| works
|-
| GeForce FX 5600 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5600SE
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5600XT
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce FX5700 (nv36) (2004)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes|some}}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{Maybe| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5700VE
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5700 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5700LE
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5800 (NV30)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5800 Ultra (NV30)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900 (NV35)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900XT
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900ZT
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5950 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce 5xxx
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
|
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| Geforce 6200 (nv44) (2005)
| 0x
| 0x00F3 0x014F
| 0x0
| <!--2D-->{{Yes|5.28 Pixel Text}}
| <!--3D-->{{Maybe| use 5.28}}
| <!--Analogue-->{{Yes|VGA15 and s-video - plain 4pin cable lead will work with 7pin}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| NV40 GeForce 6 GeForce 7 Curie AGP Hardware OpenGL 2.1 needing previous 5.x version as regression arose 2011-10
|-
| Geforce 6200 (nv44a) (2006)
| 0x
| 0x0221
| 0x0
| <!--2D-->{{Yes|5.28 Pixel Text }}
| <!--3D-->{{Yes|}}
| <!--Analogue-->{{Yes|VGA15}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| Hardware OpenGL 2.1, PCI version tested OK in 2014-01-02 - Icaros 1.5.2
* not working
*working
|-
| GeForce 6200 with Turbo Cache (NV43)
| 0x
| 0x0161
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce 6200SE with Turbo Cache (NV44)
| 0x
| 0x0162
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce 6200 LE
| 0x10de
| 0x0163
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| PCI-E
|-
| GeForce 6600 LE
| 0x
| 0x00F4 0x0142
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6600
| 0x
| 0x00F2 0x0141
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| 2006 PureVideo HD 1 or VP1 re-used the MPEG-1/MPEG-2 decoding pipeline from FX
|-
| Geforce 6600gt (nv4x) (2005)
| 0x
| 0x00F1 0x0140
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Yes| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| OpenGL tests -
|-
| Geforce 6800 (nv40) (2005)
| 0x
| 0x0041 0x00C1 0x00F0 0x0211
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Yes| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 XE (NV4x)
| 0x
| 0x0043
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 LE
| 0x
| 0x0042 0x00C2 0x0212
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 GT (quadro fx 1400)
| 0x
| 0x0045 0x0046 0x0215
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 6800 GS
| 0x
| 0x0047 0x00C0 0x00F6
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 GTS NV40
| 0x
| 0x0040 0x0F9
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 6800XT
| 0x
| 0x0044 0x0048 0x00C3 0x0218
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6600 VE
| 0x
| 0x0143
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6500 NV44
| 0x
| 0x0160
| 0x0
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6250
| 0x
| 0x0169
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 6xxx
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GeForce 7800 GTX
| 0x
| 0x0090 0x0091
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| tunnel gearbox cube cube2 25}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> 256MB DDR3 - 1 6pin psu connector -
* not working asus en7800gtx/2dhtv/256m/osp/a -
* Works XFX PV-T70F-UDD7 Works in steve jones' scrap pc aros build 2010 2 DVI-I ports
* Untested
|-
| GeForce 7800 GT
| 0x
| 0x0092
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7600gt (G8 ) (nv4 ) (2006)
| 0x
| 0x02E0 0x0391
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL 2.1
* not working
* working
|-
| GeForce 7800 SLI
| 0x
| 0x0095
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GTX
| 0x
| 0x0290
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GT GTO
| 0x
| 0x0291
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GS
| 0x10de
| 0x0292
| 0x0a1
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working
* Works with a few glitches with XFX Pine 0x2218
|-
| GeForce 7950 GX2
| 0x10de
| 0x0293 0x0294
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| GeForce 7950 GT
| 0x
| 0x0295 0x02E4
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GS
| 0x
| 0x02E3
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7600 GS
| 0x
| 0x02E1 0x0392
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7650 GS
| 0x
| 0x0390
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7600 LE
| 0x
| 0x0394
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7800GS (G8 ) (nv4 ) (2006)
| 0x
| 0x0093 0x00F5
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working
* works if AGP motherboard chipset is supported - Hardware OpenGL 2.1
|-
| GeForce 7100 GS
| 0x
| 0x016A
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7350 LE
| 0x
| 0x01D0
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7300le (G8 ) (nv4 ) (2006)
| 0x
| 0x01D1
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7300SE 7200GSGF-7200GS-N-B1 variant (G72)
| 0x10de
| 0x01D3
| 0x0a1
| <!--2D-->
| <!--3D-->
| <!--Analogue-->{{Unk|1x DVI, 1x VGA, 1x S-Video}}
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2007 40W pci-e 1.0 VP1 no unified shaders -
* not working Asus on via chipset (2015),
* works Asus on intel chipset (2015),
|-
| Geforce 7300gt (G8 ) (nv4 ) (2006)
| 0x
| 0x0395 0x0393
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working
* works
|-
| GeForce 7300 GS
| 0x
| 0x01DF
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7500 LE
| 0x
| 0x01DD
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7xxx
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GeForce 8800 Ultra (NV50 family)
| 0x
| 0x0194
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NV50 GeForce 8 to GeForce 200s opengl 3.x - max res - 80nm technology - PureVideo HD 2 or VP2 Nvidia VDPAU Feature Set A (absent from ultra and some 8800gt?) added a dedicated bitstream processor (BSP) and enhanced video processor for H.264, VC-1 acceleration
|-
| Geforce 8800gts (nv50) (G8x) (2007)
| 0x
| 0x0400 0x0600 0x0193
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2007 200w openGL3 openCL - 2x6pin psu
* not working 0x0193 models (2015) on via chipsets,
* works
|-
| Geforce 8800gtx (nv5 ) (G8x) (2007)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2008 200W 1x 6pin connector,
* not working
* working
* untested XFX PV-T88P-YDF4, Alpha Dog Edition runs extremely hot - Gigabyte GV-NX88T512H,
|-
| GeForce 8800 GT
| 0x
| 0x0602 0x0611 0x0193
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->DVI up to 2500 x 1600
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - 6pin psu power connector required
* not working
* untested Asus EN8800GT/HTDP/256M EN8800GT/HTDP/512M EN8800GT/G/HTDP/512M
* works
|-
| GeForce 8800 GT (G92)
| 0x10de
| 0x0611
| 0x0a2
| <!--2D-->{{Yes|6.11 Pixel Text}}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{N/A}}
| <!--Digital-->{{Yes}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3 pci-e 2.0 8800GT 512MB on Icaros 2.0.3 [[File:8800GT aros heads.png|thumb|8800GT]] [[File:8800GT aros tails.png|thumb|8800GT detail]]
|-
| Geforce 8600gt (nv5 ) (G8x) (2007)
| 0x
| 0x0401 0x0402
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res
* not working
* works
|-
| GeForce 8500 GT
| 0x
| 0x0421
| 0x0
| <!--2D-->{{Yes| some color }}
| <!--3D-->{{yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL tests - max opengl 3.x but 2.1 offered - max res
* not working
* works Gigabyte 8500 GT,
|-
| GeForce 8800 GS
| 0x
| 0x0606 0x060D
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res
|-
| GeForce 8600GS
| 0x
| 0x0403
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 3.x VP3 offers complete hardware-decoding for all 3 video codecs of the Blu-ray Disc format: MPEG-2, VC-1, and H.264 - Nvidia VDPAU Feature Set B
|-
| GeForce 8300 GS
| 0x
| 0x0423
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res
|-
| Geforce 8400gs G98GS (end 2007) GT218 (2009)
* Rev2 with 8/16 cores and 128-512MB of DDR2 or GDDR3 memory.
* Rev3 with 8 cores and 512MB-1GB of DDR3 memory (based on Tesla 2.0)
| 0x
| 0x0424 0x0422
| 0x0
| <!--2D-->{{Yes|Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 490 gearbox 505 Cube 135 Cube2 55 quake3 }}
| <!--Analogue-->{{Yes|works digital part of DVI but nothing from any display port}}
| <!--Digital-->{{Yes|output on digital 24 pin array of DDWG's DVI and hdmi}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 50W openGL 3.1 openCL - case single slot - one single-link DVI digital output, supporting up to one 1920x1080 resolution display - analog resolution 640 x 480 to 1024 x 768 16 and 24 bit color - [http://www.phoronix.com/scan.php?page=article&item=nouveau_comp_2011&num=19 runs a little hotter than expected] - G98 VP3 pci-e 2.0 512MB DDR2 -
* not working
* works Asus EN8400GS SILENT/P/512M PCIe (G98),
|-
| Geforce 8400gs (nv50) (G86) (mid-2007)
* Rev1 with 16 cores / 256MB of DDR2 memory.
| 0x
| 0x0404
| 0x0
| <!--2D-->{{Yes|Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 490 gearbox 505 Cube 135 Cube2 55 quake3 }}
| <!--Analogue-->{{Yes|works but not tested thru 4 pins of analog signal of DVI plug}}
| <!--Digital-->{{Yes|output on digital 24 pin array of DDWG's DVI and hdmi}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2008 50W openGL 3.1 openCL - case single slot - one single-link DVI digital output up to 1920x1080 resolution display - analog resolution 640 x 480 to 1024 x 768 16 and 24 bit color - [http://www.phoronix.com/scan.php?page=article&item=nouveau_comp_2011&num=19 runs a little hotter than expected] - G86 VP2 128MB -
* not working XFX PV-T86S-YAJG NVIDIA GeForce 8400 GS 512MB DDR2, Sparkle 8400GS 512MB SX84GS512D2L-DPP,
* works Asus EN8400GS SILENT/HTP/256M SILENT/HTP/512M/A,
|-
| GeForce 8400 SE
| 0x
| 0x0420
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 2.x openCL
|-
| NVidia Quadro NVS290 DMS-59
| 0x
| 0x0403
| 0x0
| <!--2D-->{{no| }}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk|DMS-59 socket}}
| <!--Digital-->{{unk|DMS-59 }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2008 21W - G86S (G86-827-A2) - 16 shading units, 8 texture mapping units, and 4 ROPs. NVIDIA has paired 256 MB DDR2 - PCIe 1.0 x16 Low Profile -
|-
| Geforce Quadro FX 4600 (SDI), 5600
| 0x
| 0x
| 0x0
| <!--2D-->{{Partial|VESA 2d}}
| <!--3D-->{{no| }}
| <!--Analogue-->{{partial| }}
| <!--Digital-->{{partial| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GeForce 9800 GX2 (NV50 family)
| 0x
| 0x0604
| 0x0
| <!--2D-->{{Partial|VESA }}
| <!--3D-->{{no| }}
| <!--Analogue-->{{Partial| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 150w - 65nm technology
|-
| GeForce 9800 GTX
| 0x10de
| 0x0612
| 0x0a2
| <!--2D-->{{Yes| }}
| <!--3D-->{{Maybe|6.11 }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 2x6pin psu -
* not working xfx on via chipset (2015),
* works xfx on chipset intel ,
|-
| GeForce 9800 GTX+
| 0x10de
| 0x0613
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res 2560 x 1920 - case dual slot - 26amp 12v rail on computer psu if 2x6pin connectors needed - 55nm version of the G92 chip - will not work with PCI-e 1.0a slots -
* not working
* works on a few models
|-
| Geforce 9800gt (nv50) (G92a) (2008)
| 0x10de
| 0x0614
| 0x0xa2
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel 495 gearbox 513 Cube 156 Cube2 120 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{partial| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL 3.1 openCL 1.x - case dual slot - 600w 26amp on both 12v rails for 2x6pin psu on gfx card - no fan control - some come with 1x6pin - renamed version of the venerable GeForce 8800 GT - randomly works
* not working Gainward 512M untested
* working Gainward CardExpert (0x0401) Green Edition NE39800TFHD02-PM8D92 1024MB (no 6pin)
|-
| Geforce gf9600 9600gt (nv5 ) (G9x) (2008)
| 0x10de
| 0x0622
| 0x0a1
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel 493 gearbox 675 Cube Cube2 100 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL 3.2 openCL but no fan control - case dual slot - 1 6pin pcie psu connector - 500 Watt or greater power supply with a minimum of 26 Amp on the +12 volt rail - Max Analog: 2048x1536 and Max Digital: 2560x1600 (Dual Link DVI Only) - PCI Express® 2.0 / 1.1 Support - g96 gpu randomly works -
* not working bfg tech ocx,
* works gigabyte gv-n96tsl-512i -
|-
| Geforce gf9500 9500gt (nv5 ) (G9x) (2008)
| 0x10de
| 0x0640
| 0x0a1
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel 480 gearbox 500 Cube Cube2 64 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.2 - case single slot - 350 Watt/400 Watt or greater power supply with a minimum of 18 Amp/22 Amp on the +12 volt rail - Max Analog: 2048x1536 and Max Digital: 2560x1600 (Dual Link DVI Only) - PCI Express® 2.0 / 1.1 Support -
* not working zotac zone fanless, Gainward USA NE29500THHD01-PM8796, PNY G9500GN2E50X+0TE,
* works xfx xne-9500t-td01-pm8596 1024mb ddr2,
|-
| GeForce 9600 GS
| 0x
| 0x0623
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res - will not work with PCI-e 1.0a slots -
* not working
* works
|-
| GeForce 9600 GSO
| 0x
| 0x0610
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res - G92 chopped down - 9600GSO is re-badged 8800GS both very power hungry cards -
|-
| GeForce 9300 GS
| 0x
| 0x06E1
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 opengl 3.x - max res
|-
| Geforce 9400 GT (nv5 ) (G86S) (2008)
| 0x
| 0x
| 0x0
| <!--2D-->{{partial|}}
| <!--3D-->{{unk|}}
| <!--Analogue-->{{unk|1x DVI, 1x VGA, 1x S-Video}}
| <!--Digital-->{{unk|1x DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 50W opengl 3.x - max res
|-
| Geforce 9xxx (nv5 ) (G9x) (2008)
| 0x
| 0x
| 0x0
| <!--2D-->{{unk|}}
| <!--3D-->{{unk|}}
| <!--Analogue-->{{unk|}}
| <!--Digital-->{{unk|}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 opengl 3.x - max res
|-
| <!--Description-->Quadro FX 580 G96 chipset
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2009
|-
| <!--Description-->
NV84 (G84) GeForce 8600 (GT, GTS, M GT, M GS), 8700M GT,
NV92 (G92) GeForce 8800 (GT, GS, GTS 512, M GTS, M GTX)
GeForce 9600 GSO, 9800 (GT, GTX, GTX+, GX2, M GT, M GTX)
NV96 (G96) GeForce 9400 GT, 9500 (GT, M G), 9600 (M GS, M GT),
NV86 (G86) GeForce 8300 GS, 8400 (GS, M G, M GS, M GT), 8500 GT
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NVA0 (GT200) Tesla GeForce GTX (260, 275, 280, 285, 295)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->GeForce GTX 280 (NV50 family)
| <!--Vendor ID-->
| <!--Product ID-->0x05E1
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res PureVideo HD 4 (Nvidia Feature Set C or "VDPAU Feature Set C), VP4 added hardware to offload MPEG-4 Advanced Simple Profile (original DivX and Xvid)
|-
| <!--Description-->GeForce GTX 260
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x05E2
| <!--Revision-->
| <!--2D-->{{partial|Vesa}}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> 2 6pin - psu pci express 2.1 -
|-
| Geforce GTS250 250GTS (g92b) (2009)
| 0x10de
| 0x0615
| 0x0a2
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 486 gearbox 508-642 Cube Cube2 80 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> 2x6pin psu VP2 - pci-e 2.x - case dual slots - 738m 1gb ddr3 -
* not working Zotac branded version GDDR3 -
* works PNY gs-250x-zdfl and Gigabyte ??, BFG Tech RGTS2501024OCE, palit ne3ts250fhd52-pm8a92 with 2x6pin on top and hdmi output port,
|-
| <!--Description-->GeForce GT 240 (GT215 family)
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0ca3
| <!--Revision-->0xa2
| <!--2D-->{{Maybe|use VESA}}
| <!--3D-->{{No|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->late 2009 openGl 3.2 - case dual slots - no 6pin psu required with VP4 - All are pcie 2.1 cards and may not work in 1.0a slots -
* not working
* DDR3 with 512MB or 1GB -
* DDR5 -Asus ENGT240 - XFX Pine GT240XYHFC 0x3001 - Gigabyte GV-N240D5-512I rev 1.0 - Zotac AMP! with HDMI 1.3a with DisplayPort 1.1, Dual Link DVI -
* works
|-
| <!--Description-->GT220 (GT216) G220
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0a20
| <!--Revision-->0xa2
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Yes}}
| <!--Digital-->{{Yes|DVI }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> Icaros 2.0.3 GeForce GT220 1GB[[File:GT220 aros heads.png|thumb|GT220]][[File:GT220 aros tails.png|thumb|GT220]]
* untested NVIDIA Quadro® 400 512MB DDR3 GT216 DP DVI, AFox AF220 1Gb DDR3,
|-
| Geforce GT220 220GT G94 Tesla (g92b)
| 0x10de
| 0x0a20
| 0xa2
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 490 gearbox 505 cube 150 cube2 50 Quake3 }}
| <!--Analogue-->{{Unk|1x DVI, 1x VGA}}
| <!--Digital-->{{Yes|DVI but not 1x HDMI }}
| <!--Laptop LCD-->{{N/A}}
| 58W pci express 2.0 cards DDR3 - case single slot -
* not working ASUS ENGT220/DI/1GD2(LP)/V2 -
* works - gainward card expert 0x0401 GDDr3 512MB -
|-
| <!--Description-->GT210 GT 210 210GT G210 based on Tesla 2.0 GT218S GT218-300-A2 variant, GT218-300-B1
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0a65
| <!--Revision-->0xa2
| <!--2D-->{{Yes|6.11 Pixel Text}}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{Unk|1x DVI, 1x VGA}}
| <!--Digital-->{{Maybe|DVI out works but not hdmi or 1x DisplayPort}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 31W OpenGL 3.3 pci-e 2.0 cards - single slot -
* working GT218 based Asus EN210 based silent low profile large passively cooled -
* untested MSI GeForce 210 1GB DDR3 PCIe N210-MD1GD3H/LP,
* not working
|-
| <!--Description-->Nvidia ION2 (GT218) Tesla
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2012
|-
| <!--Description-->Quadro NVS 295 (256 MB GDDR3), NVS 450 (256M/512 MB DDR3)
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x
| <!--Revision-->
| <!--2D-->{{yes| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->
| <!--Digital-->{{partial|2 or 4 dp ports}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 25w low performance - G98s with 8 shading units, 4 texture mapping units, and 4 ROPs on PCI-Express 1.0 x16 -
*not working some NVIDIA Quadro NVS 295 2 dp ports (DELL, HP),
*working
|-
| <!--Description-->GT310 Tesla 310, 315, GT 320, GT 330 GT 340
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{Maybe|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2010 50w OpenGL 3.3 openCL all similar in performance to GT2xx except gt31x (poor)
|-
| <!--Description-->Quadro NVS310 NVIDIA NVS 310
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital--> 2 dp
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 25w GF119S (GF119-825-A1) 48 shading units, 8 texture mapping units, and 4 ROPs on PCI-Express 2.0 x16 - 512 MB DDR3 - PureVideo VP5 VDPAU Feature Set D -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description--> GTX 470, GTX 480 GF10 GF10* core (NVC0 family)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{Maybe| tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2010 215w 2x6 plugs - NVC0 family (Fermi) GF100 (GF100-275-A3) Fermi 448 shading units, 56 texture mapping units, and 40 ROPs with 1,280 MB GDDR5 - OpenGL4.5 OpenCL1.1 Tessellation - case dual slots -
|-
| Geforce GTX460 460GTX (G104) 256bit, 1GB v2 192bit and GTX 465
| 0x10de
| 0x0e22
| 0xa1
| <!--2D-->{{Maybe|VESA }}
| <!--3D-->{{Maybe| tunnel gearbox cube 055-111 cube2 50}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVC0 family (Fermi) OpenGL 4.x but - 2x6pin psu - case dual slots -
* not working evga 768MB GDDR5 192bit 01G-P3-1373-ER or 01G-P3-1372-TR
* works 1GB GDDR5 256bit 01G-P3-1371-ER
|-
| <!--Description-->Geforce GTX 460SE 192bit
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0e23
| <!--Revision-->0x91 or 0xa1
| <!--2D-->{{Yes| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->{{Yes| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> nouveau 6.11 - 2 6pin psu needed - case dual slots -
* not working
* works EVGA 01g-p3-1366-b6 et 1024MB p1041 -
|-
| Geforce GT450 GTS450 450GTS GF106
| 0x10de
| 0x0dc4
| 0x0a1
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel gearbox cube cube2 50 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes|DVI }}
| <!--Laptop LCD-->{{N/A}}
| 2010 Hardware OpenGL 4.2 but nouveau at 3.3 - most need 1x 6pin psu - case dual slots -
* not working
* DDR3 1 or 2GB - Palit NEAS450NHD41F,
* GDDR5 512Mb or 1GB - MSI MPN N450GTSM2D1GD5OC, Asus MPN ENGTS450DI1GD5,
* works Gainward Card Expert NE5S4500FHd51,
|-
| <!--Description-->GT 440 GF108 chipset or better OEM GF106
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 6.11 Pixel Text}}
| <!--3D-->{{Maybe| tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGl 4.1 opencl 1.x - no 6 pin psu - 96 cuda cores 128bit - case dual slots -
* not working
* OEM
* GDDR5 512MB to 1GB ASUSTeK ENGT440/DI/1GD5
* GDDR3 Asus 1gb to 2gb,
* works
|-
| <!--Description-->GT430 430GT (GF108)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|6.11 Pixel Text}}
| <!--3D-->{{Maybe|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->ddr3 memory 64bit or 128bit - buggy await new revision of driver
* not working
* works
|-
| <!--Description-->nVidia Quadro FX1800 768MB GDDR3 Full Height Graphics Card Workstation
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 6.11 Pixel Text}}
| <!--3D-->{{no|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->{{Maybe|DVI-I 2xDP}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->59W 768 MB GDDR3 memory using a 192-bit memory interface - OpenGL 3.3 -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GTX 590 Fermi
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->OpenGL4.4 OpenCL 1.1 - GDDR5 - 6pin and 8pin psu connectors - 512 cuda - case dual slots -
* not working
* works
|-
| <!--Description-->GTX 580,
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->PureVideo HD 5" or "VP5" (Nvidia Feature Set D or VDPAU Feature Set D) 4k UHD 3840 × 2160 H.264 decode -
|-
| <!--Description-->GTX 570,
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{Maybe|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working Zotac GTX 570, Gainward GTX560TI/570 Phantom,
* works gigabyte, evga
|-
| <!--Description-->Geforce 5xx 560gtx Fermi GTX 560,
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->opengl 4.x - 2 6pin psu - 384 cuda cores - case dual slots - will not work with PCI-e 1.0a slots -
* not working Asus ENGTX560 DC/2DI/1GD5,
* Ti LE 448 cuda GDDR5 320bit
* Ti 256bit
* works
|-
| <!--Description-->GTX 560 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working evga GTX 560Ti 01GP31560KR - Gainward GTX560TI/570 Phantom,
* works
|-
| <!--Description-->GTX 550 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x1201
| <!--Revision-->
| <!--2D-->{{Maybe|VESA Doom Doom2 Duke }}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->can hang on boot up on I2C Init or suffer random lockups on OpenGL apps - most need 1 6pin min 400W 24A on the +12V1 / +12V2 dual 12V rails of the computers' power supply unit - 192 cuda cores - case dual slots used - will not work with PCI-e 1.0a slots -
* not working eVGA GeForce GTX 550 Ti (1024 MB) (01GP31556KR) -
* untested asus Extreme, eVGA GeForce GTX 550 Ti (1024 MB) (01GP31557KR) - -
* works
|-
| <!--Description-->GT 545 and OEM GF116
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 4.2 opencl 1.x - GDDR5 with OEM only -
|-
| <!--Description-->GT530 OEM
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 6.11 Pixel Text}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->96 cuda cores - 1GB or 2GB DDR3 128bit
|-
| <!--Description-->GT520 520GT
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->untested 48 cuda cores - DDR3 64bit
|-
| <!--Description-->510, GT 530
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D 6.11 Pixel Text}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> ddr 3 - 50w max -
|-
| <!--Description-->GT610 Fermi GF119
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVS 315 300 GF119S
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{No|VESA}} needs special dms-59 cable
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 fermi 315 PNY VCNVS315-T 1Gb DDR3 but needs special dms-59 cable -
|-
| <!--Description-->GT630 GF108 Fermi
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->not accelerated 2015 - like the GT730 below - 96 cuda cores whilst kepler version has 384 - 128bit to keplers' 64bit bandwidth - kepler has 2GB DDR3
* not working Gigabyte
* DDR3
* GDDR5
* works
|-
| <!--Description-->Geforce GT 730
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe| use VESA 6.11 Pixel Text}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> fermi version has 96 cuda cores 128bit GF108
* not working Asus
* works
|-
| <!--Description-->nVIDIA Quadro 4000
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}} 2 dp ports
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->142W 2Gb GDDR5 - PCI Express 2.0 x16 ; full Height card with 1x 6-Pin PCIe power need - CUDA Cores 256 - OpenGL 4.5
|-
| <!--Description-->nVIDIA Quadro 5000
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2011 200W 2.5Gb GDDR5 320 bit - PCI Express 2.0 x16 full Height card with 2x 6-Pin PCIe power need -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce GTX Titan GeForce GTX Titan Black GeForce GTX Titan Z
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVE0 family (Kepler) GeForce 600 GeForce 700 GeForce GTX Titan Kepler
|-
| <!--Description-->GeForce GTX 780 GeForce GTX 780 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->PureVideo HD 6" or "VP6" (Nvidia Feature Set E or VDPAU Feature Set E) significantly improved performance when decoding H.264 and MPEG-2
|-
| <!--Description-->GeForce GTX 770
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->opengl 4.4 opencl 1.1
|-
| <!--Description-->GeForce GTX 760 GeForce GTX 760 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce GT 740
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce GT 730 Kepler
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> two versions fermi 96 cores 128bit GF108 and kepler 384 cores 64bit GK208
|-
| <!--Description-->680gtx GK104 core gtx680 680m
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVE0 family (Kepler)
|-
| <!--Description-->GTX 690 Kepler NVE0
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->pci-e 3.0, OpenGL 4.4 OpenCL 1.1
|-
| <!--Description-->GTX 670
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GTX 660 GTX 660 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GTX 650 GTX 650 Ti GTX 650 Ti Boost
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVE0 family (Kepler) most need 1 6pin psu
* not working asus ENGTX560 DC/2DI/1GD5
* works
|-
| <!--Description-->Geforce GT 640
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* 128bit DDR3
* 192bit DDR3 1.5 to 3GB 50W
* 128bit GDDR5 75W
|-
| <!--Description-->GT 620 GT 640
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->Quadro K2000 NVE7 (GK107) Kepler
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 - 50w single slot pcie 2.0 -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce 750ti, GeForce 900
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->[https://nouveau.freedesktop.org/FeatureMatrix.html NV110] Maxwell -
|-
| <!--Description-->Nvidia GTX 750
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x1381
| <!--Revision-->0xa2
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2026 nvidia test
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->GM206 2nd gen maxwell PureVideo HD 7" or "VP7" (Nvidia Feature Set F or VDPAU Feature Set F) adds full hardware-decode of H.265 HEVC Version 1 (Main and Main 10 profiles and full fixed function VP9 (video codec) hardware decoding
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV132 (GP102) NVIDIA Titan (X, Xp), GeForce GTX 1080 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV134 (GP104) GeForce GTX (1070, 1080)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV136 (GP106) GeForce GTX 1060
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->Quadro K620 quadro p620 2gb gddr5 128bit and quadro p1000 4gb gt1030 30w
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 50w slim low profile -
|-
| <!--Description-->GeForce gtx 1060, GeForce 1070
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NV130 Pascal
|-
| <!--Description-->NV137 (GP107) GeForce GTX (1050, 1050 Ti)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV138 (GP108) GeForce GT 1030
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->NV130 family (Pascal)
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV162 (TU102) NVIDIA Titan RTX, GeForce RTX 2080 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV164 (TU104) GeForce RTX (2070 Super, 2080, 2080 Super)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2020 NV160 family (Turing) unified gsp-rm firmware - best starting point for Vulkan support
|-
| <!--Description-->NV166 (TU106) GeForce RTX (2060, 2060 Super, 2070)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV168 (TU116) GeForce GTX (1650 Super, 1660, 1660 Ti, 1660 Super)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV167 (TU117) GeForce GTX 1650
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->gtx 1650ti super
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2018 old style
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV172 (GA102) GeForce RTX (3080, 3090)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 av1 decoding ampere
|-
| <!--Description-->NV174 (GA104) GeForce RTX (3060 Ti, 3070, 3080 Mobile)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->NV170 family (Ampere)
|-
| <!--Description-->NV176 (GA106) GeForce RTX (3050, 3060)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV177 (GA107) GeForce RTX 3050
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV192 (AD102) GeForce RTX 4090
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV193 (AD103) GeForce RTX 4080
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->NV190 family (Ada Lovelace)
|-
| <!--Description-->NV194 (AD104) GeForce RTX (4070, 4070 Ti)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV196 (AD106) GeForce RTX 4060 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV197 (AD107) GeForce RTX 4060
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
|}
==== nouveau mobile integrated ====
If you purchased a notebook with an NVidia sticker on it, most of the time you have a optimus based one, ie Intel CPU+GPU melded with Nvidia GPU, Optimus was slated at one point to go into desktop PCs but the industry ended up rejecting that concept
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|-
| GeForce 6100 nForce 405
| 0x
| 0x03D1 0x0242
| 0x0
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
|
|-
| <!--Description-->GeForce 6100 nForce 400
| <!--Vendor ID-->
| <!--Product ID-->0x03D2
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce 6100 nForce 420
| <!--Vendor ID-->
| <!--Product ID-->0x03D5
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce 6150 LE
| <!--Vendor ID-->
| <!--Product ID-->0x0241
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6150SE nForce 430
| 0x
| 0x03D0
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| working
|-
| <!--Description-->GeForce 6150
| <!--Vendor ID-->
| <!--Product ID-->0x0240
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7150M / nForce 630M
| <!--Vendor ID-->
| <!--Product ID-->0x0531
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7000M / nForce 610M
| <!--Vendor ID-->
| <!--Product ID-->0x0533
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7050 PV / NVIDIA nForce 630a
| <!--Vendor ID-->
| <!--Product ID-->0x053A 0x053B
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Geforce IGP 7025 nForce 630a
| 0x
| 0x053E
| 0x0
| <!--2D-->{{Yes|some}}
| <!--3D-->{{Yes|some}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No| }}
| some support on some chipsets
|-
| GeForce 7100 / nForce 630i (C73)
| 0x10de
| 0x07e1
| 0x0a2
| <!--2D-->{{Maybe}}
| <!--3D-->{{Maybe}}
| <!--Analogue-->{{Maybe}}
| <!--Digital-->{{Maybe}}
| <!--Laptop LCD-->{{N/A}}
| Icaros 2.0.3 and Gigabyte 73-pvm-s2h rev. 1.0 but will not boot on [https://ae.amigalife.org/index.php?topic=806.msg8765#new Acer x270 with Icaros 2.3]
|-
| <!--Description-->GeForce 7150 / NVIDIA nForce 630i
| <!--Vendor ID-->
| <!--Product ID-->0x07E0
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7050 / NVIDIA nForce 610i
| <!--Vendor ID-->
| <!--Product ID-->0x07E3
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Geforce IGP 8100 (nForce 720a)
| 0x
| 0x084F
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
|
|-
| GeForce 8100P
| 0x
| 0x0847
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
|
|-
| <!--Description-->Geforce 8200 8300 nForce 730a
| <!--Vendor ID-->
| <!--Product ID-->0x084A 0x0848 (GeForce 8300) 0x0849 (GeForce 8200) 0x084B (GeForce 8200)
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->working on some 8300's with Icaros 1.5 but others untested
|-
| <!--Description-->nForce 780a SLI
| <!--Vendor ID-->
| <!--Product ID-->0x084C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->nForce 750a SLI
| <!--Vendor ID-->
| <!--Product ID-->0x084D
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Nvidia Geforce IGP 9300 (nForce MCP7a)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->works
|
|-
| <!--Description-->9400 (ION)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->If AROS detects GPU chipset, works well
|-
| <!--Description-->9700M ()
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Geforce ION 2
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->works well
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce Go 6150
| <!--Vendor ID-->
| <!--Product ID-->0x0244
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6100
| <!--Vendor ID-->
| <!--Product ID-->0x0247
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6200
| <!--Vendor ID-->
| <!--Product ID-->0x0164 0x0167
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6400
| <!--Vendor ID-->
| <!--Product ID-->0x0166 0x0168
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->Sony Laptop
|-
| <!--Description-->GeForce Go 6800
| <!--Vendor ID-->
| <!--Product ID-->0x00C8
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6800 Ultra
| <!--Vendor ID-->
| <!--Product ID-->0x00C9
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600
| <!--Vendor ID-->
| <!--Product ID-->0x0144
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600 TE/6200 TE
| <!--Vendor ID-->
| <!--Product ID-->0x0146
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600
| <!--Vendor ID-->
| <!--Product ID-->0x0148
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600 GT
| <!--Vendor ID-->
| <!--Product ID-->0x0149
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7200
| <!--Vendor ID-->
| <!--Product ID-->0x01D6
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7300
| <!--Vendor ID-->
| <!--Product ID-->0x01D7
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->untested
|-
| <!--Description-->GeForce Go 7400
| <!--Vendor ID-->
| <!--Product ID-->0x01D8
| <!--Revision-->
| <!--2D-->
| <!--3D-->works 2D and 3d issues though
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7800
| <!--Vendor ID-->
| <!--Product ID-->0x098
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7800 GTX
| <!--Vendor ID-->
| <!--Product ID-->0x0099
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7950 GTX
| <!--Vendor ID-->
| <!--Product ID-->0x0297
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7900 GS
| <!--Vendor ID-->
| <!--Product ID-->0x0298
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7900 GTX
| <!--Vendor ID-->
| <!--Product ID-->0x0299
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7600
| <!--Vendor ID-->
| <!--Product ID-->0x0398
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7600 GT
| <!--Vendor ID-->
| <!--Product ID-->0x0399
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 6610 XL
| <!--Vendor ID-->
| <!--Product ID-->0x0145
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 6700 XL
| <!--Vendor ID-->
| <!--Product ID-->0x0147
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce 8700M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0409
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8600M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0425
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8400M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0426
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8400M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0427
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8400M G
| <!--Vendor ID-->
| <!--Product ID-->0x0428
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8800M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x0609
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8800M GTX
| <!--Vendor ID-->
| <!--Product ID-->0x060C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9500M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0405
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8600M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0407
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9650M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0408
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9400M GT
| <!--Vendor ID-->
| <!--Product ID-->0x042C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9300M G
| <!--Vendor ID-->
| <!--Product ID-->0x042E
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9100M G
| <!--Vendor ID-->
| <!--Product ID-->0x0844
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9800M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x0628
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9700M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x062A
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9800M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x062C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9600M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0647
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9600M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0648
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9600M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0649
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9500M G
| <!--Vendor ID-->
| <!--Product ID-->0x064B
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9300M GS
| <!--Vendor ID-->
| <!--Product ID-->0x06E5
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9200M GS
| <!--Vendor ID-->
| <!--Product ID-->0x06E8
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9300M GS
| <!--Vendor ID-->
| <!--Product ID-->0x06E8
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->NV50 (G80) Quadro FX (4600 (SDI), 5600)
Quadro FX (2800M, 3600M, 3700, 3700M, 3800M, 4700 X2), VX 200
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV94 (G94) 9700M GTS, 9800M GTS, GeForce G 110M, GT 130(M), GT 140, Quadro FX (1800, 2700M)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV84 (G84) Tesla 8700M GT, GeForce 9500M GS, 9650M GS
Quadro FX (370, 570, 570M, 1600M, 1700), NVS 320M
NV86 (G86) GeForce 8300 GS, 8400 (GS, M G, M GS, M GT), 8500 GT, GeForce 9300M G
Quadro FX 360M, NVS (130M, 135M, 140M, 290)
GeForce GTS 150(M), GTS 160M, GTS 240, GTS 250, GTX (260M, 280M, 285M), GT (330, 340)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV96 (G96) 9650M GT, 9700M GT
GeForce G 102M, GT 120
Quadro FX (380, 580, 770M, 1700M)
NV98 (G98) GeForce 8400 GS, GeForce 9200M GS, 9300 (GE, GS, M GS)
GeForce G 100, G 105M
Quadro FX (370 LP, 370M), NVS (150M, 160M, 295, 420, 450)
Quadro CX, FX (3800, 4800, 5800)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVA3 (GT215) GeForce GT (240, 320, 335M), GTS (250M, 260M, 350M, 360M) Quadro FX 1800M
NVA5 (GT216) GeForce GT (220, 230M, 240M, 325M, 330M), 315
Quadro 400, FX 880M, NVS 5100M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVA8 (GT218) Tesla GeForce 8400 GS, GeForce 210M, 305M, 310M, Quadro FX 380M, NVS 2100M, 3100M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVAA (MCP77/MCP78) GeForce 8100, 8200, 8300 mGPU / nForce 700a series, 8200M G
NVAC (MCP79/MCP7A) ION, GeForce 9300, 9400 mGPU / nForce 700i series, 8200M G, 9100M, 9400M (G)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVAF (MCP89) GeForce 320M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NVC0 (GF100) Fermi GeForce GTX 480M, Quadro 5000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVC1 (GF108) GeForce GT 415M, 420M, 425M, 435M, 520M, 525M, 540M, 550M, 555M, 630M, 635M, 640M LE, Quadro 1000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVC3 (GF106) Fermi GeForce GT 445M, 555M, 630M, 635M), GTX 460M, Quadro 2000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVC4 (GF104) GeForce GTX 470M, 485M, Quadro 5000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVCE (GF114) GeForce GTX 570M, 580M, 670M, 675M,
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVD7 (GF117) Fermi Geforce GT 620M, 625M, (some) 630M, 710M, 720M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVD9 (GF119) Fermi GeForce 410M, GT 520M, 520MX, 610M, Quadro NVS 4200M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NVE4 (GK104) GeForce GTX 670M, 680M, 775M, 780M, 860M, Quadro K3000M, K3100M, K4000M, K4100M, K5000M, K5100M,
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVE7 (GK107) GeForce GT640M, 645M, 650M, 710M, 720M, 730M, 740M, 745M, 750M, 755M, GTX 660M, K500M, K1000M, K1100M, K2000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GTX 1650 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2019 turing architecture - last old skool support pre Vulkan
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rtx 2050 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 ampere architecture best starting point for vulkan support
|-
| <!--Description-->rtx 2060 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rtx 4060 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
|}
====radeon.hidd====
Michel Shultz ''2D'' graphics driver (standard on most distributions but only for very old GPUs) and bearsofts updated 2013 around Icaros 1.3.1
3D is not implemented by AROS yet but could cover these AMD chipsets
<pre>
2014 SI AMD HD 7xxx
2016 GCN3rd AMD R5E R7E
2019 GCN5th AMD Vega 8
2022 RDNA1 AMD RX5500 desktop only
2023 RDNA2 AMD 680M 780M
2024 RDNA3 AMD 880M 890M
2025 RDNA3.5 AMD 8060S strix halo and AI
2027 RDNA4 AMD
</pre>
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! 2D
! 3D
! Analogue Output
! Digital Output
! Laptop LCD
! Comments
|-
| 7000 (r100)
| 0x1002
| 0x5159
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->{{Maybe|vga15 pin connection but not s-video}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.3
|-
| 7500 (rv200 but still r100 based)
| 0x1002
| 0x5157
| 0x
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->{{Yes|vga15}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.3
|-
| 8000 8500 (r200)
| 0x1002
| 0x514c (8500LE)
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.4
|-
| 9000 9100 9250 (r200)
| 0x1002
| 0x5964 (9000) 0x514d (9100)
| 0x0001
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->{{Maybe|VGA15 but not s-video}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.4
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| 9600 9800 (r300)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1
|-
| x300 x600 (r300)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1
|-
| x700, x800 ([http://en.wikipedia.org/wiki/Radeon_R600 r420])
| 0x
| 0x554d (R430 x800xl)
| 0x0
| <!--2D-->{{Yes|new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1 - x800 XL PCIE (problem with mouse-pointer, some part of the pointer is not transparent)
|-
| x1300 x1550 x1600 x1800 x1900 x1950 ([http://en.wikipedia.org/wiki/Radeon_R520 r520])
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes|new driver}}
| <!--3D-->{{no}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| HD2400 HD2600 HD2900 ([http://en.wikipedia.org/wiki/Radeon_R600 r600])
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|some features with new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 3.3 open CL 1.2 TeraScale architecture
|-
| HD3400 HD3600 HD3800 (r600)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|some features with new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->pci-e 2.0, openGL 3.3
|-
| HD4300 HD4500 HD4600 HD4700 HD4800 ([http://en.wikipedia.org/wiki/Radeon_R600 r700])
| 0x1002
| 0x
| 0x0
| <!--2D-->{{Maybe|but some later cards need 3D engine for faster and more flexible 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 3.3 - DDR3 - GDDR5 was one of AMD's aces for the 4800 series - 4670 liked -
|-
| HD6900 cayman series
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|some features with new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 3.3 open CL not mature (2014) -
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| HD5400 Series HD5430 HD5450 HD5470
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2010 openGL 3.3 openCL - GDDR3 -
|-
| HD5500 Series HD5550 HD5570 HD5600 Series HD5650 HD5670 HD5700 Series HD5750 HD5770
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 3.3 openCL - GDDR5
|-
| HD 5800 Series HD5850 HD5870 HD5900 Series HD5950 HD5970 - HD6xxx not NI chipset ([http://en.wikipedia.org/wiki/Evergreen_(GPU_family) r800 evergreen])
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 openGL 3.3 openCL - DDR5 pci-e 2.1 best avoided for all pci-e 1.0 mobos - Ati TeraScale2 architecture -
|-
| HD6450 [http://en.wikipedia.org/wiki/Northern_Islands_(GPU_family) Northern Islands chipset]
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> - DDR3 -
|-
| HD6600 Series HD6650 HD6570 HD6600 Series HD6650 HD6670
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2011 - DDR5 -
Radeon HD 8470 11 TeraScale 2
Radeon HD 8350 11 TeraScale 2
Radeon HD 7510 11 TeraScale 2
Radeon HD 6550D 11 TeraScale 2
Radeon HD 6530D 11 TeraScale 2
Radeon HD 6410D 11 TeraScale 2
Radeon HD 6370D 11 TeraScale 2
Radeon HD 6320 11 TeraScale 2
Radeon HD 6310 11 TeraScale 2
Radeon HD 6290 11 TeraScale 2
Radeon HD 6250 11 TeraScale 2
|-
| HD6800 Series HD6850 HD6870 HD6700 Series HD6790 to HD6990
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2011 - DDR5 - AMD TeraScale3 -
|-
| <!--Description-->HD7450-HD7670
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 OpenGL but not Vulkan
Radeon HD 7660D 11 TeraScale 3
Radeon HD 7560D 11 TeraScale 3
Radeon HD 7540D 11 TeraScale 3
Radeon HD 7480D 11 TeraScale 3
Radeon HD 6930 11 TeraScale 3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->HD7750 HD 7770 / R7 250X HD7850 HD7870 / R9 270X HD 7950 / R9 280 HD 7970 / R9 280X [http://en.wikipedia.org/wiki/Southern_Islands_(GPU_family) Southern Islands]
*AMD Radeon R7 250XE Cape Verde XT
*AMD Radeon R7 M465X Cape Verde
*AMD Radeon R9 255 Cape Verde PRX
*AMD Radeon HD 7750 Cape Verde PRO
*AMD Radeon R7 250E Cape Verde PRO
*AMD Radeon HD 8740 Cape Verde PRO
*AMD Radeon HD 7730 Cape Verde LE
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 pci-e 3.0 1st Gen GCN architecture -
|-
| <!--Description-->R5 430, FirePro W2100,
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 50W+ openGL openCL 1/3 speed of gtx750ti 1st gen gcn1
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->HD7790 [ Sea Islands ]
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 openGL 4.1 open CL - GCN2.0 Vulkan 1.0 introduced a Shader Engine (SE) comprising one geometry processor, up to 44 CUs (Hawaii chip), rasterizers, ROPs, and L1 cache and Graphics Command Processor for faster audio/video - suits Vulkan 1.1
|-
| <!--Description-->r5 240 240x (slow) R7 250 250x (faster) HD 7790 / R7 260 260X / R7 360 to R5 350 (fast) and last one R5 430 OEM Plus (slow again)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 50W+ GCN 1st gen - openGL 4.x openCL 1.x Vulkan 1.0
|-
| <!--Description-->R9 290 / R9 390 R9 290X / R9 390X
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2014 GCN 1.1 2nd Gen architecture - openGL 4.x openCL 1.x Vulkan 1.1 -
|-
| <!--Description-->R9 Fury Nano
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 GCN 1.2 3rd Gen - openGL openCL vulkan
|-
| <!--Description-->r-200 series r8 275 285 295 375 [Volcanic Islands]
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 GCN1.2 - openGL 4.x openCL 1.x Vulkan 1.2
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 [https://gpuopen.com/download/AMD_GCN3_Instruction_Set_Architecture_rev1.1.pdf GCN3]
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Radeon™ RX 5700/5600/5500 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 GCN 4 - OpenGL 4, Vulkan 1.3 -
|-
| <!--Description-->Radeon™ RX 400/500 Series like rx vega 580
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->Radeon™ Pro WX 9100, x200 Series and Radeon™ Pro W5700/W5500 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Radeon™ RX 7900/7600 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->Radeon™ RX 6900/6800/6700/6600/6500 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|}
==== amd radeon mobile integrated ====
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|-
| <!--Description-->ATI RC410 [Radeon Xpress 200M]
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x5a62 0x5955 0x5974 (200m)
| <!--Revision-->0x00
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->
|-
| <!--Description-->Mobility Radeon 7500
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x4c57 (7500)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->
|-
| <!--Description-->Mobility Radeon 9000
| 0x1002
| 0x4966 (9000)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->
|-
| <!--Description-->Mobility Radeon 9500 9550 (rv360) 9600 (rv350)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon 9800 (rv420)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon X300 (RV370) X600 (RV380)
| 0x1002
| 0x (RV370) 0x5657 (RV380)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon X700 (RV410) X800 (RV423)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon X1200 (RS69M0)
| 0x1002
| 0x791f
| 0x0
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->X1200 IGP (RS690)
|-
| <!--Description-->Mobility Radeon X1300 X1350 X1400(rv515) X1600 (rv530) X1650 (RV535) X1800 (rv520) x1900 (rv570)
| 0x1002
| 0x71c7 (X1650)
| 0x009e
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon 2100
| 0x1002
| 0x796e (2100)
| 0x0
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{No|}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 2400 (rv610) HD2600 (rv630)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 3100 HD3200 HD3450 3470 (RS780MC RV620) 3670 (M86-XT RV635) HD3870 (M88-LXT RV670)
| 0x1002
| 0x9610 and 0x9612 (HD3200) 0x9614 (HD3300)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 4200 4250 (RV620)
| 0x1002
| 0x (HD4200) 0x9715 (HD4250)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 4330 4530 4550 (M92 RV710) 4650 (M96-XT RV730) 4670 RV730XT 4830 (M97 RV740) 4850 (M98 RV770)
| 0x1002
| 0x (HD4350) 0x9442 (RV770) 0x9490 (HD4670)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 530v (M92 RV710) HD 550v (M96 RV730)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->no support yet
|-
| <!--Description-->Mobility Radeon HD 5430 HD5650 (cedar Park LP)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->no support yet
|-
| <!--Description-->Radeon HD 6250 6290 6310 6320 6350M (Redwood Capilano PRO)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->no support yet
|-
| <!--Description-->AMD 7640G, 8450G, 8550G, 8650G Northern Islands
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 Last real support for old graphics standard before Vulkan takeover
|-
| <!--Description-->R5 M230 M240 M255 - R7 M260 M265 (Kaveri Crystal series with Mantle and HSA)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->2015 Maybe better with Vulkan
|-
| <!--Description-->R5E R7E
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->2016 bristol ridge GCN 3.0 IGP (Carrizo Mobile)
|-
| <!--Description-->AMD Vega 3, 6, 8, 11 iGP
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2018 raven ridge GCN 5th Gen
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->5500m 5600m 5800m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA1 NaviX1 Zen 2
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rx680m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA2 NaviX2 Zen 3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->phoenix apu 1103
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 RDNA3 NaviX3 zen 4
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
==== AMDGPU Vulkan desktop ====
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Kaveri 290 290X, 260 260X
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 AMDGPU Vulkan
|-
| <!--Description-->R9 285 / R9 380 R9 380X Fury / Fury X
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->opengl 4 opencl 1 3rd Gen GCN architecture
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX470 RX460 RX480 RX580 polaris10
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 opengl 4 opencl 2 4th Gen GCN architecture vulkan 1.3
|-
| <!--Description-->RX460 RX560D polaris11
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 opengl 4 opencl 2 4th Gen GCN architecture vulkan 1.3
|-
| <!--Description-->RX580 polaris20
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 opengl 4 opencl 2 4th Gen GCN architecture vulkan 1.3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX 5000 5500 Navi 1x
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RNDA 1
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX 6000 Navi 2x
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RNDA 2 Mesa 21.3 decode av1
|-
| <!--Description-->RX6000
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX 7000
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 RNDA 3 navi
|-
| <!--Description-->RX7000
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->RX9070 rx 9060 XT
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2025 rdna4 navi
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2026 udna (aka rdna5)
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
|}
==== AMDGPU Vulkan mobile ====
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->R5E R7E
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->2016 bristol ridge GCN 3.0 IGP (Carrizo Mobile)
|-
| <!--Description-->Vega 8
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> GCN 5
|-
| <!--Description-->Vega iGP 3, 6, 8, 11
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2018 raven ridge - Graphics Core Next (GCN) 5th gen -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->5500m 5600m 5800m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA1 NaviX1 Zen 2
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rx680m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA2 NaviX2 Zen 3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->phoenix apu 1103
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA3 NaviX3 zen 4
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
fyi if a notebooks with two graphic cards, the integrated Intel card (id 0x7d) for low power usage and a discrete Radeon card (id 0x56) which should be used for GPU-intensive applications. By default the Intel card is always used
[https://wiki.archlinux.org/title/ATI Gallium Radeon HD] is not ported yet but is [https://www.phoronix.com/scan.php?page=news_item&px=Linux-5.9-AMDGPU-Stats really big] and complex so another solution may have to be [https://discuss.haiku-os.org/t/the-graphics-acceleration-can-of-worms/10515/5 found] like [https://discuss.haiku-os.org/t/vulkan-lavapipe-software-rendering-is-working-on-haiku/11363/10 vulkan] where support starts from very recent ISA GCN islands HD7000s cards only
*Vulkan
*Gallium
Vulkan software renderer allows to prepares the infrastructure for hardware rendering. Primary difference between software and hardware renderer is output to regular RAM vs GPU RAM, the rest is almost the same. It is possible to render to GPU RAM offscreen.
bare bones basics data flow
application,>>> api/opengl/vulkan>>>>, jit compiler, >>>>memory manger, >>>>gpu hardware
so you need to have a compiler that takes your api call/program/shaders/drawing commands and turns them into a program the gpu can render.
the vulkan to amd gpu compiler for shaders and textures is nearly os agnostic iirc as long as you have solid posix compliance
Unlike OpenGL, Vulkan does not depend on windowing system and it have driver add-on system with standardized API (Mesa also have OpenGL driver add-ons, but it have non-standard Mesa-specific API). OpenGL may need more work for windowing system related code at this point but developing Vulkan on real hardware is more strategic than developing OpenGL, since now Zink 3 running on Vulkan compensates for the lack of OpenGL support by giving performance similar to native accelerated OpenGL
RadeonGfx use client-server model with client-server thread pairs. For each client thread that calls 3D acceleration API, server side thread is created. If client thread terminates, server side thread also exit.
==Rough gfx comparison==
<pre>
Group 1
GeForce RTX 5090 5070 5060 5050
GeForce RTX 4090 4070 4060 4050
Group 2
GeForce RTX 2070
Radeon RX 7600
Quadro RTX 5000
Radeon PRO W6600
GeForce RTX 2060 12GB
Radeon PRO W7500
Quadro GP100
Radeon RX 6800S
GeForce RTX 3070 Laptop GPU
GeForce GTX 1080
GeForce RTX 3060 8GB
Quadro RTX 4000
Radeon Pro W5700
Radeon RX 6600
GeForce RTX 2080 (Mobile)
Radeon RX 7700S
Radeon RX 6700S
Radeon RX 6600S
Quadro RTX 5000 (Mobile)
GeForce GTX 1070 Ti
GeForce RTX 4050 Laptop GPU
Radeon Pro Vega 64X
Radeon RX 5700
Radeon RX Vega 64
GeForce RTX 2060
GeForce RTX 2070 Super with Max-Q Design
Group 3
Radeon RX 6600M
GeForce GTX 1070
Radeon RX 6650M
GeForce RTX 3060 Laptop GPU
Radeon RX Vega 56
Radeon RX 6700M
GeForce RTX 2080 with Max-Q Design
Radeon RX 6800M
GeForce GTX 980 Ti
Radeon R9 Fury
GeForce GTX 980
Quadro M5500
Radeon R9 390X
Radeon RX 580
Radeon RX 5500
Radeon RX 6550M
GeForce GTX 1660 Ti with Max-Q Design
GeForce GTX 780 Ti
GeForce GTX 970
Radeon R9 290X
Radeon RX 480
Radeon RX 5600M
Quadro RTX 3000 with Max-Q Design
Radeon R9 290X / 390X
Ryzen 5 4600HS with Radeon Graphics
Radeon R9 290
Radeon Pro 5500 XT
Radeon R9 M490 *
GeForce GTX 780
Radeon RX 6500M
Quadro M5500
GeForce GTX 1060 with Max-Q Design
Radeon RX 6500
Radeon RX 5300
Intel Arc A770M
GeForce GTX 1650 Ti
Radeon Pro 580X
Radeon RX 6400
GeForce RTX 2050
Ryzen 9 4900HS with Radeon Graphics
Radeon Ryzen 9 6900HS
GeForce GTX 980M
Quadro M5000M
Radeon RX 6300
GeForce GTX 1650 Ti with Max-Q Design
Radeon Pro 570
Ryzen 9 6900HS with Radeon Graphics
GeForce GTX 1050 Ti
Quadro M4000M
Radeon R9 280X 380X
GeForce GTX 1650 with Max-Q Design
GeForce MX570
Radeon R9 280X
Radeon R9 380
Radeon 780M
GeForce GTX 960
GeForce GTX 970M
Quadro M4000M *
GeForce GTX 680
Group 4
Radeon RX 6500M
Quadro M5500
Radeon Pro WX 7100
GeForce GTX 1060 with Max-Q Design
GeForce GTX 1650
Intel Arc A730M
Radeon HD 7970
Radeon R9 M395X
Radeon R9 M485X
Radeon R9 M480 *
Radeon R9 M295X
Radeon R9 M390X *
FirePro W7170M *
Radeon R9 M395
Radeon R7 370
Radeon RX 5500M
GeForce GTX 590
GeForce GTX 880M
GeForce GTX 950
Radeon R9 270X
GeForce GTX 660 Ti
GeForce GTX 760
GeForce GTX 780M
Quadro K5100M
GeForce GTX 680MX
Radeon HD 7870
GeForce GTX 965M
Quadro M3000M *
GeForce GTX 870M
Radeon R9 M290X
Radeon HD 8970M
Radeon Ryzen 7 7735U (680M), Radeon Ryzen 7 7735HS (680M 12C)
GeForce GTX 580
Radeon HD 6970
GeForce GTX 1050
GeForce GTX 680M
GeForce GTX 775M
GeForce GTX 1630
FirePro M6100
Radeon HD 7970M
Radeon R9 M390 *
GeForce GTX 750 Ti
Group 5
GeForce GTX 570
GeForce GTX 480
GeForce GTX 960M
Quadro M2000M *
Quadro K5000M
Quadro K4100M
GeForce GTX 770M
GeForce GTX 860M
GeForce GTX 675MX
GeForce GTX 950M
GeForce GTX 850M
Quadro M1000M
Radeon R9 M280X
Radeon HD 7950M *
GeForce GTX 560 Ti
Radeon HD 6870
GeForce GTX 470
GeForce GT 1030
GeForce MX330
Ryzen 5 PRO 5650GE with Radeon Graphics
Ryzen 7 5800HS
FirePro 3D V8800
GeForce MX250
Group 6
Radeon Pro WX 3200
Ryzen 7 PRO 5750G with Radeon Graphics
Radeon Ryzen 5 5600H
Ryzen 5 Pro 4650G with Radeon Graphics
Radeon Ryzen 7 5800U
Ryzen 7 7730U with Radeon Graphics
Radeon Ryzen 7 5825U
Radeon Pro WX 4150
Radeon Ryzen 5 PRO 4655G
Ryzen 5 4600G with Radeon Graphics
Radeon Ryzen 5 PRO 4655GE
GeForce GTX 485M
FirePro W6150M
Ryzen 7 5800U with Radeon Graphics
Ryzen 5 7530U with Radeon Graphics
Ryzen 7 4800U with Radeon Graphics
Radeon R9 M470
Ryzen 3 PRO 5350G with Radeon Graphics
Radeon RX Vega Ryzen 3 5300U
Ryzen 7 5825U with Radeon Graphics
Ryzen 5 PRO 4400G with Radeon Graphics
Radeon Ryzen 7 PRO 4750GE
Radeon Ryzen 7 4800U
FirePro V7900
Radeon HD 5970
Radeon Ryzen 7 7700X 8-Core
Radeon Ryzen 5 PRO 5650G
Radeon Ryzen 5 4400G
Radeon Ryzen 5 PRO 5650GE
Radeon RX 550X
FirePro V8800
Radeon RX Vega Ryzen 5 5500U
GeForce MX150
Quadro K3100M
Ryzen 7 PRO 5850U with Radeon Graphics
Radeon HD 6970M
Radeon R7 250X
Intel HD 5600
Ryzen 3 4300GE with Radeon Graphics
GeForce GTX 460
Ryzen 7 5700U with Radeon Graphics
Radeon Ryzen 5 7530U
Quadro K620
Ryzen 3 PRO 5350GE with Radeon Graphics
Intel Iris Pro P580
Intel UHD Graphics P630
Ryzen 5 4600H with Radeon Graphics
Ryzen 5 PRO 7530U with Radeon Graphics
Radeon HD 5870
Radeon HD 6870
Ryzen 7 4700G with Radeon Graphics
Ryzen 5 5600U with Radeon Graphics
Radeon HD 7770
Ryzen 3 Pro 4350G with Radeon Graphics
Radeon Ryzen 5 5625U
GeForce GTX 745
Radeon Ryzen 7 4850U Mobile
Radeon Ryzen 3 PRO 7330U
Quadro M600M
Radeon Ryzen 5 5500U
Ryzen 5 5560U with Radeon Graphics
Ryzen 7 4800H with Radeon Graphics
Group 7
GeForce 945M
Ryzen 5 PRO 4650GE with Radeon Graphics
FirePro M5100
Radeon Ryzen 5 5600U
Radeon Ryzen 5 PRO 4500U
GeForce GTX 580M
Ryzen 7 PRO 5875U with Radeon Graphics
Ryzen 3 5300GE with Radeon Graphics
Radeon R9 M385
Quadro 5000M
Radeon Ryzen 7 4700U
Ryzen 5 PRO 5650U with Radeon Graphics
Radeon Ryzen 7 PRO 4750U
Ryzen 7 4700U with Radeon Graphics
Ryzen 7 PRO 4750U with Radeon Graphics
FirePro V7800
Radeon R9 350
Ryzen 3 4300G with Radeon Graphics
Radeon Vega 11 Ryzen 5 PRO 3350G
Radeon Ryzen 5 5560U
GeForce GTX 460 SE
Radeon Pro W5500M
Radeon Vega 11 Ryzen 5 PRO 3400G
Ryzen 5 5500U with Radeon Graphics
Ryzen 5 PRO 4500U with Radeon Graphics
GeForce GT 645
GeForce GTX 765M
Radeon R9 M385X
Ryzen 5 5625U with Radeon Graphics
Ryzen 3 PRO 7330U with Radeon Graphics
Radeon HD 5850
Radeon Vega 11 Ryzen 5 PRO 2400G
Intel Iris Pro 580
Radeon HD 6850
Intel Iris Xe MAX
Radeon Ryzen 7 PRO 5875U
Radeon Ryzen 5 7600 6-Core
GeForce GTX 470M
Ryzen 3 5300G with Radeon Graphics
GeForce GTX 670MX
Radeon RX 640
Qualcomm Adreno Gen 3
Radeon R7 450
GeForce GTX 675M
Radeon Pro WX 4130
Intel Iris Xe MAX 100
Quadro 5000
Radeon RX 570X
Radeon HD 7700-serie
Ryzen 5 4600U with Radeon Graphics
Ryzen 3 PRO 4350GE with Radeon Graphics
Radeon Vega 8
Group 8
GeForce MX230
GeForce GTX 765M
Quadro K4000M
Iris Pro Graphics P580 *
Iris Pro Graphics 580 *
GeForce GTX 645
Quadro M520
GeForce GTX 570M
GeForce MX130
Radeon RX 540
Radeon Ryzen 5 PRO 5675U
Intel UHD Graphics 770
Radeon RX Vega 11 Ryzen 7 3750H
Radeon Vega 11 Ryzen 5 PRO 3400GE
Radeon HD 5850
GeForce GTX 675M
GeForce GTX 580M
Radeon HD 6990M
Radeon R9 M385X *
Radeon R9 M470X *
Radeon R9 M470 *
Radeon R9 M385 *
Radeon R9 M380 *
Radeon R9 M370X
Radeon R9 M275
Radeon HD 7770
GeForce GTX 485M
GeForce GTX 460 768MB
Radeon HD 6790
GeForce GTX 285M SLI
Quadro K3100M
FirePro W5170M *
GeForce GTX 670MX
Quadro 5010M
GeForce GTX 760M
GeForce GTX 670M
Group 9
GeForce 940MX *
Maxwell GPU (940M, GDDR5)
FirePro M8900
Radeon HD 6970M
Radeon R9 M270
Radeon HD 8870M
Radeon HD 7870M
Quadro K3000M
GeForce GTX 570M
FirePro M6000
FirePro M5100
Quadro K2100M
Radeon HD 5770
GeForce GTX 550 Ti
GeForce GTX 280M SLI
Radeon HD 6950M
Radeon R7 250
GeForce GT 755M
GeForce GTX 660M
GeForce 845M
Radeon HD 8850M
Radeon R9 M365X
Radeon R9 M265X
Ryzen 5 PRO 4400GE with Radeon Graphics
FirePro W5130M *
Radeon Vega 8 Ryzen 5 3500U
Radeon HD 7850M
Radeon HD 8790M
FirePro W4170M
FirePro W4190M
FirePro W4100
Radeon Vega 6 Ryzen 3 3300U
Quadro 4000M
GeForce GTX 470M
GeForce GTX 480M
GeForce GT 750M
Iris Pro Graphics 6200
Quadro K1100M
GeForce 940M
Radeon R9 M375
GeForce 930MX *
Radeon R7 M380 *
Radeon R7 M370
Quadro M600M *
GeForce GT 650M
Quadro K620M
GeForce 840M
Radeon R7 M275DX
GeForce GT 745M
Radeon HD 7770M
GeForce GTX 560M
Radeon R7
Iris Pro Graphics 5200
GeForce GT 740M
GeForce 930M
Radeon HD 4850
Group 10
Iris Graphics 550 *
GeForce 830M
Iris Graphics 540
Quadro M500M *
Quadro K2000M
GeForce GTS 450
GeForce GTX 260M SLI
GeForce GT 735M
Mobility Radeon HD 5870
GeForce 825M
Quadro 5000M
FirePro M4000
FirePro M7820
Radeon HD 6870M
GeForce 9800M GTX SLI
Radeon HD 8830M *
Radeon HD 8770M
Radeon R7 M260X
GeForce GTX 460M
GeForce 920MX *
GeForce GT 730M
Radeon HD 7750M
GeForce GT 645M *
FirePro M4100
Radeon HD 8750M
Radeon R6 A10-9600P 4C+6G
Quadro 3000M
Radeon R7 M270
Radeon R7 M265
Quadro FX 3800M
GeForce GTX 285M
Mobility Radeon HD 4870
GeForce GT 640M
Radeon R7 (Kaveri)
Radeon R8 M365DX
Radeon R7 M460 *
Radeon HD 7730M
Radeon R7 M360
GeForce GTX 280M
Radeon HD 8690M
Quadro FX 3700M
Radeon R7 M340
GeForce 920M
Radeon R6 M340DX
HD Graphics 530
HD Graphics P530
Tegra X1 Maxwell GPU
Radeon R7 M260
Radeon R6
Group 11
Mobility Radeon HD 4860
FirePro M7740
Mobility Radeon HD 4850
GeForce GTX 260M
GeForce 9800M GTX
Quadro FX 2800M
Radeon HD 8670D
Radeon HD 7690M XT
FirePro M5950
GeForce GT 640M LE
Radeon R6 (Kaveri)
Radeon HD 8650M *
Radeon HD 8730M
Radeon HD 6770M
GeForce GT 635M
GeForce GT 555M
Radeon R7 A10 PRO-7800B
Radeon HD 5670
Mobility Radeon HD 5850
Radeon HD 6850M
Quadro 2000M
GeForce 9800M GT
GeForce 8800M GTX
Quadro FX 3600M
GeForce GT 445M
GeForce GTS 360M
Group 12
GeForce GT 240
Radeon R7 PRO A10-9700
Radeon HD 7690M
HD Graphics 5600
Radeon HD 8570D
Radeon HD 8670M
Radeon R6 M255DX
Radeon HD 7660D
Radeon HD 6750M
Quadro K1000M
GeForce GT 550M
Radeon HD 8590M *
GeForce GTS 260M
GeForce GTS 160M
GeForce 9800M GTS
GeForce GT 430
Radeon HD 6830M
Mobility Radeon HD 5830
Radeon HD 6730M *
GeForce 9800M GS
Mobility Radeon HD 4830
Mobility Radeon HD 5770
Radeon HD 6570M
Radeon HD 8650G
Radeon HD 7670M
GeForce GT 630M
Radeon HD 7560D
GeForce GTS 150M *
Radeon R5 M335
Radeon R5 M430 *
Radeon R5 M330
Radeon R5 M255
Radeon Vega 3
Quadro 1000M
GeForce 820M
FirePro W2100
HD Graphics 520 620
Iris Graphics 6100
GeForce GT 720M
GeForce 8800M GTS
Radeon R5 M240
Radeon R5 M320 *
Radeon R5 M230
Radeon R5 M315 *
Mobility Radeon HD 5750 *
Radeon HD 8570M
Radeon R7 PRO A10-8850B
HD Graphics 6000
Quadro K610M
Radeon HD 8550M
Iris Graphics 5100
GeForce GT 540M
Mali-T880 MP12 *
Radeon HD 8610G *
Radeon HD 6650M
HD Graphics 4600
Mobility Radeon HD 5730
HD Graphics 5500
Radeon R5 (Carrizo) *
Radeon R5 (Kaveri)
FirePro M5800
NVS 5400M
GeForce 710M
Radeon HD 7660G
GeForce GT 435M
HD Graphics 5000
Quadro K510M *
Radeon HD 5570
Radeon HD 6550M
Radeon HD 7590M *
GeForce GTS 350M
GeForce GTS 250M
Radeon HD 6630M
Radeon HD 7650M
FirePro M2000
Radeon HD 7570M
Radeon HD 7630M
Quadro FX 1800M
Mobility Radeon HD 5650
Radeon HD 8510G *
Radeon HD 6530M
Radeon HD 8550G
Quadro K500M *
GeForce GT 625M *
GeForce GT 620M
GeForce GT 525M
Radeon HD 6550D *
Radeon HD 7610M
Radeon HD 7620G
Radeon HD 8470D
Radeon HD 7640G
Adreno 530
GeForce ULP K1 (Tegra K1 Kepler GPU)
HD Graphics 4400
HD Graphics 510 515 *
NVS 5200M
Mobility Radeon HD 565v
Radeon HD 7550M
Mobility Radeon HD 4670
GeForce GT 425M
GeForce 9700M GTS
Radeon HD 6645G2 *
Quadro FX 2700M
GeForce GT 335M
Radeon HD 7600G
Mobility Radeon HD 3870
Mobility Radeon HD 4650
GeForce GT 220
GeForce GT 420M
Radeon HD 7530M *
Mobility Radeon HD 3850
GeForce GT 330M
Quadro FX 880M
Quadro NVS 5100M
GeForce GT 240M
Radeon HD 7490M *
HD Graphics 5300
Radeon HD 7510M *
GeForce Go 7950 GTX
Quadro FX 3500M
GeForce 8700M GT SLI
GeForce 9700M GT
GeForce GT 230M
Mobility Radeon HD 550v
Radeon HD 7480D
HD Graphics 4000
Mali-T760 MP8
Radeon HD 6620G
HD Graphics (Broadwell) *
Adreno 430
Radeon R5 (Beema/Carrizo-L)
Radeon R4 (Beema) (Kaveri)
HD Graphics (Skylake) *
Radeon HD 6450 GDDR5
Radeon HD 7500G
Radeon HD 8450G
Radeon HD 7470M
Radeon HD 6490M
Radeon HD 8400
Mali-T880 MP4
GeForce GT 520MX
Radeon HD 7520G
GeForce GT 325M
GeForce Go 7800 GTX SLI
GeForce 8600M GT SLI
GeForce Go 7900 GS SLI
GeForce GT 130M
NVS 4200M
GeForce Go 7900 GTX
Quadro FX 2500M
Radeon HD 8350G
Radeon HD 8330
GeForce 9650M GS
GeForce 9650M GT
Radeon R3 (Mullins/Beema)
GeForce 8700M GT
Quadro FX 1700M
Quadro FX 1600M
GeForce Go 7800 GTX
GeForce Go 7900 GS
Quadro NVS 320M
Quadro FX 1500M
GeForce 9600M GT
GeForce GT 220M
Quadro FX 770M
GeForce GT 120M
Radeon HD 7450M
GeForce 610M
GeForce 705M
Mali-T760 MP6
Radeon HD 6470M
FirePro M3900 *
GeForce GT 520M
Radeon HD 7420G
Mobility Radeon HD 3670
Mobility FireGL V5725
PowerVR GX6450
Adreno 420
HD Graphics (Haswell)
Radeon HD 6520G
Radeon HD 8310G *
GeForce 320M
GeForce GT 320M
Mobility Radeon HD 2600 XT
Mobility Radeon X1900
Mobility Radeon X1800XT
Mobility Radeon X1800
GeForce Go 6800 Ultra
GeForce Go 7800
GeForce 9600M GS
GeForce 9500M GS
Radeon HD 7400G
Radeon HD 6480G *
Mobility Radeon HD 2700
GeForce GT 415M
GeForce 410M
Radeon HD 7370M
Adreno 418
HD Graphics (Cherry Trail)
Radeon HD 6370M
Radeon HD 8280
Mobility Radeon HD 5470
Radeon HD 6450M
Radeon HD 7430M *
Mobility Radeon HD 3650
Mobility FireGL V5700
Mobility Radeon HD 5145
Mobility Radeon HD 545v
Radeon R6 (Mullins) *
Radeon HD 8240
Radeon HD 8250
Mobility Radeon HD 4570
Quadro FX 570M
Mobility Radeon HD 5450 *
Radeon R2 (Mullins/Beema) *
GeForce 8600M GT
Mobility Radeon HD 2600
HD Graphics 3000
Quadro FX 380M
GeForce 310M
GeForce G210M
NVS 3100M
GeForce 405M
GeForce 315M
GeForce Go 7600 GT
GeForce 9500M G
GeForce 8600M GS
NVS 2100M
GeForce Go 7700
GeForce Go 6800
Quadro FX Go 1400
Mobility Radeon X800XT
Radeon HD 6430M *
Radeon HD 6380G *
Mobility Radeon HD 5430
Radeon HD 8210
Mobility Radeon HD 540v
Mobility Radeon HD 4550
HD Graphics 2500
HD Graphics (Ivy Bridge)
Quadro NVS 310
Radeon HD 7350M *
Radeon HD 6350M *
Mobility Radeon HD 4530
Mobility Radeon HD 4350
Radeon HD 4350
GeForce 305M
Mobility Radeon X1700
Mobility FireGL V5250
Mobility Radeon X2500
GeForce Go 7600
Quadro NVS 300M
Mobility Radeon X800
Mobility Radeon X1600
Mobility FireGL V5200
Mobility Radeon 9800
GeForce Go 6600
Mobility Radeon X1450
Mobility Radeon X700
Mobility FireGL V5000
GeForce G 110M
Quadro NVS 295
Radeon HD 6330M *
Mobility Radeon HD 4330
GeForce 8400M GT
Quadro NVS 140M
HD Graphics 2000
GeForce 9500M GE *
GeForce 9400M (G) / ION (LE)
HD Graphics (Sandy Bridge) *
Adreno 330
PowerVR G6430
PowerVR GX6250
PowerVR G6400
HD Graphics (Bay Trail)
Mali-T628 MP6
Mali-T760 MP4
Chrome9HD *
Radeon HD 7340
Radeon HD 6320 *
Radeon HD 7310
Radeon HD 6310 *
Radeon HD 8180
Mobility Radeon HD 3470
GeForce 9300M G
ION 2 *
GeForce 9300M GS
Quadro FX 370M
Quadro NVS 160M
GeForce 9200M GS
Mobility Radeon HD 3450
Mobility Radeon HD 3430
Mobility Radeon HD 3410
Mobility Radeon HD 2400 XT
Radeon HD 4270
Radeon HD 4250
Radeon HD 7290 *
Radeon HD 6290 *
Radeon HD 4200
Graphics Media Accelerator (GMA) HD Graphics
Radeon HD 6250
Quadro NVS 150M
Quadro FX 360M
Mobility Radeon X1350
Mobility Radeon X1400
GeForce 9100M G
GeForce 8400M GS
Quadro NVS 135M
Mobility Radeon HD 2400
Radeon HD 3200
Radeon HD 4225 *
Radeon HD 4100 *
SGX554MP4
Mali-T628 MP4
Mobility Radeon HD 3400 *
Radeon HD 3100
GeForce 8400M G
Mali-T860 MP2
Quadro NVS 130M
GeForce 8200M G
Graphics Media Accelerator (GMA) 4700MHD
Graphics Media Accelerator (GMA) 4500MHD
Graphics Media Accelerator (GMA) 4500M
Mali-T604 MP4
GeForce Go 7400
Quadro FX 350M
Quadro NVS 120M
GeForce Go 7300
GeForce Tegra 4 *
PowerVR G6200
Adreno 405 *
Quadro NVS 110M
Mobility Radeon X600
Mobility FireGL V3200
Mobility FireGL V3100
Mobility Radeon HD X2300
Mobility Radeon 9700
Mobility FireGL T2e
Mobility Radeon X1300
GeForce4 4200 Go
Mobility Radeon 9600
Mobility FireGL T2
Mobility Radeon 9550
GeForce Go 7200
GeForce Go 6400
Mobility Radeon X300
GeForce Go 6250
GeForce Go 6200
GeForce FX Go 5700
Quadro FX Go 1000
GeForce FX Go 5600 / 5650
Radeon Xpress X1270
Radeon Xpress X1250
Radeon Xpress X1200
Graphics Media Accelerator (GMA) X3100
Mali-T624
Adreno 320 *
Mali-T760 MP2
Mali-T720 MP4
Mali-450 MP4
Graphics Media Accelerator (GMA) 3650 *
GeForce 7190M *
GeForce 7150M
Radeon Xpress 1150
GeForce Go 6150
GeForce Go 6100
GeForce 7000M
Graphics Media Accelerator (GMA) 3600 *
Mobility Radeon 9200
Mobility FireGL 9000
GeForce FX Go 5200
Mobility Radeon 9000
GeForce 4 488 Go
GeForce 4 460 Go
GeForce 4 440 Go
GeForce 4 420 Go
Graphics Media Accelerator (GMA) 3150
Graphics Media Accelerator (GMA) 950
SGX545 SGX544MP2 SGX543MP2 *
Mali-T720 MP2
Mali-T720
Adreno 302 304 305 306
Mobility Radeon 7500
Mobility FireGL 7800
Graphics Media Accelerator (GMA) 900
Radeon Xpress 200M
Radeon Xpress 1100
Mirage 3+ 672MX
Mirage 3 671MX
Mali-400 MP4 *
GeForce ULP (Tegra 3) *
VideoCore-IV *
Adreno 220 225*
Vivante GC1000+ Dual-Core
Mali-400 MP2 *
GeForce ULP (Tegra 2) *
Graphics Media Accelerator (GMA) 600 *
SGX540 *
Graphics Media Accelerator (GMA) 500
Adreno 205 *
Adreno 203 *
GC800 *
SGX535
SGX531
SGX530
Adreno 200 *
Mali-200 *
GeForce 3 Go *
GeForce 2 Go 200 / 100
Mobility Radeon 9100 IGP
Mobility Radeon 9000 IGP
Mobility Radeon M7
Mobility Radeon M6
Chrome9 HC
Extreme Graphics 2
Mobility Radeon 7000 IGP
Radeon IGP 340M
Radeon IGP 320M
S3G UniChrome Pro II
S3G UniChrome Pro
Castle Rock
Mirage 2 M760
Mirage M661FX
S3 Graphics ProSavage8
Mobility 128 M3
SM502 *
</pre>
Kernel-space drivers like '''radeon''' (older AMD driver for older GPUs), '''amdgpu''' (newer driver for newer GPUs, allows using a few new features), i915, nouveau and a few others. They are what handles the gory details of talking to the GPU itself (writing to proper registers, handling its memory directly, configuring outputs, and so on). Unfortunately most of what they're exposing can be only consumed by a single user of that GPU, which is why we need...
DRM and DRI (Direct Rendering Manager/Infrastructure) controls access to the GPUs, provides interfaces for talking to the GPU concurrently by multiple apps at once (without them breaking each other) and lets the system perform the most basic tasks like setting proper resolution and such if no userspace apps understand how to talk to the GPU exposed. DRI and DRM expose the GPU interfaces mostly as-is, not in a "vendor-neutral" portable way - if you don't have an application developed specifically for a GPU you have, it won't work.
"let's create a vendor-neutral interface for graphics so that apps can ignore the GPU-specific bits and get right to the drawing!" - which is what OpenGL is. User-space drivers implement the OpenGL specification and expose it as an OpenGL library to apps (like games, browsers, etc) instead of the GPU. Mesa is the most popular collection of open-source user-space drivers and contains a few user-space drivers for different GPU families: '''radeonsi''' for most modern AMD GPUs (and '''r600g''', r300g and others for older ones), '''i915/i965''' for old/new Intel GPUs and '''nouveau''' for Nvidia GPUs.
There's also Gallium, which is a bunch of utilities and common code shared among these drivers - if certain things can be done once and work everywhere, they'll land in Gallium and benefit all the drivers. Most Mesa drivers use Gallium (radeonsi, nouveau, software renderers), some don't (intel after gma950).
Displaying 2D windows supports device-specific 2D drivers as well, but nowadays most of these are no longer needed as the modesetting can handle most hardware on its own. As the DRM/DRI got some additional interfaces for what used to be hardware-specific (setting resolutions, refresh rates, etc) and software requiring accelerated 2D drawing was optimized OpenGL-based renderers, dedicated 2D acceleration is slowly going away. Since around 2012, the 3D part of the graphics card deals with 2D operations.
Modern GPUs can also decode video!? There's VDPAU (NVIDIA & AMD GPUs) and VA-API (AMD & Intel GPUs) that can also talk to the GPU exposed via DRM/DRI and issue proper commands to decode/encode a given video stream. Those drivers are GPU-specific too.
So let's say you have some example GPUs, here's how example stacks could look like:
* AMD Radeon HD8750: amdgpu -> DRM/DRI -> Mesa (radeonsi)
* AMD Radeon HD4850: radeon kernel driver -> DRM/DRI -> Mesa (r600g) -> games/apps/etc.
* NVIDIA GeForce 460: nouveau kernel driver -> DRM/DRI -> Mesa (nouveau) -> games/apps.
* Intel GMA950: i915 kernel driver -> DRM/DRI -> Mesa (i945) -> games/apps.
{| class="wikitable sortable" width="90%"
! width="15%" | Description
! width="15%" | Analog Output
! width="15%" | Digital Output
! width="15%" | Laptop LCD
! width=30%" | Comments
|-
| <!--Description-->Fudomi GC888A
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->1080p 100in throw projector
|-
| <!--Description-->Vamvo VF320 (720P)
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->720p 90in
|-
| <!--Description-->Happrun H1
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->1080p 90in
|-
| <!--Description-->Umbolite Magcubic HIPPUS HY320 Mini
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->720p 100in
|-
| <!--Description-->Zentality A10 Plus
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->720p 110in
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->nexigo nova mini
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->nebula mars 3
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->epson lifestudio flex plus portable projector
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->dangbei freedo
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->benq gv50
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
Unless your computer uses a Firewire chipset manufactured by Texas Instruments, FireWire interfaces are likely to act buggy.
AROS is unlikely to ever support FireWire.
Bluetooth is similarly unlikely to be ever supported due to huge cost to be certified.
No, x86 PCMCIA card.resource at the moment. Writing card.resource would be a similar amount of work to writing a typical driver. However, it might be complicated by having to support a variety of PCMCIA-controller chipsets like TI PCI1225, PCI1410, PCI1420, 1450, PCIxx12 and O2, etc. m68k card.resource does not really have many higher level functions, most functions are really simple or poke Gayle registers directly. only exception is CopyTuple(). Amiga card.resource has one significant flaw: it's single-unit. would need card.resource and pccard.library. There was talk in the past of designing a new API for PCMCIA because card.resource only supports one slot, but since most modern laptops only have one slot anyway, I think it might be worthwhile to implement card.resource as-is (at least as a first step). pccard.library would be trivial to port. So, a new API is needed.
9p5dqxindz0g8lq8dyz85b4q0mgq4x1
4641127
4641126
2026-06-25T13:44:50Z
Jeff1138
301139
4641127
wikitext
text/x-wiki
Google translation into [http://translate.google.com/translate?hl=en&sl=auto&tl=de&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support German], [http://translate.google.com/translate?hl=en&sl=auto&tl=fr&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support French], [http://translate.google.com/translate?hl=en&sl=auto&tl=nl&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Dutch], [http://translate.google.com/translate?hl=en&sl=auto&tl=it&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Italian], [http://translate.google.com/translate?hl=en&sl=auto&tl=es&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Spanish], [http://translate.google.com/translate?hl=en&sl=auto&tl=hi&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Hindi],
[http://translate.google.com/translate?hl=en&sl=auto&tl=zh-CN&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Chinese Simplified],
[http://translate.google.com/translate?hl=en&sl=auto&tl=pl&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Polish],
[http://translate.google.com/translate?hl=en&sl=auto&tl=ru&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Russian],
{{ArosNav}}
[[#Audio Chipsets]]
[[#Graphic GFX Chipsets]]
[[#Rough gfx comparison]]
[[#]]
==x86 Native Environment==
AROS should run on almost any i386 PC hardware so long as the CPU is newer than an i486, and has a "Floating Point Unit (FPU)". Ideally around 700Mhz and above with at least 256MB of memory is recommended for desktops and around 1GHz and at least 256MB for laptops/notebooks/netbooks. For web browsing, etc above 1GB is usually needed and offers the option to run web browsers, media players and other hard disk heavy usage from RAM: disk.
Motherboards supported
* Most Intel mobos are supported (Skt 775 is ok but newer is better) - additional pci / pci-e cards may be needed for networking, audio, etc
* AMD based socket 939 am2 am2+ am3+, fusion and am4 ryzen based systems work but additional pci / pci-e cards may be needed
Supported graphics cards (gfx)
* Nvidia 2D and 3D 2005-2017.
64bit AROS Nouveau covers '''2D''' 8xxxgs and higher to GTX 900s and '''3D''' from .
32bit AROS supports '''2D''' from TNT through to fermi gtx5xx and '''3D''' acceleration fx5xxx to gtx4xx.
* Intel GMA 2D and 3D 2006-2009.
'''2D''' for many old netbooks and motherboards. '''3D''' for many early netbooks and motherboards
* AMD/ATI 2D only and '''no 3D'''. 1999-2005.
Desktop ie external monitor support only (no laptop internal support) for very early Radeon 7000 through to x600. Experimental 2D version for up to HD3xxx came later
* VESA 2D fallback modes for all graphic cards (GPUs) and with [http://www.youtube.com/watch?v=HKCHZFYj9Kk screen dragging].
It's worth noting however that support isn't guaranteed. Nor will potential power of a card reflect its performance under AROS.
Sound wise there are
* HDaudio support for onboard intel and AMD netbooks, ultrabooks, notebooks and motherboards (2005 to 2020)
* some AC97 codec support for very old motherboards and laptops (ie pre 2004)
* PCI and some PCI-E C-Media CMI8738 for desktop plugin cards
* PCI Creative Soundblaster EMU10K1 cards [http://amigaworld.net/modules/news/article.php?storyid=2512 SBLive]
* PCI semi professional some early VIA Envy24 desktop sound cards
* PCI Sound Blaster 128 aka SB16
Supported [http://en.wikibooks.org/wiki/Aros/Platforms/x86_Network_support network] which could be desktop, laptop, etc
* PCI-E Realtek rtl8169 which also includes the rtl8111 and rtl8110
* PCI Realtek rtl8139 and includes rtl8101 and rtl8100
* PCI intel pro100
* Broadcom 44xx 10/100 integrated in laptops around 2005
* VIA 10/100
* 3com Etherlink 10/100
* Realtek rtl8029 10mbit
Wireless wifi
* atheros 5000 wireless
*realtek 8187 usb
It is very hard to recommend a completely supported motherboard because as soon as newer motherboards arrive so their features change subtly, often introducing non supported parts like ethernet and audio. It is a moving target.
* mini-itx motherboard will only get you 1 pci or pci-e slot
* micro mATX or uATX will have more, typically 2 pci-e or pci slots which helps if any onboard features are not supported.
* full atx will have more slots available
'''N.B''' It is frustrating when a piece of hardware is not supported. Hardware documentation can run to over 100 pages and a lot of hardware do not have any public documentation anyway. Chips from different manufacturers for sound, graphics, SATA, etc. vary just as much, unless they follow a standard such as [https://github.com/acidanthera/AppleALC/wiki/Supported-codecs HDAudio codecs], AHCI etc.
Coding drivers is a far cry from Hello World programs or even a port of existing software. If you do actually want to try then get a hold of documentation on the relevant hardware and start there. Alternatively you could try to find some '''BSD''', MIT or MPL licence drivers as a point of reference. Please , do not think you can just adapt strings in a driver for different strings, it does not work that way. You will '''need''' to start from scratch for each new bit of hardware. Device driver programming require '''embedded''' skills, like manipulation of bits within registers, good debugging skills, dealing with interrupts, lots of patience, etc.
The following specific chipsets and drivers are also available - use Tools/PCITool to confirm Vendor and Product IDs - Please let us know any mistakes or any information to be added, to this General Chat list on [https://arosworld.org/ AROS World]
: Brief Timeline
: 2000-12-06 HIDD first mouse.hidd completed ([http://msaros.blogspot.com/ Michal Schulz])
: 2001-03-31 BOOT first boot from floppy disk with IDE device
: 2001-10-30 BOOT first cd bootable version
: 2002-01-27 HIDD first pci.hidd added (Michal Schulz)
: 2002-04-13 BOOT software HDToolBox added ()
: 2003-04-03 HIDD vesa2.hidd graphic modes added ()
: 2004-03-08 HIDD new pci and ata (pata) devices worked on (Michal Schulz)
: 2004-03-17 HIDD nVidia 2D driver appears (Michal Schulz)
: 2005-01-05 AHI AHI v6 audio system ported (Martin Blom)
: 2005-01-06 AHI SBLive SoundBlaster Live driver ported (Georg Steger)
: 2005-02-04 AHI AC97 playback only driver added (Michal Schulz)
: 2005-06-27 NIC amiTCP stack ported with 3com, NE2000, prism2 drivers (Neil Cafferkey)
: 2005-08-25 NIC nForce2 support added (Michal Schulz)
: 2005-12-24 NIC Intel Pro100 network driver added (Neil Cafferkey)
: 2006-03-25 HIDD ATI radeon 2D driver added (Michal Schulz)
: 2007-03-06 HIDD vesa 1.0 video driver added (Pavel Fedin)
: 2007-03-08 HIDD dospackets and FAT filesystem (Rob Norris)
: 2007-03-21 HIDD usb initial commit (Michal Schulz)
: 2007-10-01 BOOT Installer added (Neil Cafferkey)
: 2007-11-29 PORT 64bit x86 added (Michal Schulz)
: 2008-04-12 BOOT GRUB2 added (Alain Greppin and Nick Andrews)
: 2008-08-26 NIC RTL8139 added ([http://kalamatee.blogspot.com/ Nick Andrews])
: 2008-10-22 PORT to SAM440ep (ppc) (Michal Schulz)
: 2009-02-25 PORT to efika (ppc) (Michal Schulz)
: 2009-05-18 HIDD poseidon usb2.0 stack ported to AROS (Chris Hodges)
: 2009-11-18 NIC RTL8169 network driver arrived (Nick Andrews and [http://pagesperso-orange.fr/franck.charlet/oldnews.html Franck Charlet])
: 2009-12-23 AHI HDAudio based Atom CPU and netbook audio driver arrived (Davy Wentzler)
: 2010-03-09 BOOT USB pendrive stick booting available (Neil Cafferkey)
: 2010-05-26 HIDD Intel GMA900 2D graphics card support (Michal Schulz)
: 2010-09-03 NIC Wireless PCI based NIC arrived (Neil Cafferkey)
: 2011-04-30 HIDD Nvidia 2D and 3D nouveau graphics card support (Deadwood)
: 2011-08-30 HIDD Radeon 2D enhanced AMD driver arrives (Bearsoft)
: 2011-09-17 NIC Wireless USB realtek arrives (Neil Cafferkey)
: 2011-12-09 HIDD Intel 945G 3D Gallium graphics support (Sami)
: 2013-02-25 AHI AC97 VIA 686 audio support (Davy Wentzler and Neil Cafferkey)
: 2013-03-31 PORT early Raspberry PI native support (Nik Andrews)
: 2014-01-16 AHI Envy24 audio chipset support (Davy Wentzler and Neil Cafferkey)
: 2017-02-17 PORT Symmetric MultiProcessing smp added for x86 64bit (Michal Schulz)
: 2018-10-20 PORT Big Endian ARM
: 2021-11-26 NIC Broadcom 44xx ethernet (Neil Cafferkey)
: 2023-01-12 NIC Nvidia MCP61 ethernet (Neil Cafferkey)
: 2025-11 HIDD xHCI USB3 and isoc (Nik Andrews)
[[#top|...to the top]]
===Audio Chipsets===
'''If sound beeps in AHI prefs after Music set then some support is there. Select more than one channel for multiple audio streams, set frequency up to 44 kHz or higher and set the volume if not already set. Ensure you set the music unit 0 to 3 which allows the extra features of the audio card like microphone, line-out, etc).'''
====1996-2000 sb128.audio aka SB16 PCI====
*2021 5.27
as per CREATIVE's website, the model number is the first two digits on the front and first two digits on the back. my card says CT4810 and 161TK110B 995; this translates to CT4816 as the model.
The original AudioPCI 3000 card with the ES1370 had a master clock crystal for 44.1 kHz (22.5792 MHz), used an AKM codec (AK4531, non-AC97) and had 4 channel output; Creative later modified the design with a crystal for 48 kHz (24.576 MHz) and Sigmatel AC97 codec (a CT4700 SB128 with a CT5507 chip, AK4531, 22.5792 MHz crystal and TDA7360 speaker power amp). The issue with these cards involved never quite eliminate the effects of resampling on the 64V, it also shows signs of undersized coupling caps. These Ensoniq cards automatically engaged headphone amplifier (with a 4565 opamp).
Porting involved [http://repo.or.cz/w/AROS.git/commit/b60abd12967144a844980c422ea9e99c056eabca 40897], [http://repo.or.cz/w/AROS.git/commit/b7d6511fca6430a63fbaaa390b4f51bf0203a460 40898 configure], [http://repo.or.cz/w/AROS.git/commit/f51034cd22759a4ec3a2547bddb3a7169d956eaa 40900 bugs], [http://repo.or.cz/w/AROS.git/commit/4f43fc38e3489ea45d12b7b5ba6fff50b69c5746 40901 further bugs], [http://repo.or.cz/w/AROS.git/commit/d23c78aec75f049484b6916d27b6804ce858bb2c 40913 memory IO fixes], [http://repo.or.cz/w/AROS.git/commit/d256860fe3035016952e88d143c6f2611997f2f3 40914 irq fix].
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| Ensoniq AudioPCI 1000
| 0x1274
| 0x5000
|
| {{unk}}
| {{unk}}
| untested - es1370 (u?) AK4531 (u?)
|-
| Ensoniq AudioPCI
| 0x1274
| 0x5000
| 0x00
| {{yes}}
| {{maybe}}
|
|-
| CT4700 Sound Blaster PCI 64 (audioPCI 3000)
| 0x1274
| 0x5000
| 0x7c
| {{yes}}
| {{maybe}}
| works - opamp JRC4565(u?) [http://en.wikipedia.org/wiki/Ensoniq_ES1370 es1370] (u?)
|-
| CT4750 Sound Blaster 64/PCI
|
|
|
| {{unk}}
| {{unk}}
| untested - 4565-1056W (u1) stac9708t(u2) [http://arstechnica.com/civis/viewtopic.php?f=6&t=916891 ct5880-dcq] (u3) 24wc012 (u4)
|-
| CT4751 (SB128PCI)
| 0x1274
| 0x8001
|
| {{unk}}
| {{unk}}
| untested - [http://en.wikipedia.org/wiki/Sound_Blaster#Ensoniq_AudioPCI-based_cards es1371] (u?)
|-
| CT4810 Creative AudioPCI64V
| 0x1274
| 0x1371
| 0x06
| {{yes}}
| {{maybe}}
| works
|-
| CT4811 (SB Vibra 128)
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4812 (Vibra 128)
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4813
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4815
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4816 es1373 (vibra 128)
|
|
|
| {{unk}}
| {{unk}}
| untested but this card has creative's ES1373 as the main chip(U1). it is also different from the other CT4810 (vibra128) in that it does not have a second chip in U2 position. Also there is only one jumper JP1 (2X3).
|-
| CT5801 HP
|
|
|
| {{unk}}
| {{unk}}
| untested - es1373 (u3)
|-
| CT5803 Gateway
| 0x1274
| 0x1371
| 0x08
| {{yes}}
| {{maybe}}
| works 4565-0005b jrc (u1) 4297a-jq ztae0c0002 (u2) es1373 (u3)
|-
| CT4740
| 0x1274
| 0x1371
| 0x08
| {{yes}}
| {{yes}}
|
|-
| CT5805 Compaq OEM Premier Sound Presario 7
|
|
|
| {{unk}}
| {{unk}}
| untested - es1373 (u3)
|-
| CT5806 (Sound Blaster AudioPCI 128D)
|
|
|
| {{unk}}
| {{unk}}
| untested - 4297A-JO EP (u?) ZTAPWC9933 (u2) es1373 (u3)
|-
| CT5807 Dell OEM Dimension 8100
|
|
|
| {{unk}}
| {{unk}}
| untested - es1373 (u?)
|-
| CT5808
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4730 Sound Blaster AudioPCI 64V Ectiva EV1938
| 0x1102
| 0x8938
|
| {{unk}}
| {{unk}}
| untested
|-
| CT5880 on various motherboards
| 0x1274
| 0x5880
|
| {{unk}}
| {{unk}}
| untested [http://www.xbitlabs.com/articles/mainboards/display/ga-6rx.html Gigabyte GA-6RX] (VIA ApolloPro 266 2001], Gigabyte GA-6VM7-4E mobo, [http://active-hardware.com/english/reviews/mainboard/ga-7vtx.htm Gigabyte GA-7VTX] (KT266 2001), Gigabyte [http://www.amdboard.com/gigabytega7vtxh.html GA-7VTXH] (KT266A 2001), [http://www.amdboard.com/gigabytega7vrxp.html Gigabyte 7VRXP] mobo (KT333 2002), MSI MS-6309, MS-6318, MS-6337 (815E Pro), MS-6339 (850Pro) and MS-6340, PCChips Motherboard M571 TXPRO, Soltek SL-65ME+,
|-
| VMware Virtual Workstation(TM)
| 0x1274
| 0x1371
| 0x02
| {{Yes|but not Hi-Fi modes}}
| {{maybe}}
| works
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
<pre>
Revision 0x04 = ES1371 REV_ES1373_A
Revision 0x06 = ES1371 REV_ES1373_B
Revision 0x07 = ES1371 REV_CT5880_A
Revision 0x02 = CT5880 REV_CT5880_C
Revision 0x03 = CT5880 REV_CT5880_D
Revision 0x04 = CT5880 REV_CT5880_E
Revision 0x09 = ES1371 REV_ES1371_B
Revision 0x00 = EV1938 REV_EV1938_A
Revision 0x08 = ES1371 REV_ES1373_8
</pre>
====1999-2001 via-ac97.audio====
*2021 5.10
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| <!--Description-->694X with 686A KT133 PM133 or 693A with VT8231
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3058
| <!--Revision-->
| <!--Playback-->{{Yes| }} redirects earphones correctly
| <!--Recording-->{{Yes| }}
| <!--Comments-->audio controller works but depends on the underlying invisible codec used see AC97 section
|-
| <!--Description-->686B KT133A with VT8231
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3058
| <!--Revision-->0x50
| <!--Playback-->{{Yes|}} reroutes ear pieces right
| <!--Recording-->{{Yes|}}
| <!--Comments-->audio controller works but depends on the underlying codec used see AC97 section below
|-
| <!--Description-->686C
| <!--Vendor ID-->0x1106
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->untested
|-
| <!--Description-->KM266 or KT266 with VT8233, KT266A with VT8233A, VT8233C
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3059
| <!--Revision-->0x10
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->KM333 KT333 with VT8235
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3059
| <!--Revision-->0x30
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
| <!--Description-->KM400 KT400 with VT8237, KT600 with VT8237R,
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3059
| <!--Revision-->0x40 0x50 0x60
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
|}
====1998-2003 emu10kx.audio - Creative Labs SoundBlaster Live! and Audigy====
*2021 6.5
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| PCI512 CT4790 (emu10k1)
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested (1st Gen)
|-
| Live CT4620
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Live CT4760
| 0x1102
| 0x0002
| 0x07
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| playback works
|-
| Live Value CT4670
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| works plays stereo (2nd Gen)
|-
| Live Value DELL CT4780
| 0x1102
| 0x0002
| 0x06
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| plays/records stereo - untested 4.1mode
|-
| Live Value Compaq CT4830
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{Maybe}}
| <!--Recording--> {{unk}}
| not working
|-
| Live Value CT4831
| 0x1102
| 0x0002
| 0x00
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Live Value CT4832
| 0x1102
| 0x0002
| 0x07
| <!--Playback--> {{yes}}
| <!--Recording--> {{partial|Line-In only}}
| works
|-
| Live Value CT4832
| 0x1102
| 0x0002
| 0x08
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| works
|-
| Live Value HP CT4870
| 0x1102
| 0x0002
|
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| Works
|-
| Live Value Gateway CT4871
| 0x1102
| 0x0002
|
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Live! Platinum 5.1 SB0060
| 0x1102
| 0x0002
| 0x00
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
| plays audio/records, untested 5.1 (3rd Gen)
|-
| Live 5.1 SB0100 -SFF
| 0x1102
| 0x0002
| 0x00
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| works
|-
| Live 5.1 Player SB0220
| 0x1102
| 0x0002
| 0x0a
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
| plays audio/records stereo, untested 5.1
|-
| Live 5.1 Digital SB0228
| 0x1102
| 0x0002
| 0x0a
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
| working
|-
| Audigy SB0090 (emu10k2)
| 0x1102
| 0x0004
|
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| <!--Description-->Audigy SB0230
| <!--Vendor ID-->0x1102
| <!--Product ID-->0x0004
| <!--Revision-->0x03
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Yes|Mic only}}
| <!--Comments-->5th Dec 2012 - untested optical tos link. contains also IEEE1394/Firewire (untested)
|-
| Audigy 2 Platinum 6.1 SB0240 SB0250 EMU10K2.5
| 0x1102
| 0x0004
| 0x04
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| works
|-
| Audigy 2 PRO SB0280 EMU10K2.5
| 0x1102
| 0x0004
|
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Audigy 2 ZS SB0350
| 0x1102
| 0x0004
| 0x04
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
|
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| Live 5.1 DELL SB0200 SB0203 emu10kx
| 0x1102
| 0x0006
| 0x0
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
|
|-
| Live 24bit SB0410
| 0x1102
| 0x0007
| 0x
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Live 24bit DELL SB0413
| 0x1102
| 0x0007
| 0x
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy LS SB0310
| 0x1102
| 0x0007
| 0x0
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy SE 7.1 SB0570
| 0x1102
| 0x0007
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 2 ZS SB0320 SB0360 (PRO)
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 2 VALUE SB0400
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 4 VALUE SB0610
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 4 PRO SB0380
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| EMU E-MU 0404 PCI (not USB) EM8852
| 0x1102
| 0x000
| 0x0
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver but linux support needs firmware
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
the green jack is for the main speaker pair AND headphones, so manual switching will be required
If your card is wired for the "AC97" standard, then it's up to your headphone jack to switch the green speaker output in and out
the headphone jack has Normally-closed contacts that will open on insertion, which breaks the signal path back to the sound card (FP_RETURN)
====2000-2010 cmi8738.audio - C-Media====
*2021 5.20
;Read [http://amigaworld.net/modules/news/article.php?storyid=2512 more] and imported on [http://repo.or.cz/w/AROS.git/commit/aff741d60160c6a9d7d39c9e004a25ea3aa13847 20th July 2011] and [http://alsa.opensrc.org/Cmipci alsa docs].
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| Audiotrak MAYA EX5
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| cmi8738-sx 4ch
| 0x13f6
| 0x0111
| 0x10
| <!--Playback-->
| <!--Recording-->
| untested
|-
| e3dx hsp56 CMedia 8738-sx 4ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| EDio SC3000D 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Genius SoundMaker Value PCI C3DX
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Guillemot Maxi Sound Muse
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Hercules Gamesurround Muse LT
| 0x13f6
| 0x0111
| 0x10
| <!--Playback--> {{yes}}
| <!--Recording--> {{no}}
|
|-
| Hercules Gamesurround Muse XL LT 5.1
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Inno audio extreme 5.1 cmi8738/lx pci 6ch
| 0x13f6
| 0x0111
| 0x
| <!--Playback-->
| <!--Recording-->
| untested
|-
| M-Audio (Midiman) DiO 2448
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Sabrent SBT-SP6C 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| StarTech PCISOUND4CH 8738sx 4ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Sweex SC012 CMI8738-lx 4ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Terratec 5.1 PCI
| 0x13f6
| 0x0111
| 0x10
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Terratec Aureon Fun 5.1
|
|
|
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| Has SPDIF
|-
| Trust Sound Expert Digital Surround 5.1 (cm8738-mx 6ch)
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Turtle Beach Riviera CMI8738-MX 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| XSonic CMI 8738 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->CMI8738 6ch PCI-E PCI Express version
| <!--Vendor ID-->0x13f6
| <!--Product ID-->0x0111
| <!--Revision-->0x10
| <!--Playback-->{{Yes|}}
| <!--Recording-->{{Maybe|}}
| <!--Comments-->Chinese based card with playback tested so far
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
====2001-2005 ac97.audio====
*6.4 27-12-2008
The AC97 chips were designed to be pinout interchangeable so that the sound support could change easily and quickly without motherboard redesigns
the green jack is for the main speaker pair AND headphones, so manual switching will be required
If your card is wired for the "AC97" standard, then it's up to your headphone jack to switch the green speaker output in and out, the headphone jack has Normally-closed contacts that will open on insertion, which breaks the signal path back to the sound card (FP_RETURN)
The ProductID and VendorID are for the audio controller only - the important additional codec is '''NOT''' so easily identified.
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| <!--Description-->Avance Logic (now Realtek) ALC100 and ALC101 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->ALC200 and ALC201 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->ALC201A and ALC202 and ALC202A codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->ALC650
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| <!--Comments-->most Nforce2 boards plays audio only - Abit NF7, Asus A7N8X, MSI K7N2, Epox 8RDA+, DFI
|-
| <!--Description-->ALC850 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{No}}
| <!--Comments-->no support for via P4P800 chipset on ASUS A8V-E SE Deluxe mobo - ICaros 1.3
|-
| <!--Description-->Realtek ALC653 codec and ALC655 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested Acorp 7NFU400
|-
| <!--Description-->Realtek ALC658 codec ALC658D
| <!--Vendor ID-->0x8080
| <!--Product ID-->0x24c5
| <!--Revision-->0x0
| <!--Playback-->{{Yes|Prefs Music and Units 0-3 set volume control - playback}}
| <!--Recording-->{{No}}
| <!--Comments-->MSI Motherboard on NB 22-09-2012
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->AD1881 SoundMAX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->Analog Devices first AC97
|-
| <!--Description-->AD1881A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Yes}}
| <!--Revision-->
| <!--Comments-->works with VIA Controller - untested Intel etc
|-
| <!--Description-->AD1881B
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1885 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{No}}
| <!--Comments-->Playback only with issues on D845HV but not working on MS-6367 because Units 0-3 have masked volume control
|-
| <!--Description-->AD1886
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1887
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->ADI AD1888 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{no}}
| <!--Recording-->{{No}}
| <!--Comments--> Icaros 1.51
|-
| <!--Description-->AD1980 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->AD1981A codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested IBM X30
|-
| <!--Description-->Analog Devices SoundMax(TM) AD1981B codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| <!--Comments-->plays back only on IBM T41 Thinkpad
|-
| <!--Description-->AD1985 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{No}}
| <!--Comments-->not working ahi prefs freezes on D865GLC mobo ([http://www.xbitlabs.com/articles/multimedia/display/int-sound2_3.html ]
|-
| <!--Description-->AD1986 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{No}}
| <!--Comments-->untested [http://uk.ts.fujitsu.com/rl/servicesupport/techsupport/Boards/Motherboards/Fujitsu/D1931/D1931.htm D1931] but works (Acer Aspire 3610 laptop)
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->Crystal Semiconductors CS4205, CS4202 codecs
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Cirrus Logic CrystalWare 4236
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->Cirrus Logic CrystalClear SoundFusion CS4297 CS4299 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested IBM T23
|-
| <!--Description-->conexant Cx20468-31 codec (id 30)
| <!--Vendor ID-->0x103c
| <!--Product ID-->0x3085
| <!--Revision-->
| <!--Playback-->{{No|AC97 appears in AHI Prefs}}
| <!--Recording-->{{No}}
| <!--Comments-->Tested AspireOS 1.8 on Gateway W322
|-
| <!--Description-->ESS Technology ES1921 AC'97 2.1
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->CMI 6501 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested on ASROCK SKT-AM2 AM2NF3-VSTA
|-
| <!--Description-->codec CMI9738
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->codec CMI9739
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->C-Media CMI 9739A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments--> untested on EPoX 8RDA3+
|-
| <!--Description-->CMedia CMI 9761A codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested ASRocK K7NF2-RAID
|-
| <!--Description-->C-Media CMI9880
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->National Semi conductor (now TI) LM4540, LM4543, LM4545, LM4546, LM4548, LM4549, LM4550 LM4560
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->STAC9708T codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->SigmaTel (now IDT) C-Major STAC 9460 (D/A only), 9461, 9462, 9463, 9200, 9202, 9250, 9251, 9220, 9221, 9223, 9750
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AKM (Asahi Kasei Microsystems) AK 4540, 4543, 4544A, 4545
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->codec VT1616 (VIA Six-TRAC Vinyl Audio)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->VIA VT1612, VT82C686
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->ESStech ESS ES1968 maestro-2
| <!--Vendor ID-->0x125d
| <!--Product ID-->0x1968
| <!--Revision-->0x
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->ESStech ESS ES1978 maestro2e
| <!--Vendor ID-->0x125d
| <!--Product ID-->0x1978
| <!--Revision-->0x
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->ESStech ESS ES1988 maestro3 allegro-1 codec
| <!--Vendor ID-->0x125d
| <!--Product ID-->0x1988
| <!--Revision-->0x12
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->Yamaha AC97 ymf-743 YMF752 YMF753 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->{{No}}
| <!--Comments-->untested ymf-753
|-
| <!--Description-->YMF724 YMF744 YMF-754 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| SIS 7018 / Trident 4dwave DX/NX / ALi 5451
| 0x1039 (0x1023 Trident)
| 0x7018 (0x2000 Trident DX) (0x2001 Trident NX)
| 0x02
| <!--Playback-->{{No}}
| <!--Recording-->{{No}}
| no support - introduced early 2000s
|-
| SIS 7012
| 0x1039
| 0x7012
|
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| working through 1 speaker only took over from SIS7018 (2002 onwards)
|-
| <!--Description-->Wolfson (now Cirrus Logic) WM9701, WM9701A (AC'97 1.03 spec), WM9703, WM9704 (AC'97 2.1), WM9705, WM9706, WM9707, WM9708
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->WM9709, WM9710, WM9711, WM9712, WM971
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->first Microsoft(TM) Xbox DAC sound chip (AC Link compliant D/A converter)
|-
| <!--Description-->Wolfson WM9717
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| Parallels
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested
|-
| VirtualBox
|
|
|
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| working
|-
| VirtualPC
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested
|-
| <!--Description-->Intel 82801AA Proxmox
| <!--Vendor ID-->0x8086
| <!--Product ID-->0x
| <!--Revision-->
| <!--Playback-->{{unk| }}
| <!--Recording-->{{unk| }}
| <!--Comments-->
|-
|}
====2005-20xx HDAUDIO.audio====
*6.36 2025 [https://github.com/aros-development-team/AROS/commit/43b33a9280b10963ca659de2cc3d1cf289b43a87 reset handler]
*6.35 202 []
*6.34 2019 AROS One 1.5 upwards
*6.29 2018
*6.27 2017 update
*6.25 2014 used for most Icaros 2.x
*6.20 July 2012
*6.17 Nov 2011
*6.15 Jun 2011
*[http://www.clusteruk.com/SitePortalPage.aspx?siteid=1&did=109 6.13] Sep 2010
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="5%" |Vendor ID
! width="5%" |Product ID
! width="5%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| <!--Description-->ALC260
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| <!--Description-->ALC262
* ALC262-VD2-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->LQFP-48
|-
| ALC268 codec
| 0x
| 0x
| 0x
| <!--Playback-->{{Yes|Version 6.17 Acer AOA110 and AOA150 netbooks), works (Dell Mini Inspiron 9 and 10v, }}
| <!--Recording-->{{Yes|Version 6.17 remove QUERY and select 'Mic 1' as input. Tested with 6.15 as well using QuickRecord and AE 4.0.23 under Icaros 1.4.}}
| <!--Comments-->AHI UNITS and Music are set to: hdaudio:HiFi 16 bit stereo++ / Frequency 48000 Hz, Volume +0.0 dB. The hdaudio.config in SYS:Prefs/Env-Archive is WITHOUT the QUERY-line. After changing and saving the config-file turn off and start again the computer. Switch from internal loudspeaker to headphone you must turn off the music before plug in the headphone-cable, otherwise there is no output on the socket. Back from line-out to internal speakers it is the same.
|-
| [http://blog.foool.net/wp-content/uploads/linuxdocs/sound.pdf Linux docs ALC269]
* ALC269Q-GR
* ALC269QSRS-GR
* ALC269W-GR
| 0x
| 0x
| 0x
| <!--Playback-->{{Maybe| }}
| <!--Recording-->{{Unk| }}
| <!--Comments-->TQFP 48 pin Power IC Chip From [https://patchwork.kernel.org/project/alsa-devel/patch/1408118123-15849-1-git-send-email-tiwai@suse.de/ ALC269 & co have many vendor-specific setups with COEF verbs, result in the codec stalling]
|-
| [http://www.alsa-project.org/db/?f=0321f8479fd670cd510f9912b1120fe7edcf2e07 ALC269VB]
* ALC269Q-VB5-GR
* ALC269Q-VB6-CG
* ALC269Q-VB6-GR
| 0x10ec
| 0x0269
| 0x100004, 0x100100, 0x100202
| <!--Playback-->{{Maybe|some versions work}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* v1 works Asus eee PC netbook 901/1000HA 1005HA/1008HA, 1001P,
* v2 maybe working Lenovo S9 S10 S10-2 S10-3 under HDAudio version 6.13
* v3 maybe dell wyse 7010
|-
| [http://alsa-project.org/db/?f=9c1746c5957b0ce72ff9cfffa312e97d14baf785 ALC269VC aka ALC3202]
* ALC269Q-VC2-GR
* ALC269Q-VC3-GR
| 0x10ec
| 0x0269
| 0x100203,
| <!--Playback-->{{Maybe|some versions work}}
| <!--Recording-->{{Unk}}
| <!--Comments-->SMT SMD QFN-48 -
* v1 unknown
* v2 unknown
* v3 x230, dell wyse,
|-
| ALC272
* ALC272-VA4-GR
| 0x10ec
| 0x0272
| 0x0
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Unk}}
|
* works Acer AOD150 and Acer AOD250 works [http://amigaworld.net/modules/newbb/viewtopic.php?topic_id=33755&forum=28#616910 Samsung NP-NC10], works Samsung NF210-A02] netbooks,
|-
| <!--Description-->ALC273
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| <!--Description-->ALC270
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC282
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x
| <!--Revision-->
| <!--Playback-->{{No|Version 6.17}}
| <!--Recording-->{{No|Version 6.17}}
| <!--Comments-->needs retest
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC660 ALC660-VD
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes| }}
| <!--Recording-->
| <!--Comments-->
* works asus F9s, F9e
* untested asus w7j, M51SN, A6Tc, A8Sr,
|-
| <!--Description-->ALC661-GR (2011)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| ALC662
| 0x1043
| 0x82a1
| 0x0
| <!--Playback-->{{Yes|Version 6.17 if QUERY added to top of hdaudio.config}}
| <!--Recording-->{{No|Version 6.17 not working for eee pc 900}}
|
* works Asus eee PC netbook 700/701/900, Atom 270 and 330 mobos, odd clicks (D410 NM10 PineTrail),
|-
| <!--Description-->[http://outpost.fr/rmaa/ALC663.htm ALC663]
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0861
| <!--Revision-->
| <!--Playback-->{{No|Version 6.13}}
| <!--Recording-->{{Unk}}
| <!--Comments-->not bad output like headphone amp part of the codec actually works well but messed up by undersized coupling capacitors to actually support such a low impedance
* not working Asus n50vn x71vn,
|-
| <!--Description-->ALC665
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC666
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC667
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC668
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC670
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->ALC880
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->some 915 and 925 chipset mobos
|-
| <!--Description-->ALC882M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| Realtek ALC883 ALC883-GR ALC883D-GR ALC883DTS-GR ALC883DD-GR codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe|some early versions work }}
| <!--Recording-->{{Unk| }}
| 2005 to 2007 HD Audio codec untested (Asus ),
|-
| Codec ALC885
| 0x10ec
| 0x0885
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
|-
| ALC888
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
|
|-
| ALC888s
* ALC888S-VD2-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}} MSI Wind U90/U100,
| <!--Recording-->{{Unk}}
| LQFP-48
|-
| ALC888b
| 0x8086
| 0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| untested (D510 NM10 Dual Core PineTrail mobo),
|-
| ALC888-VD
| 0x8086
| 0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| untested
|-
| ALC889A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes|works if QUERY added to the top of hdaudio.config in Prefs drawer/directory}}
| <!--Recording-->{{Unk}}
|
|-
| ALC889 Gr
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}} with crackles
| <!--Recording-->{{Unk}}
|
|-
| ALC889
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
| Tested with MSI H55 board
|-
| ALC887 ALC887-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
|
* working on ASUS P5KPL/EPU and Gigabyte GA-E350N-Win8 Rev1.0
|-
| ALC887-VD-CG
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0887
| <!--Revision-->0x100302
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}} Subsystem Id: 0x1458a002
|
|-
| ALC887-VD
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0887 0x1458
| <!--Revision-->0xa002
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{Unk}} index = 2
| ALC887 does not have any volume control ability on the mixer NIDs, so put the volume controls on the dac NIDs instead
* working with intermittent corrupting pop popping skipping stuttering sound issues MSI 760GM-P23 (FX),
* not working Gigabyte H61MA-D3V, AT3IONT-I Deluxe,
|-
| ALC887-VD2
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
| 3jacks
|-
| ALC887-VD2-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
|-
| ALC887-
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
|
|-
| ALC892-CG rev
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| 2011 48-pin LQFP Green package -
|-
| ALC892 ALC892-DTS-CG rev
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
| 2009 introduced
* works
* not working
* untested
|-
| ALC892 rev
| <!--Vendor ID-->0x0x10ec
| <!--Product ID-->0x0892
| <!--Revision-->0x100302
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| 2014
|-
| Realtek ALC886-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| LQFP-48
|-
| Codec ALC861 ALC861-VD
| 0x10ec
| <!--Product ID-->0x0663
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
|
* not working Toshiba Tecra A7
|-
| <!--Description-->ALC1200
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| ALC898
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
| not working
|-
| <!--Description-->ALC1500
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC3232 (aka ALC292)
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0292
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC3234 aka ALC255
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0255
| <!--Revision-->003
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC3287 aka ALC257
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes| }}
| <!--Recording-->{{no| }}
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->AD1882
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1883 HD Codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1884
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| Analog Devices SoundMAX AD1981
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| IBM Thinkpad T60,
|-
| AD1984 hp-m4 codec
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
* audio not working on Lenovo X61, Thinkpad T61,
|-
| AD1986
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
|
|-
| AD1988
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
|-
| <!--Description-->AD1988A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->Cirrus Logic CS4207
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->
| <!--Recording-->
|
|-
| <!--Description-->Cirrus Logic CS4208
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->
| <!--Recording-->
|
|-
| <!--Description-->Conexant CX20549 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe|very very very low volume}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested Fujitsu Amilo SI 1510 1520 no datasheet for the general public
|-
| <!--Description-->Conexant CX20549-12Z codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested HP 530
|-
| <!--Description-->Conexant CX20561 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* working lenovo x200s
* untested Lenovo Essential G555 Notebook, HP Pavilion dv6700,
|-
| <!--Description-->Conexant CX20582 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX2059x CX20590 CX20594-21Z codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX20585 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* working Lenovo Thinkpad T410,
|-
| <!--Description-->Conexant CX20672 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX20671 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX20751-21Z codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes| }}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| <!--Description-->Conexant CX11852 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX11880 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant after 2015 up to 2018 CX7501 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{no|no driver codec}}
| <!--Recording-->{{no|no driver codec}}
| <!--Comments-->Conexant bought by synaptics 2019
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->C-Media CMI9880 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->Gigabyte GA-8GPNXP
|-
| <!--Description-->Silicon Labs 3054
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| VIA 1708A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| untested,
|-
| VIA VT1708B
| <!--Vendor ID-->
| <!--Product ID-->
| 0x0010
| <!--Playback-->{{No|VIA PicoITX}}
| <!--Recording-->{{Unk}}
|
|-
| VIA 1708S
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
|
|-
| <!--Description-->VT2021 10ch
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->Gigabyte Z77MX-D3H, GA-H61M-S2H S2P,
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Creative CA0110-IBG
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->SigmaTel STAC 9220 9221 9223 8ch (7+1)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| <!--Comments-->ECS 945GCT/M-1333 (version 3.0),
|-
| IDT SigmaTec [http://explorer.cekli.com/articles/pdf/hd-audio STAC9227] /28/29/30 codec
| <!--Vendor ID-->0x8384
| <!--Product ID-->0x7626
| <!--Revision-->0x0002
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Unk}}
|
* works HP Compaq mini 110
* untested HP Pavilion HDX9000 CTO Notebook, Intel DG33TL mobo, Dell E520, Intel DP35DP mobo, Dell E6410 Laptop,
|-
| IDT (formerly SigmaTel) IDC STAC 9271/71D
| <!--Vendor ID-->0x8384
| <!--Product ID-->0x7626
| <!--Revision-->0x0002
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
|
|-
| <!--Description-->IDC STAC 9272 9273 9274
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->Intel D5400XS,
|-
| <!--Description-->IDT 92HD73C
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes}}
| <!--Recording-->
| <!--Comments-->headphones only Asus AT4NM10 mobo
|-
| <!--Description-->IDT 92HD75B
| <!--Vendor ID-->0x111d
| <!--Product ID-->0x7608
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* working [http://koti.kapsi.fi/jvaltane/aros/hdaudio/ HP Compaq Mini 700 Netbook - feedback required]
* untested HP Mini 5103 and 5102, HP Compaq 610, HP ProBook Laptop 4520s 4525s 6450b 6550b 6555b, HP EliteBook 2540p 2740p 8440p, Mobile Workstation 8540w 8740w, Pavilion NoteBook DV8,
|-
| <!--Description-->IDC 92HD81XX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC 92HD83XX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC STAC 92HD89XX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Wolfson (now Cirrus Logic) WM8850
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Wolfson WM8860
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->Intel High Definition Audio Revision 1.0. - 4-Channel DAC, 4-channel ADC. - DAC sampling
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
Using Prefs/AHI ensure you set the music unit and at least Units 0 (where most audio comes from) in top left drop down menu to HDaudio - HIFI in the section below. Set Units 1 or 2 to microphone or other outputs. Plus allow more than one channel for multiple audio streams and set frequency up to 44 kHz or higher on the right hand side of the ahi prefs. If sound beeps when you press the test button then all should be OK.
Output <- Codec <- Audio Controller (HDA) <-> Computer
codecs and exact hardware identifier. As mentioned above, HDA is only part of the work here, it gets the audio out of the main chipset in digital format (on a bus called I2S). This is not enough, there is another step needed which is routing that I2S signal to the output, converting it to actual audio, amplifying it, etc. This is handled by a separate chip called a "codec". Sometimes it is initialized by the BIOS, but this is not always the case.
Most audio drivers are made up of two parts a [http://www.kernel.org/doc/Documentation/sound/alsa/HD-Audio.txt Controller + a Codec]. The ProductID and VendorID are for the audio controller only - the important additional codec is '''NOT''' so easily identified.
Some newer versions of codecs are missing at the moment.
Things to try if sound not working
* try to connect something to the audio jack, maybe it is not playing on internal speakers or vice versa
* make sure you try and select all music units e.g. unit0, unit1....
* even if PCI ID's are in Prefs/Env-Archive/HDaudio.config, this doesn't mean it is working, it is the codec that matters
* it might be internally muted
<pre>
add debug=memory to grub boot line - continue booting with F10
Open a shell
Tools/Debug/Bifteck > RAM:audio.txt
</pre>
or
<pre>
Open a shell
Tools/Debug/Sashimi > RAM:audio.txt
Run ahi prefs
Click test tone button
Stop sashimi with Ctrl-C
</pre>
If the boot sound is enabled, you have to use Bifteck to capture AHI debug output. In the GRUB menu, press E on your selected entry, then add "debug=memory" to the options (alongside ATA=, vesa= etc.). Then F10 or Ctrl-X to boot. Once booted, run Tools/Debug/Bifteck again.
or
* try adding QUERYD to the start of ENVARC:hdaudio.config file (also known as Prefs/Env-Archive/) ie. on the first line
* '''OR''' try removing QUERY and QUERYD from the start of the hdaudio.config file
* Reboot
* open a shell
* type: sys:tools/debug/sashimi > ram:debug.txt
* open ahi prefs
* select one of the audio modes - HIFI or otherwise
* press the 'test sound' button
* press ctrl-c in the shell
* post the results to Aros-World
The HD Audio standard was designed to be hardware pinout interchangeable so that the sound support could change easily and quickly. HDA is a standard around particular chips. Each kind of chip has a certain number of DACs and pins, and even the same chip could be hooked up in different ways on different motherboards. The chips are programmable and the operating system can adjust how things are routed. Some pins aren’t even hooked up, so it makes no sense to route sound to them. Also some pins have sensors that can tell when something is plugged in, so that for example the speakers in a laptop can be muted when headphones are plugged in. Pins are also grouped, so for example all the outputs for a 5.1 sound system are grouped. Generally the HDA driver in the operating system is supposed to read the pin set up and figure out a reasonable way to set things up, and disconnected pins should be ignored, etc.
HDAudio standard has headphones on a separate DAC, and it's up to the driver.. it can even send different audio to the headphones without interrupting the main (green) outputs
====Envy24 series ====
A little history. VIA bought the ICE created Envy chipsets [http://www.via.com.tw/en/products/audio/controllers/comparison_controller.jsp VT1712] first. A few years later, they created several cheaper variants VT1724 (mixer missing), VT1721 (low end cut down), VT1720 (embedded on motherboard) and lastly the VT1723 (no support apart from Windows Envy24DT like SYBA SD-PEX63034).
There are PCI Express versions appearing.
The Envy24 is the base product that was originally designed by ICEnsemble, and it supports multi-channel hardware mixing, which is great for professional use. The HT version removes the hardware mixer (unimportant for non-professional uses). The [http://www.avsforum.com/t/364771/envy24ht-s-the-definitive-source HT-S] version is almost exactly the same as the HT, it just uses cheaper DACs. The PT version is exactly the same as the HT-S version, it is just the edition used for on-board audio on motherboards.
N.B. [http://www.soundonsound.com/sos/dec04/articles/pcnotes.htm PCI slot identification] and [http://hsi.web.cern.ch/HSI/s-link/devices/s32pci64/slottypes.html 3.3v PCI].
=====[http://www.opensound.com/readme/README.Envy24.html envy24.audio] - [http://www.anime.net/~goemon/alsa/ VT1712] =====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Playback
! Recording
! Comments
|-
| M-Audio Delta 66 - Rev B 1999
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested AK4524VF CS8404A-CS - needs Delta Series break out box with D-sub lead -
|-
| [http://ixbtlabs.com/articles/maudioaudiophile/index.html Audiophile 2496] Rev A 2000
| 0x14
| 0x
|
| <!--Playback-->{{unk| }}
| <!--Recording-->{{unk| }}
| works audio out on - I2S stereo codec AKM AK4528VF with the 24bit/96kHz DAC and ADC; CS8427 digital transceiver
|-
| [http://ixbtlabs.com/articles/maudioaudiophile/index.html Audiophile 2496] Rev B 2003
| 0x14
| 0x
|
| <!--Playback-->{{Yes }}
| <!--Recording-->
| works well - I2S stereo codec AKM AK4528VF with the 24bit/96kHz DAC and ADC; CS8427 digital transceiver
|-
| M-Audio Delta 410 - 2001 2001 REV-B
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested for D-A AK4529VQ converters with CS8427-CS 5532 1158B or Event Echo Gina 20-Bit Multitrack Interface Breakout Box -
|-
| M-Audio Delta 1010
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested AK5383 and AK4393 - 25 pin dsub -
|-
| M-Audio Delta 1010LT 1010E
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested for D-A AK4529 converters with 2 XLR Microphone inputs with pre amps
* be aware of redesign in 2007 - possible issues
|-
| M Audio Delta 44 - Rev A 2002 - Rev B 2003 - Rev D 2003
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested ICE1712G AK4524VF needs breakout box with 15 pin D-sub lead -
|-
| M-Audio Delta 66 Rev E 2006 - Omni Studio
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested needs break out box with 15 pin D-sub lead -
|-
| <!--Description-->M-Audio Delta DiO 2496
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| Terratec EWX24/96
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| [http://ixbtlabs.com/articles2/terratecdmx6fire/index.html TerraTec 6fire DMX 24/96]
| <!--Vendor ID-->0x1412
| <!--Product ID-->0x1712
| <!--Revision-->0x02
| <!--Playback-->{{No|tried line 1-2 3-4 5-6 7-8 }}
| <!--Recording-->{{No| }}
| untested - AKM and codec
|-
| <!--Description-->Terratec EWSA88MT
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| [http://lists.freebsd.org/pipermail/freebsd-multimedia/2007-March/006087.html Audiotrak Prodigy HD2] 24/96
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Audiotrak (ESI) Maya 1010 1010L
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| EMU 1212M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| EMU 1616M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| <!--Description-->Terratec EWS 88MT EWS 88D
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Hoontech Soundtrack DSP 24
Soundtrack DSP 24 Value
Soundtrack DSP 24 Media 7.1
Event Electronics EZ8
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Digigram VX442
Lionstracs
Mediastation
Terrasoniq TS 88
Roland/Edirol DA-2496
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
=====envy24ht.audio - VIA VT1724=====
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| ESI Juli@
| 0x3031
| 0x4553
| 0x0
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Yes}}
| reported working years ago [http://envy24.svobodno.com/ Envy24HT-S] - AKM 4358 DAC - AKM 4114/4112 DIT
|-
| ESI Juli@ Ego Igo rev K
| 0x3031
| 0x
| 0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| AK4358? DAC - AK4114 AK4112 DIT
|-
| [http://ixbtlabs.com/articles2/multimedia/m-audio-revolution51.html M-Audio Revolution 5.1]
| 0x1412
| 0x3631
| 0x0
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| reported working years ago but discontinued - (Envy24GT) - 3ch AKM 4358 DAC - ADC AKM 5365 -
|-
| [http://ixbtlabs.com/articles2/m-audio-revolution71/index.html M-Audio Revolution 7.1] 24/192
| 0x1412
| 0x3630 0x1724
| 0x0
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| not working - illegal semaphore - 6ch ADC AKM AK4355 24-bit 192 kHz - 2ch DAC AKM AK4381 24-bit 192 kHz - ADC AKM AK5380
|-
| Terratec Aureon Sky 5.1
| 0x153b
| 0x1147
| 0x
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - discontinued
|-
| [http://ixbtlabs.com/articles2/terratec-aureon71/index.html Terratec Aureon Space 7.1]
| 0x153b
| 0x1145
| 0x0
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - Wolfson WM8770 DAC, AC'97 codec SigmaTel STAC9744
|-
| Terratec Aureon Universe 7.1
| 0x153b
| 0x1153 (rev x) 0x1724 (rev3)
| 0x0
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| not working - semaphore error on rev 3 - DAC ADC
|-
| Terratec Phase 22
| 0x153b
| 0x1150
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - Envy24HT-S - AK4524
|-
| Terratec Phase 28
| 0x153b
| 0x1149
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - Envy24HT-S - AK4524
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Playback
| Recording
| Revision
| Comments
|-
| Audiotrak (ESI) Prodigy 7.1
| 0x4933
| 0x4553
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - Wolfson WM8770 and AC'97 SigmaTel STAC9744 codec
|-
| Audiotrak (ESI) Prodigy 7.1 LT
| 0x3132
| 0x4154
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver -
|-
| [http://ixbtlabs.com/articles2/sound/audiotrak-prodigy192.html Audiotrak (ESI) Prodigy 192] 24/96
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - STAC9460S codec
|-
| <!--Description-->Echo Layla 24/96
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
| [http://www.bit-tech.net/custompc/labs/80752/hercules-gamesurround-fortissimo-4.html Hercules Gamesurround Fortissimo 4]
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - Wolfson WM8776 Codec and WM8766 DAC
|-
| [http://ixbtlabs.com/articles2/multimedia/m-audio-audiophile192.html M-Audio Audiophile Delta AP 192k]
| 0x1412
| 0x3632
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - Stereo ADC AKM AK5385A 24-bit 192 kHZ - 8-channel DAC AKM AK4358 24-bit 192 kHz - AKM 4114/4112 DIT
|-
| ONKYO SE-150PCI
| 0x160b
| 0x0001
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver
|-
| <!--Description-->ESI Waveterminal 192x
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
| <!--Description-->Quartet
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments--> - AKM 4114/4112 DIT
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
|}
====hdmiaudio.audio - hdmi no support====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->ATI R6xx HDMI Audio codec support output
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x9840
| <!--Revision-->
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->Not detected
|-
| <!--Description-->NVidia HDMI
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Intel Series 6 CougarPoint HDMI codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Intel HDMI
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|}
[[#top|...to the top]]
===Graphic GFX Chipsets===
[https://gallium.readthedocs.io/en/latest/systems.html PCIe based] graphic chipset is defacto on 64bit AROS and recommended on 32bit.
AGP works on 32bit but faster transfers through the AGP slot are only available on a few supported motherboard chipsets
* Faster AGP Working = SIS 650 board, Intel 865pe AGP slot on MSI 6788-050,
* Not Supported = NForce2 chipsets, most Intel 815/820 chipsets, VIA chipsets, ALi chipsets,
The fallback for all graphics modes is vesa if any native support does not work. There is a choice of very low resolution vga as the last resort
2D tests performed with [http://download.aros3d.org/software/gfxbench.zip gfxbench] in the shell type gfxbench > out.txt (40 seconds blank screen is part of the test), via FreeDoom via limit-removing engine like odamex, chocolate or vanilla doom -timedemo demo1 or doom2 -timedemo demo1, doom.exe -iwad doom2 -file mymap.wad, Duke DNRATE 640x480 windowed
3D tests performed with Demos/Mesa/ , Cube 1080p, Cube 2 windowed not fullscreen 1920 x 1025, Quake3 ~ cl_drawFPS 1, Xonotic , [http://shinh.skr.jp/sdlbench/showtestgl.cgi test gl],
HDMI, DVI and DisplayPort monitors have a native resolution of 480p, 720p, 1080i, 1080p and up
<pre>
HDMI (licensing fee)
1.2 720p res.
1.3 1080 resolution
1.4 4K @ 30Hz
2.0 4K @ 60Hz
2.1 48Gbs for 4K @ 120Hz, 8K @ , VRR, etc
2.2 ultra96
</pre>
<pre>
DisplayPort (VESA introduced)
1.4 4K @ 60Hz
2.1 96Gbs for 4K @ 240Hz, 8K @ 120Hz. MST daisy chain multiple monitors,
</pre>
<pre>
GPMI chinese standard
2.0
</pre>
Might be supported on AROS
*OpenGL4 GPU must have 64-bit floating point FP64 math support, which is a hard requirement for GL 4.0. The max last revision opengl 4.6 (2017) on [https://wiki.gentoo.org/wiki/AMDGPU AMDGPU] RX 5000's / 6000s ([https://forum.batocera.org/d/7491-enable-opengl-46-and-vulkan-for-an-old-radeon-video-card RDNA] and Nvidia RTX might come to AROS) but Intel UHD, Iris Plus or Xe or Arc (will not unless a developer wants the challenge)
*OpenGL3 last revision 3.3 (2011)
Already supported on AROS
*OpenGL2 nvidia-nouveau,
*OpenGL1 intel gma950,
====vga.hidd====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Comments
|-
|
| 0x
| 0x
| 0x0
| Generic VGA Driver, limited to 640x480 in 16 colours - no 3D support
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Comments-->
|-
|}
====vesa.hidd====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Comments
|-
|
| 0x
| 0x
| 0x0
| 2D support for VBE1, VBE2 and VBE3 (most cards) - various resolutions and 24bit colour - no 3D support
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Comments-->
|-
|}
[[#top|...to the top]]
====[[w:en:Intel GMA|Intel GMA]]====
DVI output is not supported at the moment.
If having problems:
* Ensure the latest version is being used.
* Set GMA_MEM to 128 or 256 to test
* Try the FORCEGMA ToolType for 2D, and try the FORCEGALLIUM ToolType for 3D acceleration after 2D is verified to work. ToolTypes should be applied to the Devs/Monitors/IntelGMA monitor icon.
If still having problems:
* At GRUB boot screen edit boot line and add option: debug=memory
* Boot.
* Use shell command: tools/debug/bifteck > RAM:debug.txt
* And post [GMA MONITOR DETECTION] and other related debug lines
{| class="wikitable sortable" width="90%"
! width="5%" |Description
! width="5%" |Vendor ID
! width="5%" |Product ID
! width="3%" |Rev
! width="5%" |2D
! width="5%" |3D
! width="5%" |Analog Output
! width="5%" |Digital Output
! width="5%" |Laptop LCD
! width="30%" |Comments
|-
| 910GL 82910GL GMCH + ICH6
| 0x8086
| 0x2582 0x2592
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| 910GML 82910 GML GMCH + ICH6 Mobile
| 0x8086
| 0x2582 0x2592
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| may need to add forceGMA to grub boot line to work
|-
| 915G 82915G GMCH + ICH6-M
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
|
|-
| 915GL 82915GL GMCH
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
|
|-
| 915GV 82915GV GMCH
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Yes|}}
| <!--3D-->{{No|}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{N/A}}
| HP DC5100 small form factor
|-
| 915GM GMA900
| 0x8086
| 0x
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| tunnel gearbox }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes}}
| asus eee pc 900
|-
| 915GMS
| 0x8086
| 0x
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| tunnel }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes| }}
|
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| [http://www.notebookcheck.net/Intel-Graphics-Media-Accelerator-950.2177.0.html 945GU] - 133 MHz (Lake port for Intel A100 and A110)
| 0x8086
| 0x2772
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| Fujitsu LifeBook U1010,
|-
| 945GMS - 166 MHz / 250 MHz (1.05V)
| 0x8086
| 0x27a2
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes}}
| Dell D430
|-
| 945GSE - 166 MHz (for Atom)
| 0x8086
| 0x27ae
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Yes|[http://www.x.org/wiki/GalliumStatus]}}
| {{Yes}}
| {{No|dvi port}}
| {{Yes| }}
| for atom motherboards and most 2008/2009 netbooks
* 3D Works - AOA110 AOA150, Dell Mini 9, Samsung NC10, Toshiba NB100,
|-
| 945G 82945G GMCH + ICH7
| 0x8086
| 0x27a6
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| untested 2D and 3D
|-
| 945GC 82945GC MCH
| 0x8086
| 0x27a6
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| untested 2D and 3D
|-
| 945PM
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| Dell D420, Compaq nc6400,
|-
| 945GMS - 250 MHz Calistoga
| 0x8086
| 0x
| 0x0
| <!--2D--> {{Yes}}
| <!--3D--> {{Yes|most models}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes}}
|
* 3D Works Dell Latitude 2100, HP Compaq nc6320, Lenovo 3000, Lenovo T60, Samsung Q35, Dell D620, Dell D820,
* 3D untested Toshiba Satellite L100-120, Toshiba Portege M400,
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
|
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GMA 3100 G31
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works 2D but no 3D
|-
| GMA 3100 G33
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works 2D but no 3D
|-
| [http://en.wikipedia.org/wiki/Intel_GMA GMA 3150] netbooks and nettops
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works 2D but no 3D. no vga, dvi or hdmi output for nettops
|-
| <!--Description--> G965
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments-->
|-
| <!--Description--> Q965
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x2992
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{No}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments--> Only tested with VGA output.
|-
| 965GM X3100 (500 MHz)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| some support 2D but no hardware 3D - could not get it to work with VGA or dvi output
* untested Apple MacBook Air, Lenovo Thinkpad X300, Dell Inspiron 1525, Toshiba M9,
|-
| 960GM X3100 (400 MHz)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
|
|-
| 965M X3100 (400 MHz)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| Dell D830,
|-
| 965PM ??
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| Toshiba A9 works with limited 2D acceleration but no hardware 3D
|-
| GL965
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works with limited 2D acceleration but no hardware 3D
|-
| GM965
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works with limited 2D acceleration but no hardware 3D
|-
| GMA X3500 G35
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->X4500M G41 G43 G45 (400Mhz) Mobile 4 Series
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x2a42 0x2a43
| <!--Revision-->0x07
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue--> {{No|}}
| <!--Digital--> {{No|}}
| <!--Laptop LCD--> {{Yes| VESA}}
| <!--Comments-->works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->GMA 4500M HD (533 MHz)
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments-->works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->GMA 4700M HD (640MHZ)
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x2a42
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments-->works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
====[http://nouveau.freedesktop.org/wiki/FeatureMatrix nouveau].hidd (nvidia pci, agp, pci-e desktop)====
PCIe based nvidia graphics (gfx 8xxx) are the base level for 64bit AROS but earlier models still has some support on 32bit AROS
*Desktop, more likely hit rather than miss on early nvidia on Aros 32bit but on Aros 64bit ...
*Laptop, limited support for '''very''' early non-optimus (i.e. just Nvidia gfx only so no Intel and nvidia gfx combinations on 32bit but on 64bit ...)
Please note that the nouveau project is reverse engineering a nvidia graphics driver but takes time because of [https://nouveau.freedesktop.org/ nVidia's closed firmwares], etc
* 2026-06 - DEVS Nouveau.hidd Gallium.hidd Softpipe - LIBS Gallium GLU 20.0 Mesa OpenCL
* 2011-10 - DEVS 6.11 Nouveau.hidd 7.4 Gallium.hidd 9.4 Softpipe - LIBS 2.3 Gallium 1.3 GLU 19.0 Mesa OpenCL 1.x
* 2011-04 - DEVS 5.31 Nouveau.hidd 7.3 Gallium.hidd 9.3 Softpipe - LIBS 2.2 Gallium 1.1 GLU 18.0 Mesa OpenCL n/a
Nouveau support for AROS is limited to OpenGL 2.1 compliance on 32bit even for modern GL4 capable GPUs but on 64bit ...
On Aros 32bit OpenCL supports the NV50 (8000 9000) cards, less support in NVC0 fermi cards (300 upwards)
On Aros 64bit
ADoom3 graphic details ultra, benchmark while playing press the "`" key and type "Timedemo demo1" in the console
{| class="wikitable sortable" width="90%"
! width="5%" | Graphic Card
! width="5%" | Aros 32bit 1024 x 768
! width="5%" | Aros 32bit 800 x 600
! width="5%" | Aros 32bit 640 x 480
! width="5%" | Aros 64bit 1024 x 768
! width="5%" | Aros 64bit 800 x 600
! width="5%" | Aros 64bit 640 x 480
|-
| NV50 Asus EN8400GS SILENT/P/512M PCIe (G98) || || || || || ||
|-
| Gigabyte 8500GT 256M || 42,6 || 57,2 || 68,6 || || ||
|-
| NV96 (G96) Geforce 9500GT 512M || 43 || 53 || 57 || || ||
|-
| NV96 (G96) 9600GT || || || || || ||
|-
| NVA3 (GT215) GT240 || || || || || ||
|-
| NVA5 (GT216) Palit GT220 Sonic 512M || 39,7 || 55,8 || 63,7 || || ||
|-
| NVA8 (GT218) gt210 || || || || || ||
|-
| NVA8 (GT218) ION2 || || || || || ||
|-
| NVC3 (GF106) GT440 GTS 450 || || || || || ||
|-
| NVCF (GF116) NVC0 Fermi GTX 550Ti or GTS 450 v2 || || || || || ||
|-
| NVC8 (GF110) 580GTX || N/A || N/A || N/A || || ||
|-
| NVE0 Kepler GT630 || N/A || N/A || N/A || || ||
|-
| NVE6 (GK106) Kepler GTX660 || N/A || N/A || N/A || || ||
|-
| NVE7 (GK107) GTX 650 || N/A || N/A || N/A || || ||
|-
| NV110 Maxwell GTX 750 || N/A || N/A || N/A || || ||
|-
| NV126 (GM206) GTX950 upwards no reclocking || N/A || N/A || N/A || poor || poor || poor
|-
| NV160 family (Turing) GTX 1650 and RTX 2000 upwards with GSP firmware || N/A || N/A || N/A || unknown || unknown || unknown
|-
| HostGL Ryzen 5 4600H - Nvidia 1650 - Linux mint 21.1 || N/A || N/A || N/A || 150fps || 154fps || 155fps
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| width="5%" | Graphic Card
| width="5%" | Aros 32bit 1024 x 768
| width="5%" | Aros 32bit 800 x 600
| width="5%" | Aros 32bit 640 x 480
| width="5%" | Aros 64bit 1024 x 768
| width="5%" | Aros 64bit 800 x 600
| width="5%" | Aros 64bit 640 x 480
|}
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|-
| <!--Description-->tnt1 (nv04) tnt2 (nv05) m64 value (1998)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|very slow}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| NV04 Riva TNT TNT2 Fahrenheit freezes on via motherboard chipset so rename agp.hidd in SYS:Devs/Drivers or Monitors
|-
| <!--Description-->tnt vanta lt (nv06) 1998 /9
| 0x10de
| 0x002c
| 0x15
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|slow}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| <!--Description-->Geforce 256 (nv10) (2000)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|slow }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| untested Geforce256
|-
| <!--Description-->Geforce 2 Geforce 3 Geforce 4 (nv20) 2000 / 2
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|slow }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| works for some PCI and AGP Geforce2 Geforce3 Geforce4
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| Geforce FX5200 nv34 (2003)
| 0x10DE
| 0x0322 0x
| 0xA1
| <!--2D-->{{Maybe| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->{{Maybe|VGA15 }}
| <!--Digital-->{{Maybe|DVI}}
| <!--Laptop LCD-->{{N/A}}
| NV30 GeForce 5 FX Rankine Hardware OpenGL 1.5 - slower than GF MX 4000 for 2D - max 1024 x768
* not working [https://eab.abime.net/showthread.php?t=92328&page=8 mobos with VIA chipsets 2018]
* working (MSI 0x9174) the previous nouveau 5.x driver
* Others work with 6.x series XFX PV-T34K-NA, ASUS V9520-X/TD
|-
| Geforce FX5500 (nv34) (2003)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{Maybe| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| works
|-
| Geforce 5100 (NV34)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce FX 5200LE (NV34)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5200 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce FX5600 (nv31) (2004)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Maybe| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| works
|-
| GeForce FX 5600 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5600SE
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5600XT
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce FX5700 (nv36) (2004)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes|some}}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{Maybe| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5700VE
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5700 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5700LE
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5800 (NV30)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5800 Ultra (NV30)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900 (NV35)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900XT
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900ZT
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5950 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce 5xxx
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
|
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| Geforce 6200 (nv44) (2005)
| 0x
| 0x00F3 0x014F
| 0x0
| <!--2D-->{{Yes|5.28 Pixel Text}}
| <!--3D-->{{Maybe| use 5.28}}
| <!--Analogue-->{{Yes|VGA15 and s-video - plain 4pin cable lead will work with 7pin}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| NV40 GeForce 6 GeForce 7 Curie AGP Hardware OpenGL 2.1 needing previous 5.x version as regression arose 2011-10
|-
| Geforce 6200 (nv44a) (2006)
| 0x
| 0x0221
| 0x0
| <!--2D-->{{Yes|5.28 Pixel Text }}
| <!--3D-->{{Yes|}}
| <!--Analogue-->{{Yes|VGA15}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| Hardware OpenGL 2.1, PCI version tested OK in 2014-01-02 - Icaros 1.5.2
* not working
*working
|-
| GeForce 6200 with Turbo Cache (NV43)
| 0x
| 0x0161
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce 6200SE with Turbo Cache (NV44)
| 0x
| 0x0162
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce 6200 LE
| 0x10de
| 0x0163
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| PCI-E
|-
| GeForce 6600 LE
| 0x
| 0x00F4 0x0142
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6600
| 0x
| 0x00F2 0x0141
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| 2006 PureVideo HD 1 or VP1 re-used the MPEG-1/MPEG-2 decoding pipeline from FX
|-
| Geforce 6600gt (nv4x) (2005)
| 0x
| 0x00F1 0x0140
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Yes| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| OpenGL tests -
|-
| Geforce 6800 (nv40) (2005)
| 0x
| 0x0041 0x00C1 0x00F0 0x0211
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Yes| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 XE (NV4x)
| 0x
| 0x0043
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 LE
| 0x
| 0x0042 0x00C2 0x0212
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 GT (quadro fx 1400)
| 0x
| 0x0045 0x0046 0x0215
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 6800 GS
| 0x
| 0x0047 0x00C0 0x00F6
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 GTS NV40
| 0x
| 0x0040 0x0F9
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 6800XT
| 0x
| 0x0044 0x0048 0x00C3 0x0218
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6600 VE
| 0x
| 0x0143
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6500 NV44
| 0x
| 0x0160
| 0x0
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6250
| 0x
| 0x0169
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 6xxx
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GeForce 7800 GTX
| 0x
| 0x0090 0x0091
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| tunnel gearbox cube cube2 25}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> 256MB DDR3 - 1 6pin psu connector -
* not working asus en7800gtx/2dhtv/256m/osp/a -
* Works XFX PV-T70F-UDD7 Works in steve jones' scrap pc aros build 2010 2 DVI-I ports
* Untested
|-
| GeForce 7800 GT
| 0x
| 0x0092
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7600gt (G8 ) (nv4 ) (2006)
| 0x
| 0x02E0 0x0391
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL 2.1
* not working
* working
|-
| GeForce 7800 SLI
| 0x
| 0x0095
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GTX
| 0x
| 0x0290
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GT GTO
| 0x
| 0x0291
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GS
| 0x10de
| 0x0292
| 0x0a1
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working
* Works with a few glitches with XFX Pine 0x2218
|-
| GeForce 7950 GX2
| 0x10de
| 0x0293 0x0294
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| GeForce 7950 GT
| 0x
| 0x0295 0x02E4
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GS
| 0x
| 0x02E3
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7600 GS
| 0x
| 0x02E1 0x0392
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7650 GS
| 0x
| 0x0390
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7600 LE
| 0x
| 0x0394
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7800GS (G8 ) (nv4 ) (2006)
| 0x
| 0x0093 0x00F5
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working
* works if AGP motherboard chipset is supported - Hardware OpenGL 2.1
|-
| GeForce 7100 GS
| 0x
| 0x016A
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7350 LE
| 0x
| 0x01D0
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7300le (G8 ) (nv4 ) (2006)
| 0x
| 0x01D1
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7300SE 7200GSGF-7200GS-N-B1 variant (G72)
| 0x10de
| 0x01D3
| 0x0a1
| <!--2D-->
| <!--3D-->
| <!--Analogue-->{{Unk|1x DVI, 1x VGA, 1x S-Video}}
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2007 40W pci-e 1.0 VP1 no unified shaders -
* not working Asus on via chipset (2015),
* works Asus on intel chipset (2015),
|-
| Geforce 7300gt (G8 ) (nv4 ) (2006)
| 0x
| 0x0395 0x0393
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working
* works
|-
| GeForce 7300 GS
| 0x
| 0x01DF
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7500 LE
| 0x
| 0x01DD
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7xxx
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GeForce 8800 Ultra (NV50 family)
| 0x
| 0x0194
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NV50 GeForce 8 to GeForce 200s opengl 3.x - max res - 80nm technology - PureVideo HD 2 or VP2 Nvidia VDPAU Feature Set A (absent from ultra and some 8800gt?) added a dedicated bitstream processor (BSP) and enhanced video processor for H.264, VC-1 acceleration
|-
| Geforce 8800gts (nv50) (G8x) (2007)
| 0x
| 0x0400 0x0600 0x0193
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2007 200w openGL3 openCL - 2x6pin psu
* not working 0x0193 models (2015) on via chipsets,
* works
|-
| Geforce 8800gtx (nv5 ) (G8x) (2007)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2008 200W 1x 6pin connector,
* not working
* working
* untested XFX PV-T88P-YDF4, Alpha Dog Edition runs extremely hot - Gigabyte GV-NX88T512H,
|-
| GeForce 8800 GT
| 0x
| 0x0602 0x0611 0x0193
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->DVI up to 2500 x 1600
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - 6pin psu power connector required
* not working
* untested Asus EN8800GT/HTDP/256M EN8800GT/HTDP/512M EN8800GT/G/HTDP/512M
* works
|-
| GeForce 8800 GT (G92)
| 0x10de
| 0x0611
| 0x0a2
| <!--2D-->{{Yes|6.11 Pixel Text}}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{N/A}}
| <!--Digital-->{{Yes}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3 pci-e 2.0 8800GT 512MB on Icaros 2.0.3 [[File:8800GT aros heads.png|thumb|8800GT]] [[File:8800GT aros tails.png|thumb|8800GT detail]]
|-
| Geforce 8600gt (nv5 ) (G8x) (2007)
| 0x
| 0x0401 0x0402
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res
* not working
* works
|-
| GeForce 8500 GT
| 0x
| 0x0421
| 0x0
| <!--2D-->{{Yes| some color }}
| <!--3D-->{{yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL tests - max opengl 3.x but 2.1 offered - max res
* not working
* works Gigabyte 8500 GT,
|-
| GeForce 8800 GS
| 0x
| 0x0606 0x060D
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res
|-
| GeForce 8600GS
| 0x
| 0x0403
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 3.x VP3 offers complete hardware-decoding for all 3 video codecs of the Blu-ray Disc format: MPEG-2, VC-1, and H.264 - Nvidia VDPAU Feature Set B
|-
| GeForce 8300 GS
| 0x
| 0x0423
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res
|-
| Geforce 8400gs G98GS (end 2007) GT218 (2009)
* Rev2 with 8/16 cores and 128-512MB of DDR2 or GDDR3 memory.
* Rev3 with 8 cores and 512MB-1GB of DDR3 memory (based on Tesla 2.0)
| 0x
| 0x0424 0x0422
| 0x0
| <!--2D-->{{Yes|Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 490 gearbox 505 Cube 135 Cube2 55 quake3 }}
| <!--Analogue-->{{Yes|works digital part of DVI but nothing from any display port}}
| <!--Digital-->{{Yes|output on digital 24 pin array of DDWG's DVI and hdmi}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 50W openGL 3.1 openCL - case single slot - one single-link DVI digital output, supporting up to one 1920x1080 resolution display - analog resolution 640 x 480 to 1024 x 768 16 and 24 bit color - [http://www.phoronix.com/scan.php?page=article&item=nouveau_comp_2011&num=19 runs a little hotter than expected] - G98 VP3 pci-e 2.0 512MB DDR2 -
* not working
* works Asus EN8400GS SILENT/P/512M PCIe (G98),
|-
| Geforce 8400gs (nv50) (G86) (mid-2007)
* Rev1 with 16 cores / 256MB of DDR2 memory.
| 0x
| 0x0404
| 0x0
| <!--2D-->{{Yes|Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 490 gearbox 505 Cube 135 Cube2 55 quake3 }}
| <!--Analogue-->{{Yes|works but not tested thru 4 pins of analog signal of DVI plug}}
| <!--Digital-->{{Yes|output on digital 24 pin array of DDWG's DVI and hdmi}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2008 50W openGL 3.1 openCL - case single slot - one single-link DVI digital output up to 1920x1080 resolution display - analog resolution 640 x 480 to 1024 x 768 16 and 24 bit color - [http://www.phoronix.com/scan.php?page=article&item=nouveau_comp_2011&num=19 runs a little hotter than expected] - G86 VP2 128MB -
* not working XFX PV-T86S-YAJG NVIDIA GeForce 8400 GS 512MB DDR2, Sparkle 8400GS 512MB SX84GS512D2L-DPP,
* works Asus EN8400GS SILENT/HTP/256M SILENT/HTP/512M/A,
|-
| GeForce 8400 SE
| 0x
| 0x0420
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 2.x openCL
|-
| NVidia Quadro NVS290 DMS-59
| 0x
| 0x0403
| 0x0
| <!--2D-->{{no| }}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk|DMS-59 socket}}
| <!--Digital-->{{unk|DMS-59 }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2008 21W - G86S (G86-827-A2) - 16 shading units, 8 texture mapping units, and 4 ROPs. NVIDIA has paired 256 MB DDR2 - PCIe 1.0 x16 Low Profile -
|-
| Geforce Quadro FX 4600 (SDI), 5600
| 0x
| 0x
| 0x0
| <!--2D-->{{Partial|VESA 2d}}
| <!--3D-->{{no| }}
| <!--Analogue-->{{partial| }}
| <!--Digital-->{{partial| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GeForce 9800 GX2 (NV50 family)
| 0x
| 0x0604
| 0x0
| <!--2D-->{{Partial|VESA }}
| <!--3D-->{{no| }}
| <!--Analogue-->{{Partial| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 150w - 65nm technology
|-
| GeForce 9800 GTX
| 0x10de
| 0x0612
| 0x0a2
| <!--2D-->{{Yes| }}
| <!--3D-->{{Maybe|6.11 }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 2x6pin psu -
* not working xfx on via chipset (2015),
* works xfx on chipset intel ,
|-
| GeForce 9800 GTX+
| 0x10de
| 0x0613
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res 2560 x 1920 - case dual slot - 26amp 12v rail on computer psu if 2x6pin connectors needed - 55nm version of the G92 chip - will not work with PCI-e 1.0a slots -
* not working
* works on a few models
|-
| Geforce 9800gt (nv50) (G92a) (2008)
| 0x10de
| 0x0614
| 0x0xa2
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel 495 gearbox 513 Cube 156 Cube2 120 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{partial| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL 3.1 openCL 1.x - case dual slot - 600w 26amp on both 12v rails for 2x6pin psu on gfx card - no fan control - some come with 1x6pin - renamed version of the venerable GeForce 8800 GT - randomly works
* not working Gainward 512M untested
* working Gainward CardExpert (0x0401) Green Edition NE39800TFHD02-PM8D92 1024MB (no 6pin)
|-
| Geforce gf9600 9600gt (nv5 ) (G9x) (2008)
| 0x10de
| 0x0622
| 0x0a1
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel 493 gearbox 675 Cube Cube2 100 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL 3.2 openCL but no fan control - case dual slot - 1 6pin pcie psu connector - 500 Watt or greater power supply with a minimum of 26 Amp on the +12 volt rail - Max Analog: 2048x1536 and Max Digital: 2560x1600 (Dual Link DVI Only) - PCI Express® 2.0 / 1.1 Support - g96 gpu randomly works -
* not working bfg tech ocx,
* works gigabyte gv-n96tsl-512i -
|-
| Geforce gf9500 9500gt (nv5 ) (G9x) (2008)
| 0x10de
| 0x0640
| 0x0a1
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel 480 gearbox 500 Cube Cube2 64 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.2 - case single slot - 350 Watt/400 Watt or greater power supply with a minimum of 18 Amp/22 Amp on the +12 volt rail - Max Analog: 2048x1536 and Max Digital: 2560x1600 (Dual Link DVI Only) - PCI Express® 2.0 / 1.1 Support -
* not working zotac zone fanless, Gainward USA NE29500THHD01-PM8796, PNY G9500GN2E50X+0TE,
* works xfx xne-9500t-td01-pm8596 1024mb ddr2,
|-
| GeForce 9600 GS
| 0x
| 0x0623
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res - will not work with PCI-e 1.0a slots -
* not working
* works
|-
| GeForce 9600 GSO
| 0x
| 0x0610
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res - G92 chopped down - 9600GSO is re-badged 8800GS both very power hungry cards -
|-
| GeForce 9300 GS
| 0x
| 0x06E1
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 opengl 3.x - max res
|-
| Geforce 9400 GT (nv5 ) (G86S) (2008)
| 0x
| 0x
| 0x0
| <!--2D-->{{partial|}}
| <!--3D-->{{unk|}}
| <!--Analogue-->{{unk|1x DVI, 1x VGA, 1x S-Video}}
| <!--Digital-->{{unk|1x DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 50W opengl 3.x - max res
|-
| Geforce 9xxx (nv5 ) (G9x) (2008)
| 0x
| 0x
| 0x0
| <!--2D-->{{unk|}}
| <!--3D-->{{unk|}}
| <!--Analogue-->{{unk|}}
| <!--Digital-->{{unk|}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 opengl 3.x - max res
|-
| <!--Description-->Quadro FX 580 G96 chipset
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2009
|-
| <!--Description-->
NV84 (G84) GeForce 8600 (GT, GTS, M GT, M GS), 8700M GT,
NV92 (G92) GeForce 8800 (GT, GS, GTS 512, M GTS, M GTX)
GeForce 9600 GSO, 9800 (GT, GTX, GTX+, GX2, M GT, M GTX)
NV96 (G96) GeForce 9400 GT, 9500 (GT, M G), 9600 (M GS, M GT),
NV86 (G86) GeForce 8300 GS, 8400 (GS, M G, M GS, M GT), 8500 GT
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NVA0 (GT200) Tesla GeForce GTX (260, 275, 280, 285, 295)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->GeForce GTX 280 (NV50 family)
| <!--Vendor ID-->
| <!--Product ID-->0x05E1
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res PureVideo HD 4 (Nvidia Feature Set C or "VDPAU Feature Set C), VP4 added hardware to offload MPEG-4 Advanced Simple Profile (original DivX and Xvid)
|-
| <!--Description-->GeForce GTX 260
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x05E2
| <!--Revision-->
| <!--2D-->{{partial|Vesa}}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> 2 6pin - psu pci express 2.1 -
|-
| Geforce GTS250 250GTS (g92b) (2009)
| 0x10de
| 0x0615
| 0x0a2
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 486 gearbox 508-642 Cube Cube2 80 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> 2x6pin psu VP2 - pci-e 2.x - case dual slots - 738m 1gb ddr3 -
* not working Zotac branded version GDDR3 -
* works PNY gs-250x-zdfl and Gigabyte ??, BFG Tech RGTS2501024OCE, palit ne3ts250fhd52-pm8a92 with 2x6pin on top and hdmi output port,
|-
| <!--Description-->GeForce GT 240 (GT215 family)
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0ca3
| <!--Revision-->0xa2
| <!--2D-->{{Maybe|use VESA}}
| <!--3D-->{{No|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->late 2009 openGl 3.2 - case dual slots - no 6pin psu required with VP4 - All are pcie 2.1 cards and may not work in 1.0a slots -
* not working
* DDR3 with 512MB or 1GB -
* DDR5 -Asus ENGT240 - XFX Pine GT240XYHFC 0x3001 - Gigabyte GV-N240D5-512I rev 1.0 - Zotac AMP! with HDMI 1.3a with DisplayPort 1.1, Dual Link DVI -
* works
|-
| <!--Description-->GT220 (GT216) G220
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0a20
| <!--Revision-->0xa2
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Yes}}
| <!--Digital-->{{Yes|DVI }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> Icaros 2.0.3 GeForce GT220 1GB[[File:GT220 aros heads.png|thumb|GT220]][[File:GT220 aros tails.png|thumb|GT220]]
* untested NVIDIA Quadro® 400 512MB DDR3 GT216 DP DVI, AFox AF220 1Gb DDR3,
|-
| Geforce GT220 220GT G94 Tesla (g92b)
| 0x10de
| 0x0a20
| 0xa2
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 490 gearbox 505 cube 150 cube2 50 Quake3 }}
| <!--Analogue-->{{Unk|1x DVI, 1x VGA}}
| <!--Digital-->{{Yes|DVI but not 1x HDMI }}
| <!--Laptop LCD-->{{N/A}}
| 58W pci express 2.0 cards DDR3 - case single slot -
* not working ASUS ENGT220/DI/1GD2(LP)/V2 -
* works - gainward card expert 0x0401 GDDr3 512MB -
|-
| <!--Description-->GT210 GT 210 210GT G210 based on Tesla 2.0 GT218S GT218-300-A2 variant, GT218-300-B1
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0a65
| <!--Revision-->0xa2
| <!--2D-->{{Yes|6.11 Pixel Text}}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{Unk|1x DVI, 1x VGA}}
| <!--Digital-->{{Maybe|DVI out works but not hdmi or 1x DisplayPort}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 31W OpenGL 3.3 pci-e 2.0 cards - single slot -
* working GT218 based Asus EN210 based silent low profile large passively cooled -
* untested MSI GeForce 210 1GB DDR3 PCIe N210-MD1GD3H/LP,
* not working
|-
| <!--Description-->Nvidia ION2 (GT218) Tesla
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2012
|-
| <!--Description-->Quadro NVS 295 (256 MB GDDR3), NVS 450 (256M/512 MB DDR3)
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x
| <!--Revision-->
| <!--2D-->{{yes| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->
| <!--Digital-->{{partial|2 or 4 dp ports}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 25w low performance - G98s with 8 shading units, 4 texture mapping units, and 4 ROPs on PCI-Express 1.0 x16 -
*not working some NVIDIA Quadro NVS 295 2 dp ports (DELL, HP),
*working
|-
| <!--Description-->GT310 Tesla 310, 315, GT 320, GT 330 GT 340
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{Maybe|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2010 50w OpenGL 3.3 openCL all similar in performance to GT2xx except gt31x (poor)
|-
| <!--Description-->Quadro NVS310 NVIDIA NVS 310
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital--> 2 dp
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 25w GF119S (GF119-825-A1) 48 shading units, 8 texture mapping units, and 4 ROPs on PCI-Express 2.0 x16 - 512 MB DDR3 - PureVideo VP5 VDPAU Feature Set D -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description--> GTX 470, GTX 480 GF10 GF10* core (NVC0 family)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{Maybe| tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2010 215w 2x6 plugs - NVC0 family (Fermi) GF100 (GF100-275-A3) Fermi 448 shading units, 56 texture mapping units, and 40 ROPs with 1,280 MB GDDR5 - OpenGL4.5 OpenCL1.1 Tessellation - case dual slots -
|-
| Geforce GTX460 460GTX (G104) 256bit, 1GB v2 192bit and GTX 465
| 0x10de
| 0x0e22
| 0xa1
| <!--2D-->{{Maybe|VESA }}
| <!--3D-->{{Maybe| tunnel gearbox cube 055-111 cube2 50}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVC0 family (Fermi) OpenGL 4.x but - 2x6pin psu - case dual slots -
* not working evga 768MB GDDR5 192bit 01G-P3-1373-ER or 01G-P3-1372-TR
* works 1GB GDDR5 256bit 01G-P3-1371-ER
|-
| <!--Description-->Geforce GTX 460SE 192bit
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0e23
| <!--Revision-->0x91 or 0xa1
| <!--2D-->{{Yes| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->{{Yes| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> nouveau 6.11 - 2 6pin psu needed - case dual slots -
* not working
* works EVGA 01g-p3-1366-b6 et 1024MB p1041 -
|-
| Geforce GT450 GTS450 450GTS GF106
| 0x10de
| 0x0dc4
| 0x0a1
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel gearbox cube cube2 50 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes|DVI }}
| <!--Laptop LCD-->{{N/A}}
| 2010 Hardware OpenGL 4.2 but nouveau at 3.3 - most need 1x 6pin psu - case dual slots -
* not working
* DDR3 1 or 2GB - Palit NEAS450NHD41F,
* GDDR5 512Mb or 1GB - MSI MPN N450GTSM2D1GD5OC, Asus MPN ENGTS450DI1GD5,
* works Gainward Card Expert NE5S4500FHd51,
|-
| <!--Description-->GT 440 GF108 chipset or better OEM GF106
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 6.11 Pixel Text}}
| <!--3D-->{{Maybe| tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGl 4.1 opencl 1.x - no 6 pin psu - 96 cuda cores 128bit - case dual slots -
* not working
* OEM
* GDDR5 512MB to 1GB ASUSTeK ENGT440/DI/1GD5
* GDDR3 Asus 1gb to 2gb,
* works
|-
| <!--Description-->GT430 430GT (GF108)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|6.11 Pixel Text}}
| <!--3D-->{{Maybe|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->ddr3 memory 64bit or 128bit - buggy await new revision of driver
* not working
* works
|-
| <!--Description-->nVidia Quadro FX1800 768MB GDDR3 Full Height Graphics Card Workstation
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 6.11 Pixel Text}}
| <!--3D-->{{no|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->{{Maybe|DVI-I 2xDP}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->59W 768 MB GDDR3 memory using a 192-bit memory interface - OpenGL 3.3 -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GTX 590 Fermi
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->OpenGL4.4 OpenCL 1.1 - GDDR5 - 6pin and 8pin psu connectors - 512 cuda - case dual slots -
* not working
* works
|-
| <!--Description-->GTX 580,
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->PureVideo HD 5" or "VP5" (Nvidia Feature Set D or VDPAU Feature Set D) 4k UHD 3840 × 2160 H.264 decode -
|-
| <!--Description-->GTX 570,
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{Maybe|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working Zotac GTX 570, Gainward GTX560TI/570 Phantom,
* works gigabyte, evga
|-
| <!--Description-->Geforce 5xx 560gtx Fermi GTX 560,
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->opengl 4.x - 2 6pin psu - 384 cuda cores - case dual slots - will not work with PCI-e 1.0a slots -
* not working Asus ENGTX560 DC/2DI/1GD5,
* Ti LE 448 cuda GDDR5 320bit
* Ti 256bit
* works
|-
| <!--Description-->GTX 560 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working evga GTX 560Ti 01GP31560KR - Gainward GTX560TI/570 Phantom,
* works
|-
| <!--Description-->GTX 550 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x1201
| <!--Revision-->
| <!--2D-->{{Maybe|VESA Doom Doom2 Duke }}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->can hang on boot up on I2C Init or suffer random lockups on OpenGL apps - most need 1 6pin min 400W 24A on the +12V1 / +12V2 dual 12V rails of the computers' power supply unit - 192 cuda cores - case dual slots used - will not work with PCI-e 1.0a slots -
* not working eVGA GeForce GTX 550 Ti (1024 MB) (01GP31556KR) -
* untested asus Extreme, eVGA GeForce GTX 550 Ti (1024 MB) (01GP31557KR) - -
* works
|-
| <!--Description-->GT 545 and OEM GF116
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 4.2 opencl 1.x - GDDR5 with OEM only -
|-
| <!--Description-->GT530 OEM
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 6.11 Pixel Text}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->96 cuda cores - 1GB or 2GB DDR3 128bit
|-
| <!--Description-->GT520 520GT
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->untested 48 cuda cores - DDR3 64bit
|-
| <!--Description-->510, GT 530
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D 6.11 Pixel Text}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> ddr 3 - 50w max -
|-
| <!--Description-->GT610 Fermi GF119
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVS 315 300 GF119S
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{No|VESA}} needs special dms-59 cable
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 fermi 315 PNY VCNVS315-T 1Gb DDR3 but needs special dms-59 cable -
|-
| <!--Description-->GT630 GF108 Fermi
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->not accelerated 2015 - like the GT730 below - 96 cuda cores whilst kepler version has 384 - 128bit to keplers' 64bit bandwidth - kepler has 2GB DDR3
* not working Gigabyte
* DDR3
* GDDR5
* works
|-
| <!--Description-->Geforce GT 730 (two versions)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe| use VESA 6.11 Pixel Text}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> fermi version has 96 cuda cores 128bit GF108
* not working Asus
* works
|-
| <!--Description-->nVIDIA Quadro 4000
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}} 2 dp ports
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->142W 2Gb GDDR5 - PCI Express 2.0 x16 ; full Height card with 1x 6-Pin PCIe power need - CUDA Cores 256 - OpenGL 4.5
|-
| <!--Description-->nVIDIA Quadro 5000
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2011 200W 2.5Gb GDDR5 320 bit - PCI Express 2.0 x16 full Height card with 2x 6-Pin PCIe power need -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce GTX Titan GeForce GTX Titan Black GeForce GTX Titan Z
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVE0 family (Kepler) GeForce 600 GeForce 700 GeForce GTX Titan Kepler
|-
| <!--Description-->GeForce GTX 780 GeForce GTX 780 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->PureVideo HD 6" or "VP6" (Nvidia Feature Set E or VDPAU Feature Set E) significantly improved performance when decoding H.264 and MPEG-2
|-
| <!--Description-->GeForce GTX 770
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->opengl 4.4 opencl 1.1
|-
| <!--Description-->GeForce GTX 760 GeForce GTX 760 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce GT 740
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce GT 730 Kepler (two versions) f
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> kepler 384 cores 64bit GK208
|-
| <!--Description-->680gtx GK104 core gtx680 680m
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVE0 family (Kepler)
|-
| <!--Description-->GTX 690 Kepler NVE0
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->pci-e 3.0, OpenGL 4.4 OpenCL 1.1
|-
| <!--Description-->GTX 670
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GTX 660 GTX 660 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GTX 650 GTX 650 Ti GTX 650 Ti Boost
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVE0 family (Kepler) most need 1 6pin psu
* not working asus ENGTX560 DC/2DI/1GD5
* works
|-
| <!--Description-->Geforce GT 640
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* 128bit DDR3
* 192bit DDR3 1.5 to 3GB 50W
* 128bit GDDR5 75W
|-
| <!--Description-->GT 620 GT 640
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->Quadro K2000 NVE7 (GK107) Kepler
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 - 50w single slot pcie 2.0 -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce 750ti, GeForce 900
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->[https://nouveau.freedesktop.org/FeatureMatrix.html NV110] Maxwell -
|-
| <!--Description-->Nvidia GTX 750
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x1381
| <!--Revision-->0xa2
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2026 nvidia test
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->GM206 2nd gen maxwell PureVideo HD 7" or "VP7" (Nvidia Feature Set F or VDPAU Feature Set F) adds full hardware-decode of H.265 HEVC Version 1 (Main and Main 10 profiles and full fixed function VP9 (video codec) hardware decoding
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV132 (GP102) NVIDIA Titan (X, Xp), GeForce GTX 1080 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV134 (GP104) GeForce GTX (1070, 1080)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV136 (GP106) GeForce GTX 1060
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->Quadro K620 quadro p620 2gb gddr5 128bit and quadro p1000 4gb gt1030 30w
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 50w slim low profile -
|-
| <!--Description-->GeForce gtx 1060, GeForce 1070
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NV130 Pascal
|-
| <!--Description-->NV137 (GP107) GeForce GTX (1050, 1050 Ti)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV138 (GP108) GeForce GT 1030
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->NV130 family (Pascal)
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV162 (TU102) NVIDIA Titan RTX, GeForce RTX 2080 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV164 (TU104) GeForce RTX (2070 Super, 2080, 2080 Super)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2020 NV160 family (Turing) unified gsp-rm firmware - best starting point for Vulkan support
|-
| <!--Description-->NV166 (TU106) GeForce RTX (2060, 2060 Super, 2070)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV168 (TU116) GeForce GTX (1650 Super, 1660, 1660 Ti, 1660 Super)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV167 (TU117) GeForce GTX 1650
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->gtx 1650ti super
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2018 old style
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV172 (GA102) GeForce RTX (3080, 3090)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 av1 decoding ampere
|-
| <!--Description-->NV174 (GA104) GeForce RTX (3060 Ti, 3070, 3080 Mobile)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->NV170 family (Ampere)
|-
| <!--Description-->NV176 (GA106) GeForce RTX (3050, 3060)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV177 (GA107) GeForce RTX 3050
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV192 (AD102) GeForce RTX 4090
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV193 (AD103) GeForce RTX 4080
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->NV190 family (Ada Lovelace)
|-
| <!--Description-->NV194 (AD104) GeForce RTX (4070, 4070 Ti)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV196 (AD106) GeForce RTX 4060 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV197 (AD107) GeForce RTX 4060
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
|}
==== nouveau mobile integrated ====
If you purchased a notebook with an NVidia sticker on it, most of the time you have a optimus based one, ie Intel CPU+GPU melded with Nvidia GPU, Optimus was slated at one point to go into desktop PCs but the industry ended up rejecting that concept
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|-
| GeForce 6100 nForce 405
| 0x
| 0x03D1 0x0242
| 0x0
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
|
|-
| <!--Description-->GeForce 6100 nForce 400
| <!--Vendor ID-->
| <!--Product ID-->0x03D2
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce 6100 nForce 420
| <!--Vendor ID-->
| <!--Product ID-->0x03D5
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce 6150 LE
| <!--Vendor ID-->
| <!--Product ID-->0x0241
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6150SE nForce 430
| 0x
| 0x03D0
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| working
|-
| <!--Description-->GeForce 6150
| <!--Vendor ID-->
| <!--Product ID-->0x0240
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7150M / nForce 630M
| <!--Vendor ID-->
| <!--Product ID-->0x0531
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7000M / nForce 610M
| <!--Vendor ID-->
| <!--Product ID-->0x0533
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7050 PV / NVIDIA nForce 630a
| <!--Vendor ID-->
| <!--Product ID-->0x053A 0x053B
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Geforce IGP 7025 nForce 630a
| 0x
| 0x053E
| 0x0
| <!--2D-->{{Yes|some}}
| <!--3D-->{{Yes|some}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No| }}
| some support on some chipsets
|-
| GeForce 7100 / nForce 630i (C73)
| 0x10de
| 0x07e1
| 0x0a2
| <!--2D-->{{Maybe}}
| <!--3D-->{{Maybe}}
| <!--Analogue-->{{Maybe}}
| <!--Digital-->{{Maybe}}
| <!--Laptop LCD-->{{N/A}}
| Icaros 2.0.3 and Gigabyte 73-pvm-s2h rev. 1.0 but will not boot on [https://ae.amigalife.org/index.php?topic=806.msg8765#new Acer x270 with Icaros 2.3]
|-
| <!--Description-->GeForce 7150 / NVIDIA nForce 630i
| <!--Vendor ID-->
| <!--Product ID-->0x07E0
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7050 / NVIDIA nForce 610i
| <!--Vendor ID-->
| <!--Product ID-->0x07E3
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Geforce IGP 8100 (nForce 720a)
| 0x
| 0x084F
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
|
|-
| GeForce 8100P
| 0x
| 0x0847
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
|
|-
| <!--Description-->Geforce 8200 8300 nForce 730a
| <!--Vendor ID-->
| <!--Product ID-->0x084A 0x0848 (GeForce 8300) 0x0849 (GeForce 8200) 0x084B (GeForce 8200)
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->working on some 8300's with Icaros 1.5 but others untested
|-
| <!--Description-->nForce 780a SLI
| <!--Vendor ID-->
| <!--Product ID-->0x084C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->nForce 750a SLI
| <!--Vendor ID-->
| <!--Product ID-->0x084D
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Nvidia Geforce IGP 9300 (nForce MCP7a)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->works
|
|-
| <!--Description-->9400 (ION)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->If AROS detects GPU chipset, works well
|-
| <!--Description-->9700M ()
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Geforce ION 2
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->works well
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce Go 6150
| <!--Vendor ID-->
| <!--Product ID-->0x0244
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6100
| <!--Vendor ID-->
| <!--Product ID-->0x0247
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6200
| <!--Vendor ID-->
| <!--Product ID-->0x0164 0x0167
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6400
| <!--Vendor ID-->
| <!--Product ID-->0x0166 0x0168
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->Sony Laptop
|-
| <!--Description-->GeForce Go 6800
| <!--Vendor ID-->
| <!--Product ID-->0x00C8
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6800 Ultra
| <!--Vendor ID-->
| <!--Product ID-->0x00C9
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600
| <!--Vendor ID-->
| <!--Product ID-->0x0144
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600 TE/6200 TE
| <!--Vendor ID-->
| <!--Product ID-->0x0146
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600
| <!--Vendor ID-->
| <!--Product ID-->0x0148
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600 GT
| <!--Vendor ID-->
| <!--Product ID-->0x0149
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7200
| <!--Vendor ID-->
| <!--Product ID-->0x01D6
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7300
| <!--Vendor ID-->
| <!--Product ID-->0x01D7
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->untested
|-
| <!--Description-->GeForce Go 7400
| <!--Vendor ID-->
| <!--Product ID-->0x01D8
| <!--Revision-->
| <!--2D-->
| <!--3D-->works 2D and 3d issues though
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7800
| <!--Vendor ID-->
| <!--Product ID-->0x098
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7800 GTX
| <!--Vendor ID-->
| <!--Product ID-->0x0099
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7950 GTX
| <!--Vendor ID-->
| <!--Product ID-->0x0297
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7900 GS
| <!--Vendor ID-->
| <!--Product ID-->0x0298
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7900 GTX
| <!--Vendor ID-->
| <!--Product ID-->0x0299
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7600
| <!--Vendor ID-->
| <!--Product ID-->0x0398
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7600 GT
| <!--Vendor ID-->
| <!--Product ID-->0x0399
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 6610 XL
| <!--Vendor ID-->
| <!--Product ID-->0x0145
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 6700 XL
| <!--Vendor ID-->
| <!--Product ID-->0x0147
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce 8700M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0409
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8600M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0425
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8400M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0426
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8400M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0427
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8400M G
| <!--Vendor ID-->
| <!--Product ID-->0x0428
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8800M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x0609
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8800M GTX
| <!--Vendor ID-->
| <!--Product ID-->0x060C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9500M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0405
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8600M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0407
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9650M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0408
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9400M GT
| <!--Vendor ID-->
| <!--Product ID-->0x042C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9300M G
| <!--Vendor ID-->
| <!--Product ID-->0x042E
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9100M G
| <!--Vendor ID-->
| <!--Product ID-->0x0844
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9800M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x0628
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9700M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x062A
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9800M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x062C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9600M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0647
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9600M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0648
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9600M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0649
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9500M G
| <!--Vendor ID-->
| <!--Product ID-->0x064B
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9300M GS
| <!--Vendor ID-->
| <!--Product ID-->0x06E5
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9200M GS
| <!--Vendor ID-->
| <!--Product ID-->0x06E8
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9300M GS
| <!--Vendor ID-->
| <!--Product ID-->0x06E8
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->NV50 (G80) Quadro FX (4600 (SDI), 5600)
Quadro FX (2800M, 3600M, 3700, 3700M, 3800M, 4700 X2), VX 200
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV94 (G94) 9700M GTS, 9800M GTS, GeForce G 110M, GT 130(M), GT 140, Quadro FX (1800, 2700M)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV84 (G84) Tesla 8700M GT, GeForce 9500M GS, 9650M GS
Quadro FX (370, 570, 570M, 1600M, 1700), NVS 320M
NV86 (G86) GeForce 8300 GS, 8400 (GS, M G, M GS, M GT), 8500 GT, GeForce 9300M G
Quadro FX 360M, NVS (130M, 135M, 140M, 290)
GeForce GTS 150(M), GTS 160M, GTS 240, GTS 250, GTX (260M, 280M, 285M), GT (330, 340)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV96 (G96) 9650M GT, 9700M GT
GeForce G 102M, GT 120
Quadro FX (380, 580, 770M, 1700M)
NV98 (G98) GeForce 8400 GS, GeForce 9200M GS, 9300 (GE, GS, M GS)
GeForce G 100, G 105M
Quadro FX (370 LP, 370M), NVS (150M, 160M, 295, 420, 450)
Quadro CX, FX (3800, 4800, 5800)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVA3 (GT215) GeForce GT (240, 320, 335M), GTS (250M, 260M, 350M, 360M) Quadro FX 1800M
NVA5 (GT216) GeForce GT (220, 230M, 240M, 325M, 330M), 315
Quadro 400, FX 880M, NVS 5100M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVA8 (GT218) Tesla GeForce 8400 GS, GeForce 210M, 305M, 310M, Quadro FX 380M, NVS 2100M, 3100M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVAA (MCP77/MCP78) GeForce 8100, 8200, 8300 mGPU / nForce 700a series, 8200M G
NVAC (MCP79/MCP7A) ION, GeForce 9300, 9400 mGPU / nForce 700i series, 8200M G, 9100M, 9400M (G)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVAF (MCP89) GeForce 320M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NVC0 (GF100) Fermi GeForce GTX 480M, Quadro 5000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVC1 (GF108) GeForce GT 415M, 420M, 425M, 435M, 520M, 525M, 540M, 550M, 555M, 630M, 635M, 640M LE, Quadro 1000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVC3 (GF106) Fermi GeForce GT 445M, 555M, 630M, 635M), GTX 460M, Quadro 2000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVC4 (GF104) GeForce GTX 470M, 485M, Quadro 5000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVCE (GF114) GeForce GTX 570M, 580M, 670M, 675M,
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVD7 (GF117) Fermi Geforce GT 620M, 625M, (some) 630M, 710M, 720M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVD9 (GF119) Fermi GeForce 410M, GT 520M, 520MX, 610M, Quadro NVS 4200M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NVE4 (GK104) GeForce GTX 670M, 680M, 775M, 780M, 860M, Quadro K3000M, K3100M, K4000M, K4100M, K5000M, K5100M,
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVE7 (GK107) GeForce GT640M, 645M, 650M, 710M, 720M, 730M, 740M, 745M, 750M, 755M, GTX 660M, K500M, K1000M, K1100M, K2000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GTX 1650 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2019 turing architecture - last old skool support pre Vulkan
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rtx 2050 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 ampere architecture best starting point for vulkan support
|-
| <!--Description-->rtx 2060 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rtx 4060 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
|}
====radeon.hidd====
Michel Shultz ''2D'' graphics driver (standard on most distributions but only for very old GPUs) and bearsofts updated 2013 around Icaros 1.3.1
3D is not implemented by AROS yet but could cover these AMD chipsets
<pre>
2014 SI AMD HD 7xxx
2016 GCN3rd AMD R5E R7E
2019 GCN5th AMD Vega 8
2022 RDNA1 AMD RX5500 desktop only
2023 RDNA2 AMD 680M 780M
2024 RDNA3 AMD 880M 890M
2025 RDNA3.5 AMD 8060S strix halo and AI
2027 RDNA4 AMD
</pre>
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! 2D
! 3D
! Analogue Output
! Digital Output
! Laptop LCD
! Comments
|-
| 7000 (r100)
| 0x1002
| 0x5159
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->{{Maybe|vga15 pin connection but not s-video}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.3
|-
| 7500 (rv200 but still r100 based)
| 0x1002
| 0x5157
| 0x
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->{{Yes|vga15}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.3
|-
| 8000 8500 (r200)
| 0x1002
| 0x514c (8500LE)
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.4
|-
| 9000 9100 9250 (r200)
| 0x1002
| 0x5964 (9000) 0x514d (9100)
| 0x0001
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->{{Maybe|VGA15 but not s-video}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.4
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| 9600 9800 (r300)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1
|-
| x300 x600 (r300)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1
|-
| x700, x800 ([http://en.wikipedia.org/wiki/Radeon_R600 r420])
| 0x
| 0x554d (R430 x800xl)
| 0x0
| <!--2D-->{{Yes|new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1 - x800 XL PCIE (problem with mouse-pointer, some part of the pointer is not transparent)
|-
| x1300 x1550 x1600 x1800 x1900 x1950 ([http://en.wikipedia.org/wiki/Radeon_R520 r520])
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes|new driver}}
| <!--3D-->{{no}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| HD2400 HD2600 HD2900 ([http://en.wikipedia.org/wiki/Radeon_R600 r600])
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|some features with new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 3.3 open CL 1.2 TeraScale architecture
|-
| HD3400 HD3600 HD3800 (r600)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|some features with new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->pci-e 2.0, openGL 3.3
|-
| HD4300 HD4500 HD4600 HD4700 HD4800 ([http://en.wikipedia.org/wiki/Radeon_R600 r700])
| 0x1002
| 0x
| 0x0
| <!--2D-->{{Maybe|but some later cards need 3D engine for faster and more flexible 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 3.3 - DDR3 - GDDR5 was one of AMD's aces for the 4800 series - 4670 liked -
|-
| HD6900 cayman series
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|some features with new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 3.3 open CL not mature (2014) -
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| HD5400 Series HD5430 HD5450 HD5470
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2010 openGL 3.3 openCL - GDDR3 -
|-
| HD5500 Series HD5550 HD5570 HD5600 Series HD5650 HD5670 HD5700 Series HD5750 HD5770
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 3.3 openCL - GDDR5
|-
| HD 5800 Series HD5850 HD5870 HD5900 Series HD5950 HD5970 - HD6xxx not NI chipset ([http://en.wikipedia.org/wiki/Evergreen_(GPU_family) r800 evergreen])
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 openGL 3.3 openCL - DDR5 pci-e 2.1 best avoided for all pci-e 1.0 mobos - Ati TeraScale2 architecture -
|-
| HD6450 [http://en.wikipedia.org/wiki/Northern_Islands_(GPU_family) Northern Islands chipset]
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> - DDR3 -
|-
| HD6600 Series HD6650 HD6570 HD6600 Series HD6650 HD6670
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2011 - DDR5 -
Radeon HD 8470 11 TeraScale 2
Radeon HD 8350 11 TeraScale 2
Radeon HD 7510 11 TeraScale 2
Radeon HD 6550D 11 TeraScale 2
Radeon HD 6530D 11 TeraScale 2
Radeon HD 6410D 11 TeraScale 2
Radeon HD 6370D 11 TeraScale 2
Radeon HD 6320 11 TeraScale 2
Radeon HD 6310 11 TeraScale 2
Radeon HD 6290 11 TeraScale 2
Radeon HD 6250 11 TeraScale 2
|-
| HD6800 Series HD6850 HD6870 HD6700 Series HD6790 to HD6990
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2011 - DDR5 - AMD TeraScale3 -
|-
| <!--Description-->HD7450-HD7670
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 OpenGL but not Vulkan
Radeon HD 7660D 11 TeraScale 3
Radeon HD 7560D 11 TeraScale 3
Radeon HD 7540D 11 TeraScale 3
Radeon HD 7480D 11 TeraScale 3
Radeon HD 6930 11 TeraScale 3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->HD7750 HD 7770 / R7 250X HD7850 HD7870 / R9 270X HD 7950 / R9 280 HD 7970 / R9 280X [http://en.wikipedia.org/wiki/Southern_Islands_(GPU_family) Southern Islands]
*AMD Radeon R7 250XE Cape Verde XT
*AMD Radeon R7 M465X Cape Verde
*AMD Radeon R9 255 Cape Verde PRX
*AMD Radeon HD 7750 Cape Verde PRO
*AMD Radeon R7 250E Cape Verde PRO
*AMD Radeon HD 8740 Cape Verde PRO
*AMD Radeon HD 7730 Cape Verde LE
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 pci-e 3.0 1st Gen GCN architecture -
|-
| <!--Description-->R5 430, FirePro W2100,
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 50W+ openGL openCL 1/3 speed of gtx750ti 1st gen gcn1
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->HD7790 [ Sea Islands ]
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 openGL 4.1 open CL - GCN2.0 Vulkan 1.0 introduced a Shader Engine (SE) comprising one geometry processor, up to 44 CUs (Hawaii chip), rasterizers, ROPs, and L1 cache and Graphics Command Processor for faster audio/video - suits Vulkan 1.1
|-
| <!--Description-->r5 240 240x (slow) R7 250 250x (faster) HD 7790 / R7 260 260X / R7 360 to R5 350 (fast) and last one R5 430 OEM Plus (slow again)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 50W+ GCN 1st gen - openGL 4.x openCL 1.x Vulkan 1.0
|-
| <!--Description-->R9 290 / R9 390 R9 290X / R9 390X
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2014 GCN 1.1 2nd Gen architecture - openGL 4.x openCL 1.x Vulkan 1.1 -
|-
| <!--Description-->R9 Fury Nano
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 GCN 1.2 3rd Gen - openGL openCL vulkan
|-
| <!--Description-->r-200 series r8 275 285 295 375 [Volcanic Islands]
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 GCN1.2 - openGL 4.x openCL 1.x Vulkan 1.2
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 [https://gpuopen.com/download/AMD_GCN3_Instruction_Set_Architecture_rev1.1.pdf GCN3]
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Radeon™ RX 5700/5600/5500 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 GCN 4 - OpenGL 4, Vulkan 1.3 -
|-
| <!--Description-->Radeon™ RX 400/500 Series like rx vega 580
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->Radeon™ Pro WX 9100, x200 Series and Radeon™ Pro W5700/W5500 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Radeon™ RX 7900/7600 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->Radeon™ RX 6900/6800/6700/6600/6500 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|}
==== amd radeon mobile integrated ====
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|-
| <!--Description-->ATI RC410 [Radeon Xpress 200M]
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x5a62 0x5955 0x5974 (200m)
| <!--Revision-->0x00
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->
|-
| <!--Description-->Mobility Radeon 7500
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x4c57 (7500)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->
|-
| <!--Description-->Mobility Radeon 9000
| 0x1002
| 0x4966 (9000)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->
|-
| <!--Description-->Mobility Radeon 9500 9550 (rv360) 9600 (rv350)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon 9800 (rv420)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon X300 (RV370) X600 (RV380)
| 0x1002
| 0x (RV370) 0x5657 (RV380)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon X700 (RV410) X800 (RV423)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon X1200 (RS69M0)
| 0x1002
| 0x791f
| 0x0
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->X1200 IGP (RS690)
|-
| <!--Description-->Mobility Radeon X1300 X1350 X1400(rv515) X1600 (rv530) X1650 (RV535) X1800 (rv520) x1900 (rv570)
| 0x1002
| 0x71c7 (X1650)
| 0x009e
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon 2100
| 0x1002
| 0x796e (2100)
| 0x0
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{No|}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 2400 (rv610) HD2600 (rv630)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 3100 HD3200 HD3450 3470 (RS780MC RV620) 3670 (M86-XT RV635) HD3870 (M88-LXT RV670)
| 0x1002
| 0x9610 and 0x9612 (HD3200) 0x9614 (HD3300)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 4200 4250 (RV620)
| 0x1002
| 0x (HD4200) 0x9715 (HD4250)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 4330 4530 4550 (M92 RV710) 4650 (M96-XT RV730) 4670 RV730XT 4830 (M97 RV740) 4850 (M98 RV770)
| 0x1002
| 0x (HD4350) 0x9442 (RV770) 0x9490 (HD4670)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 530v (M92 RV710) HD 550v (M96 RV730)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->no support yet
|-
| <!--Description-->Mobility Radeon HD 5430 HD5650 (cedar Park LP)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->no support yet
|-
| <!--Description-->Radeon HD 6250 6290 6310 6320 6350M (Redwood Capilano PRO)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->no support yet
|-
| <!--Description-->AMD 7640G, 8450G, 8550G, 8650G Northern Islands
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 Last real support for old graphics standard before Vulkan takeover
|-
| <!--Description-->R5 M230 M240 M255 - R7 M260 M265 (Kaveri Crystal series with Mantle and HSA)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->2015 Maybe better with Vulkan
|-
| <!--Description-->R5E R7E
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->2016 bristol ridge GCN 3.0 IGP (Carrizo Mobile)
|-
| <!--Description-->AMD Vega 3, 6, 8, 11 iGP
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2018 raven ridge GCN 5th Gen
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->5500m 5600m 5800m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA1 NaviX1 Zen 2
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rx680m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA2 NaviX2 Zen 3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->phoenix apu 1103
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 RDNA3 NaviX3 zen 4
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
==== AMDGPU Vulkan desktop ====
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Kaveri 290 290X, 260 260X
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 AMDGPU Vulkan
|-
| <!--Description-->R9 285 / R9 380 R9 380X Fury / Fury X
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->opengl 4 opencl 1 3rd Gen GCN architecture
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX470 RX460 RX480 RX580 polaris10
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 opengl 4 opencl 2 4th Gen GCN architecture vulkan 1.3
|-
| <!--Description-->RX460 RX560D polaris11
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 opengl 4 opencl 2 4th Gen GCN architecture vulkan 1.3
|-
| <!--Description-->RX580 polaris20
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 opengl 4 opencl 2 4th Gen GCN architecture vulkan 1.3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX 5000 5500 Navi 1x
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RNDA 1
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX 6000 Navi 2x
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RNDA 2 Mesa 21.3 decode av1
|-
| <!--Description-->RX6000
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX 7000
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 RNDA 3 navi
|-
| <!--Description-->RX7000
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->RX9070 rx 9060 XT
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2025 rdna4 navi
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2026 udna (aka rdna5)
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
|}
==== AMDGPU Vulkan mobile ====
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->R5E R7E
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->2016 bristol ridge GCN 3.0 IGP (Carrizo Mobile)
|-
| <!--Description-->Vega 8
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> GCN 5
|-
| <!--Description-->Vega iGP 3, 6, 8, 11
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2018 raven ridge - Graphics Core Next (GCN) 5th gen -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->5500m 5600m 5800m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA1 NaviX1 Zen 2
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rx680m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA2 NaviX2 Zen 3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->phoenix apu 1103
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA3 NaviX3 zen 4
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
fyi if a notebooks with two graphic cards, the integrated Intel card (id 0x7d) for low power usage and a discrete Radeon card (id 0x56) which should be used for GPU-intensive applications. By default the Intel card is always used
[https://wiki.archlinux.org/title/ATI Gallium Radeon HD] is not ported yet but is [https://www.phoronix.com/scan.php?page=news_item&px=Linux-5.9-AMDGPU-Stats really big] and complex so another solution may have to be [https://discuss.haiku-os.org/t/the-graphics-acceleration-can-of-worms/10515/5 found] like [https://discuss.haiku-os.org/t/vulkan-lavapipe-software-rendering-is-working-on-haiku/11363/10 vulkan] where support starts from very recent ISA GCN islands HD7000s cards only
*Vulkan
*Gallium
Vulkan software renderer allows to prepares the infrastructure for hardware rendering. Primary difference between software and hardware renderer is output to regular RAM vs GPU RAM, the rest is almost the same. It is possible to render to GPU RAM offscreen.
bare bones basics data flow
application,>>> api/opengl/vulkan>>>>, jit compiler, >>>>memory manger, >>>>gpu hardware
so you need to have a compiler that takes your api call/program/shaders/drawing commands and turns them into a program the gpu can render.
the vulkan to amd gpu compiler for shaders and textures is nearly os agnostic iirc as long as you have solid posix compliance
Unlike OpenGL, Vulkan does not depend on windowing system and it have driver add-on system with standardized API (Mesa also have OpenGL driver add-ons, but it have non-standard Mesa-specific API). OpenGL may need more work for windowing system related code at this point but developing Vulkan on real hardware is more strategic than developing OpenGL, since now Zink 3 running on Vulkan compensates for the lack of OpenGL support by giving performance similar to native accelerated OpenGL
RadeonGfx use client-server model with client-server thread pairs. For each client thread that calls 3D acceleration API, server side thread is created. If client thread terminates, server side thread also exit.
==Rough gfx comparison==
<pre>
Group 1
GeForce RTX 5090 5070 5060 5050
GeForce RTX 4090 4070 4060 4050
Group 2
GeForce RTX 2070
Radeon RX 7600
Quadro RTX 5000
Radeon PRO W6600
GeForce RTX 2060 12GB
Radeon PRO W7500
Quadro GP100
Radeon RX 6800S
GeForce RTX 3070 Laptop GPU
GeForce GTX 1080
GeForce RTX 3060 8GB
Quadro RTX 4000
Radeon Pro W5700
Radeon RX 6600
GeForce RTX 2080 (Mobile)
Radeon RX 7700S
Radeon RX 6700S
Radeon RX 6600S
Quadro RTX 5000 (Mobile)
GeForce GTX 1070 Ti
GeForce RTX 4050 Laptop GPU
Radeon Pro Vega 64X
Radeon RX 5700
Radeon RX Vega 64
GeForce RTX 2060
GeForce RTX 2070 Super with Max-Q Design
Group 3
Radeon RX 6600M
GeForce GTX 1070
Radeon RX 6650M
GeForce RTX 3060 Laptop GPU
Radeon RX Vega 56
Radeon RX 6700M
GeForce RTX 2080 with Max-Q Design
Radeon RX 6800M
GeForce GTX 980 Ti
Radeon R9 Fury
GeForce GTX 980
Quadro M5500
Radeon R9 390X
Radeon RX 580
Radeon RX 5500
Radeon RX 6550M
GeForce GTX 1660 Ti with Max-Q Design
GeForce GTX 780 Ti
GeForce GTX 970
Radeon R9 290X
Radeon RX 480
Radeon RX 5600M
Quadro RTX 3000 with Max-Q Design
Radeon R9 290X / 390X
Ryzen 5 4600HS with Radeon Graphics
Radeon R9 290
Radeon Pro 5500 XT
Radeon R9 M490 *
GeForce GTX 780
Radeon RX 6500M
Quadro M5500
GeForce GTX 1060 with Max-Q Design
Radeon RX 6500
Radeon RX 5300
Intel Arc A770M
GeForce GTX 1650 Ti
Radeon Pro 580X
Radeon RX 6400
GeForce RTX 2050
Ryzen 9 4900HS with Radeon Graphics
Radeon Ryzen 9 6900HS
GeForce GTX 980M
Quadro M5000M
Radeon RX 6300
GeForce GTX 1650 Ti with Max-Q Design
Radeon Pro 570
Ryzen 9 6900HS with Radeon Graphics
GeForce GTX 1050 Ti
Quadro M4000M
Radeon R9 280X 380X
GeForce GTX 1650 with Max-Q Design
GeForce MX570
Radeon R9 280X
Radeon R9 380
Radeon 780M
GeForce GTX 960
GeForce GTX 970M
Quadro M4000M *
GeForce GTX 680
Group 4
Radeon RX 6500M
Quadro M5500
Radeon Pro WX 7100
GeForce GTX 1060 with Max-Q Design
GeForce GTX 1650
Intel Arc A730M
Radeon HD 7970
Radeon R9 M395X
Radeon R9 M485X
Radeon R9 M480 *
Radeon R9 M295X
Radeon R9 M390X *
FirePro W7170M *
Radeon R9 M395
Radeon R7 370
Radeon RX 5500M
GeForce GTX 590
GeForce GTX 880M
GeForce GTX 950
Radeon R9 270X
GeForce GTX 660 Ti
GeForce GTX 760
GeForce GTX 780M
Quadro K5100M
GeForce GTX 680MX
Radeon HD 7870
GeForce GTX 965M
Quadro M3000M *
GeForce GTX 870M
Radeon R9 M290X
Radeon HD 8970M
Radeon Ryzen 7 7735U (680M), Radeon Ryzen 7 7735HS (680M 12C)
GeForce GTX 580
Radeon HD 6970
GeForce GTX 1050
GeForce GTX 680M
GeForce GTX 775M
GeForce GTX 1630
FirePro M6100
Radeon HD 7970M
Radeon R9 M390 *
GeForce GTX 750 Ti
Group 5
GeForce GTX 570
GeForce GTX 480
GeForce GTX 960M
Quadro M2000M *
Quadro K5000M
Quadro K4100M
GeForce GTX 770M
GeForce GTX 860M
GeForce GTX 675MX
GeForce GTX 950M
GeForce GTX 850M
Quadro M1000M
Radeon R9 M280X
Radeon HD 7950M *
GeForce GTX 560 Ti
Radeon HD 6870
GeForce GTX 470
GeForce GT 1030
GeForce MX330
Ryzen 5 PRO 5650GE with Radeon Graphics
Ryzen 7 5800HS
FirePro 3D V8800
GeForce MX250
Group 6
Radeon Pro WX 3200
Ryzen 7 PRO 5750G with Radeon Graphics
Radeon Ryzen 5 5600H
Ryzen 5 Pro 4650G with Radeon Graphics
Radeon Ryzen 7 5800U
Ryzen 7 7730U with Radeon Graphics
Radeon Ryzen 7 5825U
Radeon Pro WX 4150
Radeon Ryzen 5 PRO 4655G
Ryzen 5 4600G with Radeon Graphics
Radeon Ryzen 5 PRO 4655GE
GeForce GTX 485M
FirePro W6150M
Ryzen 7 5800U with Radeon Graphics
Ryzen 5 7530U with Radeon Graphics
Ryzen 7 4800U with Radeon Graphics
Radeon R9 M470
Ryzen 3 PRO 5350G with Radeon Graphics
Radeon RX Vega Ryzen 3 5300U
Ryzen 7 5825U with Radeon Graphics
Ryzen 5 PRO 4400G with Radeon Graphics
Radeon Ryzen 7 PRO 4750GE
Radeon Ryzen 7 4800U
FirePro V7900
Radeon HD 5970
Radeon Ryzen 7 7700X 8-Core
Radeon Ryzen 5 PRO 5650G
Radeon Ryzen 5 4400G
Radeon Ryzen 5 PRO 5650GE
Radeon RX 550X
FirePro V8800
Radeon RX Vega Ryzen 5 5500U
GeForce MX150
Quadro K3100M
Ryzen 7 PRO 5850U with Radeon Graphics
Radeon HD 6970M
Radeon R7 250X
Intel HD 5600
Ryzen 3 4300GE with Radeon Graphics
GeForce GTX 460
Ryzen 7 5700U with Radeon Graphics
Radeon Ryzen 5 7530U
Quadro K620
Ryzen 3 PRO 5350GE with Radeon Graphics
Intel Iris Pro P580
Intel UHD Graphics P630
Ryzen 5 4600H with Radeon Graphics
Ryzen 5 PRO 7530U with Radeon Graphics
Radeon HD 5870
Radeon HD 6870
Ryzen 7 4700G with Radeon Graphics
Ryzen 5 5600U with Radeon Graphics
Radeon HD 7770
Ryzen 3 Pro 4350G with Radeon Graphics
Radeon Ryzen 5 5625U
GeForce GTX 745
Radeon Ryzen 7 4850U Mobile
Radeon Ryzen 3 PRO 7330U
Quadro M600M
Radeon Ryzen 5 5500U
Ryzen 5 5560U with Radeon Graphics
Ryzen 7 4800H with Radeon Graphics
Group 7
GeForce 945M
Ryzen 5 PRO 4650GE with Radeon Graphics
FirePro M5100
Radeon Ryzen 5 5600U
Radeon Ryzen 5 PRO 4500U
GeForce GTX 580M
Ryzen 7 PRO 5875U with Radeon Graphics
Ryzen 3 5300GE with Radeon Graphics
Radeon R9 M385
Quadro 5000M
Radeon Ryzen 7 4700U
Ryzen 5 PRO 5650U with Radeon Graphics
Radeon Ryzen 7 PRO 4750U
Ryzen 7 4700U with Radeon Graphics
Ryzen 7 PRO 4750U with Radeon Graphics
FirePro V7800
Radeon R9 350
Ryzen 3 4300G with Radeon Graphics
Radeon Vega 11 Ryzen 5 PRO 3350G
Radeon Ryzen 5 5560U
GeForce GTX 460 SE
Radeon Pro W5500M
Radeon Vega 11 Ryzen 5 PRO 3400G
Ryzen 5 5500U with Radeon Graphics
Ryzen 5 PRO 4500U with Radeon Graphics
GeForce GT 645
GeForce GTX 765M
Radeon R9 M385X
Ryzen 5 5625U with Radeon Graphics
Ryzen 3 PRO 7330U with Radeon Graphics
Radeon HD 5850
Radeon Vega 11 Ryzen 5 PRO 2400G
Intel Iris Pro 580
Radeon HD 6850
Intel Iris Xe MAX
Radeon Ryzen 7 PRO 5875U
Radeon Ryzen 5 7600 6-Core
GeForce GTX 470M
Ryzen 3 5300G with Radeon Graphics
GeForce GTX 670MX
Radeon RX 640
Qualcomm Adreno Gen 3
Radeon R7 450
GeForce GTX 675M
Radeon Pro WX 4130
Intel Iris Xe MAX 100
Quadro 5000
Radeon RX 570X
Radeon HD 7700-serie
Ryzen 5 4600U with Radeon Graphics
Ryzen 3 PRO 4350GE with Radeon Graphics
Radeon Vega 8
Group 8
GeForce MX230
GeForce GTX 765M
Quadro K4000M
Iris Pro Graphics P580 *
Iris Pro Graphics 580 *
GeForce GTX 645
Quadro M520
GeForce GTX 570M
GeForce MX130
Radeon RX 540
Radeon Ryzen 5 PRO 5675U
Intel UHD Graphics 770
Radeon RX Vega 11 Ryzen 7 3750H
Radeon Vega 11 Ryzen 5 PRO 3400GE
Radeon HD 5850
GeForce GTX 675M
GeForce GTX 580M
Radeon HD 6990M
Radeon R9 M385X *
Radeon R9 M470X *
Radeon R9 M470 *
Radeon R9 M385 *
Radeon R9 M380 *
Radeon R9 M370X
Radeon R9 M275
Radeon HD 7770
GeForce GTX 485M
GeForce GTX 460 768MB
Radeon HD 6790
GeForce GTX 285M SLI
Quadro K3100M
FirePro W5170M *
GeForce GTX 670MX
Quadro 5010M
GeForce GTX 760M
GeForce GTX 670M
Group 9
GeForce 940MX *
Maxwell GPU (940M, GDDR5)
FirePro M8900
Radeon HD 6970M
Radeon R9 M270
Radeon HD 8870M
Radeon HD 7870M
Quadro K3000M
GeForce GTX 570M
FirePro M6000
FirePro M5100
Quadro K2100M
Radeon HD 5770
GeForce GTX 550 Ti
GeForce GTX 280M SLI
Radeon HD 6950M
Radeon R7 250
GeForce GT 755M
GeForce GTX 660M
GeForce 845M
Radeon HD 8850M
Radeon R9 M365X
Radeon R9 M265X
Ryzen 5 PRO 4400GE with Radeon Graphics
FirePro W5130M *
Radeon Vega 8 Ryzen 5 3500U
Radeon HD 7850M
Radeon HD 8790M
FirePro W4170M
FirePro W4190M
FirePro W4100
Radeon Vega 6 Ryzen 3 3300U
Quadro 4000M
GeForce GTX 470M
GeForce GTX 480M
GeForce GT 750M
Iris Pro Graphics 6200
Quadro K1100M
GeForce 940M
Radeon R9 M375
GeForce 930MX *
Radeon R7 M380 *
Radeon R7 M370
Quadro M600M *
GeForce GT 650M
Quadro K620M
GeForce 840M
Radeon R7 M275DX
GeForce GT 745M
Radeon HD 7770M
GeForce GTX 560M
Radeon R7
Iris Pro Graphics 5200
GeForce GT 740M
GeForce 930M
Radeon HD 4850
Group 10
Iris Graphics 550 *
GeForce 830M
Iris Graphics 540
Quadro M500M *
Quadro K2000M
GeForce GTS 450
GeForce GTX 260M SLI
GeForce GT 735M
Mobility Radeon HD 5870
GeForce 825M
Quadro 5000M
FirePro M4000
FirePro M7820
Radeon HD 6870M
GeForce 9800M GTX SLI
Radeon HD 8830M *
Radeon HD 8770M
Radeon R7 M260X
GeForce GTX 460M
GeForce 920MX *
GeForce GT 730M
Radeon HD 7750M
GeForce GT 645M *
FirePro M4100
Radeon HD 8750M
Radeon R6 A10-9600P 4C+6G
Quadro 3000M
Radeon R7 M270
Radeon R7 M265
Quadro FX 3800M
GeForce GTX 285M
Mobility Radeon HD 4870
GeForce GT 640M
Radeon R7 (Kaveri)
Radeon R8 M365DX
Radeon R7 M460 *
Radeon HD 7730M
Radeon R7 M360
GeForce GTX 280M
Radeon HD 8690M
Quadro FX 3700M
Radeon R7 M340
GeForce 920M
Radeon R6 M340DX
HD Graphics 530
HD Graphics P530
Tegra X1 Maxwell GPU
Radeon R7 M260
Radeon R6
Group 11
Mobility Radeon HD 4860
FirePro M7740
Mobility Radeon HD 4850
GeForce GTX 260M
GeForce 9800M GTX
Quadro FX 2800M
Radeon HD 8670D
Radeon HD 7690M XT
FirePro M5950
GeForce GT 640M LE
Radeon R6 (Kaveri)
Radeon HD 8650M *
Radeon HD 8730M
Radeon HD 6770M
GeForce GT 635M
GeForce GT 555M
Radeon R7 A10 PRO-7800B
Radeon HD 5670
Mobility Radeon HD 5850
Radeon HD 6850M
Quadro 2000M
GeForce 9800M GT
GeForce 8800M GTX
Quadro FX 3600M
GeForce GT 445M
GeForce GTS 360M
Group 12
GeForce GT 240
Radeon R7 PRO A10-9700
Radeon HD 7690M
HD Graphics 5600
Radeon HD 8570D
Radeon HD 8670M
Radeon R6 M255DX
Radeon HD 7660D
Radeon HD 6750M
Quadro K1000M
GeForce GT 550M
Radeon HD 8590M *
GeForce GTS 260M
GeForce GTS 160M
GeForce 9800M GTS
GeForce GT 430
Radeon HD 6830M
Mobility Radeon HD 5830
Radeon HD 6730M *
GeForce 9800M GS
Mobility Radeon HD 4830
Mobility Radeon HD 5770
Radeon HD 6570M
Radeon HD 8650G
Radeon HD 7670M
GeForce GT 630M
Radeon HD 7560D
GeForce GTS 150M *
Radeon R5 M335
Radeon R5 M430 *
Radeon R5 M330
Radeon R5 M255
Radeon Vega 3
Quadro 1000M
GeForce 820M
FirePro W2100
HD Graphics 520 620
Iris Graphics 6100
GeForce GT 720M
GeForce 8800M GTS
Radeon R5 M240
Radeon R5 M320 *
Radeon R5 M230
Radeon R5 M315 *
Mobility Radeon HD 5750 *
Radeon HD 8570M
Radeon R7 PRO A10-8850B
HD Graphics 6000
Quadro K610M
Radeon HD 8550M
Iris Graphics 5100
GeForce GT 540M
Mali-T880 MP12 *
Radeon HD 8610G *
Radeon HD 6650M
HD Graphics 4600
Mobility Radeon HD 5730
HD Graphics 5500
Radeon R5 (Carrizo) *
Radeon R5 (Kaveri)
FirePro M5800
NVS 5400M
GeForce 710M
Radeon HD 7660G
GeForce GT 435M
HD Graphics 5000
Quadro K510M *
Radeon HD 5570
Radeon HD 6550M
Radeon HD 7590M *
GeForce GTS 350M
GeForce GTS 250M
Radeon HD 6630M
Radeon HD 7650M
FirePro M2000
Radeon HD 7570M
Radeon HD 7630M
Quadro FX 1800M
Mobility Radeon HD 5650
Radeon HD 8510G *
Radeon HD 6530M
Radeon HD 8550G
Quadro K500M *
GeForce GT 625M *
GeForce GT 620M
GeForce GT 525M
Radeon HD 6550D *
Radeon HD 7610M
Radeon HD 7620G
Radeon HD 8470D
Radeon HD 7640G
Adreno 530
GeForce ULP K1 (Tegra K1 Kepler GPU)
HD Graphics 4400
HD Graphics 510 515 *
NVS 5200M
Mobility Radeon HD 565v
Radeon HD 7550M
Mobility Radeon HD 4670
GeForce GT 425M
GeForce 9700M GTS
Radeon HD 6645G2 *
Quadro FX 2700M
GeForce GT 335M
Radeon HD 7600G
Mobility Radeon HD 3870
Mobility Radeon HD 4650
GeForce GT 220
GeForce GT 420M
Radeon HD 7530M *
Mobility Radeon HD 3850
GeForce GT 330M
Quadro FX 880M
Quadro NVS 5100M
GeForce GT 240M
Radeon HD 7490M *
HD Graphics 5300
Radeon HD 7510M *
GeForce Go 7950 GTX
Quadro FX 3500M
GeForce 8700M GT SLI
GeForce 9700M GT
GeForce GT 230M
Mobility Radeon HD 550v
Radeon HD 7480D
HD Graphics 4000
Mali-T760 MP8
Radeon HD 6620G
HD Graphics (Broadwell) *
Adreno 430
Radeon R5 (Beema/Carrizo-L)
Radeon R4 (Beema) (Kaveri)
HD Graphics (Skylake) *
Radeon HD 6450 GDDR5
Radeon HD 7500G
Radeon HD 8450G
Radeon HD 7470M
Radeon HD 6490M
Radeon HD 8400
Mali-T880 MP4
GeForce GT 520MX
Radeon HD 7520G
GeForce GT 325M
GeForce Go 7800 GTX SLI
GeForce 8600M GT SLI
GeForce Go 7900 GS SLI
GeForce GT 130M
NVS 4200M
GeForce Go 7900 GTX
Quadro FX 2500M
Radeon HD 8350G
Radeon HD 8330
GeForce 9650M GS
GeForce 9650M GT
Radeon R3 (Mullins/Beema)
GeForce 8700M GT
Quadro FX 1700M
Quadro FX 1600M
GeForce Go 7800 GTX
GeForce Go 7900 GS
Quadro NVS 320M
Quadro FX 1500M
GeForce 9600M GT
GeForce GT 220M
Quadro FX 770M
GeForce GT 120M
Radeon HD 7450M
GeForce 610M
GeForce 705M
Mali-T760 MP6
Radeon HD 6470M
FirePro M3900 *
GeForce GT 520M
Radeon HD 7420G
Mobility Radeon HD 3670
Mobility FireGL V5725
PowerVR GX6450
Adreno 420
HD Graphics (Haswell)
Radeon HD 6520G
Radeon HD 8310G *
GeForce 320M
GeForce GT 320M
Mobility Radeon HD 2600 XT
Mobility Radeon X1900
Mobility Radeon X1800XT
Mobility Radeon X1800
GeForce Go 6800 Ultra
GeForce Go 7800
GeForce 9600M GS
GeForce 9500M GS
Radeon HD 7400G
Radeon HD 6480G *
Mobility Radeon HD 2700
GeForce GT 415M
GeForce 410M
Radeon HD 7370M
Adreno 418
HD Graphics (Cherry Trail)
Radeon HD 6370M
Radeon HD 8280
Mobility Radeon HD 5470
Radeon HD 6450M
Radeon HD 7430M *
Mobility Radeon HD 3650
Mobility FireGL V5700
Mobility Radeon HD 5145
Mobility Radeon HD 545v
Radeon R6 (Mullins) *
Radeon HD 8240
Radeon HD 8250
Mobility Radeon HD 4570
Quadro FX 570M
Mobility Radeon HD 5450 *
Radeon R2 (Mullins/Beema) *
GeForce 8600M GT
Mobility Radeon HD 2600
HD Graphics 3000
Quadro FX 380M
GeForce 310M
GeForce G210M
NVS 3100M
GeForce 405M
GeForce 315M
GeForce Go 7600 GT
GeForce 9500M G
GeForce 8600M GS
NVS 2100M
GeForce Go 7700
GeForce Go 6800
Quadro FX Go 1400
Mobility Radeon X800XT
Radeon HD 6430M *
Radeon HD 6380G *
Mobility Radeon HD 5430
Radeon HD 8210
Mobility Radeon HD 540v
Mobility Radeon HD 4550
HD Graphics 2500
HD Graphics (Ivy Bridge)
Quadro NVS 310
Radeon HD 7350M *
Radeon HD 6350M *
Mobility Radeon HD 4530
Mobility Radeon HD 4350
Radeon HD 4350
GeForce 305M
Mobility Radeon X1700
Mobility FireGL V5250
Mobility Radeon X2500
GeForce Go 7600
Quadro NVS 300M
Mobility Radeon X800
Mobility Radeon X1600
Mobility FireGL V5200
Mobility Radeon 9800
GeForce Go 6600
Mobility Radeon X1450
Mobility Radeon X700
Mobility FireGL V5000
GeForce G 110M
Quadro NVS 295
Radeon HD 6330M *
Mobility Radeon HD 4330
GeForce 8400M GT
Quadro NVS 140M
HD Graphics 2000
GeForce 9500M GE *
GeForce 9400M (G) / ION (LE)
HD Graphics (Sandy Bridge) *
Adreno 330
PowerVR G6430
PowerVR GX6250
PowerVR G6400
HD Graphics (Bay Trail)
Mali-T628 MP6
Mali-T760 MP4
Chrome9HD *
Radeon HD 7340
Radeon HD 6320 *
Radeon HD 7310
Radeon HD 6310 *
Radeon HD 8180
Mobility Radeon HD 3470
GeForce 9300M G
ION 2 *
GeForce 9300M GS
Quadro FX 370M
Quadro NVS 160M
GeForce 9200M GS
Mobility Radeon HD 3450
Mobility Radeon HD 3430
Mobility Radeon HD 3410
Mobility Radeon HD 2400 XT
Radeon HD 4270
Radeon HD 4250
Radeon HD 7290 *
Radeon HD 6290 *
Radeon HD 4200
Graphics Media Accelerator (GMA) HD Graphics
Radeon HD 6250
Quadro NVS 150M
Quadro FX 360M
Mobility Radeon X1350
Mobility Radeon X1400
GeForce 9100M G
GeForce 8400M GS
Quadro NVS 135M
Mobility Radeon HD 2400
Radeon HD 3200
Radeon HD 4225 *
Radeon HD 4100 *
SGX554MP4
Mali-T628 MP4
Mobility Radeon HD 3400 *
Radeon HD 3100
GeForce 8400M G
Mali-T860 MP2
Quadro NVS 130M
GeForce 8200M G
Graphics Media Accelerator (GMA) 4700MHD
Graphics Media Accelerator (GMA) 4500MHD
Graphics Media Accelerator (GMA) 4500M
Mali-T604 MP4
GeForce Go 7400
Quadro FX 350M
Quadro NVS 120M
GeForce Go 7300
GeForce Tegra 4 *
PowerVR G6200
Adreno 405 *
Quadro NVS 110M
Mobility Radeon X600
Mobility FireGL V3200
Mobility FireGL V3100
Mobility Radeon HD X2300
Mobility Radeon 9700
Mobility FireGL T2e
Mobility Radeon X1300
GeForce4 4200 Go
Mobility Radeon 9600
Mobility FireGL T2
Mobility Radeon 9550
GeForce Go 7200
GeForce Go 6400
Mobility Radeon X300
GeForce Go 6250
GeForce Go 6200
GeForce FX Go 5700
Quadro FX Go 1000
GeForce FX Go 5600 / 5650
Radeon Xpress X1270
Radeon Xpress X1250
Radeon Xpress X1200
Graphics Media Accelerator (GMA) X3100
Mali-T624
Adreno 320 *
Mali-T760 MP2
Mali-T720 MP4
Mali-450 MP4
Graphics Media Accelerator (GMA) 3650 *
GeForce 7190M *
GeForce 7150M
Radeon Xpress 1150
GeForce Go 6150
GeForce Go 6100
GeForce 7000M
Graphics Media Accelerator (GMA) 3600 *
Mobility Radeon 9200
Mobility FireGL 9000
GeForce FX Go 5200
Mobility Radeon 9000
GeForce 4 488 Go
GeForce 4 460 Go
GeForce 4 440 Go
GeForce 4 420 Go
Graphics Media Accelerator (GMA) 3150
Graphics Media Accelerator (GMA) 950
SGX545 SGX544MP2 SGX543MP2 *
Mali-T720 MP2
Mali-T720
Adreno 302 304 305 306
Mobility Radeon 7500
Mobility FireGL 7800
Graphics Media Accelerator (GMA) 900
Radeon Xpress 200M
Radeon Xpress 1100
Mirage 3+ 672MX
Mirage 3 671MX
Mali-400 MP4 *
GeForce ULP (Tegra 3) *
VideoCore-IV *
Adreno 220 225*
Vivante GC1000+ Dual-Core
Mali-400 MP2 *
GeForce ULP (Tegra 2) *
Graphics Media Accelerator (GMA) 600 *
SGX540 *
Graphics Media Accelerator (GMA) 500
Adreno 205 *
Adreno 203 *
GC800 *
SGX535
SGX531
SGX530
Adreno 200 *
Mali-200 *
GeForce 3 Go *
GeForce 2 Go 200 / 100
Mobility Radeon 9100 IGP
Mobility Radeon 9000 IGP
Mobility Radeon M7
Mobility Radeon M6
Chrome9 HC
Extreme Graphics 2
Mobility Radeon 7000 IGP
Radeon IGP 340M
Radeon IGP 320M
S3G UniChrome Pro II
S3G UniChrome Pro
Castle Rock
Mirage 2 M760
Mirage M661FX
S3 Graphics ProSavage8
Mobility 128 M3
SM502 *
</pre>
Kernel-space drivers like '''radeon''' (older AMD driver for older GPUs), '''amdgpu''' (newer driver for newer GPUs, allows using a few new features), i915, nouveau and a few others. They are what handles the gory details of talking to the GPU itself (writing to proper registers, handling its memory directly, configuring outputs, and so on). Unfortunately most of what they're exposing can be only consumed by a single user of that GPU, which is why we need...
DRM and DRI (Direct Rendering Manager/Infrastructure) controls access to the GPUs, provides interfaces for talking to the GPU concurrently by multiple apps at once (without them breaking each other) and lets the system perform the most basic tasks like setting proper resolution and such if no userspace apps understand how to talk to the GPU exposed. DRI and DRM expose the GPU interfaces mostly as-is, not in a "vendor-neutral" portable way - if you don't have an application developed specifically for a GPU you have, it won't work.
"let's create a vendor-neutral interface for graphics so that apps can ignore the GPU-specific bits and get right to the drawing!" - which is what OpenGL is. User-space drivers implement the OpenGL specification and expose it as an OpenGL library to apps (like games, browsers, etc) instead of the GPU. Mesa is the most popular collection of open-source user-space drivers and contains a few user-space drivers for different GPU families: '''radeonsi''' for most modern AMD GPUs (and '''r600g''', r300g and others for older ones), '''i915/i965''' for old/new Intel GPUs and '''nouveau''' for Nvidia GPUs.
There's also Gallium, which is a bunch of utilities and common code shared among these drivers - if certain things can be done once and work everywhere, they'll land in Gallium and benefit all the drivers. Most Mesa drivers use Gallium (radeonsi, nouveau, software renderers), some don't (intel after gma950).
Displaying 2D windows supports device-specific 2D drivers as well, but nowadays most of these are no longer needed as the modesetting can handle most hardware on its own. As the DRM/DRI got some additional interfaces for what used to be hardware-specific (setting resolutions, refresh rates, etc) and software requiring accelerated 2D drawing was optimized OpenGL-based renderers, dedicated 2D acceleration is slowly going away. Since around 2012, the 3D part of the graphics card deals with 2D operations.
Modern GPUs can also decode video!? There's VDPAU (NVIDIA & AMD GPUs) and VA-API (AMD & Intel GPUs) that can also talk to the GPU exposed via DRM/DRI and issue proper commands to decode/encode a given video stream. Those drivers are GPU-specific too.
So let's say you have some example GPUs, here's how example stacks could look like:
* AMD Radeon HD8750: amdgpu -> DRM/DRI -> Mesa (radeonsi)
* AMD Radeon HD4850: radeon kernel driver -> DRM/DRI -> Mesa (r600g) -> games/apps/etc.
* NVIDIA GeForce 460: nouveau kernel driver -> DRM/DRI -> Mesa (nouveau) -> games/apps.
* Intel GMA950: i915 kernel driver -> DRM/DRI -> Mesa (i945) -> games/apps.
{| class="wikitable sortable" width="90%"
! width="15%" | Description
! width="15%" | Analog Output
! width="15%" | Digital Output
! width="15%" | Laptop LCD
! width=30%" | Comments
|-
| <!--Description-->Fudomi GC888A
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->1080p 100in throw projector
|-
| <!--Description-->Vamvo VF320 (720P)
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->720p 90in
|-
| <!--Description-->Happrun H1
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->1080p 90in
|-
| <!--Description-->Umbolite Magcubic HIPPUS HY320 Mini
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->720p 100in
|-
| <!--Description-->Zentality A10 Plus
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->720p 110in
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->nexigo nova mini
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->nebula mars 3
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->epson lifestudio flex plus portable projector
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->dangbei freedo
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->benq gv50
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
Unless your computer uses a Firewire chipset manufactured by Texas Instruments, FireWire interfaces are likely to act buggy.
AROS is unlikely to ever support FireWire.
Bluetooth is similarly unlikely to be ever supported due to huge cost to be certified.
No, x86 PCMCIA card.resource at the moment. Writing card.resource would be a similar amount of work to writing a typical driver. However, it might be complicated by having to support a variety of PCMCIA-controller chipsets like TI PCI1225, PCI1410, PCI1420, 1450, PCIxx12 and O2, etc. m68k card.resource does not really have many higher level functions, most functions are really simple or poke Gayle registers directly. only exception is CopyTuple(). Amiga card.resource has one significant flaw: it's single-unit. would need card.resource and pccard.library. There was talk in the past of designing a new API for PCMCIA because card.resource only supports one slot, but since most modern laptops only have one slot anyway, I think it might be worthwhile to implement card.resource as-is (at least as a first step). pccard.library would be trivial to port. So, a new API is needed.
hb1vkwl3d14hz5i1krky50kazaw1d9t
4641138
4641127
2026-06-25T16:32:58Z
Jeff1138
301139
4641138
wikitext
text/x-wiki
Google translation into [http://translate.google.com/translate?hl=en&sl=auto&tl=de&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support German], [http://translate.google.com/translate?hl=en&sl=auto&tl=fr&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support French], [http://translate.google.com/translate?hl=en&sl=auto&tl=nl&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Dutch], [http://translate.google.com/translate?hl=en&sl=auto&tl=it&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Italian], [http://translate.google.com/translate?hl=en&sl=auto&tl=es&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Spanish], [http://translate.google.com/translate?hl=en&sl=auto&tl=hi&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Hindi],
[http://translate.google.com/translate?hl=en&sl=auto&tl=zh-CN&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Chinese Simplified],
[http://translate.google.com/translate?hl=en&sl=auto&tl=pl&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Polish],
[http://translate.google.com/translate?hl=en&sl=auto&tl=ru&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Russian],
{{ArosNav}}
[[#Audio Chipsets]]
[[#Graphic GFX Chipsets]]
[[#Rough gfx comparison]]
[[#]]
==x86 Native Environment==
AROS should run on almost any i386 PC hardware so long as the CPU is newer than an i486, and has a "Floating Point Unit (FPU)". Ideally around 700Mhz and above with at least 256MB of memory is recommended for desktops and around 1GHz and at least 256MB for laptops/notebooks/netbooks. For web browsing, etc above 1GB is usually needed and offers the option to run web browsers, media players and other hard disk heavy usage from RAM: disk.
Motherboards supported
* Most Intel mobos are supported (Skt 775 is ok but newer is better) - additional pci / pci-e cards may be needed for networking, audio, etc
* AMD based socket 939 am2 am2+ am3+, fusion and am4 ryzen based systems work but additional pci / pci-e cards may be needed
Supported graphics cards (gfx)
* Nvidia 2D and 3D 2005-2017.
64bit AROS Nouveau covers '''2D''' 8xxxgs and higher to GTX 900s and '''3D''' from .
32bit AROS supports '''2D''' from TNT through to fermi gtx5xx and '''3D''' acceleration fx5xxx to gtx4xx.
* Intel GMA 2D and 3D 2006-2009.
'''2D''' for many old netbooks and motherboards. '''3D''' for many early netbooks and motherboards
* AMD/ATI 2D only and '''no 3D'''. 1999-2005.
Desktop ie external monitor support only (no laptop internal support) for very early Radeon 7000 through to x600. Experimental 2D version for up to HD3xxx came later
* VESA 2D fallback modes for all graphic cards (GPUs) and with [http://www.youtube.com/watch?v=HKCHZFYj9Kk screen dragging].
It's worth noting however that support isn't guaranteed. Nor will potential power of a card reflect its performance under AROS.
Sound wise there are
* HDaudio support for onboard intel and AMD netbooks, ultrabooks, notebooks and motherboards (2005 to 2020)
* some AC97 codec support for very old motherboards and laptops (ie pre 2004)
* PCI and some PCI-E C-Media CMI8738 for desktop plugin cards
* PCI Creative Soundblaster EMU10K1 cards [http://amigaworld.net/modules/news/article.php?storyid=2512 SBLive]
* PCI semi professional some early VIA Envy24 desktop sound cards
* PCI Sound Blaster 128 aka SB16
Supported [http://en.wikibooks.org/wiki/Aros/Platforms/x86_Network_support network] which could be desktop, laptop, etc
* PCI-E Realtek rtl8169 which also includes the rtl8111 and rtl8110
* PCI Realtek rtl8139 and includes rtl8101 and rtl8100
* PCI intel pro100
* Broadcom 44xx 10/100 integrated in laptops around 2005
* VIA 10/100
* 3com Etherlink 10/100
* Realtek rtl8029 10mbit
Wireless wifi
* atheros 5000 wireless
*realtek 8187 usb
It is very hard to recommend a completely supported motherboard because as soon as newer motherboards arrive so their features change subtly, often introducing non supported parts like ethernet and audio. It is a moving target.
* mini-itx motherboard will only get you 1 pci or pci-e slot
* micro mATX or uATX will have more, typically 2 pci-e or pci slots which helps if any onboard features are not supported.
* full atx will have more slots available
'''N.B''' It is frustrating when a piece of hardware is not supported. Hardware documentation can run to over 100 pages and a lot of hardware do not have any public documentation anyway. Chips from different manufacturers for sound, graphics, SATA, etc. vary just as much, unless they follow a standard such as [https://github.com/acidanthera/AppleALC/wiki/Supported-codecs HDAudio codecs], AHCI etc.
Coding drivers is a far cry from Hello World programs or even a port of existing software. If you do actually want to try then get a hold of documentation on the relevant hardware and start there. Alternatively you could try to find some '''BSD''', MIT or MPL licence drivers as a point of reference. Please , do not think you can just adapt strings in a driver for different strings, it does not work that way. You will '''need''' to start from scratch for each new bit of hardware. Device driver programming require '''embedded''' skills, like manipulation of bits within registers, good debugging skills, dealing with interrupts, lots of patience, etc.
The following specific chipsets and drivers are also available - use Tools/PCITool to confirm Vendor and Product IDs - Please let us know any mistakes or any information to be added, to this General Chat list on [https://arosworld.org/ AROS World]
: Brief Timeline
: 2000-12-06 HIDD first mouse.hidd completed ([http://msaros.blogspot.com/ Michal Schulz])
: 2001-03-31 BOOT first boot from floppy disk with IDE device
: 2001-10-30 BOOT first cd bootable version
: 2002-01-27 HIDD first pci.hidd added (Michal Schulz)
: 2002-04-13 BOOT software HDToolBox added ()
: 2003-04-03 HIDD vesa2.hidd graphic modes added ()
: 2004-03-08 HIDD new pci and ata (pata) devices worked on (Michal Schulz)
: 2004-03-17 HIDD nVidia 2D driver appears (Michal Schulz)
: 2005-01-05 AHI AHI v6 audio system ported (Martin Blom)
: 2005-01-06 AHI SBLive SoundBlaster Live driver ported (Georg Steger)
: 2005-02-04 AHI AC97 playback only driver added (Michal Schulz)
: 2005-06-27 NIC amiTCP stack ported with 3com, NE2000, prism2 drivers (Neil Cafferkey)
: 2005-08-25 NIC nForce2 support added (Michal Schulz)
: 2005-12-24 NIC Intel Pro100 network driver added (Neil Cafferkey)
: 2006-03-25 HIDD ATI radeon 2D driver added (Michal Schulz)
: 2007-03-06 HIDD vesa 1.0 video driver added (Pavel Fedin)
: 2007-03-08 HIDD dospackets and FAT filesystem (Rob Norris)
: 2007-03-21 HIDD usb initial commit (Michal Schulz)
: 2007-10-01 BOOT Installer added (Neil Cafferkey)
: 2007-11-29 PORT 64bit x86 added (Michal Schulz)
: 2008-04-12 BOOT GRUB2 added (Alain Greppin and Nick Andrews)
: 2008-08-26 NIC RTL8139 added ([http://kalamatee.blogspot.com/ Nick Andrews])
: 2008-10-22 PORT to SAM440ep (ppc) (Michal Schulz)
: 2009-02-25 PORT to efika (ppc) (Michal Schulz)
: 2009-05-18 HIDD poseidon usb2.0 stack ported to AROS (Chris Hodges)
: 2009-11-18 NIC RTL8169 network driver arrived (Nick Andrews and [http://pagesperso-orange.fr/franck.charlet/oldnews.html Franck Charlet])
: 2009-12-23 AHI HDAudio based Atom CPU and netbook audio driver arrived (Davy Wentzler)
: 2010-03-09 BOOT USB pendrive stick booting available (Neil Cafferkey)
: 2010-05-26 HIDD Intel GMA900 2D graphics card support (Michal Schulz)
: 2010-09-03 NIC Wireless PCI based NIC arrived (Neil Cafferkey)
: 2011-04-30 HIDD Nvidia 2D and 3D nouveau graphics card support (Deadwood)
: 2011-08-30 HIDD Radeon 2D enhanced AMD driver arrives (Bearsoft)
: 2011-09-17 NIC Wireless USB realtek arrives (Neil Cafferkey)
: 2011-12-09 HIDD Intel 945G 3D Gallium graphics support (Sami)
: 2013-02-25 AHI AC97 VIA 686 audio support (Davy Wentzler and Neil Cafferkey)
: 2013-03-31 PORT early Raspberry PI native support (Nik Andrews)
: 2014-01-16 AHI Envy24 audio chipset support (Davy Wentzler and Neil Cafferkey)
: 2017-02-17 PORT Symmetric MultiProcessing smp added for x86 64bit (Michal Schulz)
: 2018-10-20 PORT Big Endian ARM
: 2021-11-26 NIC Broadcom 44xx ethernet (Neil Cafferkey)
: 2023-01-12 NIC Nvidia MCP61 ethernet (Neil Cafferkey)
: 2025-11 HIDD xHCI USB3 and isoc (Nik Andrews)
[[#top|...to the top]]
===Audio Chipsets===
'''If sound beeps in AHI prefs after Music set then some support is there. Select more than one channel for multiple audio streams, set frequency up to 44 kHz or higher and set the volume if not already set. Ensure you set the music unit 0 to 3 which allows the extra features of the audio card like microphone, line-out, etc).'''
====1996-2000 sb128.audio aka SB16 PCI====
*2021 5.27
as per CREATIVE's website, the model number is the first two digits on the front and first two digits on the back. my card says CT4810 and 161TK110B 995; this translates to CT4816 as the model.
The original AudioPCI 3000 card with the ES1370 had a master clock crystal for 44.1 kHz (22.5792 MHz), used an AKM codec (AK4531, non-AC97) and had 4 channel output; Creative later modified the design with a crystal for 48 kHz (24.576 MHz) and Sigmatel AC97 codec (a CT4700 SB128 with a CT5507 chip, AK4531, 22.5792 MHz crystal and TDA7360 speaker power amp). The issue with these cards involved never quite eliminate the effects of resampling on the 64V, it also shows signs of undersized coupling caps. These Ensoniq cards automatically engaged headphone amplifier (with a 4565 opamp).
Porting involved [http://repo.or.cz/w/AROS.git/commit/b60abd12967144a844980c422ea9e99c056eabca 40897], [http://repo.or.cz/w/AROS.git/commit/b7d6511fca6430a63fbaaa390b4f51bf0203a460 40898 configure], [http://repo.or.cz/w/AROS.git/commit/f51034cd22759a4ec3a2547bddb3a7169d956eaa 40900 bugs], [http://repo.or.cz/w/AROS.git/commit/4f43fc38e3489ea45d12b7b5ba6fff50b69c5746 40901 further bugs], [http://repo.or.cz/w/AROS.git/commit/d23c78aec75f049484b6916d27b6804ce858bb2c 40913 memory IO fixes], [http://repo.or.cz/w/AROS.git/commit/d256860fe3035016952e88d143c6f2611997f2f3 40914 irq fix].
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| Ensoniq AudioPCI 1000
| 0x1274
| 0x5000
|
| {{unk}}
| {{unk}}
| untested - es1370 (u?) AK4531 (u?)
|-
| Ensoniq AudioPCI
| 0x1274
| 0x5000
| 0x00
| {{yes}}
| {{maybe}}
|
|-
| CT4700 Sound Blaster PCI 64 (audioPCI 3000)
| 0x1274
| 0x5000
| 0x7c
| {{yes}}
| {{maybe}}
| works - opamp JRC4565(u?) [http://en.wikipedia.org/wiki/Ensoniq_ES1370 es1370] (u?)
|-
| CT4750 Sound Blaster 64/PCI
|
|
|
| {{unk}}
| {{unk}}
| untested - 4565-1056W (u1) stac9708t(u2) [http://arstechnica.com/civis/viewtopic.php?f=6&t=916891 ct5880-dcq] (u3) 24wc012 (u4)
|-
| CT4751 (SB128PCI)
| 0x1274
| 0x8001
|
| {{unk}}
| {{unk}}
| untested - [http://en.wikipedia.org/wiki/Sound_Blaster#Ensoniq_AudioPCI-based_cards es1371] (u?)
|-
| CT4810 Creative AudioPCI64V
| 0x1274
| 0x1371
| 0x06
| {{yes}}
| {{maybe}}
| works
|-
| CT4811 (SB Vibra 128)
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4812 (Vibra 128)
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4813
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4815
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4816 es1373 (vibra 128)
|
|
|
| {{unk}}
| {{unk}}
| untested but this card has creative's ES1373 as the main chip(U1). it is also different from the other CT4810 (vibra128) in that it does not have a second chip in U2 position. Also there is only one jumper JP1 (2X3).
|-
| CT5801 HP
|
|
|
| {{unk}}
| {{unk}}
| untested - es1373 (u3)
|-
| CT5803 Gateway
| 0x1274
| 0x1371
| 0x08
| {{yes}}
| {{maybe}}
| works 4565-0005b jrc (u1) 4297a-jq ztae0c0002 (u2) es1373 (u3)
|-
| CT4740
| 0x1274
| 0x1371
| 0x08
| {{yes}}
| {{yes}}
|
|-
| CT5805 Compaq OEM Premier Sound Presario 7
|
|
|
| {{unk}}
| {{unk}}
| untested - es1373 (u3)
|-
| CT5806 (Sound Blaster AudioPCI 128D)
|
|
|
| {{unk}}
| {{unk}}
| untested - 4297A-JO EP (u?) ZTAPWC9933 (u2) es1373 (u3)
|-
| CT5807 Dell OEM Dimension 8100
|
|
|
| {{unk}}
| {{unk}}
| untested - es1373 (u?)
|-
| CT5808
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4730 Sound Blaster AudioPCI 64V Ectiva EV1938
| 0x1102
| 0x8938
|
| {{unk}}
| {{unk}}
| untested
|-
| CT5880 on various motherboards
| 0x1274
| 0x5880
|
| {{unk}}
| {{unk}}
| untested [http://www.xbitlabs.com/articles/mainboards/display/ga-6rx.html Gigabyte GA-6RX] (VIA ApolloPro 266 2001], Gigabyte GA-6VM7-4E mobo, [http://active-hardware.com/english/reviews/mainboard/ga-7vtx.htm Gigabyte GA-7VTX] (KT266 2001), Gigabyte [http://www.amdboard.com/gigabytega7vtxh.html GA-7VTXH] (KT266A 2001), [http://www.amdboard.com/gigabytega7vrxp.html Gigabyte 7VRXP] mobo (KT333 2002), MSI MS-6309, MS-6318, MS-6337 (815E Pro), MS-6339 (850Pro) and MS-6340, PCChips Motherboard M571 TXPRO, Soltek SL-65ME+,
|-
| VMware Virtual Workstation(TM)
| 0x1274
| 0x1371
| 0x02
| {{Yes|but not Hi-Fi modes}}
| {{maybe}}
| works
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
<pre>
Revision 0x04 = ES1371 REV_ES1373_A
Revision 0x06 = ES1371 REV_ES1373_B
Revision 0x07 = ES1371 REV_CT5880_A
Revision 0x02 = CT5880 REV_CT5880_C
Revision 0x03 = CT5880 REV_CT5880_D
Revision 0x04 = CT5880 REV_CT5880_E
Revision 0x09 = ES1371 REV_ES1371_B
Revision 0x00 = EV1938 REV_EV1938_A
Revision 0x08 = ES1371 REV_ES1373_8
</pre>
====1999-2001 via-ac97.audio====
*2021 5.10
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| <!--Description-->694X with 686A KT133 PM133 or 693A with VT8231
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3058
| <!--Revision-->
| <!--Playback-->{{Yes| }} redirects earphones correctly
| <!--Recording-->{{Yes| }}
| <!--Comments-->audio controller works but depends on the underlying invisible codec used see AC97 section
|-
| <!--Description-->686B KT133A with VT8231
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3058
| <!--Revision-->0x50
| <!--Playback-->{{Yes|}} reroutes ear pieces right
| <!--Recording-->{{Yes|}}
| <!--Comments-->audio controller works but depends on the underlying codec used see AC97 section below
|-
| <!--Description-->686C
| <!--Vendor ID-->0x1106
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->untested
|-
| <!--Description-->KM266 or KT266 with VT8233, KT266A with VT8233A, VT8233C
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3059
| <!--Revision-->0x10
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->KM333 KT333 with VT8235
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3059
| <!--Revision-->0x30
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
| <!--Description-->KM400 KT400 with VT8237, KT600 with VT8237R,
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3059
| <!--Revision-->0x40 0x50 0x60
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
|}
====1998-2003 emu10kx.audio - Creative Labs SoundBlaster Live! and Audigy====
*2021 6.5
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| PCI512 CT4790 (emu10k1)
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested (1st Gen)
|-
| Live CT4620
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Live CT4760
| 0x1102
| 0x0002
| 0x07
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| playback works
|-
| Live Value CT4670
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| works plays stereo (2nd Gen)
|-
| Live Value DELL CT4780
| 0x1102
| 0x0002
| 0x06
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| plays/records stereo - untested 4.1mode
|-
| Live Value Compaq CT4830
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{Maybe}}
| <!--Recording--> {{unk}}
| not working
|-
| Live Value CT4831
| 0x1102
| 0x0002
| 0x00
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Live Value CT4832
| 0x1102
| 0x0002
| 0x07
| <!--Playback--> {{yes}}
| <!--Recording--> {{partial|Line-In only}}
| works
|-
| Live Value CT4832
| 0x1102
| 0x0002
| 0x08
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| works
|-
| Live Value HP CT4870
| 0x1102
| 0x0002
|
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| Works
|-
| Live Value Gateway CT4871
| 0x1102
| 0x0002
|
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Live! Platinum 5.1 SB0060
| 0x1102
| 0x0002
| 0x00
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
| plays audio/records, untested 5.1 (3rd Gen)
|-
| Live 5.1 SB0100 -SFF
| 0x1102
| 0x0002
| 0x00
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| works
|-
| Live 5.1 Player SB0220
| 0x1102
| 0x0002
| 0x0a
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
| plays audio/records stereo, untested 5.1
|-
| Live 5.1 Digital SB0228
| 0x1102
| 0x0002
| 0x0a
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
| working
|-
| Audigy SB0090 (emu10k2)
| 0x1102
| 0x0004
|
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| <!--Description-->Audigy SB0230
| <!--Vendor ID-->0x1102
| <!--Product ID-->0x0004
| <!--Revision-->0x03
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Yes|Mic only}}
| <!--Comments-->5th Dec 2012 - untested optical tos link. contains also IEEE1394/Firewire (untested)
|-
| Audigy 2 Platinum 6.1 SB0240 SB0250 EMU10K2.5
| 0x1102
| 0x0004
| 0x04
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| works
|-
| Audigy 2 PRO SB0280 EMU10K2.5
| 0x1102
| 0x0004
|
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Audigy 2 ZS SB0350
| 0x1102
| 0x0004
| 0x04
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
|
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| Live 5.1 DELL SB0200 SB0203 emu10kx
| 0x1102
| 0x0006
| 0x0
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
|
|-
| Live 24bit SB0410
| 0x1102
| 0x0007
| 0x
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Live 24bit DELL SB0413
| 0x1102
| 0x0007
| 0x
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy LS SB0310
| 0x1102
| 0x0007
| 0x0
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy SE 7.1 SB0570
| 0x1102
| 0x0007
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 2 ZS SB0320 SB0360 (PRO)
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 2 VALUE SB0400
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 4 VALUE SB0610
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 4 PRO SB0380
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| EMU E-MU 0404 PCI (not USB) EM8852
| 0x1102
| 0x000
| 0x0
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver but linux support needs firmware
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
the green jack is for the main speaker pair AND headphones, so manual switching will be required
If your card is wired for the "AC97" standard, then it's up to your headphone jack to switch the green speaker output in and out
the headphone jack has Normally-closed contacts that will open on insertion, which breaks the signal path back to the sound card (FP_RETURN)
====2000-2010 cmi8738.audio - C-Media====
*2021 5.20
;Read [http://amigaworld.net/modules/news/article.php?storyid=2512 more] and imported on [http://repo.or.cz/w/AROS.git/commit/aff741d60160c6a9d7d39c9e004a25ea3aa13847 20th July 2011] and [http://alsa.opensrc.org/Cmipci alsa docs].
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| Audiotrak MAYA EX5
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| cmi8738-sx 4ch
| 0x13f6
| 0x0111
| 0x10
| <!--Playback-->
| <!--Recording-->
| untested
|-
| e3dx hsp56 CMedia 8738-sx 4ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| EDio SC3000D 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Genius SoundMaker Value PCI C3DX
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Guillemot Maxi Sound Muse
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Hercules Gamesurround Muse LT
| 0x13f6
| 0x0111
| 0x10
| <!--Playback--> {{yes}}
| <!--Recording--> {{no}}
|
|-
| Hercules Gamesurround Muse XL LT 5.1
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Inno audio extreme 5.1 cmi8738/lx pci 6ch
| 0x13f6
| 0x0111
| 0x
| <!--Playback-->
| <!--Recording-->
| untested
|-
| M-Audio (Midiman) DiO 2448
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Sabrent SBT-SP6C 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| StarTech PCISOUND4CH 8738sx 4ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Sweex SC012 CMI8738-lx 4ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Terratec 5.1 PCI
| 0x13f6
| 0x0111
| 0x10
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Terratec Aureon Fun 5.1
|
|
|
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| Has SPDIF
|-
| Trust Sound Expert Digital Surround 5.1 (cm8738-mx 6ch)
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Turtle Beach Riviera CMI8738-MX 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| XSonic CMI 8738 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->CMI8738 6ch PCI-E PCI Express version
| <!--Vendor ID-->0x13f6
| <!--Product ID-->0x0111
| <!--Revision-->0x10
| <!--Playback-->{{Yes|}}
| <!--Recording-->{{Maybe|}}
| <!--Comments-->Chinese based card with playback tested so far
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
====2001-2005 ac97.audio====
*6.4 27-12-2008
The AC97 chips were designed to be pinout interchangeable so that the sound support could change easily and quickly without motherboard redesigns
the green jack is for the main speaker pair AND headphones, so manual switching will be required
If your card is wired for the "AC97" standard, then it's up to your headphone jack to switch the green speaker output in and out, the headphone jack has Normally-closed contacts that will open on insertion, which breaks the signal path back to the sound card (FP_RETURN)
The ProductID and VendorID are for the audio controller only - the important additional codec is '''NOT''' so easily identified.
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| <!--Description-->Avance Logic (now Realtek) ALC100 and ALC101 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->ALC200 and ALC201 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->ALC201A and ALC202 and ALC202A codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->ALC650
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| <!--Comments-->most Nforce2 boards plays audio only - Abit NF7, Asus A7N8X, MSI K7N2, Epox 8RDA+, DFI
|-
| <!--Description-->ALC850 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{No}}
| <!--Comments-->no support for via P4P800 chipset on ASUS A8V-E SE Deluxe mobo - ICaros 1.3
|-
| <!--Description-->Realtek ALC653 codec and ALC655 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested Acorp 7NFU400
|-
| <!--Description-->Realtek ALC658 codec ALC658D
| <!--Vendor ID-->0x8080
| <!--Product ID-->0x24c5
| <!--Revision-->0x0
| <!--Playback-->{{Yes|Prefs Music and Units 0-3 set volume control - playback}}
| <!--Recording-->{{No}}
| <!--Comments-->MSI Motherboard on NB 22-09-2012
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->AD1881 SoundMAX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->Analog Devices first AC97
|-
| <!--Description-->AD1881A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Yes}}
| <!--Revision-->
| <!--Comments-->works with VIA Controller - untested Intel etc
|-
| <!--Description-->AD1881B
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1885 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{No}}
| <!--Comments-->Playback only with issues on D845HV but not working on MS-6367 because Units 0-3 have masked volume control
|-
| <!--Description-->AD1886
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1887
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->ADI AD1888 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{no}}
| <!--Recording-->{{No}}
| <!--Comments--> Icaros 1.51
|-
| <!--Description-->AD1980 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->AD1981A codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested IBM X30
|-
| <!--Description-->Analog Devices SoundMax(TM) AD1981B codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| <!--Comments-->plays back only on IBM T41 Thinkpad
|-
| <!--Description-->AD1985 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{No}}
| <!--Comments-->not working ahi prefs freezes on D865GLC mobo ([http://www.xbitlabs.com/articles/multimedia/display/int-sound2_3.html ]
|-
| <!--Description-->AD1986 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{No}}
| <!--Comments-->untested [http://uk.ts.fujitsu.com/rl/servicesupport/techsupport/Boards/Motherboards/Fujitsu/D1931/D1931.htm D1931] but works (Acer Aspire 3610 laptop)
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->Crystal Semiconductors CS4205, CS4202 codecs
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Cirrus Logic CrystalWare 4236
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->Cirrus Logic CrystalClear SoundFusion CS4297 CS4299 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested IBM T23
|-
| <!--Description-->conexant Cx20468-31 codec (id 30)
| <!--Vendor ID-->0x103c
| <!--Product ID-->0x3085
| <!--Revision-->
| <!--Playback-->{{No|AC97 appears in AHI Prefs}}
| <!--Recording-->{{No}}
| <!--Comments-->Tested AspireOS 1.8 on Gateway W322
|-
| <!--Description-->ESS Technology ES1921 AC'97 2.1
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->CMI 6501 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested on ASROCK SKT-AM2 AM2NF3-VSTA
|-
| <!--Description-->codec CMI9738
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->codec CMI9739
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->C-Media CMI 9739A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments--> untested on EPoX 8RDA3+
|-
| <!--Description-->CMedia CMI 9761A codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested ASRocK K7NF2-RAID
|-
| <!--Description-->C-Media CMI9880
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->National Semi conductor (now TI) LM4540, LM4543, LM4545, LM4546, LM4548, LM4549, LM4550 LM4560
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->STAC9708T codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->SigmaTel (now IDT) C-Major STAC 9460 (D/A only), 9461, 9462, 9463, 9200, 9202, 9250, 9251, 9220, 9221, 9223, 9750
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AKM (Asahi Kasei Microsystems) AK 4540, 4543, 4544A, 4545
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->codec VT1616 (VIA Six-TRAC Vinyl Audio)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->VIA VT1612, VT82C686
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->ESStech ESS ES1968 maestro-2
| <!--Vendor ID-->0x125d
| <!--Product ID-->0x1968
| <!--Revision-->0x
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->ESStech ESS ES1978 maestro2e
| <!--Vendor ID-->0x125d
| <!--Product ID-->0x1978
| <!--Revision-->0x
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->ESStech ESS ES1988 maestro3 allegro-1 codec
| <!--Vendor ID-->0x125d
| <!--Product ID-->0x1988
| <!--Revision-->0x12
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->Yamaha AC97 ymf-743 YMF752 YMF753 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->{{No}}
| <!--Comments-->untested ymf-753
|-
| <!--Description-->YMF724 YMF744 YMF-754 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| SIS 7018 / Trident 4dwave DX/NX / ALi 5451
| 0x1039 (0x1023 Trident)
| 0x7018 (0x2000 Trident DX) (0x2001 Trident NX)
| 0x02
| <!--Playback-->{{No}}
| <!--Recording-->{{No}}
| no support - introduced early 2000s
|-
| SIS 7012
| 0x1039
| 0x7012
|
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| working through 1 speaker only took over from SIS7018 (2002 onwards)
|-
| <!--Description-->Wolfson (now Cirrus Logic) WM9701, WM9701A (AC'97 1.03 spec), WM9703, WM9704 (AC'97 2.1), WM9705, WM9706, WM9707, WM9708
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->WM9709, WM9710, WM9711, WM9712, WM971
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->first Microsoft(TM) Xbox DAC sound chip (AC Link compliant D/A converter)
|-
| <!--Description-->Wolfson WM9717
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| Parallels
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested
|-
| VirtualBox
|
|
|
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| working
|-
| VirtualPC
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested
|-
| <!--Description-->Intel 82801AA Proxmox
| <!--Vendor ID-->0x8086
| <!--Product ID-->0x
| <!--Revision-->
| <!--Playback-->{{unk| }}
| <!--Recording-->{{unk| }}
| <!--Comments-->
|-
|}
====2005-20xx HDAUDIO.audio====
*6.36 2025 [https://github.com/aros-development-team/AROS/commit/43b33a9280b10963ca659de2cc3d1cf289b43a87 reset handler]
*6.35 202 []
*6.34 2019 AROS One 1.5 upwards
*6.29 2018
*6.27 2017 update
*6.25 2014 used for most Icaros 2.x
*6.20 July 2012
*6.17 Nov 2011
*6.15 Jun 2011
*[http://www.clusteruk.com/SitePortalPage.aspx?siteid=1&did=109 6.13] Sep 2010
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="5%" |Vendor ID
! width="5%" |Product ID
! width="5%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| <!--Description-->ALC260
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| <!--Description-->ALC262
* ALC262-VD2-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->LQFP-48
|-
| ALC268 codec
| 0x
| 0x
| 0x
| <!--Playback-->{{Yes|Version 6.17 Acer AOA110 and AOA150 netbooks), works (Dell Mini Inspiron 9 and 10v, }}
| <!--Recording-->{{Yes|Version 6.17 remove QUERY and select 'Mic 1' as input. Tested with 6.15 as well using QuickRecord and AE 4.0.23 under Icaros 1.4.}}
| <!--Comments-->AHI UNITS and Music are set to: hdaudio:HiFi 16 bit stereo++ / Frequency 48000 Hz, Volume +0.0 dB. The hdaudio.config in SYS:Prefs/Env-Archive is WITHOUT the QUERY-line. After changing and saving the config-file turn off and start again the computer. Switch from internal loudspeaker to headphone you must turn off the music before plug in the headphone-cable, otherwise there is no output on the socket. Back from line-out to internal speakers it is the same.
|-
| [http://blog.foool.net/wp-content/uploads/linuxdocs/sound.pdf Linux docs ALC269]
* ALC269Q-GR
* ALC269QSRS-GR
* ALC269W-GR
| 0x
| 0x
| 0x
| <!--Playback-->{{Maybe| }}
| <!--Recording-->{{Unk| }}
| <!--Comments-->TQFP 48 pin Power IC Chip From [https://patchwork.kernel.org/project/alsa-devel/patch/1408118123-15849-1-git-send-email-tiwai@suse.de/ ALC269 & co have many vendor-specific setups with COEF verbs, result in the codec stalling]
|-
| [http://www.alsa-project.org/db/?f=0321f8479fd670cd510f9912b1120fe7edcf2e07 ALC269VB]
* ALC269Q-VB5-GR
* ALC269Q-VB6-CG
* ALC269Q-VB6-GR
| 0x10ec
| 0x0269
| 0x100004, 0x100100, 0x100202
| <!--Playback-->{{Maybe|some versions work}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* v1 works Asus eee PC netbook 901/1000HA 1005HA/1008HA, 1001P,
* v2 maybe working Lenovo S9 S10 S10-2 S10-3 under HDAudio version 6.13
* v3 maybe dell wyse 7010
|-
| [http://alsa-project.org/db/?f=9c1746c5957b0ce72ff9cfffa312e97d14baf785 ALC269VC aka ALC3202]
* ALC269Q-VC2-GR
* ALC269Q-VC3-GR
| 0x10ec
| 0x0269
| 0x100203,
| <!--Playback-->{{Maybe|some versions work}}
| <!--Recording-->{{Unk}}
| <!--Comments-->SMT SMD QFN-48 -
* v1 unknown
* v2 unknown
* v3 x230, dell wyse,
|-
| ALC272
* ALC272-VA4-GR
| 0x10ec
| 0x0272
| 0x0
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Unk}}
|
* works Acer AOD150 and Acer AOD250 works [http://amigaworld.net/modules/newbb/viewtopic.php?topic_id=33755&forum=28#616910 Samsung NP-NC10], works Samsung NF210-A02] netbooks,
|-
| <!--Description-->ALC273
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| <!--Description-->ALC270
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC282
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x
| <!--Revision-->
| <!--Playback-->{{No|Version 6.17}}
| <!--Recording-->{{No|Version 6.17}}
| <!--Comments-->needs retest
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC660 ALC660-VD
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes| }}
| <!--Recording-->
| <!--Comments-->
* works asus F9s, F9e
* untested asus w7j, M51SN, A6Tc, A8Sr,
|-
| <!--Description-->ALC661-GR (2011)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| ALC662
| 0x1043
| 0x82a1
| 0x0
| <!--Playback-->{{Yes|Version 6.17 if QUERY added to top of hdaudio.config}}
| <!--Recording-->{{No|Version 6.17 not working for eee pc 900}}
|
* works Asus eee PC netbook 700/701/900, Atom 270 and 330 mobos, odd clicks (D410 NM10 PineTrail),
|-
| <!--Description-->[http://outpost.fr/rmaa/ALC663.htm ALC663]
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0861
| <!--Revision-->
| <!--Playback-->{{No|Version 6.13}}
| <!--Recording-->{{Unk}}
| <!--Comments-->not bad output like headphone amp part of the codec actually works well but messed up by undersized coupling capacitors to actually support such a low impedance
* not working Asus n50vn x71vn,
|-
| <!--Description-->ALC665
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC666
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC667
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC668
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC670
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->ALC880
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->some 915 and 925 chipset mobos
|-
| <!--Description-->ALC882M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| Realtek ALC883 ALC883-GR ALC883D-GR ALC883DTS-GR ALC883DD-GR codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe|some early versions work }}
| <!--Recording-->{{Unk| }}
| 2005 to 2007 HD Audio codec untested (Asus ),
|-
| Codec ALC885
| 0x10ec
| 0x0885
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
|-
| ALC888
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
|
|-
| ALC888s
* ALC888S-VD2-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}} MSI Wind U90/U100,
| <!--Recording-->{{Unk}}
| LQFP-48
|-
| ALC888b
| 0x8086
| 0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| untested (D510 NM10 Dual Core PineTrail mobo),
|-
| ALC888-VD
| 0x8086
| 0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| untested
|-
| ALC889A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes|works if QUERY added to the top of hdaudio.config in Prefs drawer/directory}}
| <!--Recording-->{{Unk}}
|
|-
| ALC889 Gr
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}} with crackles
| <!--Recording-->{{Unk}}
|
|-
| ALC889
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
| Tested with MSI H55 board
|-
| ALC887 ALC887-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
|
* working on ASUS P5KPL/EPU and Gigabyte GA-E350N-Win8 Rev1.0
|-
| ALC887-VD-CG
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0887
| <!--Revision-->0x100302
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}} Subsystem Id: 0x1458a002
|
|-
| ALC887-VD
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0887 0x1458
| <!--Revision-->0xa002
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{Unk}} index = 2
| ALC887 does not have any volume control ability on the mixer NIDs, so put the volume controls on the dac NIDs instead
* working with intermittent corrupting pop popping skipping stuttering sound issues MSI 760GM-P23 (FX),
* not working Gigabyte H61MA-D3V, AT3IONT-I Deluxe,
|-
| ALC887-VD2
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
| 3jacks
|-
| ALC887-VD2-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
|-
| ALC887-
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
|
|-
| ALC892-CG rev
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| 2011 48-pin LQFP Green package -
|-
| ALC892 ALC892-DTS-CG rev
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
| 2009 introduced
* works
* not working
* untested
|-
| ALC892 rev
| <!--Vendor ID-->0x0x10ec
| <!--Product ID-->0x0892
| <!--Revision-->0x100302
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| 2014
|-
| Realtek ALC886-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| LQFP-48
|-
| Codec ALC861 ALC861-VD
| 0x10ec
| <!--Product ID-->0x0663
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
|
* not working Toshiba Tecra A7
|-
| <!--Description-->ALC1200
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| ALC898
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
| not working
|-
| <!--Description-->ALC1500
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC3232 (aka ALC292)
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0292
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC3234 aka ALC255
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0255
| <!--Revision-->003
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC3287 aka ALC257
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes| }}
| <!--Recording-->{{no| }}
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->AD1882
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1883 HD Codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1884
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| Analog Devices SoundMAX AD1981
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| IBM Thinkpad T60,
|-
| AD1984 hp-m4 codec
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
* audio not working on Lenovo X61, Thinkpad T61,
|-
| AD1986
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
|
|-
| AD1988
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
|-
| <!--Description-->AD1988A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->Cirrus Logic CS4207
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->
| <!--Recording-->
|
|-
| <!--Description-->Cirrus Logic CS4208
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->
| <!--Recording-->
|
|-
| <!--Description-->Conexant CX20549 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe|very very very low volume}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested Fujitsu Amilo SI 1510 1520 no datasheet for the general public
|-
| <!--Description-->Conexant CX20549-12Z codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested HP 530
|-
| <!--Description-->Conexant CX20561 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* working lenovo x200s
* untested Lenovo Essential G555 Notebook, HP Pavilion dv6700,
|-
| <!--Description-->Conexant CX20582 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX2059x CX20590 CX20594-21Z codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX20585 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* working Lenovo Thinkpad T410,
|-
| <!--Description-->Conexant CX20672 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX20671 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX20751-21Z codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes| }}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| <!--Description-->Conexant CX11852 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX11880 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant after 2015 up to 2018 CX7501 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{no|no driver codec}}
| <!--Recording-->{{no|no driver codec}}
| <!--Comments-->Conexant bought by synaptics 2019
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->C-Media CMI9880 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->Gigabyte GA-8GPNXP
|-
| <!--Description-->Silicon Labs 3054
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| VIA 1708A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| untested,
|-
| VIA VT1708B
| <!--Vendor ID-->
| <!--Product ID-->
| 0x0010
| <!--Playback-->{{No|VIA PicoITX}}
| <!--Recording-->{{Unk}}
|
|-
| VIA 1708S
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
|
|-
| <!--Description-->VT2021 10ch
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->Gigabyte Z77MX-D3H, GA-H61M-S2H S2P,
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Creative CA0110-IBG
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->SigmaTel STAC 9220 9221 9223 8ch (7+1)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| <!--Comments-->ECS 945GCT/M-1333 (version 3.0),
|-
| IDT SigmaTec [http://explorer.cekli.com/articles/pdf/hd-audio STAC9227] /28/29/30 codec
| <!--Vendor ID-->0x8384
| <!--Product ID-->0x7626
| <!--Revision-->0x0002
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Unk}}
|
* works HP Compaq mini 110
* untested HP Pavilion HDX9000 CTO Notebook, Intel DG33TL mobo, Dell E520, Intel DP35DP mobo, Dell E6410 Laptop,
|-
| IDT (formerly SigmaTel) IDC STAC 9271/71D
| <!--Vendor ID-->0x8384
| <!--Product ID-->0x7626
| <!--Revision-->0x0002
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
|
|-
| <!--Description-->IDC STAC 9272 9273 9274
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->Intel D5400XS,
|-
| <!--Description-->IDT 92HD73C
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes}}
| <!--Recording-->
| <!--Comments-->headphones only Asus AT4NM10 mobo
|-
| <!--Description-->IDT 92HD75B
| <!--Vendor ID-->0x111d
| <!--Product ID-->0x7608
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* working [http://koti.kapsi.fi/jvaltane/aros/hdaudio/ HP Compaq Mini 700 Netbook - feedback required]
* untested HP Mini 5103 and 5102, HP Compaq 610, HP ProBook Laptop 4520s 4525s 6450b 6550b 6555b, HP EliteBook 2540p 2740p 8440p, Mobile Workstation 8540w 8740w, Pavilion NoteBook DV8,
|-
| <!--Description-->IDC 92HD81XX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC 92HD83XX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC STAC 92HD89XX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Wolfson (now Cirrus Logic) WM8850
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Wolfson WM8860
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->Intel High Definition Audio Revision 1.0. - 4-Channel DAC, 4-channel ADC. - DAC sampling
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
Using Prefs/AHI ensure you set the music unit and at least Units 0 (where most audio comes from) in top left drop down menu to HDaudio - HIFI in the section below. Set Units 1 or 2 to microphone or other outputs. Plus allow more than one channel for multiple audio streams and set frequency up to 44 kHz or higher on the right hand side of the ahi prefs. If sound beeps when you press the test button then all should be OK.
Output <- Codec <- Audio Controller (HDA) <-> Computer
codecs and exact hardware identifier. As mentioned above, HDA is only part of the work here, it gets the audio out of the main chipset in digital format (on a bus called I2S). This is not enough, there is another step needed which is routing that I2S signal to the output, converting it to actual audio, amplifying it, etc. This is handled by a separate chip called a "codec". Sometimes it is initialized by the BIOS, but this is not always the case.
Most audio drivers are made up of two parts a [http://www.kernel.org/doc/Documentation/sound/alsa/HD-Audio.txt Controller + a Codec]. The ProductID and VendorID are for the audio controller only - the important additional codec is '''NOT''' so easily identified.
Some newer versions of codecs are missing at the moment.
Things to try if sound not working
* try to connect something to the audio jack, maybe it is not playing on internal speakers or vice versa
* make sure you try and select all music units e.g. unit0, unit1....
* even if PCI ID's are in Prefs/Env-Archive/HDaudio.config, this doesn't mean it is working, it is the codec that matters
* it might be internally muted
<pre>
add debug=memory to grub boot line - continue booting with F10
Open a shell
Tools/Debug/Bifteck > RAM:audio.txt
</pre>
or
<pre>
Open a shell
Tools/Debug/Sashimi > RAM:audio.txt
Run ahi prefs
Click test tone button
Stop sashimi with Ctrl-C
</pre>
If the boot sound is enabled, you have to use Bifteck to capture AHI debug output. In the GRUB menu, press E on your selected entry, then add "debug=memory" to the options (alongside ATA=, vesa= etc.). Then F10 or Ctrl-X to boot. Once booted, run Tools/Debug/Bifteck again.
or
* try adding QUERYD to the start of ENVARC:hdaudio.config file (also known as Prefs/Env-Archive/) ie. on the first line
* '''OR''' try removing QUERY and QUERYD from the start of the hdaudio.config file
* Reboot
* open a shell
* type: sys:tools/debug/sashimi > ram:debug.txt
* open ahi prefs
* select one of the audio modes - HIFI or otherwise
* press the 'test sound' button
* press ctrl-c in the shell
* post the results to Aros-World
The HD Audio standard was designed to be hardware pinout interchangeable so that the sound support could change easily and quickly. HDA is a standard around particular chips. Each kind of chip has a certain number of DACs and pins, and even the same chip could be hooked up in different ways on different motherboards. The chips are programmable and the operating system can adjust how things are routed. Some pins aren’t even hooked up, so it makes no sense to route sound to them. Also some pins have sensors that can tell when something is plugged in, so that for example the speakers in a laptop can be muted when headphones are plugged in. Pins are also grouped, so for example all the outputs for a 5.1 sound system are grouped. Generally the HDA driver in the operating system is supposed to read the pin set up and figure out a reasonable way to set things up, and disconnected pins should be ignored, etc.
HDAudio standard has headphones on a separate DAC, and it's up to the driver.. it can even send different audio to the headphones without interrupting the main (green) outputs
====Envy24 series ====
A little history. VIA bought the ICE created Envy chipsets [http://www.via.com.tw/en/products/audio/controllers/comparison_controller.jsp VT1712] first. A few years later, they created several cheaper variants VT1724 (mixer missing), VT1721 (low end cut down), VT1720 (embedded on motherboard) and lastly the VT1723 (no support apart from Windows Envy24DT like SYBA SD-PEX63034).
There are PCI Express versions appearing.
The Envy24 is the base product that was originally designed by ICEnsemble, and it supports multi-channel hardware mixing, which is great for professional use. The HT version removes the hardware mixer (unimportant for non-professional uses). The [http://www.avsforum.com/t/364771/envy24ht-s-the-definitive-source HT-S] version is almost exactly the same as the HT, it just uses cheaper DACs. The PT version is exactly the same as the HT-S version, it is just the edition used for on-board audio on motherboards.
N.B. [http://www.soundonsound.com/sos/dec04/articles/pcnotes.htm PCI slot identification] and [http://hsi.web.cern.ch/HSI/s-link/devices/s32pci64/slottypes.html 3.3v PCI].
=====[http://www.opensound.com/readme/README.Envy24.html envy24.audio] - [http://www.anime.net/~goemon/alsa/ VT1712] =====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Playback
! Recording
! Comments
|-
| M-Audio Delta 66 - Rev B 1999
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested AK4524VF CS8404A-CS - needs Delta Series break out box with D-sub lead -
|-
| [http://ixbtlabs.com/articles/maudioaudiophile/index.html Audiophile 2496] Rev A 2000
| 0x14
| 0x
|
| <!--Playback-->{{unk| }}
| <!--Recording-->{{unk| }}
| works audio out on - I2S stereo codec AKM AK4528VF with the 24bit/96kHz DAC and ADC; CS8427 digital transceiver
|-
| [http://ixbtlabs.com/articles/maudioaudiophile/index.html Audiophile 2496] Rev B 2003
| 0x14
| 0x
|
| <!--Playback-->{{Yes }}
| <!--Recording-->
| works well - I2S stereo codec AKM AK4528VF with the 24bit/96kHz DAC and ADC; CS8427 digital transceiver
|-
| M-Audio Delta 410 - 2001 2001 REV-B
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested for D-A AK4529VQ converters with CS8427-CS 5532 1158B or Event Echo Gina 20-Bit Multitrack Interface Breakout Box -
|-
| M-Audio Delta 1010
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested AK5383 and AK4393 - 25 pin dsub -
|-
| M-Audio Delta 1010LT 1010E
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested for D-A AK4529 converters with 2 XLR Microphone inputs with pre amps
* be aware of redesign in 2007 - possible issues
|-
| M Audio Delta 44 - Rev A 2002 - Rev B 2003 - Rev D 2003
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested ICE1712G AK4524VF needs breakout box with 15 pin D-sub lead -
|-
| M-Audio Delta 66 Rev E 2006 - Omni Studio
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested needs break out box with 15 pin D-sub lead -
|-
| <!--Description-->M-Audio Delta DiO 2496
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| Terratec EWX24/96
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| [http://ixbtlabs.com/articles2/terratecdmx6fire/index.html TerraTec 6fire DMX 24/96]
| <!--Vendor ID-->0x1412
| <!--Product ID-->0x1712
| <!--Revision-->0x02
| <!--Playback-->{{No|tried line 1-2 3-4 5-6 7-8 }}
| <!--Recording-->{{No| }}
| untested - AKM and codec
|-
| <!--Description-->Terratec EWSA88MT
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| [http://lists.freebsd.org/pipermail/freebsd-multimedia/2007-March/006087.html Audiotrak Prodigy HD2] 24/96
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Audiotrak (ESI) Maya 1010 1010L
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| EMU 1212M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| EMU 1616M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| <!--Description-->Terratec EWS 88MT EWS 88D
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Hoontech Soundtrack DSP 24
Soundtrack DSP 24 Value
Soundtrack DSP 24 Media 7.1
Event Electronics EZ8
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Digigram VX442
Lionstracs
Mediastation
Terrasoniq TS 88
Roland/Edirol DA-2496
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
=====envy24ht.audio - VIA VT1724=====
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| ESI Juli@
| 0x3031
| 0x4553
| 0x0
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Yes}}
| reported working years ago [http://envy24.svobodno.com/ Envy24HT-S] - AKM 4358 DAC - AKM 4114/4112 DIT
|-
| ESI Juli@ Ego Igo rev K
| 0x3031
| 0x
| 0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| AK4358? DAC - AK4114 AK4112 DIT
|-
| [http://ixbtlabs.com/articles2/multimedia/m-audio-revolution51.html M-Audio Revolution 5.1]
| 0x1412
| 0x3631
| 0x0
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| reported working years ago but discontinued - (Envy24GT) - 3ch AKM 4358 DAC - ADC AKM 5365 -
|-
| [http://ixbtlabs.com/articles2/m-audio-revolution71/index.html M-Audio Revolution 7.1] 24/192
| 0x1412
| 0x3630 0x1724
| 0x0
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| not working - illegal semaphore - 6ch ADC AKM AK4355 24-bit 192 kHz - 2ch DAC AKM AK4381 24-bit 192 kHz - ADC AKM AK5380
|-
| Terratec Aureon Sky 5.1
| 0x153b
| 0x1147
| 0x
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - discontinued
|-
| [http://ixbtlabs.com/articles2/terratec-aureon71/index.html Terratec Aureon Space 7.1]
| 0x153b
| 0x1145
| 0x0
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - Wolfson WM8770 DAC, AC'97 codec SigmaTel STAC9744
|-
| Terratec Aureon Universe 7.1
| 0x153b
| 0x1153 (rev x) 0x1724 (rev3)
| 0x0
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| not working - semaphore error on rev 3 - DAC ADC
|-
| Terratec Phase 22
| 0x153b
| 0x1150
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - Envy24HT-S - AK4524
|-
| Terratec Phase 28
| 0x153b
| 0x1149
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - Envy24HT-S - AK4524
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Playback
| Recording
| Revision
| Comments
|-
| Audiotrak (ESI) Prodigy 7.1
| 0x4933
| 0x4553
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - Wolfson WM8770 and AC'97 SigmaTel STAC9744 codec
|-
| Audiotrak (ESI) Prodigy 7.1 LT
| 0x3132
| 0x4154
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver -
|-
| [http://ixbtlabs.com/articles2/sound/audiotrak-prodigy192.html Audiotrak (ESI) Prodigy 192] 24/96
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - STAC9460S codec
|-
| <!--Description-->Echo Layla 24/96
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
| [http://www.bit-tech.net/custompc/labs/80752/hercules-gamesurround-fortissimo-4.html Hercules Gamesurround Fortissimo 4]
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - Wolfson WM8776 Codec and WM8766 DAC
|-
| [http://ixbtlabs.com/articles2/multimedia/m-audio-audiophile192.html M-Audio Audiophile Delta AP 192k]
| 0x1412
| 0x3632
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - Stereo ADC AKM AK5385A 24-bit 192 kHZ - 8-channel DAC AKM AK4358 24-bit 192 kHz - AKM 4114/4112 DIT
|-
| ONKYO SE-150PCI
| 0x160b
| 0x0001
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver
|-
| <!--Description-->ESI Waveterminal 192x
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
| <!--Description-->Quartet
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments--> - AKM 4114/4112 DIT
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
|}
====hdmiaudio.audio - hdmi no support====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->ATI R6xx HDMI Audio codec support output
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x9840
| <!--Revision-->
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->Not detected
|-
| <!--Description-->NVidia HDMI
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Intel Series 6 CougarPoint HDMI codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Intel HDMI
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|}
[[#top|...to the top]]
===Graphic GFX Chipsets===
[https://gallium.readthedocs.io/en/latest/systems.html PCIe based] graphic chipset is defacto on 64bit AROS and recommended on 32bit.
AGP works on 32bit but faster transfers through the AGP slot are only available on a few supported motherboard chipsets
* Faster AGP Working = SIS 650 board, Intel 865pe AGP slot on MSI 6788-050,
* Not Supported = NForce2 chipsets, most Intel 815/820 chipsets, VIA chipsets, ALi chipsets,
The fallback for all graphics modes is vesa if any native support does not work. There is a choice of very low resolution vga as the last resort
2D tests performed with [http://download.aros3d.org/software/gfxbench.zip gfxbench] in the shell type gfxbench > out.txt (40 seconds blank screen is part of the test), via FreeDoom via limit-removing engine like odamex, chocolate or vanilla doom -timedemo demo1 or doom2 -timedemo demo1, doom.exe -iwad doom2 -file mymap.wad, Duke DNRATE 640x480 windowed
3D tests performed with Demos/Mesa/ , Cube 1080p, Cube 2 windowed not fullscreen 1920 x 1025, Quake3 ~ cl_drawFPS 1, Xonotic , [http://shinh.skr.jp/sdlbench/showtestgl.cgi test gl],
HDMI, DVI and DisplayPort monitors have a native resolution of 480p, 720p, 1080i, 1080p and up
<pre>
HDMI (licensing fee)
1.2 720p res.
1.3 1080 resolution
1.4 4K @ 30Hz
2.0 4K @ 60Hz
2.1 48Gbs for 4K @ 120Hz, 8K @ , VRR, etc
2.2 ultra96
</pre>
<pre>
DisplayPort (VESA introduced)
1.4 4K @ 60Hz
2.1 96Gbs for 4K @ 240Hz, 8K @ 120Hz. MST daisy chain multiple monitors,
</pre>
<pre>
GPMI chinese standard
2.0
</pre>
Might be supported on AROS
*OpenGL4 GPU must have 64-bit floating point FP64 math support, which is a hard requirement for GL 4.0. The max last revision opengl 4.6 (2017) on [https://wiki.gentoo.org/wiki/AMDGPU AMDGPU] RX 5000's / 6000s ([https://forum.batocera.org/d/7491-enable-opengl-46-and-vulkan-for-an-old-radeon-video-card RDNA] and Nvidia RTX might come to AROS) but Intel UHD, Iris Plus or Xe or Arc (will not unless a developer wants the challenge)
*OpenGL3 last revision 3.3 (2011)
Already supported on AROS
*OpenGL2 nvidia-nouveau,
*OpenGL1 intel gma950,
====vga.hidd====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Comments
|-
|
| 0x
| 0x
| 0x0
| Generic VGA Driver, limited to 640x480 in 16 colours - no 3D support
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Comments-->
|-
|}
====vesa.hidd====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Comments
|-
|
| 0x
| 0x
| 0x0
| 2D support for VBE1, VBE2 and VBE3 (most cards) - various resolutions and 24bit colour - no 3D support
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Comments-->
|-
|}
[[#top|...to the top]]
====[[w:en:Intel GMA|Intel GMA]]====
DVI output is not supported at the moment.
If having problems:
* Ensure the latest version is being used.
* Set GMA_MEM to 128 or 256 to test
* Try the FORCEGMA ToolType for 2D, and try the FORCEGALLIUM ToolType for 3D acceleration after 2D is verified to work. ToolTypes should be applied to the Devs/Monitors/IntelGMA monitor icon.
If still having problems:
* At GRUB boot screen edit boot line and add option: debug=memory
* Boot.
* Use shell command: tools/debug/bifteck > RAM:debug.txt
* And post [GMA MONITOR DETECTION] and other related debug lines
{| class="wikitable sortable" width="90%"
! width="5%" |Description
! width="5%" |Vendor ID
! width="5%" |Product ID
! width="3%" |Rev
! width="5%" |2D
! width="5%" |3D
! width="5%" |Analog Output
! width="5%" |Digital Output
! width="5%" |Laptop LCD
! width="30%" |Comments
|-
| 910GL 82910GL GMCH + ICH6
| 0x8086
| 0x2582 0x2592
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| 910GML 82910 GML GMCH + ICH6 Mobile
| 0x8086
| 0x2582 0x2592
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| may need to add forceGMA to grub boot line to work
|-
| 915G 82915G GMCH + ICH6-M
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
|
|-
| 915GL 82915GL GMCH
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
|
|-
| 915GV 82915GV GMCH
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Yes|}}
| <!--3D-->{{No|}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{N/A}}
| HP DC5100 small form factor
|-
| 915GM GMA900
| 0x8086
| 0x
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| tunnel gearbox }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes}}
| asus eee pc 900
|-
| 915GMS
| 0x8086
| 0x
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| tunnel }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes| }}
|
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| [http://www.notebookcheck.net/Intel-Graphics-Media-Accelerator-950.2177.0.html 945GU] - 133 MHz (Lake port for Intel A100 and A110)
| 0x8086
| 0x2772
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| Fujitsu LifeBook U1010,
|-
| 945GMS - 166 MHz / 250 MHz (1.05V)
| 0x8086
| 0x27a2
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes}}
| Dell D430
|-
| 945GSE - 166 MHz (for Atom)
| 0x8086
| 0x27ae
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Yes|[http://www.x.org/wiki/GalliumStatus]}}
| {{Yes}}
| {{No|dvi port}}
| {{Yes| }}
| for atom motherboards and most 2008/2009 netbooks
* 3D Works - AOA110 AOA150, Dell Mini 9, Samsung NC10, Toshiba NB100,
|-
| 945G 82945G GMCH + ICH7
| 0x8086
| 0x27a6
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| untested 2D and 3D
|-
| 945GC 82945GC MCH
| 0x8086
| 0x27a6
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| untested 2D and 3D
|-
| 945PM
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| Dell D420, Compaq nc6400,
|-
| 945GMS - 250 MHz Calistoga
| 0x8086
| 0x
| 0x0
| <!--2D--> {{Yes}}
| <!--3D--> {{Yes|most models}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes}}
|
* 3D Works Dell Latitude 2100, HP Compaq nc6320, Lenovo 3000, Lenovo T60, Samsung Q35, Dell D620, Dell D820,
* 3D untested Toshiba Satellite L100-120, Toshiba Portege M400,
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
|
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GMA 3100 G31
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works 2D but no 3D
|-
| GMA 3100 G33
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works 2D but no 3D
|-
| [http://en.wikipedia.org/wiki/Intel_GMA GMA 3150] netbooks and nettops
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works 2D but no 3D. no vga, dvi or hdmi output for nettops
|-
| <!--Description--> G965
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments-->
|-
| <!--Description--> Q965
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x2992
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{No}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments--> Only tested with VGA output.
|-
| 965GM X3100 (500 MHz)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| some support 2D but no hardware 3D - could not get it to work with VGA or dvi output
* untested Apple MacBook Air, Lenovo Thinkpad X300, Dell Inspiron 1525, Toshiba M9,
|-
| 960GM X3100 (400 MHz)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
|
|-
| 965M X3100 (400 MHz)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| Dell D830,
|-
| 965PM ??
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| Toshiba A9 works with limited 2D acceleration but no hardware 3D
|-
| GL965
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works with limited 2D acceleration but no hardware 3D
|-
| GM965
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works with limited 2D acceleration but no hardware 3D
|-
| GMA X3500 G35
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->X4500M G41 G43 G45 (400Mhz) Mobile 4 Series
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x2a42 0x2a43
| <!--Revision-->0x07
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue--> {{No|}}
| <!--Digital--> {{No|}}
| <!--Laptop LCD--> {{Yes| VESA}}
| <!--Comments-->works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->GMA 4500M HD (533 MHz)
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments-->works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->GMA 4700M HD (640MHZ)
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x2a42
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments-->works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
====[http://nouveau.freedesktop.org/wiki/FeatureMatrix nouveau].hidd (nvidia pci, agp, pci-e desktop)====
PCIe based nvidia graphics (gfx 8xxx) are the base level for 64bit AROS but earlier models still has some support on 32bit AROS
*Desktop, more likely hit rather than miss on early nvidia on Aros 32bit but on Aros 64bit ...
*Laptop, limited support for '''very''' early non-optimus (i.e. just Nvidia gfx only so no Intel and nvidia gfx combinations on 32bit but on 64bit ...)
Please note that the nouveau project is reverse engineering a nvidia graphics driver but takes time because of [https://nouveau.freedesktop.org/ nVidia's closed firmwares], etc
* 2026-06 - DEVS Nouveau.hidd Gallium.hidd Softpipe - LIBS Gallium GLU 20.0 Mesa OpenCL
* 2011-10 - DEVS 6.11 Nouveau.hidd 7.4 Gallium.hidd 9.4 Softpipe - LIBS 2.3 Gallium 1.3 GLU 19.0 Mesa OpenCL 1.x
* 2011-04 - DEVS 5.31 Nouveau.hidd 7.3 Gallium.hidd 9.3 Softpipe - LIBS 2.2 Gallium 1.1 GLU 18.0 Mesa OpenCL n/a
Nouveau support for AROS is limited to OpenGL 2.1 compliance on 32bit even for modern GL4 capable GPUs but on 64bit ...
On Aros 32bit OpenCL supports the NV50 (8000 9000) cards, less support in NVC0 fermi cards (300 upwards)
On Aros 64bit
ADoom3 graphic details ultra, benchmark while playing press the "`" key and type "Timedemo demo1" in the console
{| class="wikitable sortable" width="90%"
! width="5%" | Graphic Card
! width="5%" | Aros 32bit 1024 x 768
! width="5%" | Aros 32bit 800 x 600
! width="5%" | Aros 32bit 640 x 480
! width="5%" | Aros 64bit 1024 x 768
! width="5%" | Aros 64bit 800 x 600
! width="5%" | Aros 64bit 640 x 480
|-
| NV50 Asus EN8400GS SILENT/P/512M PCIe (G98) || || || || || ||
|-
| Gigabyte 8500GT 256M || 42,6 || 57,2 || 68,6 || || ||
|-
| NV96 (G96) Geforce 9500GT 512M || 43 || 53 || 57 || || ||
|-
| NV96 (G96) 9600GT || || || || || ||
|-
| NVA3 (GT215) GT240 || || || || || ||
|-
| NVA5 (GT216) Palit GT220 Sonic 512M || 39,7 || 55,8 || 63,7 || || ||
|-
| NVA8 (GT218) gt210 || || || || || ||
|-
| NVA8 (GT218) ION2 || || || || || ||
|-
| NVC3 (GF106) GT440 GTS 450 || || || || || ||
|-
| NVCF (GF116) NVC0 Fermi GTX 550Ti or GTS 450 v2 || || || || || ||
|-
| NVC8 (GF110) 580GTX || N/A || N/A || N/A || || ||
|-
| NVE0 Kepler GT630 || N/A || N/A || N/A || || ||
|-
| NVE6 (GK106) Kepler GTX660 || N/A || N/A || N/A || || ||
|-
| NVE7 (GK107) GTX 650 || N/A || N/A || N/A || || ||
|-
| NV110 Maxwell GTX 750 || N/A || N/A || N/A || || ||
|-
| NV126 (GM206) GTX950 upwards no reclocking || N/A || N/A || N/A || poor || poor || poor
|-
| NV160 family (Turing) GTX 1650 and RTX 2000 upwards with GSP firmware || N/A || N/A || N/A || unknown || unknown || unknown
|-
| HostGL Ryzen 5 4600H - Nvidia 1650 - Linux mint 21.1 || N/A || N/A || N/A || 150fps || 154fps || 155fps
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| width="5%" | Graphic Card
| width="5%" | Aros 32bit 1024 x 768
| width="5%" | Aros 32bit 800 x 600
| width="5%" | Aros 32bit 640 x 480
| width="5%" | Aros 64bit 1024 x 768
| width="5%" | Aros 64bit 800 x 600
| width="5%" | Aros 64bit 640 x 480
|}
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|-
| <!--Description-->tnt1 (nv04) tnt2 (nv05) m64 value (1998)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|very slow}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| NV04 Riva TNT TNT2 Fahrenheit freezes on via motherboard chipset so rename agp.hidd in SYS:Devs/Drivers or Monitors
|-
| <!--Description-->tnt vanta lt (nv06) 1998 /9
| 0x10de
| 0x002c
| 0x15
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|slow}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| <!--Description-->Geforce 256 (nv10) (2000)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|slow }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| untested Geforce256
|-
| <!--Description-->Geforce 2 Geforce 3 Geforce 4 (nv20) 2000 / 2
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|slow }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| works for some PCI and AGP Geforce2 Geforce3 Geforce4
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| Geforce FX5200 nv34 (2003)
| 0x10DE
| 0x0322 0x
| 0xA1
| <!--2D-->{{Maybe| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->{{Maybe|VGA15 }}
| <!--Digital-->{{Maybe|DVI}}
| <!--Laptop LCD-->{{N/A}}
| NV30 GeForce 5 FX Rankine Hardware OpenGL 1.5 - slower than GF MX 4000 for 2D - max 1024 x768
* not working [https://eab.abime.net/showthread.php?t=92328&page=8 mobos with VIA chipsets 2018]
* working (MSI 0x9174) the previous nouveau 5.x driver
* Others work with 6.x series XFX PV-T34K-NA, ASUS V9520-X/TD
|-
| Geforce FX5500 (nv34) (2003)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{Maybe| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| works
|-
| Geforce 5100 (NV34)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce FX 5200LE (NV34)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5200 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce FX5600 (nv31) (2004)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Maybe| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| works
|-
| GeForce FX 5600 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5600SE
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5600XT
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce FX5700 (nv36) (2004)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes|some}}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{Maybe| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5700VE
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5700 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5700LE
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5800 (NV30)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5800 Ultra (NV30)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900 (NV35)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900XT
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900ZT
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5950 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce 5xxx
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
|
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| Geforce 6200 (nv44) (2005)
| 0x
| 0x00F3 0x014F
| 0x0
| <!--2D-->{{Yes|5.28 Pixel Text}}
| <!--3D-->{{Maybe| use 5.28}}
| <!--Analogue-->{{Yes|VGA15 and s-video - plain 4pin cable lead will work with 7pin}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| NV40 GeForce 6 GeForce 7 Curie AGP Hardware OpenGL 2.1 needing previous 5.x version as regression arose 2011-10
|-
| Geforce 6200 (nv44a) (2006)
| 0x
| 0x0221
| 0x0
| <!--2D-->{{Yes|5.28 Pixel Text }}
| <!--3D-->{{Yes|}}
| <!--Analogue-->{{Yes|VGA15}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| Hardware OpenGL 2.1, PCI version tested OK in 2014-01-02 - Icaros 1.5.2
* not working
*working
|-
| GeForce 6200 with Turbo Cache (NV43)
| 0x
| 0x0161
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce 6200SE with Turbo Cache (NV44)
| 0x
| 0x0162
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce 6200 LE
| 0x10de
| 0x0163
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| PCI-E
|-
| GeForce 6600 LE
| 0x
| 0x00F4 0x0142
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6600
| 0x
| 0x00F2 0x0141
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| 2006 PureVideo HD 1 or VP1 re-used the MPEG-1/MPEG-2 decoding pipeline from FX
|-
| Geforce 6600gt (nv4x) (2005)
| 0x
| 0x00F1 0x0140
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Yes| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| OpenGL tests -
|-
| Geforce 6800 (nv40) (2005)
| 0x
| 0x0041 0x00C1 0x00F0 0x0211
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Yes| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 XE (NV4x)
| 0x
| 0x0043
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 LE
| 0x
| 0x0042 0x00C2 0x0212
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 GT (quadro fx 1400)
| 0x
| 0x0045 0x0046 0x0215
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 6800 GS
| 0x
| 0x0047 0x00C0 0x00F6
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 GTS NV40
| 0x
| 0x0040 0x0F9
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 6800XT
| 0x
| 0x0044 0x0048 0x00C3 0x0218
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6600 VE
| 0x
| 0x0143
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6500 NV44
| 0x
| 0x0160
| 0x0
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6250
| 0x
| 0x0169
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 6xxx
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GeForce 7800 GTX
| 0x
| 0x0090 0x0091
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| tunnel gearbox cube cube2 25}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> 256MB DDR3 - 1 6pin psu connector -
* not working asus en7800gtx/2dhtv/256m/osp/a -
* Works XFX PV-T70F-UDD7 Works in steve jones' scrap pc aros build 2010 2 DVI-I ports
* Untested
|-
| GeForce 7800 GT
| 0x
| 0x0092
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7600gt (G8 ) (nv4 ) (2006)
| 0x
| 0x02E0 0x0391
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL 2.1
* not working
* working
|-
| GeForce 7800 SLI
| 0x
| 0x0095
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GTX
| 0x
| 0x0290
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GT GTO
| 0x
| 0x0291
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GS
| 0x10de
| 0x0292
| 0x0a1
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working
* Works with a few glitches with XFX Pine 0x2218
|-
| GeForce 7950 GX2
| 0x10de
| 0x0293 0x0294
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| GeForce 7950 GT
| 0x
| 0x0295 0x02E4
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GS
| 0x
| 0x02E3
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7600 GS
| 0x
| 0x02E1 0x0392
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7650 GS
| 0x
| 0x0390
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7600 LE
| 0x
| 0x0394
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7800GS (G8 ) (nv4 ) (2006)
| 0x
| 0x0093 0x00F5
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working
* works if AGP motherboard chipset is supported - Hardware OpenGL 2.1
|-
| GeForce 7100 GS
| 0x
| 0x016A
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7350 LE
| 0x
| 0x01D0
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7300le (G8 ) (nv4 ) (2006)
| 0x
| 0x01D1
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7300SE 7200GSGF-7200GS-N-B1 variant (G72)
| 0x10de
| 0x01D3
| 0x0a1
| <!--2D-->
| <!--3D-->
| <!--Analogue-->{{Unk|1x DVI, 1x VGA, 1x S-Video}}
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2007 40W pci-e 1.0 VP1 no unified shaders -
* not working Asus on via chipset (2015),
* works Asus on intel chipset (2015),
|-
| Geforce 7300gt (G8 ) (nv4 ) (2006)
| 0x
| 0x0395 0x0393
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working
* works
|-
| GeForce 7300 GS
| 0x
| 0x01DF
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7500 LE
| 0x
| 0x01DD
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7xxx
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GeForce 8800 Ultra (NV50 family)
| 0x
| 0x0194
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NV50 GeForce 8 to GeForce 200s opengl 3.x - max res - 80nm technology - PureVideo HD 2 or VP2 Nvidia VDPAU Feature Set A (absent from ultra and some 8800gt?) added a dedicated bitstream processor (BSP) and enhanced video processor for H.264, VC-1 acceleration
|-
| Geforce 8800gts (nv50) (G8x) (2007)
| 0x
| 0x0400 0x0600 0x0193
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2007 200w openGL3 openCL - 2x6pin psu
* not working 0x0193 models (2015) on via chipsets,
* works
|-
| Geforce 8800gtx (nv5 ) (G8x) (2007)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2008 200W 1x 6pin connector,
* not working
* working
* untested XFX PV-T88P-YDF4, Alpha Dog Edition runs extremely hot - Gigabyte GV-NX88T512H,
|-
| GeForce 8800 GT
| 0x
| 0x0602 0x0611 0x0193
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->DVI up to 2500 x 1600
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - 6pin psu power connector required
* not working
* untested Asus EN8800GT/HTDP/256M EN8800GT/HTDP/512M EN8800GT/G/HTDP/512M
* works
|-
| GeForce 8800 GT (G92)
| 0x10de
| 0x0611
| 0x0a2
| <!--2D-->{{Yes|6.11 Pixel Text}}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{N/A}}
| <!--Digital-->{{Yes}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3 pci-e 2.0 8800GT 512MB on Icaros 2.0.3 [[File:8800GT aros heads.png|thumb|8800GT]] [[File:8800GT aros tails.png|thumb|8800GT detail]]
|-
| Geforce 8600gt (nv5 ) (G8x) (2007)
| 0x
| 0x0401 0x0402
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res
* not working
* works
|-
| GeForce 8500 GT
| 0x
| 0x0421
| 0x0
| <!--2D-->{{Yes| some color }}
| <!--3D-->{{yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL tests - max opengl 3.x but 2.1 offered - max res
* not working
* works Gigabyte 8500 GT,
|-
| GeForce 8800 GS
| 0x
| 0x0606 0x060D
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res
|-
| GeForce 8600GS
| 0x
| 0x0403
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 3.x VP3 offers complete hardware-decoding for all 3 video codecs of the Blu-ray Disc format: MPEG-2, VC-1, and H.264 - Nvidia VDPAU Feature Set B
|-
| GeForce 8300 GS
| 0x
| 0x0423
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res
|-
| Geforce 8400gs G98GS (end 2007) GT218 (2009)
* Rev2 with 8/16 cores and 128-512MB of DDR2 or GDDR3 memory.
* Rev3 with 8 cores and 512MB-1GB of DDR3 memory (based on Tesla 2.0)
| 0x
| 0x0424 0x0422
| 0x0
| <!--2D-->{{Yes|Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 490 gearbox 505 Cube 135 Cube2 55 quake3 }}
| <!--Analogue-->{{Yes|works digital part of DVI but nothing from any display port}}
| <!--Digital-->{{Yes|output on digital 24 pin array of DDWG's DVI and hdmi}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 50W openGL 3.1 openCL - case single slot - one single-link DVI digital output, supporting up to one 1920x1080 resolution display - analog resolution 640 x 480 to 1024 x 768 16 and 24 bit color - [http://www.phoronix.com/scan.php?page=article&item=nouveau_comp_2011&num=19 runs a little hotter than expected] - G98 VP3 pci-e 2.0 512MB DDR2 -
* not working
* works Asus EN8400GS SILENT/P/512M PCIe (G98),
|-
| Geforce 8400gs (nv50) (G86) (mid-2007)
* Rev1 with 16 cores / 256MB of DDR2 memory.
| 0x
| 0x0404
| 0x0
| <!--2D-->{{Yes|Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 490 gearbox 505 Cube 135 Cube2 55 quake3 }}
| <!--Analogue-->{{Yes|works but not tested thru 4 pins of analog signal of DVI plug}}
| <!--Digital-->{{Yes|output on digital 24 pin array of DDWG's DVI and hdmi}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2008 50W openGL 3.1 openCL - case single slot - one single-link DVI digital output up to 1920x1080 resolution display - analog resolution 640 x 480 to 1024 x 768 16 and 24 bit color - [http://www.phoronix.com/scan.php?page=article&item=nouveau_comp_2011&num=19 runs a little hotter than expected] - G86 VP2 128MB -
* not working XFX PV-T86S-YAJG NVIDIA GeForce 8400 GS 512MB DDR2, Sparkle 8400GS 512MB SX84GS512D2L-DPP,
* works Asus EN8400GS SILENT/HTP/256M SILENT/HTP/512M/A,
|-
| GeForce 8400 SE
| 0x
| 0x0420
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 2.x openCL
|-
| NVidia Quadro NVS290 DMS-59
| 0x
| 0x0403
| 0x0
| <!--2D-->{{no| }}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk|DMS-59 socket}}
| <!--Digital-->{{unk|DMS-59 }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2008 21W - G86S (G86-827-A2) - 16 shading units, 8 texture mapping units, and 4 ROPs. NVIDIA has paired 256 MB DDR2 - PCIe 1.0 x16 Low Profile -
|-
| Geforce Quadro FX 4600 (SDI), 5600
| 0x
| 0x
| 0x0
| <!--2D-->{{Partial|VESA 2d}}
| <!--3D-->{{no| }}
| <!--Analogue-->{{partial| }}
| <!--Digital-->{{partial| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GeForce 9800 GX2 (NV50 family)
| 0x
| 0x0604
| 0x0
| <!--2D-->{{Partial|VESA }}
| <!--3D-->{{no| }}
| <!--Analogue-->{{Partial| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 150w - 65nm technology
|-
| GeForce 9800 GTX
| 0x10de
| 0x0612
| 0x0a2
| <!--2D-->{{Yes| }}
| <!--3D-->{{Maybe|6.11 }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 2x6pin psu -
* not working xfx on via chipset (2015),
* works xfx on chipset intel ,
|-
| GeForce 9800 GTX+
| 0x10de
| 0x0613
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res 2560 x 1920 - case dual slot - 26amp 12v rail on computer psu if 2x6pin connectors needed - 55nm version of the G92 chip - will not work with PCI-e 1.0a slots -
* not working
* works on a few models
|-
| Geforce 9800gt (nv50) (G92a) (2008)
| 0x10de
| 0x0614
| 0x0xa2
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel 495 gearbox 513 Cube 156 Cube2 120 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{partial| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL 3.1 openCL 1.x - case dual slot - 600w 26amp on both 12v rails for 2x6pin psu on gfx card - no fan control - some come with 1x6pin - renamed version of the venerable GeForce 8800 GT - randomly works
* not working Gainward 512M untested
* working Gainward CardExpert (0x0401) Green Edition NE39800TFHD02-PM8D92 1024MB (no 6pin)
|-
| Geforce gf9600 9600gt (nv5 ) (G9x) (2008)
| 0x10de
| 0x0622
| 0x0a1
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel 493 gearbox 675 Cube Cube2 100 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL 3.2 openCL but no fan control - case dual slot - 1 6pin pcie psu connector - 500 Watt or greater power supply with a minimum of 26 Amp on the +12 volt rail - Max Analog: 2048x1536 and Max Digital: 2560x1600 (Dual Link DVI Only) - PCI Express® 2.0 / 1.1 Support - g96 gpu randomly works -
* not working bfg tech ocx,
* works gigabyte gv-n96tsl-512i -
|-
| Geforce gf9500 9500gt (nv5 ) (G9x) (2008)
| 0x10de
| 0x0640
| 0x0a1
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel 480 gearbox 500 Cube Cube2 64 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.2 - case single slot - 350 Watt/400 Watt or greater power supply with a minimum of 18 Amp/22 Amp on the +12 volt rail - Max Analog: 2048x1536 and Max Digital: 2560x1600 (Dual Link DVI Only) - PCI Express® 2.0 / 1.1 Support -
* not working zotac zone fanless, Gainward USA NE29500THHD01-PM8796, PNY G9500GN2E50X+0TE,
* works xfx xne-9500t-td01-pm8596 1024mb ddr2,
|-
| GeForce 9600 GS
| 0x
| 0x0623
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res - will not work with PCI-e 1.0a slots -
* not working
* works
|-
| GeForce 9600 GSO
| 0x
| 0x0610
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res - G92 chopped down - 9600GSO is re-badged 8800GS both very power hungry cards -
|-
| GeForce 9300 GS
| 0x
| 0x06E1
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 opengl 3.x - max res
|-
| Geforce 9400 GT (nv5 ) (G86S) (2008)
| 0x
| 0x
| 0x0
| <!--2D-->{{partial|}}
| <!--3D-->{{unk|}}
| <!--Analogue-->{{unk|1x DVI, 1x VGA, 1x S-Video}}
| <!--Digital-->{{unk|1x DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 50W opengl 3.x - max res
|-
| Geforce 9xxx (nv5 ) (G9x) (2008)
| 0x
| 0x
| 0x0
| <!--2D-->{{unk|}}
| <!--3D-->{{unk|}}
| <!--Analogue-->{{unk|}}
| <!--Digital-->{{unk|}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 opengl 3.x - max res
|-
| <!--Description-->Quadro FX 580 G96 chipset
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2009
|-
| <!--Description-->
NV84 (G84) GeForce 8600 (GT, GTS, M GT, M GS), 8700M GT,
NV92 (G92) GeForce 8800 (GT, GS, GTS 512, M GTS, M GTX)
GeForce 9600 GSO, 9800 (GT, GTX, GTX+, GX2, M GT, M GTX)
NV96 (G96) GeForce 9400 GT, 9500 (GT, M G), 9600 (M GS, M GT),
NV86 (G86) GeForce 8300 GS, 8400 (GS, M G, M GS, M GT), 8500 GT
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NVA0 (GT200) Tesla GeForce GTX (260, 275, 280, 285, 295)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->GeForce GTX 280 (NV50 family)
| <!--Vendor ID-->
| <!--Product ID-->0x05E1
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res PureVideo HD 4 (Nvidia Feature Set C or "VDPAU Feature Set C), VP4 added hardware to offload MPEG-4 Advanced Simple Profile (original DivX and Xvid)
|-
| <!--Description-->GeForce GTX 260
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x05E2
| <!--Revision-->
| <!--2D-->{{partial|Vesa}}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> 2 6pin - psu pci express 2.1 -
|-
| Geforce GTS250 250GTS (g92b) (2009)
| 0x10de
| 0x0615
| 0x0a2
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 486 gearbox 508-642 Cube Cube2 80 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> 2x6pin psu VP2 - pci-e 2.x - case dual slots - 738m 1gb ddr3 -
* not working Zotac branded version GDDR3 -
* works PNY gs-250x-zdfl and Gigabyte ??, BFG Tech RGTS2501024OCE, palit ne3ts250fhd52-pm8a92 with 2x6pin on top and hdmi output port,
|-
| <!--Description-->GeForce GT 240 (GT215 family)
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0ca3
| <!--Revision-->0xa2
| <!--2D-->{{Maybe|use VESA}}
| <!--3D-->{{No|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->late 2009 openGl 3.2 - case dual slots - no 6pin psu required with VP4 - All are pcie 2.1 cards and may not work in 1.0a slots -
* not working
* DDR3 with 512MB or 1GB -
* DDR5 -Asus ENGT240 - XFX Pine GT240XYHFC 0x3001 - Gigabyte GV-N240D5-512I rev 1.0 - Zotac AMP! with HDMI 1.3a with DisplayPort 1.1, Dual Link DVI -
* works
|-
| <!--Description-->GT220 (GT216) G220
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0a20
| <!--Revision-->0xa2
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Yes}}
| <!--Digital-->{{Yes|DVI }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> Icaros 2.0.3 GeForce GT220 1GB[[File:GT220 aros heads.png|thumb|GT220]][[File:GT220 aros tails.png|thumb|GT220]]
* untested NVIDIA Quadro® 400 512MB DDR3 GT216 DP DVI, AFox AF220 1Gb DDR3,
|-
| Geforce GT220 220GT G94 Tesla (g92b)
| 0x10de
| 0x0a20
| 0xa2
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 490 gearbox 505 cube 150 cube2 50 Quake3 }}
| <!--Analogue-->{{Unk|1x DVI, 1x VGA}}
| <!--Digital-->{{Yes|DVI but not 1x HDMI }}
| <!--Laptop LCD-->{{N/A}}
| 58W pci express 2.0 cards DDR3 - case single slot -
* not working ASUS ENGT220/DI/1GD2(LP)/V2 -
* works - gainward card expert 0x0401 GDDr3 512MB -
|-
| <!--Description-->GT210 GT 210 210GT G210 based on Tesla 2.0 GT218S GT218-300-A2 variant, GT218-300-B1
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0a65
| <!--Revision-->0xa2
| <!--2D-->{{Yes|6.11 Pixel Text}}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{Unk|1x DVI, 1x VGA}}
| <!--Digital-->{{Maybe|DVI out works but not hdmi or 1x DisplayPort}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 31W OpenGL 3.3 pci-e 2.0 cards - single slot -
* working GT218 based Asus EN210 based silent low profile large passively cooled -
* untested MSI GeForce 210 1GB DDR3 PCIe N210-MD1GD3H/LP,
* not working
|-
| <!--Description-->Nvidia ION2 (GT218) Tesla
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2012
|-
| <!--Description-->Quadro NVS 295 (256 MB GDDR3), NVS 450 (256M/512 MB DDR3)
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x
| <!--Revision-->
| <!--2D-->{{yes| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->
| <!--Digital-->{{partial|2 or 4 dp ports}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 25w low performance - G98s with 8 shading units, 4 texture mapping units, and 4 ROPs on PCI-Express 1.0 x16 -
*not working some NVIDIA Quadro NVS 295 2 dp ports (DELL, HP),
*working
|-
| <!--Description-->GT310 Tesla 310, 315, GT 320, GT 330 GT 340
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{Maybe|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2010 50w OpenGL 3.3 openCL all similar in performance to GT2xx except gt31x (poor)
|-
| <!--Description-->Quadro NVS310 NVIDIA NVS 310
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital--> 2 dp
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 25w GF119S (GF119-825-A1) 48 shading units, 8 texture mapping units, and 4 ROPs on PCI-Express 2.0 x16 - 512 MB DDR3 - PureVideo VP5 VDPAU Feature Set D -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description--> GTX 470, GTX 480 GF10 GF10* core (NVC0 family)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{Maybe| tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2010 215w 2x6 plugs - NVC0 family (Fermi) GF100 (GF100-275-A3) Fermi 448 shading units, 56 texture mapping units, and 40 ROPs with 1,280 MB GDDR5 - OpenGL4.5 OpenCL1.1 Tessellation - case dual slots -
|-
| Geforce GTX460 460GTX (G104) 256bit, 1GB v2 192bit and GTX 465
| 0x10de
| 0x0e22
| 0xa1
| <!--2D-->{{Maybe|VESA }}
| <!--3D-->{{Maybe| tunnel gearbox cube 055-111 cube2 50}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVC0 family (Fermi) OpenGL 4.x but - 2x6pin psu - case dual slots -
* not working evga 768MB GDDR5 192bit 01G-P3-1373-ER or 01G-P3-1372-TR
* works 1GB GDDR5 256bit 01G-P3-1371-ER
|-
| <!--Description-->Geforce GTX 460SE 192bit
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0e23
| <!--Revision-->0x91 or 0xa1
| <!--2D-->{{Yes| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->{{Yes| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> nouveau 6.11 - 2 6pin psu needed - case dual slots -
* not working
* works EVGA 01g-p3-1366-b6 et 1024MB p1041 -
|-
| Geforce GT450 GTS450 450GTS GF106
| 0x10de
| 0x0dc4
| 0x0a1
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel gearbox cube cube2 50 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes|DVI }}
| <!--Laptop LCD-->{{N/A}}
| 2010 Hardware OpenGL 4.2 but nouveau at 3.3 - most need 1x 6pin psu - case dual slots -
* not working
* DDR3 1 or 2GB - Palit NEAS450NHD41F,
* GDDR5 512Mb or 1GB - MSI MPN N450GTSM2D1GD5OC, Asus MPN ENGTS450DI1GD5,
* works Gainward Card Expert NE5S4500FHd51,
|-
| <!--Description-->GT 440 GF108 chipset or better OEM GF106
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 6.11 Pixel Text}}
| <!--3D-->{{Maybe| tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGl 4.1 opencl 1.x - no 6 pin psu - 96 cuda cores 128bit - case dual slots -
* not working
* OEM
* GDDR5 512MB to 1GB ASUSTeK ENGT440/DI/1GD5
* GDDR3 Asus 1gb to 2gb,
* works
|-
| <!--Description-->GT430 430GT (GF108)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|6.11 Pixel Text}}
| <!--3D-->{{Maybe|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->ddr3 memory 64bit or 128bit - buggy await new revision of driver
* not working
* works
|-
| <!--Description-->nVidia Quadro FX1800 768MB GDDR3 Full Height Graphics Card Workstation
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 6.11 Pixel Text}}
| <!--3D-->{{no|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->{{Maybe|DVI-I 2xDP}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->59W 768 MB GDDR3 memory using a 192-bit memory interface - OpenGL 3.3 -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GTX 590 Fermi
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->OpenGL4.4 OpenCL 1.1 - GDDR5 - 6pin and 8pin psu connectors - 512 cuda - case dual slots -
* not working
* works
|-
| <!--Description-->GTX 580,
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->PureVideo HD 5" or "VP5" (Nvidia Feature Set D or VDPAU Feature Set D) 4k UHD 3840 × 2160 H.264 decode -
|-
| <!--Description-->GTX 570,
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{Maybe|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working Zotac GTX 570, Gainward GTX560TI/570 Phantom,
* works gigabyte, evga
|-
| <!--Description-->Geforce 5xx 560gtx Fermi GTX 560,
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->opengl 4.x - 2 6pin psu - 384 cuda cores - case dual slots - will not work with PCI-e 1.0a slots -
* not working Asus ENGTX560 DC/2DI/1GD5,
* Ti LE 448 cuda GDDR5 320bit
* Ti 256bit
* works
|-
| <!--Description-->GTX 560 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working evga GTX 560Ti 01GP31560KR - Gainward GTX560TI/570 Phantom,
* works
|-
| <!--Description-->GTX 550 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x1201
| <!--Revision-->
| <!--2D-->{{Maybe|VESA Doom Doom2 Duke }}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->can hang on boot up on I2C Init or suffer random lockups on OpenGL apps - most need 1 6pin min 400W 24A on the +12V1 / +12V2 dual 12V rails of the computers' power supply unit - 192 cuda cores - case dual slots used - will not work with PCI-e 1.0a slots -
* not working eVGA GeForce GTX 550 Ti (1024 MB) (01GP31556KR) -
* untested asus Extreme, eVGA GeForce GTX 550 Ti (1024 MB) (01GP31557KR) - -
* works
|-
| <!--Description-->GT 545 and OEM GF116
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 4.2 opencl 1.x - GDDR5 with OEM only -
|-
| <!--Description-->GT530 OEM
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 6.11 Pixel Text}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->96 cuda cores - 1GB or 2GB DDR3 128bit
|-
| <!--Description-->GT520 520GT
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->untested 48 cuda cores - DDR3 64bit
|-
| <!--Description-->510, GT 530
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D 6.11 Pixel Text}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> ddr 3 - 50w max -
|-
| <!--Description-->GT610 Fermi GF119
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVS 315 300 GF119S
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{No|VESA}} needs special dms-59 cable
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 fermi 315 PNY VCNVS315-T 1Gb DDR3 but needs special dms-59 cable -
|-
| <!--Description-->GT630 GF108 Fermi
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->not accelerated 2015 - like the GT730 below - 96 cuda cores whilst kepler version has 384 - 128bit to keplers' 64bit bandwidth - kepler has 2GB DDR3
* not working Gigabyte
* DDR3
* GDDR5
* works
|-
| <!--Description-->Geforce GT 730 (two versions)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe| use VESA 6.11 Pixel Text}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> fermi version has 96 cuda cores 128bit GF108
* not working Asus
* works
|-
| <!--Description-->nVIDIA Quadro 4000
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}} 2 dp ports
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->142W 2Gb GDDR5 - PCI Express 2.0 x16 ; full Height card with 1x 6-Pin PCIe power need - CUDA Cores 256 - OpenGL 4.5
|-
| <!--Description-->nVIDIA Quadro 5000
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2011 200W 2.5Gb GDDR5 320 bit - PCI Express 2.0 x16 full Height card with 2x 6-Pin PCIe power need -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce GTX Titan GeForce GTX Titan Black GeForce GTX Titan Z
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVE0 family (Kepler) GeForce 600 GeForce 700 GeForce GTX Titan Kepler
|-
| <!--Description-->GeForce GTX 780 GeForce GTX 780 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->PureVideo HD 6" or "VP6" (Nvidia Feature Set E or VDPAU Feature Set E) significantly improved performance when decoding H.264 and MPEG-2
|-
| <!--Description-->GeForce GTX 770
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->opengl 4.4 opencl 1.1
|-
| <!--Description-->GeForce GTX 760 GeForce GTX 760 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce GT 740
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce GT 730 Kepler (two versions) f
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> kepler 384 cores 64bit GK208
|-
| <!--Description-->680gtx GK104 core gtx680 680m
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVE0 family (Kepler)
|-
| <!--Description-->GTX 690 Kepler NVE0
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->pci-e 3.0, OpenGL 4.4 OpenCL 1.1
|-
| <!--Description-->GTX 670
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GTX 660 GTX 660 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GTX 650 GTX 650 Ti GTX 650 Ti Boost
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVE0 family (Kepler) most need 1 6pin psu
* not working asus ENGTX560 DC/2DI/1GD5
* works
|-
| <!--Description-->Geforce GT 640
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* 128bit DDR3
* 192bit DDR3 1.5 to 3GB 50W
* 128bit GDDR5 75W
|-
| <!--Description-->GT 620 GT 640
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->Quadro K2000 NVE7 (GK107) Kepler
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 - 50w single slot pcie 2.0 -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce 750ti, GeForce 900
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->[https://nouveau.freedesktop.org/FeatureMatrix.html NV110] Maxwell -
|-
| <!--Description-->Nvidia GTX 750
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x1381
| <!--Revision-->0xa2
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2026 nvidia test
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->GM206 2nd gen maxwell PureVideo HD 7" or "VP7" (Nvidia Feature Set F or VDPAU Feature Set F) adds full hardware-decode of H.265 HEVC Version 1 (Main and Main 10 profiles and full fixed function VP9 (video codec) hardware decoding
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV132 (GP102) NVIDIA Titan (X, Xp), GeForce GTX 1080 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV134 (GP104) GeForce GTX (1070, 1080)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV136 (GP106) GeForce GTX 1060
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->Quadro K620 Maxwell
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2014 50w slim low profile 2gb ddr3 -
|-
| <!--Description-->quadro p620 2gb gddr5 128bit and quadro p1000 4gb gt1030 30w
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 50w slim low profile -
|-
| <!--Description-->GeForce gtx 1060, GeForce 1070
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NV130 Pascal
|-
| <!--Description-->NV137 (GP107) GeForce GTX (1050, 1050 Ti)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV138 (GP108) GeForce GT 1030
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->NV130 family (Pascal)
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV162 (TU102) NVIDIA Titan RTX, GeForce RTX 2080 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV164 (TU104) GeForce RTX (2070 Super, 2080, 2080 Super)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2020 NV160 family (Turing) unified gsp-rm firmware - best starting point for Vulkan support
|-
| <!--Description-->NV166 (TU106) GeForce RTX (2060, 2060 Super, 2070)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV168 (TU116) GeForce GTX (1650 Super, 1660, 1660 Ti, 1660 Super)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV167 (TU117) GeForce GTX 1650
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->gtx 1650ti super
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2018 old style
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV172 (GA102) GeForce RTX (3080, 3090)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 av1 decoding ampere
|-
| <!--Description-->NV174 (GA104) GeForce RTX (3060 Ti, 3070, 3080 Mobile)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->NV170 family (Ampere)
|-
| <!--Description-->NV176 (GA106) GeForce RTX (3050, 3060)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV177 (GA107) GeForce RTX 3050
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV192 (AD102) GeForce RTX 4090
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV193 (AD103) GeForce RTX 4080
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->NV190 family (Ada Lovelace)
|-
| <!--Description-->NV194 (AD104) GeForce RTX (4070, 4070 Ti)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV196 (AD106) GeForce RTX 4060 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV197 (AD107) GeForce RTX 4060
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
|}
==== nouveau mobile integrated ====
If you purchased a notebook with an NVidia sticker on it, most of the time you have a optimus based one, ie Intel CPU+GPU melded with Nvidia GPU, Optimus was slated at one point to go into desktop PCs but the industry ended up rejecting that concept
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|-
| GeForce 6100 nForce 405
| 0x
| 0x03D1 0x0242
| 0x0
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
|
|-
| <!--Description-->GeForce 6100 nForce 400
| <!--Vendor ID-->
| <!--Product ID-->0x03D2
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce 6100 nForce 420
| <!--Vendor ID-->
| <!--Product ID-->0x03D5
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce 6150 LE
| <!--Vendor ID-->
| <!--Product ID-->0x0241
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6150SE nForce 430
| 0x
| 0x03D0
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| working
|-
| <!--Description-->GeForce 6150
| <!--Vendor ID-->
| <!--Product ID-->0x0240
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7150M / nForce 630M
| <!--Vendor ID-->
| <!--Product ID-->0x0531
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7000M / nForce 610M
| <!--Vendor ID-->
| <!--Product ID-->0x0533
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7050 PV / NVIDIA nForce 630a
| <!--Vendor ID-->
| <!--Product ID-->0x053A 0x053B
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Geforce IGP 7025 nForce 630a
| 0x
| 0x053E
| 0x0
| <!--2D-->{{Yes|some}}
| <!--3D-->{{Yes|some}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No| }}
| some support on some chipsets
|-
| GeForce 7100 / nForce 630i (C73)
| 0x10de
| 0x07e1
| 0x0a2
| <!--2D-->{{Maybe}}
| <!--3D-->{{Maybe}}
| <!--Analogue-->{{Maybe}}
| <!--Digital-->{{Maybe}}
| <!--Laptop LCD-->{{N/A}}
| Icaros 2.0.3 and Gigabyte 73-pvm-s2h rev. 1.0 but will not boot on [https://ae.amigalife.org/index.php?topic=806.msg8765#new Acer x270 with Icaros 2.3]
|-
| <!--Description-->GeForce 7150 / NVIDIA nForce 630i
| <!--Vendor ID-->
| <!--Product ID-->0x07E0
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7050 / NVIDIA nForce 610i
| <!--Vendor ID-->
| <!--Product ID-->0x07E3
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Geforce IGP 8100 (nForce 720a)
| 0x
| 0x084F
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
|
|-
| GeForce 8100P
| 0x
| 0x0847
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
|
|-
| <!--Description-->Geforce 8200 8300 nForce 730a
| <!--Vendor ID-->
| <!--Product ID-->0x084A 0x0848 (GeForce 8300) 0x0849 (GeForce 8200) 0x084B (GeForce 8200)
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->working on some 8300's with Icaros 1.5 but others untested
|-
| <!--Description-->nForce 780a SLI
| <!--Vendor ID-->
| <!--Product ID-->0x084C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->nForce 750a SLI
| <!--Vendor ID-->
| <!--Product ID-->0x084D
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Nvidia Geforce IGP 9300 (nForce MCP7a)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->works
|
|-
| <!--Description-->9400 (ION)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->If AROS detects GPU chipset, works well
|-
| <!--Description-->9700M ()
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Geforce ION 2
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->works well
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce Go 6150
| <!--Vendor ID-->
| <!--Product ID-->0x0244
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6100
| <!--Vendor ID-->
| <!--Product ID-->0x0247
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6200
| <!--Vendor ID-->
| <!--Product ID-->0x0164 0x0167
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6400
| <!--Vendor ID-->
| <!--Product ID-->0x0166 0x0168
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->Sony Laptop
|-
| <!--Description-->GeForce Go 6800
| <!--Vendor ID-->
| <!--Product ID-->0x00C8
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6800 Ultra
| <!--Vendor ID-->
| <!--Product ID-->0x00C9
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600
| <!--Vendor ID-->
| <!--Product ID-->0x0144
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600 TE/6200 TE
| <!--Vendor ID-->
| <!--Product ID-->0x0146
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600
| <!--Vendor ID-->
| <!--Product ID-->0x0148
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600 GT
| <!--Vendor ID-->
| <!--Product ID-->0x0149
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7200
| <!--Vendor ID-->
| <!--Product ID-->0x01D6
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7300
| <!--Vendor ID-->
| <!--Product ID-->0x01D7
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->untested
|-
| <!--Description-->GeForce Go 7400
| <!--Vendor ID-->
| <!--Product ID-->0x01D8
| <!--Revision-->
| <!--2D-->
| <!--3D-->works 2D and 3d issues though
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7800
| <!--Vendor ID-->
| <!--Product ID-->0x098
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7800 GTX
| <!--Vendor ID-->
| <!--Product ID-->0x0099
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7950 GTX
| <!--Vendor ID-->
| <!--Product ID-->0x0297
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7900 GS
| <!--Vendor ID-->
| <!--Product ID-->0x0298
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7900 GTX
| <!--Vendor ID-->
| <!--Product ID-->0x0299
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7600
| <!--Vendor ID-->
| <!--Product ID-->0x0398
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7600 GT
| <!--Vendor ID-->
| <!--Product ID-->0x0399
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 6610 XL
| <!--Vendor ID-->
| <!--Product ID-->0x0145
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 6700 XL
| <!--Vendor ID-->
| <!--Product ID-->0x0147
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce 8700M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0409
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8600M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0425
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8400M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0426
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8400M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0427
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8400M G
| <!--Vendor ID-->
| <!--Product ID-->0x0428
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8800M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x0609
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8800M GTX
| <!--Vendor ID-->
| <!--Product ID-->0x060C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9500M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0405
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8600M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0407
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9650M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0408
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9400M GT
| <!--Vendor ID-->
| <!--Product ID-->0x042C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9300M G
| <!--Vendor ID-->
| <!--Product ID-->0x042E
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9100M G
| <!--Vendor ID-->
| <!--Product ID-->0x0844
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9800M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x0628
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9700M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x062A
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9800M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x062C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9600M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0647
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9600M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0648
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9600M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0649
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9500M G
| <!--Vendor ID-->
| <!--Product ID-->0x064B
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9300M GS
| <!--Vendor ID-->
| <!--Product ID-->0x06E5
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9200M GS
| <!--Vendor ID-->
| <!--Product ID-->0x06E8
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9300M GS
| <!--Vendor ID-->
| <!--Product ID-->0x06E8
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->NV50 (G80) Quadro FX (4600 (SDI), 5600)
Quadro FX (2800M, 3600M, 3700, 3700M, 3800M, 4700 X2), VX 200
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV94 (G94) 9700M GTS, 9800M GTS, GeForce G 110M, GT 130(M), GT 140, Quadro FX (1800, 2700M)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV84 (G84) Tesla 8700M GT, GeForce 9500M GS, 9650M GS
Quadro FX (370, 570, 570M, 1600M, 1700), NVS 320M
NV86 (G86) GeForce 8300 GS, 8400 (GS, M G, M GS, M GT), 8500 GT, GeForce 9300M G
Quadro FX 360M, NVS (130M, 135M, 140M, 290)
GeForce GTS 150(M), GTS 160M, GTS 240, GTS 250, GTX (260M, 280M, 285M), GT (330, 340)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV96 (G96) 9650M GT, 9700M GT
GeForce G 102M, GT 120
Quadro FX (380, 580, 770M, 1700M)
NV98 (G98) GeForce 8400 GS, GeForce 9200M GS, 9300 (GE, GS, M GS)
GeForce G 100, G 105M
Quadro FX (370 LP, 370M), NVS (150M, 160M, 295, 420, 450)
Quadro CX, FX (3800, 4800, 5800)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVA3 (GT215) GeForce GT (240, 320, 335M), GTS (250M, 260M, 350M, 360M) Quadro FX 1800M
NVA5 (GT216) GeForce GT (220, 230M, 240M, 325M, 330M), 315
Quadro 400, FX 880M, NVS 5100M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVA8 (GT218) Tesla GeForce 8400 GS, GeForce 210M, 305M, 310M, Quadro FX 380M, NVS 2100M, 3100M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVAA (MCP77/MCP78) GeForce 8100, 8200, 8300 mGPU / nForce 700a series, 8200M G
NVAC (MCP79/MCP7A) ION, GeForce 9300, 9400 mGPU / nForce 700i series, 8200M G, 9100M, 9400M (G)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVAF (MCP89) GeForce 320M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NVC0 (GF100) Fermi GeForce GTX 480M, Quadro 5000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVC1 (GF108) GeForce GT 415M, 420M, 425M, 435M, 520M, 525M, 540M, 550M, 555M, 630M, 635M, 640M LE, Quadro 1000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVC3 (GF106) Fermi GeForce GT 445M, 555M, 630M, 635M), GTX 460M, Quadro 2000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVC4 (GF104) GeForce GTX 470M, 485M, Quadro 5000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVCE (GF114) GeForce GTX 570M, 580M, 670M, 675M,
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVD7 (GF117) Fermi Geforce GT 620M, 625M, (some) 630M, 710M, 720M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVD9 (GF119) Fermi GeForce 410M, GT 520M, 520MX, 610M, Quadro NVS 4200M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NVE4 (GK104) GeForce GTX 670M, 680M, 775M, 780M, 860M, Quadro K3000M, K3100M, K4000M, K4100M, K5000M, K5100M,
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVE7 (GK107) GeForce GT640M, 645M, 650M, 710M, 720M, 730M, 740M, 745M, 750M, 755M, GTX 660M, K500M, K1000M, K1100M, K2000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GTX 1650 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2019 turing architecture - last old skool support pre Vulkan
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rtx 2050 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 ampere architecture best starting point for vulkan support
|-
| <!--Description-->rtx 2060 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rtx 4060 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
|}
====radeon.hidd====
Michel Shultz ''2D'' graphics driver (standard on most distributions but only for very old GPUs) and bearsofts updated 2013 around Icaros 1.3.1
3D is not implemented by AROS yet but could cover these AMD chipsets
<pre>
2014 SI AMD HD 7xxx
2016 GCN3rd AMD R5E R7E
2019 GCN5th AMD Vega 8
2022 RDNA1 AMD RX5500 desktop only
2023 RDNA2 AMD 680M 780M
2024 RDNA3 AMD 880M 890M
2025 RDNA3.5 AMD 8060S strix halo and AI
2027 RDNA4 AMD
</pre>
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! 2D
! 3D
! Analogue Output
! Digital Output
! Laptop LCD
! Comments
|-
| 7000 (r100)
| 0x1002
| 0x5159
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->{{Maybe|vga15 pin connection but not s-video}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.3
|-
| 7500 (rv200 but still r100 based)
| 0x1002
| 0x5157
| 0x
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->{{Yes|vga15}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.3
|-
| 8000 8500 (r200)
| 0x1002
| 0x514c (8500LE)
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.4
|-
| 9000 9100 9250 (r200)
| 0x1002
| 0x5964 (9000) 0x514d (9100)
| 0x0001
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->{{Maybe|VGA15 but not s-video}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.4
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| 9600 9800 (r300)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1
|-
| x300 x600 (r300)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1
|-
| x700, x800 ([http://en.wikipedia.org/wiki/Radeon_R600 r420])
| 0x
| 0x554d (R430 x800xl)
| 0x0
| <!--2D-->{{Yes|new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1 - x800 XL PCIE (problem with mouse-pointer, some part of the pointer is not transparent)
|-
| x1300 x1550 x1600 x1800 x1900 x1950 ([http://en.wikipedia.org/wiki/Radeon_R520 r520])
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes|new driver}}
| <!--3D-->{{no}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| HD2400 HD2600 HD2900 ([http://en.wikipedia.org/wiki/Radeon_R600 r600])
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|some features with new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 3.3 open CL 1.2 TeraScale architecture
|-
| HD3400 HD3600 HD3800 (r600)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|some features with new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->pci-e 2.0, openGL 3.3
|-
| HD4300 HD4500 HD4600 HD4700 HD4800 ([http://en.wikipedia.org/wiki/Radeon_R600 r700])
| 0x1002
| 0x
| 0x0
| <!--2D-->{{Maybe|but some later cards need 3D engine for faster and more flexible 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 3.3 - DDR3 - GDDR5 was one of AMD's aces for the 4800 series - 4670 liked -
|-
| HD6900 cayman series
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|some features with new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 3.3 open CL not mature (2014) -
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| HD5400 Series HD5430 HD5450 HD5470
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2010 openGL 3.3 openCL - GDDR3 -
|-
| HD5500 Series HD5550 HD5570 HD5600 Series HD5650 HD5670 HD5700 Series HD5750 HD5770
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 3.3 openCL - GDDR5
|-
| HD 5800 Series HD5850 HD5870 HD5900 Series HD5950 HD5970 - HD6xxx not NI chipset ([http://en.wikipedia.org/wiki/Evergreen_(GPU_family) r800 evergreen])
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 openGL 3.3 openCL - DDR5 pci-e 2.1 best avoided for all pci-e 1.0 mobos - Ati TeraScale2 architecture -
|-
| HD6450 [http://en.wikipedia.org/wiki/Northern_Islands_(GPU_family) Northern Islands chipset]
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> - DDR3 -
|-
| HD6600 Series HD6650 HD6570 HD6600 Series HD6650 HD6670
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2011 - DDR5 -
Radeon HD 8470 11 TeraScale 2
Radeon HD 8350 11 TeraScale 2
Radeon HD 7510 11 TeraScale 2
Radeon HD 6550D 11 TeraScale 2
Radeon HD 6530D 11 TeraScale 2
Radeon HD 6410D 11 TeraScale 2
Radeon HD 6370D 11 TeraScale 2
Radeon HD 6320 11 TeraScale 2
Radeon HD 6310 11 TeraScale 2
Radeon HD 6290 11 TeraScale 2
Radeon HD 6250 11 TeraScale 2
|-
| HD6800 Series HD6850 HD6870 HD6700 Series HD6790 to HD6990
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2011 - DDR5 - AMD TeraScale3 -
|-
| <!--Description-->HD7450-HD7670
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 OpenGL but not Vulkan
Radeon HD 7660D 11 TeraScale 3
Radeon HD 7560D 11 TeraScale 3
Radeon HD 7540D 11 TeraScale 3
Radeon HD 7480D 11 TeraScale 3
Radeon HD 6930 11 TeraScale 3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->HD7750 HD 7770 / R7 250X HD7850 HD7870 / R9 270X HD 7950 / R9 280 HD 7970 / R9 280X [http://en.wikipedia.org/wiki/Southern_Islands_(GPU_family) Southern Islands]
*AMD Radeon R7 250XE Cape Verde XT
*AMD Radeon R7 M465X Cape Verde
*AMD Radeon R9 255 Cape Verde PRX
*AMD Radeon HD 7750 Cape Verde PRO
*AMD Radeon R7 250E Cape Verde PRO
*AMD Radeon HD 8740 Cape Verde PRO
*AMD Radeon HD 7730 Cape Verde LE
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 pci-e 3.0 1st Gen GCN architecture -
|-
| <!--Description-->R5 430, FirePro W2100,
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 50W+ openGL openCL 1/3 speed of gtx750ti 1st gen gcn1
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->HD7790 [ Sea Islands ]
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 openGL 4.1 open CL - GCN2.0 Vulkan 1.0 introduced a Shader Engine (SE) comprising one geometry processor, up to 44 CUs (Hawaii chip), rasterizers, ROPs, and L1 cache and Graphics Command Processor for faster audio/video - suits Vulkan 1.1
|-
| <!--Description-->r5 240 240x (slow) R7 250 250x (faster) HD 7790 / R7 260 260X / R7 360 to R5 350 (fast) and last one R5 430 OEM Plus (slow again)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 50W+ GCN 1st gen - openGL 4.x openCL 1.x Vulkan 1.0
|-
| <!--Description-->R9 290 / R9 390 R9 290X / R9 390X
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2014 GCN 1.1 2nd Gen architecture - openGL 4.x openCL 1.x Vulkan 1.1 -
|-
| <!--Description-->R9 Fury Nano
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 GCN 1.2 3rd Gen - openGL openCL vulkan
|-
| <!--Description-->r-200 series r8 275 285 295 375 [Volcanic Islands]
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 GCN1.2 - openGL 4.x openCL 1.x Vulkan 1.2
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 [https://gpuopen.com/download/AMD_GCN3_Instruction_Set_Architecture_rev1.1.pdf GCN3]
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Radeon™ RX 5700/5600/5500 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 GCN 4 - OpenGL 4, Vulkan 1.3 -
|-
| <!--Description-->Radeon™ RX 400/500 Series like rx vega 580
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->Radeon™ Pro WX 9100, x200 Series and Radeon™ Pro W5700/W5500 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Radeon™ RX 7900/7600 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->Radeon™ RX 6900/6800/6700/6600/6500 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|}
==== amd radeon mobile integrated ====
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|-
| <!--Description-->ATI RC410 [Radeon Xpress 200M]
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x5a62 0x5955 0x5974 (200m)
| <!--Revision-->0x00
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->
|-
| <!--Description-->Mobility Radeon 7500
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x4c57 (7500)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->
|-
| <!--Description-->Mobility Radeon 9000
| 0x1002
| 0x4966 (9000)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->
|-
| <!--Description-->Mobility Radeon 9500 9550 (rv360) 9600 (rv350)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon 9800 (rv420)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon X300 (RV370) X600 (RV380)
| 0x1002
| 0x (RV370) 0x5657 (RV380)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon X700 (RV410) X800 (RV423)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon X1200 (RS69M0)
| 0x1002
| 0x791f
| 0x0
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->X1200 IGP (RS690)
|-
| <!--Description-->Mobility Radeon X1300 X1350 X1400(rv515) X1600 (rv530) X1650 (RV535) X1800 (rv520) x1900 (rv570)
| 0x1002
| 0x71c7 (X1650)
| 0x009e
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon 2100
| 0x1002
| 0x796e (2100)
| 0x0
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{No|}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 2400 (rv610) HD2600 (rv630)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 3100 HD3200 HD3450 3470 (RS780MC RV620) 3670 (M86-XT RV635) HD3870 (M88-LXT RV670)
| 0x1002
| 0x9610 and 0x9612 (HD3200) 0x9614 (HD3300)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 4200 4250 (RV620)
| 0x1002
| 0x (HD4200) 0x9715 (HD4250)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 4330 4530 4550 (M92 RV710) 4650 (M96-XT RV730) 4670 RV730XT 4830 (M97 RV740) 4850 (M98 RV770)
| 0x1002
| 0x (HD4350) 0x9442 (RV770) 0x9490 (HD4670)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 530v (M92 RV710) HD 550v (M96 RV730)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->no support yet
|-
| <!--Description-->Mobility Radeon HD 5430 HD5650 (cedar Park LP)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->no support yet
|-
| <!--Description-->Radeon HD 6250 6290 6310 6320 6350M (Redwood Capilano PRO)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->no support yet
|-
| <!--Description-->AMD 7640G, 8450G, 8550G, 8650G Northern Islands
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 Last real support for old graphics standard before Vulkan takeover
|-
| <!--Description-->R5 M230 M240 M255 - R7 M260 M265 (Kaveri Crystal series with Mantle and HSA)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->2015 Maybe better with Vulkan
|-
| <!--Description-->R5E R7E
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->2016 bristol ridge GCN 3.0 IGP (Carrizo Mobile)
|-
| <!--Description-->AMD Vega 3, 6, 8, 11 iGP
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2018 raven ridge GCN 5th Gen
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->5500m 5600m 5800m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA1 NaviX1 Zen 2
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rx680m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA2 NaviX2 Zen 3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->phoenix apu 1103
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 RDNA3 NaviX3 zen 4
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
==== AMDGPU Vulkan desktop ====
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Kaveri 290 290X, 260 260X
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 AMDGPU Vulkan
|-
| <!--Description-->R9 285 / R9 380 R9 380X Fury / Fury X
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->opengl 4 opencl 1 3rd Gen GCN architecture
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX470 RX460 RX480 RX580 polaris10
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 opengl 4 opencl 2 4th Gen GCN architecture vulkan 1.3
|-
| <!--Description-->RX460 RX560D polaris11
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 opengl 4 opencl 2 4th Gen GCN architecture vulkan 1.3
|-
| <!--Description-->RX580 polaris20
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 opengl 4 opencl 2 4th Gen GCN architecture vulkan 1.3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX 5000 5500 Navi 1x
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RNDA 1
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX 6000 Navi 2x
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RNDA 2 Mesa 21.3 decode av1
|-
| <!--Description-->RX6000
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX 7000
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 RNDA 3 navi
|-
| <!--Description-->RX7000
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->RX9070 rx 9060 XT
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2025 rdna4 navi
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2026 udna (aka rdna5)
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
|}
==== AMDGPU Vulkan mobile ====
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->R5E R7E
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->2016 bristol ridge GCN 3.0 IGP (Carrizo Mobile)
|-
| <!--Description-->Vega 8
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> GCN 5
|-
| <!--Description-->Vega iGP 3, 6, 8, 11
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2018 raven ridge - Graphics Core Next (GCN) 5th gen -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->5500m 5600m 5800m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA1 NaviX1 Zen 2
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rx680m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA2 NaviX2 Zen 3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->phoenix apu 1103
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA3 NaviX3 zen 4
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
fyi if a notebooks with two graphic cards, the integrated Intel card (id 0x7d) for low power usage and a discrete Radeon card (id 0x56) which should be used for GPU-intensive applications. By default the Intel card is always used
[https://wiki.archlinux.org/title/ATI Gallium Radeon HD] is not ported yet but is [https://www.phoronix.com/scan.php?page=news_item&px=Linux-5.9-AMDGPU-Stats really big] and complex so another solution may have to be [https://discuss.haiku-os.org/t/the-graphics-acceleration-can-of-worms/10515/5 found] like [https://discuss.haiku-os.org/t/vulkan-lavapipe-software-rendering-is-working-on-haiku/11363/10 vulkan] where support starts from very recent ISA GCN islands HD7000s cards only
*Vulkan
*Gallium
Vulkan software renderer allows to prepares the infrastructure for hardware rendering. Primary difference between software and hardware renderer is output to regular RAM vs GPU RAM, the rest is almost the same. It is possible to render to GPU RAM offscreen.
bare bones basics data flow
application,>>> api/opengl/vulkan>>>>, jit compiler, >>>>memory manger, >>>>gpu hardware
so you need to have a compiler that takes your api call/program/shaders/drawing commands and turns them into a program the gpu can render.
the vulkan to amd gpu compiler for shaders and textures is nearly os agnostic iirc as long as you have solid posix compliance
Unlike OpenGL, Vulkan does not depend on windowing system and it have driver add-on system with standardized API (Mesa also have OpenGL driver add-ons, but it have non-standard Mesa-specific API). OpenGL may need more work for windowing system related code at this point but developing Vulkan on real hardware is more strategic than developing OpenGL, since now Zink 3 running on Vulkan compensates for the lack of OpenGL support by giving performance similar to native accelerated OpenGL
RadeonGfx use client-server model with client-server thread pairs. For each client thread that calls 3D acceleration API, server side thread is created. If client thread terminates, server side thread also exit.
==Rough gfx comparison==
<pre>
Group 1
GeForce RTX 5090 5070 5060 5050
GeForce RTX 4090 4070 4060 4050
Group 2
GeForce RTX 2070
Radeon RX 7600
Quadro RTX 5000
Radeon PRO W6600
GeForce RTX 2060 12GB
Radeon PRO W7500
Quadro GP100
Radeon RX 6800S
GeForce RTX 3070 Laptop GPU
GeForce GTX 1080
GeForce RTX 3060 8GB
Quadro RTX 4000
Radeon Pro W5700
Radeon RX 6600
GeForce RTX 2080 (Mobile)
Radeon RX 7700S
Radeon RX 6700S
Radeon RX 6600S
Quadro RTX 5000 (Mobile)
GeForce GTX 1070 Ti
GeForce RTX 4050 Laptop GPU
Radeon Pro Vega 64X
Radeon RX 5700
Radeon RX Vega 64
GeForce RTX 2060
GeForce RTX 2070 Super with Max-Q Design
Group 3
Radeon RX 6600M
GeForce GTX 1070
Radeon RX 6650M
GeForce RTX 3060 Laptop GPU
Radeon RX Vega 56
Radeon RX 6700M
GeForce RTX 2080 with Max-Q Design
Radeon RX 6800M
GeForce GTX 980 Ti
Radeon R9 Fury
GeForce GTX 980
Quadro M5500
Radeon R9 390X
Radeon RX 580
Radeon RX 5500
Radeon RX 6550M
GeForce GTX 1660 Ti with Max-Q Design
GeForce GTX 780 Ti
GeForce GTX 970
Radeon R9 290X
Radeon RX 480
Radeon RX 5600M
Quadro RTX 3000 with Max-Q Design
Radeon R9 290X / 390X
Ryzen 5 4600HS with Radeon Graphics
Radeon R9 290
Radeon Pro 5500 XT
Radeon R9 M490 *
GeForce GTX 780
Radeon RX 6500M
Quadro M5500
GeForce GTX 1060 with Max-Q Design
Radeon RX 6500
Radeon RX 5300
Intel Arc A770M
GeForce GTX 1650 Ti
Radeon Pro 580X
Radeon RX 6400
GeForce RTX 2050
Ryzen 9 4900HS with Radeon Graphics
Radeon Ryzen 9 6900HS
GeForce GTX 980M
Quadro M5000M
Radeon RX 6300
GeForce GTX 1650 Ti with Max-Q Design
Radeon Pro 570
Ryzen 9 6900HS with Radeon Graphics
GeForce GTX 1050 Ti
Quadro M4000M
Radeon R9 280X 380X
GeForce GTX 1650 with Max-Q Design
GeForce MX570
Radeon R9 280X
Radeon R9 380
Radeon 780M
GeForce GTX 960
GeForce GTX 970M
Quadro M4000M *
GeForce GTX 680
Group 4
Radeon RX 6500M
Quadro M5500
Radeon Pro WX 7100
GeForce GTX 1060 with Max-Q Design
GeForce GTX 1650
Intel Arc A730M
Radeon HD 7970
Radeon R9 M395X
Radeon R9 M485X
Radeon R9 M480 *
Radeon R9 M295X
Radeon R9 M390X *
FirePro W7170M *
Radeon R9 M395
Radeon R7 370
Radeon RX 5500M
GeForce GTX 590
GeForce GTX 880M
GeForce GTX 950
Radeon R9 270X
GeForce GTX 660 Ti
GeForce GTX 760
GeForce GTX 780M
Quadro K5100M
GeForce GTX 680MX
Radeon HD 7870
GeForce GTX 965M
Quadro M3000M *
GeForce GTX 870M
Radeon R9 M290X
Radeon HD 8970M
Radeon Ryzen 7 7735U (680M), Radeon Ryzen 7 7735HS (680M 12C)
GeForce GTX 580
Radeon HD 6970
GeForce GTX 1050
GeForce GTX 680M
GeForce GTX 775M
GeForce GTX 1630
FirePro M6100
Radeon HD 7970M
Radeon R9 M390 *
GeForce GTX 750 Ti
Group 5
GeForce GTX 570
GeForce GTX 480
GeForce GTX 960M
Quadro M2000M *
Quadro K5000M
Quadro K4100M
GeForce GTX 770M
GeForce GTX 860M
GeForce GTX 675MX
GeForce GTX 950M
GeForce GTX 850M
Quadro M1000M
Radeon R9 M280X
Radeon HD 7950M *
GeForce GTX 560 Ti
Radeon HD 6870
GeForce GTX 470
GeForce GT 1030
GeForce MX330
Ryzen 5 PRO 5650GE with Radeon Graphics
Ryzen 7 5800HS
FirePro 3D V8800
GeForce MX250
Group 6
Radeon Pro WX 3200
Ryzen 7 PRO 5750G with Radeon Graphics
Radeon Ryzen 5 5600H
Ryzen 5 Pro 4650G with Radeon Graphics
Radeon Ryzen 7 5800U
Ryzen 7 7730U with Radeon Graphics
Radeon Ryzen 7 5825U
Radeon Pro WX 4150
Radeon Ryzen 5 PRO 4655G
Ryzen 5 4600G with Radeon Graphics
Radeon Ryzen 5 PRO 4655GE
GeForce GTX 485M
FirePro W6150M
Ryzen 7 5800U with Radeon Graphics
Ryzen 5 7530U with Radeon Graphics
Ryzen 7 4800U with Radeon Graphics
Radeon R9 M470
Ryzen 3 PRO 5350G with Radeon Graphics
Radeon RX Vega Ryzen 3 5300U
Ryzen 7 5825U with Radeon Graphics
Ryzen 5 PRO 4400G with Radeon Graphics
Radeon Ryzen 7 PRO 4750GE
Radeon Ryzen 7 4800U
FirePro V7900
Radeon HD 5970
Radeon Ryzen 7 7700X 8-Core
Radeon Ryzen 5 PRO 5650G
Radeon Ryzen 5 4400G
Radeon Ryzen 5 PRO 5650GE
Radeon RX 550X
FirePro V8800
Radeon RX Vega Ryzen 5 5500U
GeForce MX150
Quadro K3100M
Ryzen 7 PRO 5850U with Radeon Graphics
Radeon HD 6970M
Radeon R7 250X
Intel HD 5600
Ryzen 3 4300GE with Radeon Graphics
GeForce GTX 460
Ryzen 7 5700U with Radeon Graphics
Radeon Ryzen 5 7530U
Quadro K620
Ryzen 3 PRO 5350GE with Radeon Graphics
Intel Iris Pro P580
Intel UHD Graphics P630
Ryzen 5 4600H with Radeon Graphics
Ryzen 5 PRO 7530U with Radeon Graphics
Radeon HD 5870
Radeon HD 6870
Ryzen 7 4700G with Radeon Graphics
Ryzen 5 5600U with Radeon Graphics
Radeon HD 7770
Ryzen 3 Pro 4350G with Radeon Graphics
Radeon Ryzen 5 5625U
GeForce GTX 745
Radeon Ryzen 7 4850U Mobile
Radeon Ryzen 3 PRO 7330U
Quadro M600M
Radeon Ryzen 5 5500U
Ryzen 5 5560U with Radeon Graphics
Ryzen 7 4800H with Radeon Graphics
Group 7
GeForce 945M
Ryzen 5 PRO 4650GE with Radeon Graphics
FirePro M5100
Radeon Ryzen 5 5600U
Radeon Ryzen 5 PRO 4500U
GeForce GTX 580M
Ryzen 7 PRO 5875U with Radeon Graphics
Ryzen 3 5300GE with Radeon Graphics
Radeon R9 M385
Quadro 5000M
Radeon Ryzen 7 4700U
Ryzen 5 PRO 5650U with Radeon Graphics
Radeon Ryzen 7 PRO 4750U
Ryzen 7 4700U with Radeon Graphics
Ryzen 7 PRO 4750U with Radeon Graphics
FirePro V7800
Radeon R9 350
Ryzen 3 4300G with Radeon Graphics
Radeon Vega 11 Ryzen 5 PRO 3350G
Radeon Ryzen 5 5560U
GeForce GTX 460 SE
Radeon Pro W5500M
Radeon Vega 11 Ryzen 5 PRO 3400G
Ryzen 5 5500U with Radeon Graphics
Ryzen 5 PRO 4500U with Radeon Graphics
GeForce GT 645
GeForce GTX 765M
Radeon R9 M385X
Ryzen 5 5625U with Radeon Graphics
Ryzen 3 PRO 7330U with Radeon Graphics
Radeon HD 5850
Radeon Vega 11 Ryzen 5 PRO 2400G
Intel Iris Pro 580
Radeon HD 6850
Intel Iris Xe MAX
Radeon Ryzen 7 PRO 5875U
Radeon Ryzen 5 7600 6-Core
GeForce GTX 470M
Ryzen 3 5300G with Radeon Graphics
GeForce GTX 670MX
Radeon RX 640
Qualcomm Adreno Gen 3
Radeon R7 450
GeForce GTX 675M
Radeon Pro WX 4130
Intel Iris Xe MAX 100
Quadro 5000
Radeon RX 570X
Radeon HD 7700-serie
Ryzen 5 4600U with Radeon Graphics
Ryzen 3 PRO 4350GE with Radeon Graphics
Radeon Vega 8
Group 8
GeForce MX230
GeForce GTX 765M
Quadro K4000M
Iris Pro Graphics P580 *
Iris Pro Graphics 580 *
GeForce GTX 645
Quadro M520
GeForce GTX 570M
GeForce MX130
Radeon RX 540
Radeon Ryzen 5 PRO 5675U
Intel UHD Graphics 770
Radeon RX Vega 11 Ryzen 7 3750H
Radeon Vega 11 Ryzen 5 PRO 3400GE
Radeon HD 5850
GeForce GTX 675M
GeForce GTX 580M
Radeon HD 6990M
Radeon R9 M385X *
Radeon R9 M470X *
Radeon R9 M470 *
Radeon R9 M385 *
Radeon R9 M380 *
Radeon R9 M370X
Radeon R9 M275
Radeon HD 7770
GeForce GTX 485M
GeForce GTX 460 768MB
Radeon HD 6790
GeForce GTX 285M SLI
Quadro K3100M
FirePro W5170M *
GeForce GTX 670MX
Quadro 5010M
GeForce GTX 760M
GeForce GTX 670M
Group 9
GeForce 940MX *
Maxwell GPU (940M, GDDR5)
FirePro M8900
Radeon HD 6970M
Radeon R9 M270
Radeon HD 8870M
Radeon HD 7870M
Quadro K3000M
GeForce GTX 570M
FirePro M6000
FirePro M5100
Quadro K2100M
Radeon HD 5770
GeForce GTX 550 Ti
GeForce GTX 280M SLI
Radeon HD 6950M
Radeon R7 250
GeForce GT 755M
GeForce GTX 660M
GeForce 845M
Radeon HD 8850M
Radeon R9 M365X
Radeon R9 M265X
Ryzen 5 PRO 4400GE with Radeon Graphics
FirePro W5130M *
Radeon Vega 8 Ryzen 5 3500U
Radeon HD 7850M
Radeon HD 8790M
FirePro W4170M
FirePro W4190M
FirePro W4100
Radeon Vega 6 Ryzen 3 3300U
Quadro 4000M
GeForce GTX 470M
GeForce GTX 480M
GeForce GT 750M
Iris Pro Graphics 6200
Quadro K1100M
GeForce 940M
Radeon R9 M375
GeForce 930MX *
Radeon R7 M380 *
Radeon R7 M370
Quadro M600M *
GeForce GT 650M
Quadro K620M
GeForce 840M
Radeon R7 M275DX
GeForce GT 745M
Radeon HD 7770M
GeForce GTX 560M
Radeon R7
Iris Pro Graphics 5200
GeForce GT 740M
GeForce 930M
Radeon HD 4850
Group 10
Iris Graphics 550 *
GeForce 830M
Iris Graphics 540
Quadro M500M *
Quadro K2000M
GeForce GTS 450
GeForce GTX 260M SLI
GeForce GT 735M
Mobility Radeon HD 5870
GeForce 825M
Quadro 5000M
FirePro M4000
FirePro M7820
Radeon HD 6870M
GeForce 9800M GTX SLI
Radeon HD 8830M *
Radeon HD 8770M
Radeon R7 M260X
GeForce GTX 460M
GeForce 920MX *
GeForce GT 730M
Radeon HD 7750M
GeForce GT 645M *
FirePro M4100
Radeon HD 8750M
Radeon R6 A10-9600P 4C+6G
Quadro 3000M
Radeon R7 M270
Radeon R7 M265
Quadro FX 3800M
GeForce GTX 285M
Mobility Radeon HD 4870
GeForce GT 640M
Radeon R7 (Kaveri)
Radeon R8 M365DX
Radeon R7 M460 *
Radeon HD 7730M
Radeon R7 M360
GeForce GTX 280M
Radeon HD 8690M
Quadro FX 3700M
Radeon R7 M340
GeForce 920M
Radeon R6 M340DX
HD Graphics 530
HD Graphics P530
Tegra X1 Maxwell GPU
Radeon R7 M260
Radeon R6
Group 11
Mobility Radeon HD 4860
FirePro M7740
Mobility Radeon HD 4850
GeForce GTX 260M
GeForce 9800M GTX
Quadro FX 2800M
Radeon HD 8670D
Radeon HD 7690M XT
FirePro M5950
GeForce GT 640M LE
Radeon R6 (Kaveri)
Radeon HD 8650M *
Radeon HD 8730M
Radeon HD 6770M
GeForce GT 635M
GeForce GT 555M
Radeon R7 A10 PRO-7800B
Radeon HD 5670
Mobility Radeon HD 5850
Radeon HD 6850M
Quadro 2000M
GeForce 9800M GT
GeForce 8800M GTX
Quadro FX 3600M
GeForce GT 445M
GeForce GTS 360M
Group 12
GeForce GT 240
Radeon R7 PRO A10-9700
Radeon HD 7690M
HD Graphics 5600
Radeon HD 8570D
Radeon HD 8670M
Radeon R6 M255DX
Radeon HD 7660D
Radeon HD 6750M
Quadro K1000M
GeForce GT 550M
Radeon HD 8590M *
GeForce GTS 260M
GeForce GTS 160M
GeForce 9800M GTS
GeForce GT 430
Radeon HD 6830M
Mobility Radeon HD 5830
Radeon HD 6730M *
GeForce 9800M GS
Mobility Radeon HD 4830
Mobility Radeon HD 5770
Radeon HD 6570M
Radeon HD 8650G
Radeon HD 7670M
GeForce GT 630M
Radeon HD 7560D
GeForce GTS 150M *
Radeon R5 M335
Radeon R5 M430 *
Radeon R5 M330
Radeon R5 M255
Radeon Vega 3
Quadro 1000M
GeForce 820M
FirePro W2100
HD Graphics 520 620
Iris Graphics 6100
GeForce GT 720M
GeForce 8800M GTS
Radeon R5 M240
Radeon R5 M320 *
Radeon R5 M230
Radeon R5 M315 *
Mobility Radeon HD 5750 *
Radeon HD 8570M
Radeon R7 PRO A10-8850B
HD Graphics 6000
Quadro K610M
Radeon HD 8550M
Iris Graphics 5100
GeForce GT 540M
Mali-T880 MP12 *
Radeon HD 8610G *
Radeon HD 6650M
HD Graphics 4600
Mobility Radeon HD 5730
HD Graphics 5500
Radeon R5 (Carrizo) *
Radeon R5 (Kaveri)
FirePro M5800
NVS 5400M
GeForce 710M
Radeon HD 7660G
GeForce GT 435M
HD Graphics 5000
Quadro K510M *
Radeon HD 5570
Radeon HD 6550M
Radeon HD 7590M *
GeForce GTS 350M
GeForce GTS 250M
Radeon HD 6630M
Radeon HD 7650M
FirePro M2000
Radeon HD 7570M
Radeon HD 7630M
Quadro FX 1800M
Mobility Radeon HD 5650
Radeon HD 8510G *
Radeon HD 6530M
Radeon HD 8550G
Quadro K500M *
GeForce GT 625M *
GeForce GT 620M
GeForce GT 525M
Radeon HD 6550D *
Radeon HD 7610M
Radeon HD 7620G
Radeon HD 8470D
Radeon HD 7640G
Adreno 530
GeForce ULP K1 (Tegra K1 Kepler GPU)
HD Graphics 4400
HD Graphics 510 515 *
NVS 5200M
Mobility Radeon HD 565v
Radeon HD 7550M
Mobility Radeon HD 4670
GeForce GT 425M
GeForce 9700M GTS
Radeon HD 6645G2 *
Quadro FX 2700M
GeForce GT 335M
Radeon HD 7600G
Mobility Radeon HD 3870
Mobility Radeon HD 4650
GeForce GT 220
GeForce GT 420M
Radeon HD 7530M *
Mobility Radeon HD 3850
GeForce GT 330M
Quadro FX 880M
Quadro NVS 5100M
GeForce GT 240M
Radeon HD 7490M *
HD Graphics 5300
Radeon HD 7510M *
GeForce Go 7950 GTX
Quadro FX 3500M
GeForce 8700M GT SLI
GeForce 9700M GT
GeForce GT 230M
Mobility Radeon HD 550v
Radeon HD 7480D
HD Graphics 4000
Mali-T760 MP8
Radeon HD 6620G
HD Graphics (Broadwell) *
Adreno 430
Radeon R5 (Beema/Carrizo-L)
Radeon R4 (Beema) (Kaveri)
HD Graphics (Skylake) *
Radeon HD 6450 GDDR5
Radeon HD 7500G
Radeon HD 8450G
Radeon HD 7470M
Radeon HD 6490M
Radeon HD 8400
Mali-T880 MP4
GeForce GT 520MX
Radeon HD 7520G
GeForce GT 325M
GeForce Go 7800 GTX SLI
GeForce 8600M GT SLI
GeForce Go 7900 GS SLI
GeForce GT 130M
NVS 4200M
GeForce Go 7900 GTX
Quadro FX 2500M
Radeon HD 8350G
Radeon HD 8330
GeForce 9650M GS
GeForce 9650M GT
Radeon R3 (Mullins/Beema)
GeForce 8700M GT
Quadro FX 1700M
Quadro FX 1600M
GeForce Go 7800 GTX
GeForce Go 7900 GS
Quadro NVS 320M
Quadro FX 1500M
GeForce 9600M GT
GeForce GT 220M
Quadro FX 770M
GeForce GT 120M
Radeon HD 7450M
GeForce 610M
GeForce 705M
Mali-T760 MP6
Radeon HD 6470M
FirePro M3900 *
GeForce GT 520M
Radeon HD 7420G
Mobility Radeon HD 3670
Mobility FireGL V5725
PowerVR GX6450
Adreno 420
HD Graphics (Haswell)
Radeon HD 6520G
Radeon HD 8310G *
GeForce 320M
GeForce GT 320M
Mobility Radeon HD 2600 XT
Mobility Radeon X1900
Mobility Radeon X1800XT
Mobility Radeon X1800
GeForce Go 6800 Ultra
GeForce Go 7800
GeForce 9600M GS
GeForce 9500M GS
Radeon HD 7400G
Radeon HD 6480G *
Mobility Radeon HD 2700
GeForce GT 415M
GeForce 410M
Radeon HD 7370M
Adreno 418
HD Graphics (Cherry Trail)
Radeon HD 6370M
Radeon HD 8280
Mobility Radeon HD 5470
Radeon HD 6450M
Radeon HD 7430M *
Mobility Radeon HD 3650
Mobility FireGL V5700
Mobility Radeon HD 5145
Mobility Radeon HD 545v
Radeon R6 (Mullins) *
Radeon HD 8240
Radeon HD 8250
Mobility Radeon HD 4570
Quadro FX 570M
Mobility Radeon HD 5450 *
Radeon R2 (Mullins/Beema) *
GeForce 8600M GT
Mobility Radeon HD 2600
HD Graphics 3000
Quadro FX 380M
GeForce 310M
GeForce G210M
NVS 3100M
GeForce 405M
GeForce 315M
GeForce Go 7600 GT
GeForce 9500M G
GeForce 8600M GS
NVS 2100M
GeForce Go 7700
GeForce Go 6800
Quadro FX Go 1400
Mobility Radeon X800XT
Radeon HD 6430M *
Radeon HD 6380G *
Mobility Radeon HD 5430
Radeon HD 8210
Mobility Radeon HD 540v
Mobility Radeon HD 4550
HD Graphics 2500
HD Graphics (Ivy Bridge)
Quadro NVS 310
Radeon HD 7350M *
Radeon HD 6350M *
Mobility Radeon HD 4530
Mobility Radeon HD 4350
Radeon HD 4350
GeForce 305M
Mobility Radeon X1700
Mobility FireGL V5250
Mobility Radeon X2500
GeForce Go 7600
Quadro NVS 300M
Mobility Radeon X800
Mobility Radeon X1600
Mobility FireGL V5200
Mobility Radeon 9800
GeForce Go 6600
Mobility Radeon X1450
Mobility Radeon X700
Mobility FireGL V5000
GeForce G 110M
Quadro NVS 295
Radeon HD 6330M *
Mobility Radeon HD 4330
GeForce 8400M GT
Quadro NVS 140M
HD Graphics 2000
GeForce 9500M GE *
GeForce 9400M (G) / ION (LE)
HD Graphics (Sandy Bridge) *
Adreno 330
PowerVR G6430
PowerVR GX6250
PowerVR G6400
HD Graphics (Bay Trail)
Mali-T628 MP6
Mali-T760 MP4
Chrome9HD *
Radeon HD 7340
Radeon HD 6320 *
Radeon HD 7310
Radeon HD 6310 *
Radeon HD 8180
Mobility Radeon HD 3470
GeForce 9300M G
ION 2 *
GeForce 9300M GS
Quadro FX 370M
Quadro NVS 160M
GeForce 9200M GS
Mobility Radeon HD 3450
Mobility Radeon HD 3430
Mobility Radeon HD 3410
Mobility Radeon HD 2400 XT
Radeon HD 4270
Radeon HD 4250
Radeon HD 7290 *
Radeon HD 6290 *
Radeon HD 4200
Graphics Media Accelerator (GMA) HD Graphics
Radeon HD 6250
Quadro NVS 150M
Quadro FX 360M
Mobility Radeon X1350
Mobility Radeon X1400
GeForce 9100M G
GeForce 8400M GS
Quadro NVS 135M
Mobility Radeon HD 2400
Radeon HD 3200
Radeon HD 4225 *
Radeon HD 4100 *
SGX554MP4
Mali-T628 MP4
Mobility Radeon HD 3400 *
Radeon HD 3100
GeForce 8400M G
Mali-T860 MP2
Quadro NVS 130M
GeForce 8200M G
Graphics Media Accelerator (GMA) 4700MHD
Graphics Media Accelerator (GMA) 4500MHD
Graphics Media Accelerator (GMA) 4500M
Mali-T604 MP4
GeForce Go 7400
Quadro FX 350M
Quadro NVS 120M
GeForce Go 7300
GeForce Tegra 4 *
PowerVR G6200
Adreno 405 *
Quadro NVS 110M
Mobility Radeon X600
Mobility FireGL V3200
Mobility FireGL V3100
Mobility Radeon HD X2300
Mobility Radeon 9700
Mobility FireGL T2e
Mobility Radeon X1300
GeForce4 4200 Go
Mobility Radeon 9600
Mobility FireGL T2
Mobility Radeon 9550
GeForce Go 7200
GeForce Go 6400
Mobility Radeon X300
GeForce Go 6250
GeForce Go 6200
GeForce FX Go 5700
Quadro FX Go 1000
GeForce FX Go 5600 / 5650
Radeon Xpress X1270
Radeon Xpress X1250
Radeon Xpress X1200
Graphics Media Accelerator (GMA) X3100
Mali-T624
Adreno 320 *
Mali-T760 MP2
Mali-T720 MP4
Mali-450 MP4
Graphics Media Accelerator (GMA) 3650 *
GeForce 7190M *
GeForce 7150M
Radeon Xpress 1150
GeForce Go 6150
GeForce Go 6100
GeForce 7000M
Graphics Media Accelerator (GMA) 3600 *
Mobility Radeon 9200
Mobility FireGL 9000
GeForce FX Go 5200
Mobility Radeon 9000
GeForce 4 488 Go
GeForce 4 460 Go
GeForce 4 440 Go
GeForce 4 420 Go
Graphics Media Accelerator (GMA) 3150
Graphics Media Accelerator (GMA) 950
SGX545 SGX544MP2 SGX543MP2 *
Mali-T720 MP2
Mali-T720
Adreno 302 304 305 306
Mobility Radeon 7500
Mobility FireGL 7800
Graphics Media Accelerator (GMA) 900
Radeon Xpress 200M
Radeon Xpress 1100
Mirage 3+ 672MX
Mirage 3 671MX
Mali-400 MP4 *
GeForce ULP (Tegra 3) *
VideoCore-IV *
Adreno 220 225*
Vivante GC1000+ Dual-Core
Mali-400 MP2 *
GeForce ULP (Tegra 2) *
Graphics Media Accelerator (GMA) 600 *
SGX540 *
Graphics Media Accelerator (GMA) 500
Adreno 205 *
Adreno 203 *
GC800 *
SGX535
SGX531
SGX530
Adreno 200 *
Mali-200 *
GeForce 3 Go *
GeForce 2 Go 200 / 100
Mobility Radeon 9100 IGP
Mobility Radeon 9000 IGP
Mobility Radeon M7
Mobility Radeon M6
Chrome9 HC
Extreme Graphics 2
Mobility Radeon 7000 IGP
Radeon IGP 340M
Radeon IGP 320M
S3G UniChrome Pro II
S3G UniChrome Pro
Castle Rock
Mirage 2 M760
Mirage M661FX
S3 Graphics ProSavage8
Mobility 128 M3
SM502 *
</pre>
Kernel-space drivers like '''radeon''' (older AMD driver for older GPUs), '''amdgpu''' (newer driver for newer GPUs, allows using a few new features), i915, nouveau and a few others. They are what handles the gory details of talking to the GPU itself (writing to proper registers, handling its memory directly, configuring outputs, and so on). Unfortunately most of what they're exposing can be only consumed by a single user of that GPU, which is why we need...
DRM and DRI (Direct Rendering Manager/Infrastructure) controls access to the GPUs, provides interfaces for talking to the GPU concurrently by multiple apps at once (without them breaking each other) and lets the system perform the most basic tasks like setting proper resolution and such if no userspace apps understand how to talk to the GPU exposed. DRI and DRM expose the GPU interfaces mostly as-is, not in a "vendor-neutral" portable way - if you don't have an application developed specifically for a GPU you have, it won't work.
"let's create a vendor-neutral interface for graphics so that apps can ignore the GPU-specific bits and get right to the drawing!" - which is what OpenGL is. User-space drivers implement the OpenGL specification and expose it as an OpenGL library to apps (like games, browsers, etc) instead of the GPU. Mesa is the most popular collection of open-source user-space drivers and contains a few user-space drivers for different GPU families: '''radeonsi''' for most modern AMD GPUs (and '''r600g''', r300g and others for older ones), '''i915/i965''' for old/new Intel GPUs and '''nouveau''' for Nvidia GPUs.
There's also Gallium, which is a bunch of utilities and common code shared among these drivers - if certain things can be done once and work everywhere, they'll land in Gallium and benefit all the drivers. Most Mesa drivers use Gallium (radeonsi, nouveau, software renderers), some don't (intel after gma950).
Displaying 2D windows supports device-specific 2D drivers as well, but nowadays most of these are no longer needed as the modesetting can handle most hardware on its own. As the DRM/DRI got some additional interfaces for what used to be hardware-specific (setting resolutions, refresh rates, etc) and software requiring accelerated 2D drawing was optimized OpenGL-based renderers, dedicated 2D acceleration is slowly going away. Since around 2012, the 3D part of the graphics card deals with 2D operations.
Modern GPUs can also decode video!? There's VDPAU (NVIDIA & AMD GPUs) and VA-API (AMD & Intel GPUs) that can also talk to the GPU exposed via DRM/DRI and issue proper commands to decode/encode a given video stream. Those drivers are GPU-specific too.
So let's say you have some example GPUs, here's how example stacks could look like:
* AMD Radeon HD8750: amdgpu -> DRM/DRI -> Mesa (radeonsi)
* AMD Radeon HD4850: radeon kernel driver -> DRM/DRI -> Mesa (r600g) -> games/apps/etc.
* NVIDIA GeForce 460: nouveau kernel driver -> DRM/DRI -> Mesa (nouveau) -> games/apps.
* Intel GMA950: i915 kernel driver -> DRM/DRI -> Mesa (i945) -> games/apps.
{| class="wikitable sortable" width="90%"
! width="15%" | Description
! width="15%" | Analog Output
! width="15%" | Digital Output
! width="15%" | Laptop LCD
! width=30%" | Comments
|-
| <!--Description-->Fudomi GC888A
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->1080p 100in throw projector
|-
| <!--Description-->Vamvo VF320 (720P)
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->720p 90in
|-
| <!--Description-->Happrun H1
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->1080p 90in
|-
| <!--Description-->Umbolite Magcubic HIPPUS HY320 Mini
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->720p 100in
|-
| <!--Description-->Zentality A10 Plus
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->720p 110in
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->nexigo nova mini
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->nebula mars 3
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->epson lifestudio flex plus portable projector
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->dangbei freedo
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->benq gv50
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
Unless your computer uses a Firewire chipset manufactured by Texas Instruments, FireWire interfaces are likely to act buggy.
AROS is unlikely to ever support FireWire.
Bluetooth is similarly unlikely to be ever supported due to huge cost to be certified.
No, x86 PCMCIA card.resource at the moment. Writing card.resource would be a similar amount of work to writing a typical driver. However, it might be complicated by having to support a variety of PCMCIA-controller chipsets like TI PCI1225, PCI1410, PCI1420, 1450, PCIxx12 and O2, etc. m68k card.resource does not really have many higher level functions, most functions are really simple or poke Gayle registers directly. only exception is CopyTuple(). Amiga card.resource has one significant flaw: it's single-unit. would need card.resource and pccard.library. There was talk in the past of designing a new API for PCMCIA because card.resource only supports one slot, but since most modern laptops only have one slot anyway, I think it might be worthwhile to implement card.resource as-is (at least as a first step). pccard.library would be trivial to port. So, a new API is needed.
3i0ijmx1zli5417isamjhlu68bxomid
4641140
4641138
2026-06-25T16:43:02Z
Jeff1138
301139
4641140
wikitext
text/x-wiki
Google translation into [http://translate.google.com/translate?hl=en&sl=auto&tl=de&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support German], [http://translate.google.com/translate?hl=en&sl=auto&tl=fr&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support French], [http://translate.google.com/translate?hl=en&sl=auto&tl=nl&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Dutch], [http://translate.google.com/translate?hl=en&sl=auto&tl=it&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Italian], [http://translate.google.com/translate?hl=en&sl=auto&tl=es&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Spanish], [http://translate.google.com/translate?hl=en&sl=auto&tl=hi&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Hindi],
[http://translate.google.com/translate?hl=en&sl=auto&tl=zh-CN&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Chinese Simplified],
[http://translate.google.com/translate?hl=en&sl=auto&tl=pl&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Polish],
[http://translate.google.com/translate?hl=en&sl=auto&tl=ru&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Russian],
{{ArosNav}}
[[#Audio Chipsets]]
[[#Graphic GFX Chipsets]]
[[#Rough gfx comparison]]
[[#]]
==x86 Native Environment==
AROS should run on almost any i386 PC hardware so long as the CPU is newer than an i486, and has a "Floating Point Unit (FPU)". Ideally around 700Mhz and above with at least 256MB of memory is recommended for desktops and around 1GHz and at least 256MB for laptops/notebooks/netbooks. For web browsing, etc above 1GB is usually needed and offers the option to run web browsers, media players and other hard disk heavy usage from RAM: disk.
Motherboards supported
* Most Intel mobos are supported (Skt 775 is ok but newer is better) - additional pci / pci-e cards may be needed for networking, audio, etc
* AMD based socket 939 am2 am2+ am3+, fusion and am4 ryzen based systems work but additional pci / pci-e cards may be needed
Supported graphics cards (gfx)
* Nvidia 2D and 3D 2005-2017.
64bit AROS Nouveau covers '''2D''' 8xxxgs and higher to GTX 900s and '''3D''' from .
32bit AROS supports '''2D''' from TNT through to fermi gtx5xx and '''3D''' acceleration fx5xxx to gtx4xx.
* Intel GMA 2D and 3D 2006-2009.
'''2D''' for many old netbooks and motherboards. '''3D''' for many early netbooks and motherboards
* AMD/ATI 2D only and '''no 3D'''. 1999-2005.
Desktop ie external monitor support only (no laptop internal support) for very early Radeon 7000 through to x600. Experimental 2D version for up to HD3xxx came later
* VESA 2D fallback modes for all graphic cards (GPUs) and with [http://www.youtube.com/watch?v=HKCHZFYj9Kk screen dragging].
It's worth noting however that support isn't guaranteed. Nor will potential power of a card reflect its performance under AROS.
Sound wise there are
* HDaudio support for onboard intel and AMD netbooks, ultrabooks, notebooks and motherboards (2005 to 2020)
* some AC97 codec support for very old motherboards and laptops (ie pre 2004)
* PCI and some PCI-E C-Media CMI8738 for desktop plugin cards
* PCI Creative Soundblaster EMU10K1 cards [http://amigaworld.net/modules/news/article.php?storyid=2512 SBLive]
* PCI semi professional some early VIA Envy24 desktop sound cards
* PCI Sound Blaster 128 aka SB16
Supported [http://en.wikibooks.org/wiki/Aros/Platforms/x86_Network_support network] which could be desktop, laptop, etc
* PCI-E Realtek rtl8169 which also includes the rtl8111 and rtl8110
* PCI Realtek rtl8139 and includes rtl8101 and rtl8100
* PCI intel pro100
* Broadcom 44xx 10/100 integrated in laptops around 2005
* VIA 10/100
* 3com Etherlink 10/100
* Realtek rtl8029 10mbit
Wireless wifi
* atheros 5000 wireless
*realtek 8187 usb
It is very hard to recommend a completely supported motherboard because as soon as newer motherboards arrive so their features change subtly, often introducing non supported parts like ethernet and audio. It is a moving target.
* mini-itx motherboard will only get you 1 pci or pci-e slot
* micro mATX or uATX will have more, typically 2 pci-e or pci slots which helps if any onboard features are not supported.
* full atx will have more slots available
'''N.B''' It is frustrating when a piece of hardware is not supported. Hardware documentation can run to over 100 pages and a lot of hardware do not have any public documentation anyway. Chips from different manufacturers for sound, graphics, SATA, etc. vary just as much, unless they follow a standard such as [https://github.com/acidanthera/AppleALC/wiki/Supported-codecs HDAudio codecs], AHCI etc.
Coding drivers is a far cry from Hello World programs or even a port of existing software. If you do actually want to try then get a hold of documentation on the relevant hardware and start there. Alternatively you could try to find some '''BSD''', MIT or MPL licence drivers as a point of reference. Please , do not think you can just adapt strings in a driver for different strings, it does not work that way. You will '''need''' to start from scratch for each new bit of hardware. Device driver programming require '''embedded''' skills, like manipulation of bits within registers, good debugging skills, dealing with interrupts, lots of patience, etc.
The following specific chipsets and drivers are also available - use Tools/PCITool to confirm Vendor and Product IDs - Please let us know any mistakes or any information to be added, to this General Chat list on [https://arosworld.org/ AROS World]
: Brief Timeline
: 2000-12-06 HIDD first mouse.hidd completed ([http://msaros.blogspot.com/ Michal Schulz])
: 2001-03-31 BOOT first boot from floppy disk with IDE device
: 2001-10-30 BOOT first cd bootable version
: 2002-01-27 HIDD first pci.hidd added (Michal Schulz)
: 2002-04-13 BOOT software HDToolBox added ()
: 2003-04-03 HIDD vesa2.hidd graphic modes added ()
: 2004-03-08 HIDD new pci and ata (pata) devices worked on (Michal Schulz)
: 2004-03-17 HIDD nVidia 2D driver appears (Michal Schulz)
: 2005-01-05 AHI AHI v6 audio system ported (Martin Blom)
: 2005-01-06 AHI SBLive SoundBlaster Live driver ported (Georg Steger)
: 2005-02-04 AHI AC97 playback only driver added (Michal Schulz)
: 2005-06-27 NIC amiTCP stack ported with 3com, NE2000, prism2 drivers (Neil Cafferkey)
: 2005-08-25 NIC nForce2 support added (Michal Schulz)
: 2005-12-24 NIC Intel Pro100 network driver added (Neil Cafferkey)
: 2006-03-25 HIDD ATI radeon 2D driver added (Michal Schulz)
: 2007-03-06 HIDD vesa 1.0 video driver added (Pavel Fedin)
: 2007-03-08 HIDD dospackets and FAT filesystem (Rob Norris)
: 2007-03-21 HIDD usb initial commit (Michal Schulz)
: 2007-10-01 BOOT Installer added (Neil Cafferkey)
: 2007-11-29 PORT 64bit x86 added (Michal Schulz)
: 2008-04-12 BOOT GRUB2 added (Alain Greppin and Nick Andrews)
: 2008-08-26 NIC RTL8139 added ([http://kalamatee.blogspot.com/ Nick Andrews])
: 2008-10-22 PORT to SAM440ep (ppc) (Michal Schulz)
: 2009-02-25 PORT to efika (ppc) (Michal Schulz)
: 2009-05-18 HIDD poseidon usb2.0 stack ported to AROS (Chris Hodges)
: 2009-11-18 NIC RTL8169 network driver arrived (Nick Andrews and [http://pagesperso-orange.fr/franck.charlet/oldnews.html Franck Charlet])
: 2009-12-23 AHI HDAudio based Atom CPU and netbook audio driver arrived (Davy Wentzler)
: 2010-03-09 BOOT USB pendrive stick booting available (Neil Cafferkey)
: 2010-05-26 HIDD Intel GMA900 2D graphics card support (Michal Schulz)
: 2010-09-03 NIC Wireless PCI based NIC arrived (Neil Cafferkey)
: 2011-04-30 HIDD Nvidia 2D and 3D nouveau graphics card support (Deadwood)
: 2011-08-30 HIDD Radeon 2D enhanced AMD driver arrives (Bearsoft)
: 2011-09-17 NIC Wireless USB realtek arrives (Neil Cafferkey)
: 2011-12-09 HIDD Intel 945G 3D Gallium graphics support (Sami)
: 2013-02-25 AHI AC97 VIA 686 audio support (Davy Wentzler and Neil Cafferkey)
: 2013-03-31 PORT early Raspberry PI native support (Nik Andrews)
: 2014-01-16 AHI Envy24 audio chipset support (Davy Wentzler and Neil Cafferkey)
: 2017-02-17 PORT Symmetric MultiProcessing smp added for x86 64bit (Michal Schulz)
: 2018-10-20 PORT Big Endian ARM
: 2021-11-26 NIC Broadcom 44xx ethernet (Neil Cafferkey)
: 2023-01-12 NIC Nvidia MCP61 ethernet (Neil Cafferkey)
: 2025-11 HIDD xHCI USB3 and isoc (Nik Andrews)
[[#top|...to the top]]
===Audio Chipsets===
'''If sound beeps in AHI prefs after Music set then some support is there. Select more than one channel for multiple audio streams, set frequency up to 44 kHz or higher and set the volume if not already set. Ensure you set the music unit 0 to 3 which allows the extra features of the audio card like microphone, line-out, etc).'''
====1996-2000 sb128.audio aka SB16 PCI====
*2021 5.27
as per CREATIVE's website, the model number is the first two digits on the front and first two digits on the back. my card says CT4810 and 161TK110B 995; this translates to CT4816 as the model.
The original AudioPCI 3000 card with the ES1370 had a master clock crystal for 44.1 kHz (22.5792 MHz), used an AKM codec (AK4531, non-AC97) and had 4 channel output; Creative later modified the design with a crystal for 48 kHz (24.576 MHz) and Sigmatel AC97 codec (a CT4700 SB128 with a CT5507 chip, AK4531, 22.5792 MHz crystal and TDA7360 speaker power amp). The issue with these cards involved never quite eliminate the effects of resampling on the 64V, it also shows signs of undersized coupling caps. These Ensoniq cards automatically engaged headphone amplifier (with a 4565 opamp).
Porting involved [http://repo.or.cz/w/AROS.git/commit/b60abd12967144a844980c422ea9e99c056eabca 40897], [http://repo.or.cz/w/AROS.git/commit/b7d6511fca6430a63fbaaa390b4f51bf0203a460 40898 configure], [http://repo.or.cz/w/AROS.git/commit/f51034cd22759a4ec3a2547bddb3a7169d956eaa 40900 bugs], [http://repo.or.cz/w/AROS.git/commit/4f43fc38e3489ea45d12b7b5ba6fff50b69c5746 40901 further bugs], [http://repo.or.cz/w/AROS.git/commit/d23c78aec75f049484b6916d27b6804ce858bb2c 40913 memory IO fixes], [http://repo.or.cz/w/AROS.git/commit/d256860fe3035016952e88d143c6f2611997f2f3 40914 irq fix].
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| Ensoniq AudioPCI 1000
| 0x1274
| 0x5000
|
| {{unk}}
| {{unk}}
| untested - es1370 (u?) AK4531 (u?)
|-
| Ensoniq AudioPCI
| 0x1274
| 0x5000
| 0x00
| {{yes}}
| {{maybe}}
|
|-
| CT4700 Sound Blaster PCI 64 (audioPCI 3000)
| 0x1274
| 0x5000
| 0x7c
| {{yes}}
| {{maybe}}
| works - opamp JRC4565(u?) [http://en.wikipedia.org/wiki/Ensoniq_ES1370 es1370] (u?)
|-
| CT4750 Sound Blaster 64/PCI
|
|
|
| {{unk}}
| {{unk}}
| untested - 4565-1056W (u1) stac9708t(u2) [http://arstechnica.com/civis/viewtopic.php?f=6&t=916891 ct5880-dcq] (u3) 24wc012 (u4)
|-
| CT4751 (SB128PCI)
| 0x1274
| 0x8001
|
| {{unk}}
| {{unk}}
| untested - [http://en.wikipedia.org/wiki/Sound_Blaster#Ensoniq_AudioPCI-based_cards es1371] (u?)
|-
| CT4810 Creative AudioPCI64V
| 0x1274
| 0x1371
| 0x06
| {{yes}}
| {{maybe}}
| works
|-
| CT4811 (SB Vibra 128)
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4812 (Vibra 128)
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4813
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4815
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4816 es1373 (vibra 128)
|
|
|
| {{unk}}
| {{unk}}
| untested but this card has creative's ES1373 as the main chip(U1). it is also different from the other CT4810 (vibra128) in that it does not have a second chip in U2 position. Also there is only one jumper JP1 (2X3).
|-
| CT5801 HP
|
|
|
| {{unk}}
| {{unk}}
| untested - es1373 (u3)
|-
| CT5803 Gateway
| 0x1274
| 0x1371
| 0x08
| {{yes}}
| {{maybe}}
| works 4565-0005b jrc (u1) 4297a-jq ztae0c0002 (u2) es1373 (u3)
|-
| CT4740
| 0x1274
| 0x1371
| 0x08
| {{yes}}
| {{yes}}
|
|-
| CT5805 Compaq OEM Premier Sound Presario 7
|
|
|
| {{unk}}
| {{unk}}
| untested - es1373 (u3)
|-
| CT5806 (Sound Blaster AudioPCI 128D)
|
|
|
| {{unk}}
| {{unk}}
| untested - 4297A-JO EP (u?) ZTAPWC9933 (u2) es1373 (u3)
|-
| CT5807 Dell OEM Dimension 8100
|
|
|
| {{unk}}
| {{unk}}
| untested - es1373 (u?)
|-
| CT5808
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4730 Sound Blaster AudioPCI 64V Ectiva EV1938
| 0x1102
| 0x8938
|
| {{unk}}
| {{unk}}
| untested
|-
| CT5880 on various motherboards
| 0x1274
| 0x5880
|
| {{unk}}
| {{unk}}
| untested [http://www.xbitlabs.com/articles/mainboards/display/ga-6rx.html Gigabyte GA-6RX] (VIA ApolloPro 266 2001], Gigabyte GA-6VM7-4E mobo, [http://active-hardware.com/english/reviews/mainboard/ga-7vtx.htm Gigabyte GA-7VTX] (KT266 2001), Gigabyte [http://www.amdboard.com/gigabytega7vtxh.html GA-7VTXH] (KT266A 2001), [http://www.amdboard.com/gigabytega7vrxp.html Gigabyte 7VRXP] mobo (KT333 2002), MSI MS-6309, MS-6318, MS-6337 (815E Pro), MS-6339 (850Pro) and MS-6340, PCChips Motherboard M571 TXPRO, Soltek SL-65ME+,
|-
| VMware Virtual Workstation(TM)
| 0x1274
| 0x1371
| 0x02
| {{Yes|but not Hi-Fi modes}}
| {{maybe}}
| works
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
<pre>
Revision 0x04 = ES1371 REV_ES1373_A
Revision 0x06 = ES1371 REV_ES1373_B
Revision 0x07 = ES1371 REV_CT5880_A
Revision 0x02 = CT5880 REV_CT5880_C
Revision 0x03 = CT5880 REV_CT5880_D
Revision 0x04 = CT5880 REV_CT5880_E
Revision 0x09 = ES1371 REV_ES1371_B
Revision 0x00 = EV1938 REV_EV1938_A
Revision 0x08 = ES1371 REV_ES1373_8
</pre>
====1999-2001 via-ac97.audio====
*2021 5.10
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| <!--Description-->694X with 686A KT133 PM133 or 693A with VT8231
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3058
| <!--Revision-->
| <!--Playback-->{{Yes| }} redirects earphones correctly
| <!--Recording-->{{Yes| }}
| <!--Comments-->audio controller works but depends on the underlying invisible codec used see AC97 section
|-
| <!--Description-->686B KT133A with VT8231
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3058
| <!--Revision-->0x50
| <!--Playback-->{{Yes|}} reroutes ear pieces right
| <!--Recording-->{{Yes|}}
| <!--Comments-->audio controller works but depends on the underlying codec used see AC97 section below
|-
| <!--Description-->686C
| <!--Vendor ID-->0x1106
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->untested
|-
| <!--Description-->KM266 or KT266 with VT8233, KT266A with VT8233A, VT8233C
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3059
| <!--Revision-->0x10
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->KM333 KT333 with VT8235
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3059
| <!--Revision-->0x30
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
| <!--Description-->KM400 KT400 with VT8237, KT600 with VT8237R,
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3059
| <!--Revision-->0x40 0x50 0x60
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
|}
====1998-2003 emu10kx.audio - Creative Labs SoundBlaster Live! and Audigy====
*2021 6.5
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| PCI512 CT4790 (emu10k1)
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested (1st Gen)
|-
| Live CT4620
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Live CT4760
| 0x1102
| 0x0002
| 0x07
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| playback works
|-
| Live Value CT4670
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| works plays stereo (2nd Gen)
|-
| Live Value DELL CT4780
| 0x1102
| 0x0002
| 0x06
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| plays/records stereo - untested 4.1mode
|-
| Live Value Compaq CT4830
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{Maybe}}
| <!--Recording--> {{unk}}
| not working
|-
| Live Value CT4831
| 0x1102
| 0x0002
| 0x00
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Live Value CT4832
| 0x1102
| 0x0002
| 0x07
| <!--Playback--> {{yes}}
| <!--Recording--> {{partial|Line-In only}}
| works
|-
| Live Value CT4832
| 0x1102
| 0x0002
| 0x08
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| works
|-
| Live Value HP CT4870
| 0x1102
| 0x0002
|
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| Works
|-
| Live Value Gateway CT4871
| 0x1102
| 0x0002
|
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Live! Platinum 5.1 SB0060
| 0x1102
| 0x0002
| 0x00
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
| plays audio/records, untested 5.1 (3rd Gen)
|-
| Live 5.1 SB0100 -SFF
| 0x1102
| 0x0002
| 0x00
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| works
|-
| Live 5.1 Player SB0220
| 0x1102
| 0x0002
| 0x0a
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
| plays audio/records stereo, untested 5.1
|-
| Live 5.1 Digital SB0228
| 0x1102
| 0x0002
| 0x0a
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
| working
|-
| Audigy SB0090 (emu10k2)
| 0x1102
| 0x0004
|
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| <!--Description-->Audigy SB0230
| <!--Vendor ID-->0x1102
| <!--Product ID-->0x0004
| <!--Revision-->0x03
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Yes|Mic only}}
| <!--Comments-->5th Dec 2012 - untested optical tos link. contains also IEEE1394/Firewire (untested)
|-
| Audigy 2 Platinum 6.1 SB0240 SB0250 EMU10K2.5
| 0x1102
| 0x0004
| 0x04
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| works
|-
| Audigy 2 PRO SB0280 EMU10K2.5
| 0x1102
| 0x0004
|
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Audigy 2 ZS SB0350
| 0x1102
| 0x0004
| 0x04
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
|
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| Live 5.1 DELL SB0200 SB0203 emu10kx
| 0x1102
| 0x0006
| 0x0
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
|
|-
| Live 24bit SB0410
| 0x1102
| 0x0007
| 0x
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Live 24bit DELL SB0413
| 0x1102
| 0x0007
| 0x
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy LS SB0310
| 0x1102
| 0x0007
| 0x0
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy SE 7.1 SB0570
| 0x1102
| 0x0007
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 2 ZS SB0320 SB0360 (PRO)
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 2 VALUE SB0400
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 4 VALUE SB0610
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 4 PRO SB0380
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| EMU E-MU 0404 PCI (not USB) EM8852
| 0x1102
| 0x000
| 0x0
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver but linux support needs firmware
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
the green jack is for the main speaker pair AND headphones, so manual switching will be required
If your card is wired for the "AC97" standard, then it's up to your headphone jack to switch the green speaker output in and out
the headphone jack has Normally-closed contacts that will open on insertion, which breaks the signal path back to the sound card (FP_RETURN)
====2000-2010 cmi8738.audio - C-Media====
*2021 5.20
;Read [http://amigaworld.net/modules/news/article.php?storyid=2512 more] and imported on [http://repo.or.cz/w/AROS.git/commit/aff741d60160c6a9d7d39c9e004a25ea3aa13847 20th July 2011] and [http://alsa.opensrc.org/Cmipci alsa docs].
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| Audiotrak MAYA EX5
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| cmi8738-sx 4ch
| 0x13f6
| 0x0111
| 0x10
| <!--Playback-->
| <!--Recording-->
| untested
|-
| e3dx hsp56 CMedia 8738-sx 4ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| EDio SC3000D 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Genius SoundMaker Value PCI C3DX
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Guillemot Maxi Sound Muse
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Hercules Gamesurround Muse LT
| 0x13f6
| 0x0111
| 0x10
| <!--Playback--> {{yes}}
| <!--Recording--> {{no}}
|
|-
| Hercules Gamesurround Muse XL LT 5.1
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Inno audio extreme 5.1 cmi8738/lx pci 6ch
| 0x13f6
| 0x0111
| 0x
| <!--Playback-->
| <!--Recording-->
| untested
|-
| M-Audio (Midiman) DiO 2448
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Sabrent SBT-SP6C 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| StarTech PCISOUND4CH 8738sx 4ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Sweex SC012 CMI8738-lx 4ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Terratec 5.1 PCI
| 0x13f6
| 0x0111
| 0x10
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Terratec Aureon Fun 5.1
|
|
|
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| Has SPDIF
|-
| Trust Sound Expert Digital Surround 5.1 (cm8738-mx 6ch)
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Turtle Beach Riviera CMI8738-MX 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| XSonic CMI 8738 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->CMI8738 6ch PCI-E PCI Express version
| <!--Vendor ID-->0x13f6
| <!--Product ID-->0x0111
| <!--Revision-->0x10
| <!--Playback-->{{Yes|}}
| <!--Recording-->{{Maybe|}}
| <!--Comments-->Chinese based card with playback tested so far
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
====2001-2005 ac97.audio====
*6.4 27-12-2008
The AC97 chips were designed to be pinout interchangeable so that the sound support could change easily and quickly without motherboard redesigns
the green jack is for the main speaker pair AND headphones, so manual switching will be required
If your card is wired for the "AC97" standard, then it's up to your headphone jack to switch the green speaker output in and out, the headphone jack has Normally-closed contacts that will open on insertion, which breaks the signal path back to the sound card (FP_RETURN)
The ProductID and VendorID are for the audio controller only - the important additional codec is '''NOT''' so easily identified.
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| <!--Description-->Avance Logic (now Realtek) ALC100 and ALC101 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->ALC200 and ALC201 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->ALC201A and ALC202 and ALC202A codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->ALC650
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| <!--Comments-->most Nforce2 boards plays audio only - Abit NF7, Asus A7N8X, MSI K7N2, Epox 8RDA+, DFI
|-
| <!--Description-->ALC850 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{No}}
| <!--Comments-->no support for via P4P800 chipset on ASUS A8V-E SE Deluxe mobo - ICaros 1.3
|-
| <!--Description-->Realtek ALC653 codec and ALC655 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested Acorp 7NFU400
|-
| <!--Description-->Realtek ALC658 codec ALC658D
| <!--Vendor ID-->0x8080
| <!--Product ID-->0x24c5
| <!--Revision-->0x0
| <!--Playback-->{{Yes|Prefs Music and Units 0-3 set volume control - playback}}
| <!--Recording-->{{No}}
| <!--Comments-->MSI Motherboard on NB 22-09-2012
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->AD1881 SoundMAX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->Analog Devices first AC97
|-
| <!--Description-->AD1881A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Yes}}
| <!--Revision-->
| <!--Comments-->works with VIA Controller - untested Intel etc
|-
| <!--Description-->AD1881B
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1885 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{No}}
| <!--Comments-->Playback only with issues on D845HV but not working on MS-6367 because Units 0-3 have masked volume control
|-
| <!--Description-->AD1886
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1887
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->ADI AD1888 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{no}}
| <!--Recording-->{{No}}
| <!--Comments--> Icaros 1.51
|-
| <!--Description-->AD1980 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->AD1981A codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested IBM X30
|-
| <!--Description-->Analog Devices SoundMax(TM) AD1981B codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| <!--Comments-->plays back only on IBM T41 Thinkpad
|-
| <!--Description-->AD1985 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{No}}
| <!--Comments-->not working ahi prefs freezes on D865GLC mobo ([http://www.xbitlabs.com/articles/multimedia/display/int-sound2_3.html ]
|-
| <!--Description-->AD1986 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{No}}
| <!--Comments-->untested [http://uk.ts.fujitsu.com/rl/servicesupport/techsupport/Boards/Motherboards/Fujitsu/D1931/D1931.htm D1931] but works (Acer Aspire 3610 laptop)
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->Crystal Semiconductors CS4205, CS4202 codecs
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Cirrus Logic CrystalWare 4236
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->Cirrus Logic CrystalClear SoundFusion CS4297 CS4299 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested IBM T23
|-
| <!--Description-->conexant Cx20468-31 codec (id 30)
| <!--Vendor ID-->0x103c
| <!--Product ID-->0x3085
| <!--Revision-->
| <!--Playback-->{{No|AC97 appears in AHI Prefs}}
| <!--Recording-->{{No}}
| <!--Comments-->Tested AspireOS 1.8 on Gateway W322
|-
| <!--Description-->ESS Technology ES1921 AC'97 2.1
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->CMI 6501 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested on ASROCK SKT-AM2 AM2NF3-VSTA
|-
| <!--Description-->codec CMI9738
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->codec CMI9739
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->C-Media CMI 9739A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments--> untested on EPoX 8RDA3+
|-
| <!--Description-->CMedia CMI 9761A codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested ASRocK K7NF2-RAID
|-
| <!--Description-->C-Media CMI9880
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->National Semi conductor (now TI) LM4540, LM4543, LM4545, LM4546, LM4548, LM4549, LM4550 LM4560
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->STAC9708T codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->SigmaTel (now IDT) C-Major STAC 9460 (D/A only), 9461, 9462, 9463, 9200, 9202, 9250, 9251, 9220, 9221, 9223, 9750
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AKM (Asahi Kasei Microsystems) AK 4540, 4543, 4544A, 4545
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->codec VT1616 (VIA Six-TRAC Vinyl Audio)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->VIA VT1612, VT82C686
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->ESStech ESS ES1968 maestro-2
| <!--Vendor ID-->0x125d
| <!--Product ID-->0x1968
| <!--Revision-->0x
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->ESStech ESS ES1978 maestro2e
| <!--Vendor ID-->0x125d
| <!--Product ID-->0x1978
| <!--Revision-->0x
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->ESStech ESS ES1988 maestro3 allegro-1 codec
| <!--Vendor ID-->0x125d
| <!--Product ID-->0x1988
| <!--Revision-->0x12
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->Yamaha AC97 ymf-743 YMF752 YMF753 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->{{No}}
| <!--Comments-->untested ymf-753
|-
| <!--Description-->YMF724 YMF744 YMF-754 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| SIS 7018 / Trident 4dwave DX/NX / ALi 5451
| 0x1039 (0x1023 Trident)
| 0x7018 (0x2000 Trident DX) (0x2001 Trident NX)
| 0x02
| <!--Playback-->{{No}}
| <!--Recording-->{{No}}
| no support - introduced early 2000s
|-
| SIS 7012
| 0x1039
| 0x7012
|
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| working through 1 speaker only took over from SIS7018 (2002 onwards)
|-
| <!--Description-->Wolfson (now Cirrus Logic) WM9701, WM9701A (AC'97 1.03 spec), WM9703, WM9704 (AC'97 2.1), WM9705, WM9706, WM9707, WM9708
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->WM9709, WM9710, WM9711, WM9712, WM971
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->first Microsoft(TM) Xbox DAC sound chip (AC Link compliant D/A converter)
|-
| <!--Description-->Wolfson WM9717
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| Parallels
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested
|-
| VirtualBox
|
|
|
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| working
|-
| VirtualPC
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested
|-
| <!--Description-->Intel 82801AA Proxmox
| <!--Vendor ID-->0x8086
| <!--Product ID-->0x
| <!--Revision-->
| <!--Playback-->{{unk| }}
| <!--Recording-->{{unk| }}
| <!--Comments-->
|-
|}
====2005-20xx HDAUDIO.audio====
*6.36 2025 [https://github.com/aros-development-team/AROS/commit/43b33a9280b10963ca659de2cc3d1cf289b43a87 reset handler]
*6.35 202 []
*6.34 2019 AROS One 1.5 upwards
*6.29 2018
*6.27 2017 update
*6.25 2014 used for most Icaros 2.x
*6.20 July 2012
*6.17 Nov 2011
*6.15 Jun 2011
*[http://www.clusteruk.com/SitePortalPage.aspx?siteid=1&did=109 6.13] Sep 2010
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="5%" |Vendor ID
! width="5%" |Product ID
! width="5%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| <!--Description-->ALC260
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| <!--Description-->ALC262
* ALC262-VD2-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->LQFP-48
|-
| ALC268 codec
| 0x
| 0x
| 0x
| <!--Playback-->{{Yes|Version 6.17 Acer AOA110 and AOA150 netbooks), works (Dell Mini Inspiron 9 and 10v, }}
| <!--Recording-->{{Yes|Version 6.17 remove QUERY and select 'Mic 1' as input. Tested with 6.15 as well using QuickRecord and AE 4.0.23 under Icaros 1.4.}}
| <!--Comments-->AHI UNITS and Music are set to: hdaudio:HiFi 16 bit stereo++ / Frequency 48000 Hz, Volume +0.0 dB. The hdaudio.config in SYS:Prefs/Env-Archive is WITHOUT the QUERY-line. After changing and saving the config-file turn off and start again the computer. Switch from internal loudspeaker to headphone you must turn off the music before plug in the headphone-cable, otherwise there is no output on the socket. Back from line-out to internal speakers it is the same.
|-
| [http://blog.foool.net/wp-content/uploads/linuxdocs/sound.pdf Linux docs ALC269]
* ALC269Q-GR
* ALC269QSRS-GR
* ALC269W-GR
| 0x
| 0x
| 0x
| <!--Playback-->{{Maybe| }}
| <!--Recording-->{{Unk| }}
| <!--Comments-->TQFP 48 pin Power IC Chip From [https://patchwork.kernel.org/project/alsa-devel/patch/1408118123-15849-1-git-send-email-tiwai@suse.de/ ALC269 & co have many vendor-specific setups with COEF verbs, result in the codec stalling]
|-
| [http://www.alsa-project.org/db/?f=0321f8479fd670cd510f9912b1120fe7edcf2e07 ALC269VB]
* ALC269Q-VB5-GR
* ALC269Q-VB6-CG
* ALC269Q-VB6-GR
| 0x10ec
| 0x0269
| 0x100004, 0x100100, 0x100202
| <!--Playback-->{{Maybe|some versions work}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* v1 works Asus eee PC netbook 901/1000HA 1005HA/1008HA, 1001P,
* v2 maybe working Lenovo S9 S10 S10-2 S10-3 under HDAudio version 6.13
* v3 maybe dell wyse 7010
|-
| [http://alsa-project.org/db/?f=9c1746c5957b0ce72ff9cfffa312e97d14baf785 ALC269VC aka ALC3202]
* ALC269Q-VC2-GR
* ALC269Q-VC3-GR
| 0x10ec
| 0x0269
| 0x100203,
| <!--Playback-->{{Maybe|some versions work}}
| <!--Recording-->{{Unk}}
| <!--Comments-->SMT SMD QFN-48 -
* v1 unknown
* v2 unknown
* v3 x230, dell wyse,
|-
| ALC272
* ALC272-VA4-GR
| 0x10ec
| 0x0272
| 0x0
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Unk}}
|
* works Acer AOD150 and Acer AOD250 works [http://amigaworld.net/modules/newbb/viewtopic.php?topic_id=33755&forum=28#616910 Samsung NP-NC10], works Samsung NF210-A02] netbooks,
|-
| <!--Description-->ALC273
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| <!--Description-->ALC270
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC282
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x
| <!--Revision-->
| <!--Playback-->{{No|Version 6.17}}
| <!--Recording-->{{No|Version 6.17}}
| <!--Comments-->needs retest
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC660 ALC660-VD
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes| }}
| <!--Recording-->
| <!--Comments-->
* works asus F9s, F9e
* untested asus w7j, M51SN, A6Tc, A8Sr,
|-
| <!--Description-->ALC661-GR (2011)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| ALC662
| 0x1043
| 0x82a1
| 0x0
| <!--Playback-->{{Yes|Version 6.17 if QUERY added to top of hdaudio.config}}
| <!--Recording-->{{No|Version 6.17 not working for eee pc 900}}
|
* works Asus eee PC netbook 700/701/900, Atom 270 and 330 mobos, odd clicks (D410 NM10 PineTrail),
|-
| <!--Description-->[http://outpost.fr/rmaa/ALC663.htm ALC663]
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0861
| <!--Revision-->
| <!--Playback-->{{No|Version 6.13}}
| <!--Recording-->{{Unk}}
| <!--Comments-->not bad output like headphone amp part of the codec actually works well but messed up by undersized coupling capacitors to actually support such a low impedance
* not working Asus n50vn x71vn,
|-
| <!--Description-->ALC665
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC666
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC667
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC668
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC670
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->ALC880
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->some 915 and 925 chipset mobos
|-
| <!--Description-->ALC882M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| Realtek ALC883 ALC883-GR ALC883D-GR ALC883DTS-GR ALC883DD-GR codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe|some early versions work }}
| <!--Recording-->{{Unk| }}
| 2005 to 2007 HD Audio codec untested (Asus ),
|-
| Codec ALC885
| 0x10ec
| 0x0885
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
|-
| ALC888
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
|
|-
| ALC888s
* ALC888S-VD2-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}} MSI Wind U90/U100,
| <!--Recording-->{{Unk}}
| LQFP-48
|-
| ALC888b
| 0x8086
| 0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| untested (D510 NM10 Dual Core PineTrail mobo),
|-
| ALC888-VD
| 0x8086
| 0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| untested
|-
| ALC889A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes|works if QUERY added to the top of hdaudio.config in Prefs drawer/directory}}
| <!--Recording-->{{Unk}}
|
|-
| ALC889 Gr
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}} with crackles
| <!--Recording-->{{Unk}}
|
|-
| ALC889
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
| Tested with MSI H55 board
|-
| ALC887 ALC887-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
|
* working on ASUS P5KPL/EPU and Gigabyte GA-E350N-Win8 Rev1.0
|-
| ALC887-VD-CG
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0887
| <!--Revision-->0x100302
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}} Subsystem Id: 0x1458a002
|
|-
| ALC887-VD
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0887 0x1458
| <!--Revision-->0xa002
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{Unk}} index = 2
| ALC887 does not have any volume control ability on the mixer NIDs, so put the volume controls on the dac NIDs instead
* working with intermittent corrupting pop popping skipping stuttering sound issues MSI 760GM-P23 (FX),
* not working Gigabyte H61MA-D3V, AT3IONT-I Deluxe,
|-
| ALC887-VD2
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
| 3jacks
|-
| ALC887-VD2-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
|-
| ALC887-
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
|
|-
| ALC892-CG rev
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| 2011 48-pin LQFP Green package -
|-
| ALC892 ALC892-DTS-CG rev
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
| 2009 introduced
* works
* not working
* untested
|-
| ALC892 rev
| <!--Vendor ID-->0x0x10ec
| <!--Product ID-->0x0892
| <!--Revision-->0x100302
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| 2014
|-
| Realtek ALC886-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| LQFP-48
|-
| Codec ALC861 ALC861-VD
| 0x10ec
| <!--Product ID-->0x0663
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
|
* not working Toshiba Tecra A7
|-
| <!--Description-->ALC1200
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| ALC898
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
| not working
|-
| <!--Description-->ALC1500
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC3232 (aka ALC292)
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0292
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC3234 aka ALC255
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0255
| <!--Revision-->003
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC3287 aka ALC257
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes| }}
| <!--Recording-->{{no| }}
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->AD1882
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1883 HD Codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1884
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| Analog Devices SoundMAX AD1981
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| IBM Thinkpad T60,
|-
| AD1984 hp-m4 codec
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
* audio not working on Lenovo X61, Thinkpad T61,
|-
| AD1986
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
|
|-
| AD1988
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
|-
| <!--Description-->AD1988A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->Cirrus Logic CS4207
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->
| <!--Recording-->
|
|-
| <!--Description-->Cirrus Logic CS4208
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->
| <!--Recording-->
|
|-
| <!--Description-->Conexant CX20549 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe|very very very low volume}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested Fujitsu Amilo SI 1510 1520 no datasheet for the general public
|-
| <!--Description-->Conexant CX20549-12Z codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested HP 530
|-
| <!--Description-->Conexant CX20561 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* working lenovo x200s
* untested Lenovo Essential G555 Notebook, HP Pavilion dv6700,
|-
| <!--Description-->Conexant CX20582 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX2059x CX20590 CX20594-21Z codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX20585 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* working Lenovo Thinkpad T410,
|-
| <!--Description-->Conexant CX20672 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX20671 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX20751-21Z codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes| }}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| <!--Description-->Conexant CX11852 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX11880 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant after 2015 up to 2018 CX7501 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{no|no driver codec}}
| <!--Recording-->{{no|no driver codec}}
| <!--Comments-->Conexant bought by synaptics 2019
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->C-Media CMI9880 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->Gigabyte GA-8GPNXP
|-
| <!--Description-->Silicon Labs 3054
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| VIA 1708A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| untested,
|-
| VIA VT1708B
| <!--Vendor ID-->
| <!--Product ID-->
| 0x0010
| <!--Playback-->{{No|VIA PicoITX}}
| <!--Recording-->{{Unk}}
|
|-
| VIA 1708S
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
|
|-
| <!--Description-->VT2021 10ch
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->Gigabyte Z77MX-D3H, GA-H61M-S2H S2P,
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Creative CA0110-IBG
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->SigmaTel STAC 9220 9221 9223 8ch (7+1)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| <!--Comments-->ECS 945GCT/M-1333 (version 3.0),
|-
| IDT SigmaTec [http://explorer.cekli.com/articles/pdf/hd-audio STAC9227] /28/29/30 codec
| <!--Vendor ID-->0x8384
| <!--Product ID-->0x7626
| <!--Revision-->0x0002
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Unk}}
|
* works HP Compaq mini 110
* untested HP Pavilion HDX9000 CTO Notebook, Intel DG33TL mobo, Dell E520, Intel DP35DP mobo, Dell E6410 Laptop,
|-
| IDT (formerly SigmaTel) IDC STAC 9271/71D
| <!--Vendor ID-->0x8384
| <!--Product ID-->0x7626
| <!--Revision-->0x0002
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
|
|-
| <!--Description-->IDC STAC 9272 9273 9274
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->Intel D5400XS,
|-
| <!--Description-->IDT 92HD73C
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes}}
| <!--Recording-->
| <!--Comments-->headphones only Asus AT4NM10 mobo
|-
| <!--Description-->IDT 92HD75B
| <!--Vendor ID-->0x111d
| <!--Product ID-->0x7608
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* working [http://koti.kapsi.fi/jvaltane/aros/hdaudio/ HP Compaq Mini 700 Netbook - feedback required]
* untested HP Mini 5103 and 5102, HP Compaq 610, HP ProBook Laptop 4520s 4525s 6450b 6550b 6555b, HP EliteBook 2540p 2740p 8440p, Mobile Workstation 8540w 8740w, Pavilion NoteBook DV8,
|-
| <!--Description-->IDC 92HD81XX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC 92HD83XX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC STAC 92HD89XX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Wolfson (now Cirrus Logic) WM8850
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Wolfson WM8860
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->Intel High Definition Audio Revision 1.0. - 4-Channel DAC, 4-channel ADC. - DAC sampling
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
Using Prefs/AHI ensure you set the music unit and at least Units 0 (where most audio comes from) in top left drop down menu to HDaudio - HIFI in the section below. Set Units 1 or 2 to microphone or other outputs. Plus allow more than one channel for multiple audio streams and set frequency up to 44 kHz or higher on the right hand side of the ahi prefs. If sound beeps when you press the test button then all should be OK.
Output <- Codec <- Audio Controller (HDA) <-> Computer
codecs and exact hardware identifier. As mentioned above, HDA is only part of the work here, it gets the audio out of the main chipset in digital format (on a bus called I2S). This is not enough, there is another step needed which is routing that I2S signal to the output, converting it to actual audio, amplifying it, etc. This is handled by a separate chip called a "codec". Sometimes it is initialized by the BIOS, but this is not always the case.
Most audio drivers are made up of two parts a [http://www.kernel.org/doc/Documentation/sound/alsa/HD-Audio.txt Controller + a Codec]. The ProductID and VendorID are for the audio controller only - the important additional codec is '''NOT''' so easily identified.
Some newer versions of codecs are missing at the moment.
Things to try if sound not working
* try to connect something to the audio jack, maybe it is not playing on internal speakers or vice versa
* make sure you try and select all music units e.g. unit0, unit1....
* even if PCI ID's are in Prefs/Env-Archive/HDaudio.config, this doesn't mean it is working, it is the codec that matters
* it might be internally muted
<pre>
add debug=memory to grub boot line - continue booting with F10
Open a shell
Tools/Debug/Bifteck > RAM:audio.txt
</pre>
or
<pre>
Open a shell
Tools/Debug/Sashimi > RAM:audio.txt
Run ahi prefs
Click test tone button
Stop sashimi with Ctrl-C
</pre>
If the boot sound is enabled, you have to use Bifteck to capture AHI debug output. In the GRUB menu, press E on your selected entry, then add "debug=memory" to the options (alongside ATA=, vesa= etc.). Then F10 or Ctrl-X to boot. Once booted, run Tools/Debug/Bifteck again.
or
* try adding QUERYD to the start of ENVARC:hdaudio.config file (also known as Prefs/Env-Archive/) ie. on the first line
* '''OR''' try removing QUERY and QUERYD from the start of the hdaudio.config file
* Reboot
* open a shell
* type: sys:tools/debug/sashimi > ram:debug.txt
* open ahi prefs
* select one of the audio modes - HIFI or otherwise
* press the 'test sound' button
* press ctrl-c in the shell
* post the results to Aros-World
The HD Audio standard was designed to be hardware pinout interchangeable so that the sound support could change easily and quickly. HDA is a standard around particular chips. Each kind of chip has a certain number of DACs and pins, and even the same chip could be hooked up in different ways on different motherboards. The chips are programmable and the operating system can adjust how things are routed. Some pins aren’t even hooked up, so it makes no sense to route sound to them. Also some pins have sensors that can tell when something is plugged in, so that for example the speakers in a laptop can be muted when headphones are plugged in. Pins are also grouped, so for example all the outputs for a 5.1 sound system are grouped. Generally the HDA driver in the operating system is supposed to read the pin set up and figure out a reasonable way to set things up, and disconnected pins should be ignored, etc.
HDAudio standard has headphones on a separate DAC, and it's up to the driver.. it can even send different audio to the headphones without interrupting the main (green) outputs
====Envy24 series ====
A little history. VIA bought the ICE created Envy chipsets [http://www.via.com.tw/en/products/audio/controllers/comparison_controller.jsp VT1712] first. A few years later, they created several cheaper variants VT1724 (mixer missing), VT1721 (low end cut down), VT1720 (embedded on motherboard) and lastly the VT1723 (no support apart from Windows Envy24DT like SYBA SD-PEX63034).
There are PCI Express versions appearing.
The Envy24 is the base product that was originally designed by ICEnsemble, and it supports multi-channel hardware mixing, which is great for professional use. The HT version removes the hardware mixer (unimportant for non-professional uses). The [http://www.avsforum.com/t/364771/envy24ht-s-the-definitive-source HT-S] version is almost exactly the same as the HT, it just uses cheaper DACs. The PT version is exactly the same as the HT-S version, it is just the edition used for on-board audio on motherboards.
N.B. [http://www.soundonsound.com/sos/dec04/articles/pcnotes.htm PCI slot identification] and [http://hsi.web.cern.ch/HSI/s-link/devices/s32pci64/slottypes.html 3.3v PCI].
=====[http://www.opensound.com/readme/README.Envy24.html envy24.audio] - [http://www.anime.net/~goemon/alsa/ VT1712] =====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Playback
! Recording
! Comments
|-
| M-Audio Delta 66 - Rev B 1999
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested AK4524VF CS8404A-CS - needs Delta Series break out box with D-sub lead -
|-
| [http://ixbtlabs.com/articles/maudioaudiophile/index.html Audiophile 2496] Rev A 2000
| 0x14
| 0x
|
| <!--Playback-->{{unk| }}
| <!--Recording-->{{unk| }}
| works audio out on - I2S stereo codec AKM AK4528VF with the 24bit/96kHz DAC and ADC; CS8427 digital transceiver
|-
| [http://ixbtlabs.com/articles/maudioaudiophile/index.html Audiophile 2496] Rev B 2003
| 0x14
| 0x
|
| <!--Playback-->{{Yes }}
| <!--Recording-->
| works well - I2S stereo codec AKM AK4528VF with the 24bit/96kHz DAC and ADC; CS8427 digital transceiver
|-
| M-Audio Delta 410 - 2001 2001 REV-B
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested for D-A AK4529VQ converters with CS8427-CS 5532 1158B or Event Echo Gina 20-Bit Multitrack Interface Breakout Box -
|-
| M-Audio Delta 1010
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested AK5383 and AK4393 - 25 pin dsub -
|-
| M-Audio Delta 1010LT 1010E
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested for D-A AK4529 converters with 2 XLR Microphone inputs with pre amps
* be aware of redesign in 2007 - possible issues
|-
| M Audio Delta 44 - Rev A 2002 - Rev B 2003 - Rev D 2003
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested ICE1712G AK4524VF needs breakout box with 15 pin D-sub lead -
|-
| M-Audio Delta 66 Rev E 2006 - Omni Studio
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested needs break out box with 15 pin D-sub lead -
|-
| <!--Description-->M-Audio Delta DiO 2496
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| Terratec EWX24/96
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| [http://ixbtlabs.com/articles2/terratecdmx6fire/index.html TerraTec 6fire DMX 24/96]
| <!--Vendor ID-->0x1412
| <!--Product ID-->0x1712
| <!--Revision-->0x02
| <!--Playback-->{{No|tried line 1-2 3-4 5-6 7-8 }}
| <!--Recording-->{{No| }}
| untested - AKM and codec
|-
| <!--Description-->Terratec EWSA88MT
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| [http://lists.freebsd.org/pipermail/freebsd-multimedia/2007-March/006087.html Audiotrak Prodigy HD2] 24/96
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Audiotrak (ESI) Maya 1010 1010L
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| EMU 1212M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| EMU 1616M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| <!--Description-->Terratec EWS 88MT EWS 88D
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Hoontech Soundtrack DSP 24
Soundtrack DSP 24 Value
Soundtrack DSP 24 Media 7.1
Event Electronics EZ8
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Digigram VX442
Lionstracs
Mediastation
Terrasoniq TS 88
Roland/Edirol DA-2496
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
=====envy24ht.audio - VIA VT1724=====
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| ESI Juli@
| 0x3031
| 0x4553
| 0x0
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Yes}}
| reported working years ago [http://envy24.svobodno.com/ Envy24HT-S] - AKM 4358 DAC - AKM 4114/4112 DIT
|-
| ESI Juli@ Ego Igo rev K
| 0x3031
| 0x
| 0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| AK4358? DAC - AK4114 AK4112 DIT
|-
| [http://ixbtlabs.com/articles2/multimedia/m-audio-revolution51.html M-Audio Revolution 5.1]
| 0x1412
| 0x3631
| 0x0
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| reported working years ago but discontinued - (Envy24GT) - 3ch AKM 4358 DAC - ADC AKM 5365 -
|-
| [http://ixbtlabs.com/articles2/m-audio-revolution71/index.html M-Audio Revolution 7.1] 24/192
| 0x1412
| 0x3630 0x1724
| 0x0
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| not working - illegal semaphore - 6ch ADC AKM AK4355 24-bit 192 kHz - 2ch DAC AKM AK4381 24-bit 192 kHz - ADC AKM AK5380
|-
| Terratec Aureon Sky 5.1
| 0x153b
| 0x1147
| 0x
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - discontinued
|-
| [http://ixbtlabs.com/articles2/terratec-aureon71/index.html Terratec Aureon Space 7.1]
| 0x153b
| 0x1145
| 0x0
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - Wolfson WM8770 DAC, AC'97 codec SigmaTel STAC9744
|-
| Terratec Aureon Universe 7.1
| 0x153b
| 0x1153 (rev x) 0x1724 (rev3)
| 0x0
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| not working - semaphore error on rev 3 - DAC ADC
|-
| Terratec Phase 22
| 0x153b
| 0x1150
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - Envy24HT-S - AK4524
|-
| Terratec Phase 28
| 0x153b
| 0x1149
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - Envy24HT-S - AK4524
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Playback
| Recording
| Revision
| Comments
|-
| Audiotrak (ESI) Prodigy 7.1
| 0x4933
| 0x4553
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - Wolfson WM8770 and AC'97 SigmaTel STAC9744 codec
|-
| Audiotrak (ESI) Prodigy 7.1 LT
| 0x3132
| 0x4154
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver -
|-
| [http://ixbtlabs.com/articles2/sound/audiotrak-prodigy192.html Audiotrak (ESI) Prodigy 192] 24/96
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - STAC9460S codec
|-
| <!--Description-->Echo Layla 24/96
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
| [http://www.bit-tech.net/custompc/labs/80752/hercules-gamesurround-fortissimo-4.html Hercules Gamesurround Fortissimo 4]
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - Wolfson WM8776 Codec and WM8766 DAC
|-
| [http://ixbtlabs.com/articles2/multimedia/m-audio-audiophile192.html M-Audio Audiophile Delta AP 192k]
| 0x1412
| 0x3632
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - Stereo ADC AKM AK5385A 24-bit 192 kHZ - 8-channel DAC AKM AK4358 24-bit 192 kHz - AKM 4114/4112 DIT
|-
| ONKYO SE-150PCI
| 0x160b
| 0x0001
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver
|-
| <!--Description-->ESI Waveterminal 192x
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
| <!--Description-->Quartet
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments--> - AKM 4114/4112 DIT
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
|}
====hdmiaudio.audio - hdmi no support====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->ATI R6xx HDMI Audio codec support output
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x9840
| <!--Revision-->
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->Not detected
|-
| <!--Description-->NVidia HDMI
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Intel Series 6 CougarPoint HDMI codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Intel HDMI
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|}
[[#top|...to the top]]
===Graphic GFX Chipsets===
[https://gallium.readthedocs.io/en/latest/systems.html PCIe based] graphic chipset is defacto on 64bit AROS and recommended on 32bit.
AGP works on 32bit but faster transfers through the AGP slot are only available on a few supported motherboard chipsets
* Faster AGP Working = SIS 650 board, Intel 865pe AGP slot on MSI 6788-050,
* Not Supported = NForce2 chipsets, most Intel 815/820 chipsets, VIA chipsets, ALi chipsets,
The fallback for all graphics modes is vesa if any native support does not work. There is a choice of very low resolution vga as the last resort
2D tests performed with [http://download.aros3d.org/software/gfxbench.zip gfxbench] in the shell type gfxbench > out.txt (40 seconds blank screen is part of the test), via FreeDoom via limit-removing engine like odamex, chocolate or vanilla doom -timedemo demo1 or doom2 -timedemo demo1, doom.exe -iwad doom2 -file mymap.wad, Duke DNRATE 640x480 windowed
3D tests performed with Demos/Mesa/ , Cube 1080p, Cube 2 windowed not fullscreen 1920 x 1025, Quake3 ~ cl_drawFPS 1, Xonotic , [http://shinh.skr.jp/sdlbench/showtestgl.cgi test gl],
HDMI, DVI and DisplayPort monitors have a native resolution of 480p, 720p, 1080i, 1080p and up
<pre>
HDMI (licensing fee)
1.2 720p res.
1.3 1080 resolution
1.4 4K @ 30Hz
2.0 4K @ 60Hz
2.1 48Gbs for 4K @ 120Hz, 8K @ , VRR, etc
2.2 ultra96
</pre>
<pre>
DisplayPort (VESA introduced)
1.4 4K @ 60Hz
2.1 96Gbs for 4K @ 240Hz, 8K @ 120Hz. MST daisy chain multiple monitors,
</pre>
<pre>
GPMI chinese standard
2.0
</pre>
Might be supported on AROS
*OpenGL4 GPU must have 64-bit floating point FP64 math support, which is a hard requirement for GL 4.0. The max last revision opengl 4.6 (2017) on [https://wiki.gentoo.org/wiki/AMDGPU AMDGPU] RX 5000's / 6000s ([https://forum.batocera.org/d/7491-enable-opengl-46-and-vulkan-for-an-old-radeon-video-card RDNA] and Nvidia RTX might come to AROS) but Intel UHD, Iris Plus or Xe or Arc (will not unless a developer wants the challenge)
*OpenGL3 last revision 3.3 (2011)
Already supported on AROS
*OpenGL2 nvidia-nouveau,
*OpenGL1 intel gma950,
====vga.hidd====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Comments
|-
|
| 0x
| 0x
| 0x0
| Generic VGA Driver, limited to 640x480 in 16 colours - no 3D support
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Comments-->
|-
|}
====vesa.hidd====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Comments
|-
|
| 0x
| 0x
| 0x0
| 2D support for VBE1, VBE2 and VBE3 (most cards) - various resolutions and 24bit colour - no 3D support
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Comments-->
|-
|}
[[#top|...to the top]]
====[[w:en:Intel GMA|Intel GMA]]====
DVI output is not supported at the moment.
If having problems:
* Ensure the latest version is being used.
* Set GMA_MEM to 128 or 256 to test
* Try the FORCEGMA ToolType for 2D, and try the FORCEGALLIUM ToolType for 3D acceleration after 2D is verified to work. ToolTypes should be applied to the Devs/Monitors/IntelGMA monitor icon.
If still having problems:
* At GRUB boot screen edit boot line and add option: debug=memory
* Boot.
* Use shell command: tools/debug/bifteck > RAM:debug.txt
* And post [GMA MONITOR DETECTION] and other related debug lines
{| class="wikitable sortable" width="90%"
! width="5%" |Description
! width="5%" |Vendor ID
! width="5%" |Product ID
! width="3%" |Rev
! width="5%" |2D
! width="5%" |3D
! width="5%" |Analog Output
! width="5%" |Digital Output
! width="5%" |Laptop LCD
! width="30%" |Comments
|-
| 910GL 82910GL GMCH + ICH6
| 0x8086
| 0x2582 0x2592
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| 910GML 82910 GML GMCH + ICH6 Mobile
| 0x8086
| 0x2582 0x2592
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| may need to add forceGMA to grub boot line to work
|-
| 915G 82915G GMCH + ICH6-M
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
|
|-
| 915GL 82915GL GMCH
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
|
|-
| 915GV 82915GV GMCH
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Yes|}}
| <!--3D-->{{No|}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{N/A}}
| HP DC5100 small form factor
|-
| 915GM GMA900
| 0x8086
| 0x
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| tunnel gearbox }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes}}
| asus eee pc 900
|-
| 915GMS
| 0x8086
| 0x
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| tunnel }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes| }}
|
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| [http://www.notebookcheck.net/Intel-Graphics-Media-Accelerator-950.2177.0.html 945GU] - 133 MHz (Lake port for Intel A100 and A110)
| 0x8086
| 0x2772
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| Fujitsu LifeBook U1010,
|-
| 945GMS - 166 MHz / 250 MHz (1.05V)
| 0x8086
| 0x27a2
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes}}
| Dell D430
|-
| 945GSE - 166 MHz (for Atom)
| 0x8086
| 0x27ae
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Yes|[http://www.x.org/wiki/GalliumStatus]}}
| {{Yes}}
| {{No|dvi port}}
| {{Yes| }}
| for atom motherboards and most 2008/2009 netbooks
* 3D Works - AOA110 AOA150, Dell Mini 9, Samsung NC10, Toshiba NB100,
|-
| 945G 82945G GMCH + ICH7
| 0x8086
| 0x27a6
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| untested 2D and 3D
|-
| 945GC 82945GC MCH
| 0x8086
| 0x27a6
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| untested 2D and 3D
|-
| 945PM
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| Dell D420, Compaq nc6400,
|-
| 945GMS - 250 MHz Calistoga
| 0x8086
| 0x
| 0x0
| <!--2D--> {{Yes}}
| <!--3D--> {{Yes|most models}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes}}
|
* 3D Works Dell Latitude 2100, HP Compaq nc6320, Lenovo 3000, Lenovo T60, Samsung Q35, Dell D620, Dell D820,
* 3D untested Toshiba Satellite L100-120, Toshiba Portege M400,
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
|
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GMA 3100 G31
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works 2D but no 3D
|-
| GMA 3100 G33
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works 2D but no 3D
|-
| [http://en.wikipedia.org/wiki/Intel_GMA GMA 3150] netbooks and nettops
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works 2D but no 3D. no vga, dvi or hdmi output for nettops
|-
| <!--Description--> G965
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments-->
|-
| <!--Description--> Q965
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x2992
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{No}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments--> Only tested with VGA output.
|-
| 965GM X3100 (500 MHz)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| some support 2D but no hardware 3D - could not get it to work with VGA or dvi output
* untested Apple MacBook Air, Lenovo Thinkpad X300, Dell Inspiron 1525, Toshiba M9,
|-
| 960GM X3100 (400 MHz)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
|
|-
| 965M X3100 (400 MHz)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| Dell D830,
|-
| 965PM ??
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| Toshiba A9 works with limited 2D acceleration but no hardware 3D
|-
| GL965
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works with limited 2D acceleration but no hardware 3D
|-
| GM965
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works with limited 2D acceleration but no hardware 3D
|-
| GMA X3500 G35
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->X4500M G41 G43 G45 (400Mhz) Mobile 4 Series
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x2a42 0x2a43
| <!--Revision-->0x07
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue--> {{No|}}
| <!--Digital--> {{No|}}
| <!--Laptop LCD--> {{Yes| VESA}}
| <!--Comments-->works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->GMA 4500M HD (533 MHz)
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments-->works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->GMA 4700M HD (640MHZ)
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x2a42
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments-->works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
====[http://nouveau.freedesktop.org/wiki/FeatureMatrix nouveau].hidd (nvidia pci, agp, pci-e desktop)====
PCIe based nvidia graphics (gfx 8xxx) are the base level for 64bit AROS but earlier models still has some support on 32bit AROS
*Desktop, more likely hit rather than miss on early nvidia on Aros 32bit but on Aros 64bit ...
*Laptop, limited support for '''very''' early non-optimus (i.e. just Nvidia gfx only so no Intel and nvidia gfx combinations on 32bit but on 64bit ...)
Please note that the nouveau project is reverse engineering a nvidia graphics driver but takes time because of [https://nouveau.freedesktop.org/ nVidia's closed firmwares], etc
* 2026-06 - DEVS Nouveau.hidd Gallium.hidd Softpipe - LIBS Gallium GLU 20.0 Mesa OpenCL
* 2011-10 - DEVS 6.11 Nouveau.hidd 7.4 Gallium.hidd 9.4 Softpipe - LIBS 2.3 Gallium 1.3 GLU 19.0 Mesa OpenCL 1.x
* 2011-04 - DEVS 5.31 Nouveau.hidd 7.3 Gallium.hidd 9.3 Softpipe - LIBS 2.2 Gallium 1.1 GLU 18.0 Mesa OpenCL n/a
Nouveau support for AROS is limited to OpenGL 2.1 compliance on 32bit even for modern GL4 capable GPUs but on 64bit ...
On Aros 32bit OpenCL supports the NV50 (8000 9000) cards, less support in NVC0 fermi cards (300 upwards)
On Aros 64bit
ADoom3 graphic details ultra, benchmark while playing press the "`" key and type "Timedemo demo1" in the console
{| class="wikitable sortable" width="90%"
! width="5%" | Graphic Card
! width="5%" | Aros 32bit 1024 x 768
! width="5%" | Aros 32bit 800 x 600
! width="5%" | Aros 32bit 640 x 480
! width="5%" | Aros 64bit 1024 x 768
! width="5%" | Aros 64bit 800 x 600
! width="5%" | Aros 64bit 640 x 480
|-
| NV50 Asus EN8400GS SILENT/P/512M PCIe (G98) || || || || || ||
|-
| Gigabyte 8500GT 256M || 42,6 || 57,2 || 68,6 || || ||
|-
| NV96 (G96) Geforce 9500GT 512M || 43 || 53 || 57 || || ||
|-
| NV96 (G96) 9600GT || || || || || ||
|-
| NVA3 (GT215) GT240 || || || || || ||
|-
| NVA5 (GT216) Palit GT220 Sonic 512M || 39,7 || 55,8 || 63,7 || || ||
|-
| NVA8 (GT218) gt210 || || || || || ||
|-
| NVA8 (GT218) ION2 || || || || || ||
|-
| NVC3 (GF106) GT440 GTS 450 || || || || || ||
|-
| NVCF (GF116) NVC0 Fermi GTX 550Ti or GTS 450 v2 || || || || || ||
|-
| NVC8 (GF110) 580GTX || N/A || N/A || N/A || || ||
|-
| NVE0 Kepler GT630 || N/A || N/A || N/A || || ||
|-
| NVE6 (GK106) Kepler GTX660 || N/A || N/A || N/A || || ||
|-
| NVE7 (GK107) GTX 650 || N/A || N/A || N/A || || ||
|-
| NV110 Maxwell GTX 750 || N/A || N/A || N/A || || ||
|-
| NV126 (GM206) GTX950 upwards no reclocking || N/A || N/A || N/A || poor || poor || poor
|-
| NV160 family (Turing) GTX 1650 and RTX 2000 upwards with GSP firmware || N/A || N/A || N/A || unknown || unknown || unknown
|-
| HostGL Ryzen 5 4600H - Nvidia 1650 - Linux mint 21.1 || N/A || N/A || N/A || 150fps || 154fps || 155fps
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| width="5%" | Graphic Card
| width="5%" | Aros 32bit 1024 x 768
| width="5%" | Aros 32bit 800 x 600
| width="5%" | Aros 32bit 640 x 480
| width="5%" | Aros 64bit 1024 x 768
| width="5%" | Aros 64bit 800 x 600
| width="5%" | Aros 64bit 640 x 480
|}
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|-
| <!--Description-->tnt1 (nv04) tnt2 (nv05) m64 value (1998)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|very slow}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| NV04 Riva TNT TNT2 Fahrenheit freezes on via motherboard chipset so rename agp.hidd in SYS:Devs/Drivers or Monitors
|-
| <!--Description-->tnt vanta lt (nv06) 1998 /9
| 0x10de
| 0x002c
| 0x15
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|slow}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| <!--Description-->Geforce 256 (nv10) (2000)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|slow }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| untested Geforce256
|-
| <!--Description-->Geforce 2 Geforce 3 Geforce 4 (nv20) 2000 / 2
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|slow }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| works for some PCI and AGP Geforce2 Geforce3 Geforce4
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| Geforce FX5200 nv34 (2003)
| 0x10DE
| 0x0322 0x
| 0xA1
| <!--2D-->{{Maybe| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->{{Maybe|VGA15 }}
| <!--Digital-->{{Maybe|DVI}}
| <!--Laptop LCD-->{{N/A}}
| NV30 GeForce 5 FX Rankine Hardware OpenGL 1.5 - slower than GF MX 4000 for 2D - max 1024 x768
* not working [https://eab.abime.net/showthread.php?t=92328&page=8 mobos with VIA chipsets 2018]
* working (MSI 0x9174) the previous nouveau 5.x driver
* Others work with 6.x series XFX PV-T34K-NA, ASUS V9520-X/TD
|-
| Geforce FX5500 (nv34) (2003)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{Maybe| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| works
|-
| Geforce 5100 (NV34)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce FX 5200LE (NV34)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5200 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce FX5600 (nv31) (2004)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Maybe| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| works
|-
| GeForce FX 5600 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5600SE
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5600XT
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce FX5700 (nv36) (2004)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes|some}}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{Maybe| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5700VE
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5700 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5700LE
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5800 (NV30)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5800 Ultra (NV30)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900 (NV35)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900XT
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900ZT
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5950 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce 5xxx
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
|
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| Geforce 6200 (nv44) (2005)
| 0x
| 0x00F3 0x014F
| 0x0
| <!--2D-->{{Yes|5.28 Pixel Text}}
| <!--3D-->{{Maybe| use 5.28}}
| <!--Analogue-->{{Yes|VGA15 and s-video - plain 4pin cable lead will work with 7pin}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| NV40 GeForce 6 GeForce 7 Curie AGP Hardware OpenGL 2.1 needing previous 5.x version as regression arose 2011-10
|-
| Geforce 6200 (nv44a) (2006)
| 0x
| 0x0221
| 0x0
| <!--2D-->{{Yes|5.28 Pixel Text }}
| <!--3D-->{{Yes|}}
| <!--Analogue-->{{Yes|VGA15}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| Hardware OpenGL 2.1, PCI version tested OK in 2014-01-02 - Icaros 1.5.2
* not working
*working
|-
| GeForce 6200 with Turbo Cache (NV43)
| 0x
| 0x0161
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce 6200SE with Turbo Cache (NV44)
| 0x
| 0x0162
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce 6200 LE
| 0x10de
| 0x0163
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| PCI-E
|-
| GeForce 6600 LE
| 0x
| 0x00F4 0x0142
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6600
| 0x
| 0x00F2 0x0141
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| 2006 PureVideo HD 1 or VP1 re-used the MPEG-1/MPEG-2 decoding pipeline from FX
|-
| Geforce 6600gt (nv4x) (2005)
| 0x
| 0x00F1 0x0140
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Yes| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| OpenGL tests -
|-
| Geforce 6800 (nv40) (2005)
| 0x
| 0x0041 0x00C1 0x00F0 0x0211
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Yes| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 XE (NV4x)
| 0x
| 0x0043
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 LE
| 0x
| 0x0042 0x00C2 0x0212
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 GT (quadro fx 1400)
| 0x
| 0x0045 0x0046 0x0215
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 6800 GS
| 0x
| 0x0047 0x00C0 0x00F6
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 GTS NV40
| 0x
| 0x0040 0x0F9
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 6800XT
| 0x
| 0x0044 0x0048 0x00C3 0x0218
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6600 VE
| 0x
| 0x0143
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6500 NV44
| 0x
| 0x0160
| 0x0
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6250
| 0x
| 0x0169
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 6xxx
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GeForce 7800 GTX
| 0x
| 0x0090 0x0091
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| tunnel gearbox cube cube2 25}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> 256MB DDR3 - 1 6pin psu connector -
* not working asus en7800gtx/2dhtv/256m/osp/a -
* Works XFX PV-T70F-UDD7 Works in steve jones' scrap pc aros build 2010 2 DVI-I ports
* Untested
|-
| GeForce 7800 GT
| 0x
| 0x0092
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7600gt (G8 ) (nv4 ) (2006)
| 0x
| 0x02E0 0x0391
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL 2.1
* not working
* working
|-
| GeForce 7800 SLI
| 0x
| 0x0095
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GTX
| 0x
| 0x0290
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GT GTO
| 0x
| 0x0291
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GS
| 0x10de
| 0x0292
| 0x0a1
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working
* Works with a few glitches with XFX Pine 0x2218
|-
| GeForce 7950 GX2
| 0x10de
| 0x0293 0x0294
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| GeForce 7950 GT
| 0x
| 0x0295 0x02E4
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GS
| 0x
| 0x02E3
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7600 GS
| 0x
| 0x02E1 0x0392
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7650 GS
| 0x
| 0x0390
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7600 LE
| 0x
| 0x0394
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7800GS (G8 ) (nv4 ) (2006)
| 0x
| 0x0093 0x00F5
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working
* works if AGP motherboard chipset is supported - Hardware OpenGL 2.1
|-
| GeForce 7100 GS
| 0x
| 0x016A
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7350 LE
| 0x
| 0x01D0
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7300le (G8 ) (nv4 ) (2006)
| 0x
| 0x01D1
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7300SE 7200GSGF-7200GS-N-B1 variant (G72)
| 0x10de
| 0x01D3
| 0x0a1
| <!--2D-->
| <!--3D-->
| <!--Analogue-->{{Unk|1x DVI, 1x VGA, 1x S-Video}}
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2007 40W pci-e 1.0 VP1 no unified shaders -
* not working Asus on via chipset (2015),
* works Asus on intel chipset (2015),
|-
| Geforce 7300gt (G8 ) (nv4 ) (2006)
| 0x
| 0x0395 0x0393
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working
* works
|-
| GeForce 7300 GS
| 0x
| 0x01DF
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7500 LE
| 0x
| 0x01DD
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7xxx
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GeForce 8800 Ultra (NV50 family)
| 0x
| 0x0194
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NV50 GeForce 8 to GeForce 200s opengl 3.x - max res - 80nm technology - PureVideo HD 2 or VP2 Nvidia VDPAU Feature Set A (absent from ultra and some 8800gt?) added a dedicated bitstream processor (BSP) and enhanced video processor for H.264, VC-1 acceleration
|-
| Geforce 8800gts (nv50) (G8x) (2007)
| 0x
| 0x0400 0x0600 0x0193
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2007 200w openGL3 openCL - 2x6pin psu
* not working 0x0193 models (2015) on via chipsets,
* works
|-
| Geforce 8800gtx (nv5 ) (G8x) (2007)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2008 200W 1x 6pin connector,
* not working
* working
* untested XFX PV-T88P-YDF4, Alpha Dog Edition runs extremely hot - Gigabyte GV-NX88T512H,
|-
| GeForce 8800 GT
| 0x
| 0x0602 0x0611 0x0193
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->DVI up to 2500 x 1600
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - 6pin psu power connector required
* not working
* untested Asus EN8800GT/HTDP/256M EN8800GT/HTDP/512M EN8800GT/G/HTDP/512M
* works
|-
| GeForce 8800 GT (G92)
| 0x10de
| 0x0611
| 0x0a2
| <!--2D-->{{Yes|6.11 Pixel Text}}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{N/A}}
| <!--Digital-->{{Yes}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3 pci-e 2.0 8800GT 512MB on Icaros 2.0.3 [[File:8800GT aros heads.png|thumb|8800GT]] [[File:8800GT aros tails.png|thumb|8800GT detail]]
|-
| Geforce 8600gt (nv5 ) (G8x) (2007)
| 0x
| 0x0401 0x0402
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res
* not working
* works
|-
| GeForce 8500 GT
| 0x
| 0x0421
| 0x0
| <!--2D-->{{Yes| some color }}
| <!--3D-->{{yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL tests - max opengl 3.x but 2.1 offered - max res
* not working
* works Gigabyte 8500 GT,
|-
| GeForce 8800 GS
| 0x
| 0x0606 0x060D
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res
|-
| GeForce 8600GS
| 0x
| 0x0403
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 3.x VP3 offers complete hardware-decoding for all 3 video codecs of the Blu-ray Disc format: MPEG-2, VC-1, and H.264 - Nvidia VDPAU Feature Set B
|-
| GeForce 8300 GS
| 0x
| 0x0423
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res
|-
| Geforce 8400gs G98GS (end 2007) GT218 (2009)
* Rev2 with 8/16 cores and 128-512MB of DDR2 or GDDR3 memory.
* Rev3 with 8 cores and 512MB-1GB of DDR3 memory (based on Tesla 2.0)
| 0x
| 0x0424 0x0422
| 0x0
| <!--2D-->{{Yes|Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 490 gearbox 505 Cube 135 Cube2 55 quake3 }}
| <!--Analogue-->{{Yes|works digital part of DVI but nothing from any display port}}
| <!--Digital-->{{Yes|output on digital 24 pin array of DDWG's DVI and hdmi}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 50W openGL 3.1 openCL - case single slot - one single-link DVI digital output, supporting up to one 1920x1080 resolution display - analog resolution 640 x 480 to 1024 x 768 16 and 24 bit color - [http://www.phoronix.com/scan.php?page=article&item=nouveau_comp_2011&num=19 runs a little hotter than expected] - G98 VP3 pci-e 2.0 512MB DDR2 -
* not working
* works Asus EN8400GS SILENT/P/512M PCIe (G98),
|-
| Geforce 8400gs (nv50) (G86) (mid-2007)
* Rev1 with 16 cores / 256MB of DDR2 memory.
| 0x
| 0x0404
| 0x0
| <!--2D-->{{Yes|Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 490 gearbox 505 Cube 135 Cube2 55 quake3 }}
| <!--Analogue-->{{Yes|works but not tested thru 4 pins of analog signal of DVI plug}}
| <!--Digital-->{{Yes|output on digital 24 pin array of DDWG's DVI and hdmi}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2008 50W openGL 3.1 openCL - case single slot - one single-link DVI digital output up to 1920x1080 resolution display - analog resolution 640 x 480 to 1024 x 768 16 and 24 bit color - [http://www.phoronix.com/scan.php?page=article&item=nouveau_comp_2011&num=19 runs a little hotter than expected] - G86 VP2 128MB -
* not working XFX PV-T86S-YAJG NVIDIA GeForce 8400 GS 512MB DDR2, Sparkle 8400GS 512MB SX84GS512D2L-DPP,
* works Asus EN8400GS SILENT/HTP/256M SILENT/HTP/512M/A,
|-
| GeForce 8400 SE
| 0x
| 0x0420
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 2.x openCL
|-
| NVidia Quadro NVS290 DMS-59
| 0x
| 0x0403
| 0x0
| <!--2D-->{{no| }}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk|DMS-59 socket}}
| <!--Digital-->{{unk|DMS-59 }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2008 21W - G86S (G86-827-A2) - 16 shading units, 8 texture mapping units, and 4 ROPs. NVIDIA has paired 256 MB DDR2 - PCIe 1.0 x16 Low Profile -
|-
| Geforce Quadro FX 4600 (SDI), 5600
| 0x
| 0x
| 0x0
| <!--2D-->{{Partial|VESA 2d}}
| <!--3D-->{{no| }}
| <!--Analogue-->{{partial| }}
| <!--Digital-->{{partial| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GeForce 9800 GX2 (NV50 family)
| 0x
| 0x0604
| 0x0
| <!--2D-->{{Partial|VESA }}
| <!--3D-->{{no| }}
| <!--Analogue-->{{Partial| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 150w - 65nm technology
|-
| GeForce 9800 GTX
| 0x10de
| 0x0612
| 0x0a2
| <!--2D-->{{Yes| }}
| <!--3D-->{{Maybe|6.11 }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 2x6pin psu -
* not working xfx on via chipset (2015),
* works xfx on chipset intel ,
|-
| GeForce 9800 GTX+
| 0x10de
| 0x0613
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res 2560 x 1920 - case dual slot - 26amp 12v rail on computer psu if 2x6pin connectors needed - 55nm version of the G92 chip - will not work with PCI-e 1.0a slots -
* not working
* works on a few models
|-
| Geforce 9800gt (nv50) (G92a) (2008)
| 0x10de
| 0x0614
| 0x0xa2
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel 495 gearbox 513 Cube 156 Cube2 120 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{partial| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL 3.1 openCL 1.x - case dual slot - 600w 26amp on both 12v rails for 2x6pin psu on gfx card - no fan control - some come with 1x6pin - renamed version of the venerable GeForce 8800 GT - randomly works
* not working Gainward 512M untested
* working Gainward CardExpert (0x0401) Green Edition NE39800TFHD02-PM8D92 1024MB (no 6pin)
|-
| Geforce gf9600 9600gt (nv5 ) (G9x) (2008)
| 0x10de
| 0x0622
| 0x0a1
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel 493 gearbox 675 Cube Cube2 100 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL 3.2 openCL but no fan control - case dual slot - 1 6pin pcie psu connector - 500 Watt or greater power supply with a minimum of 26 Amp on the +12 volt rail - Max Analog: 2048x1536 and Max Digital: 2560x1600 (Dual Link DVI Only) - PCI Express® 2.0 / 1.1 Support - g96 gpu randomly works -
* not working bfg tech ocx,
* works gigabyte gv-n96tsl-512i -
|-
| Geforce gf9500 9500gt (nv5 ) (G9x) (2008)
| 0x10de
| 0x0640
| 0x0a1
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel 480 gearbox 500 Cube Cube2 64 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.2 - case single slot - 350 Watt/400 Watt or greater power supply with a minimum of 18 Amp/22 Amp on the +12 volt rail - Max Analog: 2048x1536 and Max Digital: 2560x1600 (Dual Link DVI Only) - PCI Express® 2.0 / 1.1 Support -
* not working zotac zone fanless, Gainward USA NE29500THHD01-PM8796, PNY G9500GN2E50X+0TE,
* works xfx xne-9500t-td01-pm8596 1024mb ddr2,
|-
| GeForce 9600 GS
| 0x
| 0x0623
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res - will not work with PCI-e 1.0a slots -
* not working
* works
|-
| GeForce 9600 GSO
| 0x
| 0x0610
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res - G92 chopped down - 9600GSO is re-badged 8800GS both very power hungry cards -
|-
| GeForce 9300 GS
| 0x
| 0x06E1
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 opengl 3.x - max res
|-
| Geforce 9400 GT (nv5 ) (G86S) (2008)
| 0x
| 0x
| 0x0
| <!--2D-->{{partial|}}
| <!--3D-->{{unk|}}
| <!--Analogue-->{{unk|1x DVI, 1x VGA, 1x S-Video}}
| <!--Digital-->{{unk|1x DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 50W opengl 3.x - max res
|-
| Geforce 9xxx (nv5 ) (G9x) (2008)
| 0x
| 0x
| 0x0
| <!--2D-->{{unk|}}
| <!--3D-->{{unk|}}
| <!--Analogue-->{{unk|}}
| <!--Digital-->{{unk|}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 opengl 3.x - max res
|-
| <!--Description-->Quadro FX 580 G96 chipset
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2009
|-
| <!--Description-->
NV84 (G84) GeForce 8600 (GT, GTS, M GT, M GS), 8700M GT,
NV92 (G92) GeForce 8800 (GT, GS, GTS 512, M GTS, M GTX)
GeForce 9600 GSO, 9800 (GT, GTX, GTX+, GX2, M GT, M GTX)
NV96 (G96) GeForce 9400 GT, 9500 (GT, M G), 9600 (M GS, M GT),
NV86 (G86) GeForce 8300 GS, 8400 (GS, M G, M GS, M GT), 8500 GT
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NVA0 (GT200) Tesla GeForce GTX (260, 275, 280, 285, 295)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->GeForce GTX 280 (NV50 family)
| <!--Vendor ID-->
| <!--Product ID-->0x05E1
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res PureVideo HD 4 (Nvidia Feature Set C or "VDPAU Feature Set C), VP4 added hardware to offload MPEG-4 Advanced Simple Profile (original DivX and Xvid)
|-
| <!--Description-->GeForce GTX 260
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x05E2
| <!--Revision-->
| <!--2D-->{{partial|Vesa}}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> 2 6pin - psu pci express 2.1 -
|-
| Geforce GTS250 250GTS (g92b) (2009)
| 0x10de
| 0x0615
| 0x0a2
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 486 gearbox 508-642 Cube Cube2 80 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> 2x6pin psu VP2 - pci-e 2.x - case dual slots - 738m 1gb ddr3 -
* not working Zotac branded version GDDR3 -
* works PNY gs-250x-zdfl and Gigabyte ??, BFG Tech RGTS2501024OCE, palit ne3ts250fhd52-pm8a92 with 2x6pin on top and hdmi output port,
|-
| <!--Description-->GeForce GT 240 (GT215 family)
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0ca3
| <!--Revision-->0xa2
| <!--2D-->{{Maybe|use VESA}}
| <!--3D-->{{No|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->late 2009 openGl 3.2 - case dual slots - no 6pin psu required with VP4 - All are pcie 2.1 cards and may not work in 1.0a slots -
* not working
* DDR3 with 512MB or 1GB -
* DDR5 -Asus ENGT240 - XFX Pine GT240XYHFC 0x3001 - Gigabyte GV-N240D5-512I rev 1.0 - Zotac AMP! with HDMI 1.3a with DisplayPort 1.1, Dual Link DVI -
* works
|-
| <!--Description-->GT220 (GT216) G220
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0a20
| <!--Revision-->0xa2
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Yes}}
| <!--Digital-->{{Yes|DVI }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> Icaros 2.0.3 GeForce GT220 1GB[[File:GT220 aros heads.png|thumb|GT220]][[File:GT220 aros tails.png|thumb|GT220]]
* untested NVIDIA Quadro® 400 512MB DDR3 GT216 DP DVI, AFox AF220 1Gb DDR3,
|-
| Geforce GT220 220GT G94 Tesla (g92b)
| 0x10de
| 0x0a20
| 0xa2
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 490 gearbox 505 cube 150 cube2 50 Quake3 }}
| <!--Analogue-->{{Unk|1x DVI, 1x VGA}}
| <!--Digital-->{{Yes|DVI but not 1x HDMI }}
| <!--Laptop LCD-->{{N/A}}
| 58W pci express 2.0 cards DDR3 - case single slot -
* not working ASUS ENGT220/DI/1GD2(LP)/V2 -
* works - gainward card expert 0x0401 GDDr3 512MB -
|-
| <!--Description-->GT210 GT 210 210GT G210 based on Tesla 2.0 GT218S GT218-300-A2 variant, GT218-300-B1
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0a65
| <!--Revision-->0xa2
| <!--2D-->{{Yes|6.11 Pixel Text}}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{Unk|1x DVI, 1x VGA}}
| <!--Digital-->{{Maybe|DVI out works but not hdmi or 1x DisplayPort}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 31W OpenGL 3.3 pci-e 2.0 cards - single slot -
* working GT218 based Asus EN210 based silent low profile large passively cooled -
* untested MSI GeForce 210 1GB DDR3 PCIe N210-MD1GD3H/LP,
* not working
|-
| <!--Description-->Nvidia ION2 (GT218) Tesla
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2012
|-
| <!--Description-->Quadro NVS 295 (256 MB GDDR3), NVS 450 (256M/512 MB DDR3)
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x
| <!--Revision-->
| <!--2D-->{{yes| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->
| <!--Digital-->{{partial|2 or 4 dp ports}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 25w low performance - G98s with 8 shading units, 4 texture mapping units, and 4 ROPs on PCI-Express 1.0 x16 -
*not working some NVIDIA Quadro NVS 295 2 dp ports (DELL, HP),
*working
|-
| <!--Description-->GT310 Tesla 310, 315, GT 320, GT 330 GT 340
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{Maybe|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2010 50w OpenGL 3.3 openCL all similar in performance to GT2xx except gt31x (poor)
|-
| <!--Description-->Quadro NVS310 NVIDIA NVS 310
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital--> 2 dp
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 25w GF119S (GF119-825-A1) 48 shading units, 8 texture mapping units, and 4 ROPs on PCI-Express 2.0 x16 - 512 MB DDR3 - PureVideo VP5 VDPAU Feature Set D -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description--> GTX 470, GTX 480 GF10 GF10* core (NVC0 family)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{Maybe| tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2010 215w 2x6 plugs - NVC0 family (Fermi) GF100 (GF100-275-A3) Fermi 448 shading units, 56 texture mapping units, and 40 ROPs with 1,280 MB GDDR5 - OpenGL4.5 OpenCL1.1 Tessellation - case dual slots -
|-
| Geforce GTX460 460GTX (G104) 256bit, 1GB v2 192bit and GTX 465
| 0x10de
| 0x0e22
| 0xa1
| <!--2D-->{{Maybe|VESA }}
| <!--3D-->{{Maybe| tunnel gearbox cube 055-111 cube2 50}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVC0 family (Fermi) OpenGL 4.x but - 2x6pin psu - case dual slots -
* not working evga 768MB GDDR5 192bit 01G-P3-1373-ER or 01G-P3-1372-TR
* works 1GB GDDR5 256bit 01G-P3-1371-ER
|-
| <!--Description-->Geforce GTX 460SE 192bit
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0e23
| <!--Revision-->0x91 or 0xa1
| <!--2D-->{{Yes| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->{{Yes| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> nouveau 6.11 - 2 6pin psu needed - case dual slots -
* not working
* works EVGA 01g-p3-1366-b6 et 1024MB p1041 -
|-
| Geforce GT450 GTS450 450GTS GF106
| 0x10de
| 0x0dc4
| 0x0a1
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel gearbox cube cube2 50 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes|DVI }}
| <!--Laptop LCD-->{{N/A}}
| 2010 Hardware OpenGL 4.2 but nouveau at 3.3 - most need 1x 6pin psu - case dual slots -
* not working
* DDR3 1 or 2GB - Palit NEAS450NHD41F,
* GDDR5 512Mb or 1GB - MSI MPN N450GTSM2D1GD5OC, Asus MPN ENGTS450DI1GD5,
* works Gainward Card Expert NE5S4500FHd51,
|-
| <!--Description-->GT 440 GF108 chipset or better OEM GF106
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 6.11 Pixel Text}}
| <!--3D-->{{Maybe| tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGl 4.1 opencl 1.x - no 6 pin psu - 96 cuda cores 128bit - case dual slots -
* not working
* OEM
* GDDR5 512MB to 1GB ASUSTeK ENGT440/DI/1GD5
* GDDR3 Asus 1gb to 2gb,
* works
|-
| <!--Description-->GT430 430GT (GF108)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|6.11 Pixel Text}}
| <!--3D-->{{Maybe|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->ddr3 memory 64bit or 128bit - buggy await new revision of driver
* not working
* works
|-
| <!--Description-->nVidia Quadro FX1800 768MB GDDR3 Full Height Graphics Card Workstation
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 6.11 Pixel Text}}
| <!--3D-->{{no|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->{{Maybe|DVI-I 2xDP}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->59W 768 MB GDDR3 memory using a 192-bit memory interface - OpenGL 3.3 -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GTX 590 Fermi
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->OpenGL4.4 OpenCL 1.1 - GDDR5 - 6pin and 8pin psu connectors - 512 cuda - case dual slots -
* not working
* works
|-
| <!--Description-->GTX 580,
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->PureVideo HD 5" or "VP5" (Nvidia Feature Set D or VDPAU Feature Set D) 4k UHD 3840 × 2160 H.264 decode -
|-
| <!--Description-->GTX 570,
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{Maybe|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working Zotac GTX 570, Gainward GTX560TI/570 Phantom,
* works gigabyte, evga
|-
| <!--Description-->Geforce 5xx 560gtx Fermi GTX 560,
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->opengl 4.x - 2 6pin psu - 384 cuda cores - case dual slots - will not work with PCI-e 1.0a slots -
* not working Asus ENGTX560 DC/2DI/1GD5,
* Ti LE 448 cuda GDDR5 320bit
* Ti 256bit
* works
|-
| <!--Description-->GTX 560 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working evga GTX 560Ti 01GP31560KR - Gainward GTX560TI/570 Phantom,
* works
|-
| <!--Description-->GTX 550 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x1201
| <!--Revision-->
| <!--2D-->{{Maybe|VESA Doom Doom2 Duke }}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->can hang on boot up on I2C Init or suffer random lockups on OpenGL apps - most need 1 6pin min 400W 24A on the +12V1 / +12V2 dual 12V rails of the computers' power supply unit - 192 cuda cores - case dual slots used - will not work with PCI-e 1.0a slots -
* not working eVGA GeForce GTX 550 Ti (1024 MB) (01GP31556KR) -
* untested asus Extreme, eVGA GeForce GTX 550 Ti (1024 MB) (01GP31557KR) - -
* works
|-
| <!--Description-->GT 545 and OEM GF116
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 4.2 opencl 1.x - GDDR5 with OEM only -
|-
| <!--Description-->GT530 OEM
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 6.11 Pixel Text}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->96 cuda cores - 1GB or 2GB DDR3 128bit
|-
| <!--Description-->GT520 520GT
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->untested 48 cuda cores - DDR3 64bit
|-
| <!--Description-->510, GT 530
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D 6.11 Pixel Text}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> ddr 3 - 50w max -
|-
| <!--Description-->GT610 Fermi GF119
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVS 315 300 GF119S
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{No|VESA}} needs special dms-59 cable
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 fermi 315 PNY VCNVS315-T 1Gb DDR3 but needs special dms-59 cable -
|-
| <!--Description-->GT630 GF108 Fermi
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->not accelerated 2015 - like the GT730 below - 96 cuda cores whilst kepler version has 384 - 128bit to keplers' 64bit bandwidth - kepler has 2GB DDR3
* not working Gigabyte
* DDR3
* GDDR5
* works
|-
| <!--Description-->Geforce GT 730 (two versions)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe| use VESA 6.11 Pixel Text}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> fermi version has 96 cuda cores 128bit GF108
* not working Asus
* works
|-
| <!--Description-->nVIDIA Quadro 4000
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}} 2 dp ports
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->142W 2Gb GDDR5 - PCI Express 2.0 x16 ; full Height card with 1x 6-Pin PCIe power need - CUDA Cores 256 - OpenGL 4.5
|-
| <!--Description-->nVIDIA Quadro 5000
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2011 200W 2.5Gb GDDR5 320 bit - PCI Express 2.0 x16 full Height card with 2x 6-Pin PCIe power need -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce GTX Titan GeForce GTX Titan Black GeForce GTX Titan Z
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVE0 family (Kepler) GeForce 600 GeForce 700 GeForce GTX Titan Kepler
|-
| <!--Description-->GeForce GTX 780 GeForce GTX 780 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->PureVideo HD 6" or "VP6" (Nvidia Feature Set E or VDPAU Feature Set E) significantly improved performance when decoding H.264 and MPEG-2
|-
| <!--Description-->GeForce GTX 770
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->opengl 4.4 opencl 1.1
|-
| <!--Description-->GeForce GTX 760 GeForce GTX 760 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce GT 740
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce GT 730 Kepler (two versions) f
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> kepler 384 cores 64bit GK208
|-
| <!--Description-->680gtx GK104 core gtx680 680m
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVE0 family (Kepler)
|-
| <!--Description-->GTX 690 Kepler NVE0
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->pci-e 3.0, OpenGL 4.4 OpenCL 1.1
|-
| <!--Description-->GTX 670
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GTX 660 GTX 660 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GTX 650 GTX 650 Ti GTX 650 Ti Boost
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVE0 family (Kepler) most need 1 6pin psu
* not working asus ENGTX560 DC/2DI/1GD5
* works
|-
| <!--Description-->Geforce GT 640
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* 128bit DDR3
* 192bit DDR3 1.5 to 3GB 50W
* 128bit GDDR5 75W
|-
| <!--Description-->GT 620 GT 640
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->Quadro K2000 NVE7 (GK107) Kepler
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 - 50w single slot pcie 2.0 -
|-
| <!--Description-->NVIDIA® Quadro® K4200 GK10 Kepler
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2014 4Gb GDDR5 - 105W 1 6pin -
|-
| <!--Description-->NVIDIA® Quadro® K420 1GB DDR3 Kepler
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2014 41W -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce 750ti, GeForce 900
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->[https://nouveau.freedesktop.org/FeatureMatrix.html NV110] Maxwell -
|-
| <!--Description-->Nvidia GTX 750
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x1381
| <!--Revision-->0xa2
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2026 nvidia test
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->GM206 2nd gen maxwell PureVideo HD 7" or "VP7" (Nvidia Feature Set F or VDPAU Feature Set F) adds full hardware-decode of H.265 HEVC Version 1 (Main and Main 10 profiles and full fixed function VP9 (video codec) hardware decoding
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV132 (GP102) NVIDIA Titan (X, Xp), GeForce GTX 1080 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV134 (GP104) GeForce GTX (1070, 1080)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV136 (GP106) GeForce GTX 1060
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->Quadro K620 Maxwell
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2014 50w slim low profile 2gb ddr3 -
|-
| <!--Description-->quadro p620 2gb gddr5 128bit and quadro p1000 4gb gt1030 30w
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 50w slim low profile -
|-
| <!--Description-->GeForce gtx 1060, GeForce 1070
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NV130 Pascal
|-
| <!--Description-->NV137 (GP107) GeForce GTX (1050, 1050 Ti)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV138 (GP108) GeForce GT 1030
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->NV130 family (Pascal)
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV162 (TU102) NVIDIA Titan RTX, GeForce RTX 2080 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV164 (TU104) GeForce RTX (2070 Super, 2080, 2080 Super)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2020 NV160 family (Turing) unified gsp-rm firmware - best starting point for Vulkan support
|-
| <!--Description-->NV166 (TU106) GeForce RTX (2060, 2060 Super, 2070)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV168 (TU116) GeForce GTX (1650 Super, 1660, 1660 Ti, 1660 Super)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV167 (TU117) GeForce GTX 1650
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->gtx 1650ti super
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2018 old style
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV172 (GA102) GeForce RTX (3080, 3090)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 av1 decoding ampere
|-
| <!--Description-->NV174 (GA104) GeForce RTX (3060 Ti, 3070, 3080 Mobile)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->NV170 family (Ampere)
|-
| <!--Description-->NV176 (GA106) GeForce RTX (3050, 3060)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV177 (GA107) GeForce RTX 3050
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV192 (AD102) GeForce RTX 4090
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV193 (AD103) GeForce RTX 4080
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->NV190 family (Ada Lovelace)
|-
| <!--Description-->NV194 (AD104) GeForce RTX (4070, 4070 Ti)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV196 (AD106) GeForce RTX 4060 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV197 (AD107) GeForce RTX 4060
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
|}
==== nouveau mobile integrated ====
If you purchased a notebook with an NVidia sticker on it, most of the time you have a optimus based one, ie Intel CPU+GPU melded with Nvidia GPU, Optimus was slated at one point to go into desktop PCs but the industry ended up rejecting that concept
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|-
| GeForce 6100 nForce 405
| 0x
| 0x03D1 0x0242
| 0x0
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
|
|-
| <!--Description-->GeForce 6100 nForce 400
| <!--Vendor ID-->
| <!--Product ID-->0x03D2
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce 6100 nForce 420
| <!--Vendor ID-->
| <!--Product ID-->0x03D5
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce 6150 LE
| <!--Vendor ID-->
| <!--Product ID-->0x0241
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6150SE nForce 430
| 0x
| 0x03D0
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| working
|-
| <!--Description-->GeForce 6150
| <!--Vendor ID-->
| <!--Product ID-->0x0240
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7150M / nForce 630M
| <!--Vendor ID-->
| <!--Product ID-->0x0531
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7000M / nForce 610M
| <!--Vendor ID-->
| <!--Product ID-->0x0533
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7050 PV / NVIDIA nForce 630a
| <!--Vendor ID-->
| <!--Product ID-->0x053A 0x053B
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Geforce IGP 7025 nForce 630a
| 0x
| 0x053E
| 0x0
| <!--2D-->{{Yes|some}}
| <!--3D-->{{Yes|some}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No| }}
| some support on some chipsets
|-
| GeForce 7100 / nForce 630i (C73)
| 0x10de
| 0x07e1
| 0x0a2
| <!--2D-->{{Maybe}}
| <!--3D-->{{Maybe}}
| <!--Analogue-->{{Maybe}}
| <!--Digital-->{{Maybe}}
| <!--Laptop LCD-->{{N/A}}
| Icaros 2.0.3 and Gigabyte 73-pvm-s2h rev. 1.0 but will not boot on [https://ae.amigalife.org/index.php?topic=806.msg8765#new Acer x270 with Icaros 2.3]
|-
| <!--Description-->GeForce 7150 / NVIDIA nForce 630i
| <!--Vendor ID-->
| <!--Product ID-->0x07E0
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7050 / NVIDIA nForce 610i
| <!--Vendor ID-->
| <!--Product ID-->0x07E3
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Geforce IGP 8100 (nForce 720a)
| 0x
| 0x084F
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
|
|-
| GeForce 8100P
| 0x
| 0x0847
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
|
|-
| <!--Description-->Geforce 8200 8300 nForce 730a
| <!--Vendor ID-->
| <!--Product ID-->0x084A 0x0848 (GeForce 8300) 0x0849 (GeForce 8200) 0x084B (GeForce 8200)
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->working on some 8300's with Icaros 1.5 but others untested
|-
| <!--Description-->nForce 780a SLI
| <!--Vendor ID-->
| <!--Product ID-->0x084C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->nForce 750a SLI
| <!--Vendor ID-->
| <!--Product ID-->0x084D
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Nvidia Geforce IGP 9300 (nForce MCP7a)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->works
|
|-
| <!--Description-->9400 (ION)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->If AROS detects GPU chipset, works well
|-
| <!--Description-->9700M ()
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Geforce ION 2
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->works well
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce Go 6150
| <!--Vendor ID-->
| <!--Product ID-->0x0244
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6100
| <!--Vendor ID-->
| <!--Product ID-->0x0247
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6200
| <!--Vendor ID-->
| <!--Product ID-->0x0164 0x0167
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6400
| <!--Vendor ID-->
| <!--Product ID-->0x0166 0x0168
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->Sony Laptop
|-
| <!--Description-->GeForce Go 6800
| <!--Vendor ID-->
| <!--Product ID-->0x00C8
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6800 Ultra
| <!--Vendor ID-->
| <!--Product ID-->0x00C9
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600
| <!--Vendor ID-->
| <!--Product ID-->0x0144
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600 TE/6200 TE
| <!--Vendor ID-->
| <!--Product ID-->0x0146
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600
| <!--Vendor ID-->
| <!--Product ID-->0x0148
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600 GT
| <!--Vendor ID-->
| <!--Product ID-->0x0149
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7200
| <!--Vendor ID-->
| <!--Product ID-->0x01D6
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7300
| <!--Vendor ID-->
| <!--Product ID-->0x01D7
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->untested
|-
| <!--Description-->GeForce Go 7400
| <!--Vendor ID-->
| <!--Product ID-->0x01D8
| <!--Revision-->
| <!--2D-->
| <!--3D-->works 2D and 3d issues though
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7800
| <!--Vendor ID-->
| <!--Product ID-->0x098
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7800 GTX
| <!--Vendor ID-->
| <!--Product ID-->0x0099
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7950 GTX
| <!--Vendor ID-->
| <!--Product ID-->0x0297
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7900 GS
| <!--Vendor ID-->
| <!--Product ID-->0x0298
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7900 GTX
| <!--Vendor ID-->
| <!--Product ID-->0x0299
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7600
| <!--Vendor ID-->
| <!--Product ID-->0x0398
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7600 GT
| <!--Vendor ID-->
| <!--Product ID-->0x0399
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 6610 XL
| <!--Vendor ID-->
| <!--Product ID-->0x0145
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 6700 XL
| <!--Vendor ID-->
| <!--Product ID-->0x0147
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce 8700M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0409
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8600M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0425
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8400M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0426
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8400M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0427
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8400M G
| <!--Vendor ID-->
| <!--Product ID-->0x0428
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8800M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x0609
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8800M GTX
| <!--Vendor ID-->
| <!--Product ID-->0x060C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9500M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0405
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8600M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0407
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9650M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0408
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9400M GT
| <!--Vendor ID-->
| <!--Product ID-->0x042C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9300M G
| <!--Vendor ID-->
| <!--Product ID-->0x042E
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9100M G
| <!--Vendor ID-->
| <!--Product ID-->0x0844
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9800M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x0628
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9700M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x062A
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9800M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x062C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9600M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0647
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9600M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0648
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9600M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0649
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9500M G
| <!--Vendor ID-->
| <!--Product ID-->0x064B
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9300M GS
| <!--Vendor ID-->
| <!--Product ID-->0x06E5
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9200M GS
| <!--Vendor ID-->
| <!--Product ID-->0x06E8
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9300M GS
| <!--Vendor ID-->
| <!--Product ID-->0x06E8
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->NV50 (G80) Quadro FX (4600 (SDI), 5600)
Quadro FX (2800M, 3600M, 3700, 3700M, 3800M, 4700 X2), VX 200
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV94 (G94) 9700M GTS, 9800M GTS, GeForce G 110M, GT 130(M), GT 140, Quadro FX (1800, 2700M)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV84 (G84) Tesla 8700M GT, GeForce 9500M GS, 9650M GS
Quadro FX (370, 570, 570M, 1600M, 1700), NVS 320M
NV86 (G86) GeForce 8300 GS, 8400 (GS, M G, M GS, M GT), 8500 GT, GeForce 9300M G
Quadro FX 360M, NVS (130M, 135M, 140M, 290)
GeForce GTS 150(M), GTS 160M, GTS 240, GTS 250, GTX (260M, 280M, 285M), GT (330, 340)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV96 (G96) 9650M GT, 9700M GT
GeForce G 102M, GT 120
Quadro FX (380, 580, 770M, 1700M)
NV98 (G98) GeForce 8400 GS, GeForce 9200M GS, 9300 (GE, GS, M GS)
GeForce G 100, G 105M
Quadro FX (370 LP, 370M), NVS (150M, 160M, 295, 420, 450)
Quadro CX, FX (3800, 4800, 5800)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVA3 (GT215) GeForce GT (240, 320, 335M), GTS (250M, 260M, 350M, 360M) Quadro FX 1800M
NVA5 (GT216) GeForce GT (220, 230M, 240M, 325M, 330M), 315
Quadro 400, FX 880M, NVS 5100M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVA8 (GT218) Tesla GeForce 8400 GS, GeForce 210M, 305M, 310M, Quadro FX 380M, NVS 2100M, 3100M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVAA (MCP77/MCP78) GeForce 8100, 8200, 8300 mGPU / nForce 700a series, 8200M G
NVAC (MCP79/MCP7A) ION, GeForce 9300, 9400 mGPU / nForce 700i series, 8200M G, 9100M, 9400M (G)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVAF (MCP89) GeForce 320M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NVC0 (GF100) Fermi GeForce GTX 480M, Quadro 5000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVC1 (GF108) GeForce GT 415M, 420M, 425M, 435M, 520M, 525M, 540M, 550M, 555M, 630M, 635M, 640M LE, Quadro 1000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVC3 (GF106) Fermi GeForce GT 445M, 555M, 630M, 635M), GTX 460M, Quadro 2000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVC4 (GF104) GeForce GTX 470M, 485M, Quadro 5000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVCE (GF114) GeForce GTX 570M, 580M, 670M, 675M,
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVD7 (GF117) Fermi Geforce GT 620M, 625M, (some) 630M, 710M, 720M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVD9 (GF119) Fermi GeForce 410M, GT 520M, 520MX, 610M, Quadro NVS 4200M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NVE4 (GK104) GeForce GTX 670M, 680M, 775M, 780M, 860M, Quadro K3000M, K3100M, K4000M, K4100M, K5000M, K5100M,
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVE7 (GK107) GeForce GT640M, 645M, 650M, 710M, 720M, 730M, 740M, 745M, 750M, 755M, GTX 660M, K500M, K1000M, K1100M, K2000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GTX 1650 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2019 turing architecture - last old skool support pre Vulkan
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rtx 2050 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 ampere architecture best starting point for vulkan support
|-
| <!--Description-->rtx 2060 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rtx 4060 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
|}
====radeon.hidd====
Michel Shultz ''2D'' graphics driver (standard on most distributions but only for very old GPUs) and bearsofts updated 2013 around Icaros 1.3.1
3D is not implemented by AROS yet but could cover these AMD chipsets
<pre>
2014 SI AMD HD 7xxx
2016 GCN3rd AMD R5E R7E
2019 GCN5th AMD Vega 8
2022 RDNA1 AMD RX5500 desktop only
2023 RDNA2 AMD 680M 780M
2024 RDNA3 AMD 880M 890M
2025 RDNA3.5 AMD 8060S strix halo and AI
2027 RDNA4 AMD
</pre>
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! 2D
! 3D
! Analogue Output
! Digital Output
! Laptop LCD
! Comments
|-
| 7000 (r100)
| 0x1002
| 0x5159
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->{{Maybe|vga15 pin connection but not s-video}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.3
|-
| 7500 (rv200 but still r100 based)
| 0x1002
| 0x5157
| 0x
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->{{Yes|vga15}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.3
|-
| 8000 8500 (r200)
| 0x1002
| 0x514c (8500LE)
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.4
|-
| 9000 9100 9250 (r200)
| 0x1002
| 0x5964 (9000) 0x514d (9100)
| 0x0001
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->{{Maybe|VGA15 but not s-video}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.4
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| 9600 9800 (r300)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1
|-
| x300 x600 (r300)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1
|-
| x700, x800 ([http://en.wikipedia.org/wiki/Radeon_R600 r420])
| 0x
| 0x554d (R430 x800xl)
| 0x0
| <!--2D-->{{Yes|new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1 - x800 XL PCIE (problem with mouse-pointer, some part of the pointer is not transparent)
|-
| x1300 x1550 x1600 x1800 x1900 x1950 ([http://en.wikipedia.org/wiki/Radeon_R520 r520])
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes|new driver}}
| <!--3D-->{{no}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| HD2400 HD2600 HD2900 ([http://en.wikipedia.org/wiki/Radeon_R600 r600])
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|some features with new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 3.3 open CL 1.2 TeraScale architecture
|-
| HD3400 HD3600 HD3800 (r600)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|some features with new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->pci-e 2.0, openGL 3.3
|-
| HD4300 HD4500 HD4600 HD4700 HD4800 ([http://en.wikipedia.org/wiki/Radeon_R600 r700])
| 0x1002
| 0x
| 0x0
| <!--2D-->{{Maybe|but some later cards need 3D engine for faster and more flexible 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 3.3 - DDR3 - GDDR5 was one of AMD's aces for the 4800 series - 4670 liked -
|-
| HD6900 cayman series
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|some features with new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 3.3 open CL not mature (2014) -
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| HD5400 Series HD5430 HD5450 HD5470
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2010 openGL 3.3 openCL - GDDR3 -
|-
| HD5500 Series HD5550 HD5570 HD5600 Series HD5650 HD5670 HD5700 Series HD5750 HD5770
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 3.3 openCL - GDDR5
|-
| HD 5800 Series HD5850 HD5870 HD5900 Series HD5950 HD5970 - HD6xxx not NI chipset ([http://en.wikipedia.org/wiki/Evergreen_(GPU_family) r800 evergreen])
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 openGL 3.3 openCL - DDR5 pci-e 2.1 best avoided for all pci-e 1.0 mobos - Ati TeraScale2 architecture -
|-
| HD6450 [http://en.wikipedia.org/wiki/Northern_Islands_(GPU_family) Northern Islands chipset]
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> - DDR3 -
|-
| HD6600 Series HD6650 HD6570 HD6600 Series HD6650 HD6670
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2011 - DDR5 -
Radeon HD 8470 11 TeraScale 2
Radeon HD 8350 11 TeraScale 2
Radeon HD 7510 11 TeraScale 2
Radeon HD 6550D 11 TeraScale 2
Radeon HD 6530D 11 TeraScale 2
Radeon HD 6410D 11 TeraScale 2
Radeon HD 6370D 11 TeraScale 2
Radeon HD 6320 11 TeraScale 2
Radeon HD 6310 11 TeraScale 2
Radeon HD 6290 11 TeraScale 2
Radeon HD 6250 11 TeraScale 2
|-
| HD6800 Series HD6850 HD6870 HD6700 Series HD6790 to HD6990
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2011 - DDR5 - AMD TeraScale3 -
|-
| <!--Description-->HD7450-HD7670
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 OpenGL but not Vulkan
Radeon HD 7660D 11 TeraScale 3
Radeon HD 7560D 11 TeraScale 3
Radeon HD 7540D 11 TeraScale 3
Radeon HD 7480D 11 TeraScale 3
Radeon HD 6930 11 TeraScale 3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->HD7750 HD 7770 / R7 250X HD7850 HD7870 / R9 270X HD 7950 / R9 280 HD 7970 / R9 280X [http://en.wikipedia.org/wiki/Southern_Islands_(GPU_family) Southern Islands]
*AMD Radeon R7 250XE Cape Verde XT
*AMD Radeon R7 M465X Cape Verde
*AMD Radeon R9 255 Cape Verde PRX
*AMD Radeon HD 7750 Cape Verde PRO
*AMD Radeon R7 250E Cape Verde PRO
*AMD Radeon HD 8740 Cape Verde PRO
*AMD Radeon HD 7730 Cape Verde LE
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 pci-e 3.0 1st Gen GCN architecture -
|-
| <!--Description-->R5 430, FirePro W2100,
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 50W+ openGL openCL 1/3 speed of gtx750ti 1st gen gcn1
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->HD7790 [ Sea Islands ]
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 openGL 4.1 open CL - GCN2.0 Vulkan 1.0 introduced a Shader Engine (SE) comprising one geometry processor, up to 44 CUs (Hawaii chip), rasterizers, ROPs, and L1 cache and Graphics Command Processor for faster audio/video - suits Vulkan 1.1
|-
| <!--Description-->r5 240 240x (slow) R7 250 250x (faster) HD 7790 / R7 260 260X / R7 360 to R5 350 (fast) and last one R5 430 OEM Plus (slow again)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 50W+ GCN 1st gen - openGL 4.x openCL 1.x Vulkan 1.0
|-
| <!--Description-->R9 290 / R9 390 R9 290X / R9 390X
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2014 GCN 1.1 2nd Gen architecture - openGL 4.x openCL 1.x Vulkan 1.1 -
|-
| <!--Description-->R9 Fury Nano
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 GCN 1.2 3rd Gen - openGL openCL vulkan
|-
| <!--Description-->r-200 series r8 275 285 295 375 [Volcanic Islands]
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 GCN1.2 - openGL 4.x openCL 1.x Vulkan 1.2
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 [https://gpuopen.com/download/AMD_GCN3_Instruction_Set_Architecture_rev1.1.pdf GCN3]
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Radeon™ RX 5700/5600/5500 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 GCN 4 - OpenGL 4, Vulkan 1.3 -
|-
| <!--Description-->Radeon™ RX 400/500 Series like rx vega 580
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->Radeon™ Pro WX 9100, x200 Series and Radeon™ Pro W5700/W5500 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Radeon™ RX 7900/7600 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->Radeon™ RX 6900/6800/6700/6600/6500 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|}
==== amd radeon mobile integrated ====
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|-
| <!--Description-->ATI RC410 [Radeon Xpress 200M]
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x5a62 0x5955 0x5974 (200m)
| <!--Revision-->0x00
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->
|-
| <!--Description-->Mobility Radeon 7500
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x4c57 (7500)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->
|-
| <!--Description-->Mobility Radeon 9000
| 0x1002
| 0x4966 (9000)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->
|-
| <!--Description-->Mobility Radeon 9500 9550 (rv360) 9600 (rv350)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon 9800 (rv420)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon X300 (RV370) X600 (RV380)
| 0x1002
| 0x (RV370) 0x5657 (RV380)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon X700 (RV410) X800 (RV423)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon X1200 (RS69M0)
| 0x1002
| 0x791f
| 0x0
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->X1200 IGP (RS690)
|-
| <!--Description-->Mobility Radeon X1300 X1350 X1400(rv515) X1600 (rv530) X1650 (RV535) X1800 (rv520) x1900 (rv570)
| 0x1002
| 0x71c7 (X1650)
| 0x009e
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon 2100
| 0x1002
| 0x796e (2100)
| 0x0
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{No|}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 2400 (rv610) HD2600 (rv630)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 3100 HD3200 HD3450 3470 (RS780MC RV620) 3670 (M86-XT RV635) HD3870 (M88-LXT RV670)
| 0x1002
| 0x9610 and 0x9612 (HD3200) 0x9614 (HD3300)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 4200 4250 (RV620)
| 0x1002
| 0x (HD4200) 0x9715 (HD4250)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 4330 4530 4550 (M92 RV710) 4650 (M96-XT RV730) 4670 RV730XT 4830 (M97 RV740) 4850 (M98 RV770)
| 0x1002
| 0x (HD4350) 0x9442 (RV770) 0x9490 (HD4670)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 530v (M92 RV710) HD 550v (M96 RV730)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->no support yet
|-
| <!--Description-->Mobility Radeon HD 5430 HD5650 (cedar Park LP)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->no support yet
|-
| <!--Description-->Radeon HD 6250 6290 6310 6320 6350M (Redwood Capilano PRO)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->no support yet
|-
| <!--Description-->AMD 7640G, 8450G, 8550G, 8650G Northern Islands
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 Last real support for old graphics standard before Vulkan takeover
|-
| <!--Description-->R5 M230 M240 M255 - R7 M260 M265 (Kaveri Crystal series with Mantle and HSA)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->2015 Maybe better with Vulkan
|-
| <!--Description-->R5E R7E
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->2016 bristol ridge GCN 3.0 IGP (Carrizo Mobile)
|-
| <!--Description-->AMD Vega 3, 6, 8, 11 iGP
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2018 raven ridge GCN 5th Gen
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->5500m 5600m 5800m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA1 NaviX1 Zen 2
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rx680m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA2 NaviX2 Zen 3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->phoenix apu 1103
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 RDNA3 NaviX3 zen 4
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
==== AMDGPU Vulkan desktop ====
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Kaveri 290 290X, 260 260X
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 AMDGPU Vulkan
|-
| <!--Description-->R9 285 / R9 380 R9 380X Fury / Fury X
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->opengl 4 opencl 1 3rd Gen GCN architecture
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX470 RX460 RX480 RX580 polaris10
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 opengl 4 opencl 2 4th Gen GCN architecture vulkan 1.3
|-
| <!--Description-->RX460 RX560D polaris11
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 opengl 4 opencl 2 4th Gen GCN architecture vulkan 1.3
|-
| <!--Description-->RX580 polaris20
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 opengl 4 opencl 2 4th Gen GCN architecture vulkan 1.3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX 5000 5500 Navi 1x
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RNDA 1
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX 6000 Navi 2x
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RNDA 2 Mesa 21.3 decode av1
|-
| <!--Description-->RX6000
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX 7000
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 RNDA 3 navi
|-
| <!--Description-->RX7000
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->RX9070 rx 9060 XT
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2025 rdna4 navi
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2026 udna (aka rdna5)
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
|}
==== AMDGPU Vulkan mobile ====
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->R5E R7E
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->2016 bristol ridge GCN 3.0 IGP (Carrizo Mobile)
|-
| <!--Description-->Vega 8
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> GCN 5
|-
| <!--Description-->Vega iGP 3, 6, 8, 11
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2018 raven ridge - Graphics Core Next (GCN) 5th gen -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->5500m 5600m 5800m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA1 NaviX1 Zen 2
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rx680m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA2 NaviX2 Zen 3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->phoenix apu 1103
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA3 NaviX3 zen 4
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
fyi if a notebooks with two graphic cards, the integrated Intel card (id 0x7d) for low power usage and a discrete Radeon card (id 0x56) which should be used for GPU-intensive applications. By default the Intel card is always used
[https://wiki.archlinux.org/title/ATI Gallium Radeon HD] is not ported yet but is [https://www.phoronix.com/scan.php?page=news_item&px=Linux-5.9-AMDGPU-Stats really big] and complex so another solution may have to be [https://discuss.haiku-os.org/t/the-graphics-acceleration-can-of-worms/10515/5 found] like [https://discuss.haiku-os.org/t/vulkan-lavapipe-software-rendering-is-working-on-haiku/11363/10 vulkan] where support starts from very recent ISA GCN islands HD7000s cards only
*Vulkan
*Gallium
Vulkan software renderer allows to prepares the infrastructure for hardware rendering. Primary difference between software and hardware renderer is output to regular RAM vs GPU RAM, the rest is almost the same. It is possible to render to GPU RAM offscreen.
bare bones basics data flow
application,>>> api/opengl/vulkan>>>>, jit compiler, >>>>memory manger, >>>>gpu hardware
so you need to have a compiler that takes your api call/program/shaders/drawing commands and turns them into a program the gpu can render.
the vulkan to amd gpu compiler for shaders and textures is nearly os agnostic iirc as long as you have solid posix compliance
Unlike OpenGL, Vulkan does not depend on windowing system and it have driver add-on system with standardized API (Mesa also have OpenGL driver add-ons, but it have non-standard Mesa-specific API). OpenGL may need more work for windowing system related code at this point but developing Vulkan on real hardware is more strategic than developing OpenGL, since now Zink 3 running on Vulkan compensates for the lack of OpenGL support by giving performance similar to native accelerated OpenGL
RadeonGfx use client-server model with client-server thread pairs. For each client thread that calls 3D acceleration API, server side thread is created. If client thread terminates, server side thread also exit.
==Rough gfx comparison==
<pre>
Group 1
GeForce RTX 5090 5070 5060 5050
GeForce RTX 4090 4070 4060 4050
Group 2
GeForce RTX 2070
Radeon RX 7600
Quadro RTX 5000
Radeon PRO W6600
GeForce RTX 2060 12GB
Radeon PRO W7500
Quadro GP100
Radeon RX 6800S
GeForce RTX 3070 Laptop GPU
GeForce GTX 1080
GeForce RTX 3060 8GB
Quadro RTX 4000
Radeon Pro W5700
Radeon RX 6600
GeForce RTX 2080 (Mobile)
Radeon RX 7700S
Radeon RX 6700S
Radeon RX 6600S
Quadro RTX 5000 (Mobile)
GeForce GTX 1070 Ti
GeForce RTX 4050 Laptop GPU
Radeon Pro Vega 64X
Radeon RX 5700
Radeon RX Vega 64
GeForce RTX 2060
GeForce RTX 2070 Super with Max-Q Design
Group 3
Radeon RX 6600M
GeForce GTX 1070
Radeon RX 6650M
GeForce RTX 3060 Laptop GPU
Radeon RX Vega 56
Radeon RX 6700M
GeForce RTX 2080 with Max-Q Design
Radeon RX 6800M
GeForce GTX 980 Ti
Radeon R9 Fury
GeForce GTX 980
Quadro M5500
Radeon R9 390X
Radeon RX 580
Radeon RX 5500
Radeon RX 6550M
GeForce GTX 1660 Ti with Max-Q Design
GeForce GTX 780 Ti
GeForce GTX 970
Radeon R9 290X
Radeon RX 480
Radeon RX 5600M
Quadro RTX 3000 with Max-Q Design
Radeon R9 290X / 390X
Ryzen 5 4600HS with Radeon Graphics
Radeon R9 290
Radeon Pro 5500 XT
Radeon R9 M490 *
GeForce GTX 780
Radeon RX 6500M
Quadro M5500
GeForce GTX 1060 with Max-Q Design
Radeon RX 6500
Radeon RX 5300
Intel Arc A770M
GeForce GTX 1650 Ti
Radeon Pro 580X
Radeon RX 6400
GeForce RTX 2050
Ryzen 9 4900HS with Radeon Graphics
Radeon Ryzen 9 6900HS
GeForce GTX 980M
Quadro M5000M
Radeon RX 6300
GeForce GTX 1650 Ti with Max-Q Design
Radeon Pro 570
Ryzen 9 6900HS with Radeon Graphics
GeForce GTX 1050 Ti
Quadro M4000M
Radeon R9 280X 380X
GeForce GTX 1650 with Max-Q Design
GeForce MX570
Radeon R9 280X
Radeon R9 380
Radeon 780M
GeForce GTX 960
GeForce GTX 970M
Quadro M4000M *
GeForce GTX 680
Group 4
Radeon RX 6500M
Quadro M5500
Radeon Pro WX 7100
GeForce GTX 1060 with Max-Q Design
GeForce GTX 1650
Intel Arc A730M
Radeon HD 7970
Radeon R9 M395X
Radeon R9 M485X
Radeon R9 M480 *
Radeon R9 M295X
Radeon R9 M390X *
FirePro W7170M *
Radeon R9 M395
Radeon R7 370
Radeon RX 5500M
GeForce GTX 590
GeForce GTX 880M
GeForce GTX 950
Radeon R9 270X
GeForce GTX 660 Ti
GeForce GTX 760
GeForce GTX 780M
Quadro K5100M
GeForce GTX 680MX
Radeon HD 7870
GeForce GTX 965M
Quadro M3000M *
GeForce GTX 870M
Radeon R9 M290X
Radeon HD 8970M
Radeon Ryzen 7 7735U (680M), Radeon Ryzen 7 7735HS (680M 12C)
GeForce GTX 580
Radeon HD 6970
GeForce GTX 1050
GeForce GTX 680M
GeForce GTX 775M
GeForce GTX 1630
FirePro M6100
Radeon HD 7970M
Radeon R9 M390 *
GeForce GTX 750 Ti
Group 5
GeForce GTX 570
GeForce GTX 480
GeForce GTX 960M
Quadro M2000M *
Quadro K5000M
Quadro K4100M
GeForce GTX 770M
GeForce GTX 860M
GeForce GTX 675MX
GeForce GTX 950M
GeForce GTX 850M
Quadro M1000M
Radeon R9 M280X
Radeon HD 7950M *
GeForce GTX 560 Ti
Radeon HD 6870
GeForce GTX 470
GeForce GT 1030
GeForce MX330
Ryzen 5 PRO 5650GE with Radeon Graphics
Ryzen 7 5800HS
FirePro 3D V8800
GeForce MX250
Group 6
Radeon Pro WX 3200
Ryzen 7 PRO 5750G with Radeon Graphics
Radeon Ryzen 5 5600H
Ryzen 5 Pro 4650G with Radeon Graphics
Radeon Ryzen 7 5800U
Ryzen 7 7730U with Radeon Graphics
Radeon Ryzen 7 5825U
Radeon Pro WX 4150
Radeon Ryzen 5 PRO 4655G
Ryzen 5 4600G with Radeon Graphics
Radeon Ryzen 5 PRO 4655GE
GeForce GTX 485M
FirePro W6150M
Ryzen 7 5800U with Radeon Graphics
Ryzen 5 7530U with Radeon Graphics
Ryzen 7 4800U with Radeon Graphics
Radeon R9 M470
Ryzen 3 PRO 5350G with Radeon Graphics
Radeon RX Vega Ryzen 3 5300U
Ryzen 7 5825U with Radeon Graphics
Ryzen 5 PRO 4400G with Radeon Graphics
Radeon Ryzen 7 PRO 4750GE
Radeon Ryzen 7 4800U
FirePro V7900
Radeon HD 5970
Radeon Ryzen 7 7700X 8-Core
Radeon Ryzen 5 PRO 5650G
Radeon Ryzen 5 4400G
Radeon Ryzen 5 PRO 5650GE
Radeon RX 550X
FirePro V8800
Radeon RX Vega Ryzen 5 5500U
GeForce MX150
Quadro K3100M
Ryzen 7 PRO 5850U with Radeon Graphics
Radeon HD 6970M
Radeon R7 250X
Intel HD 5600
Ryzen 3 4300GE with Radeon Graphics
GeForce GTX 460
Ryzen 7 5700U with Radeon Graphics
Radeon Ryzen 5 7530U
Quadro K620
Ryzen 3 PRO 5350GE with Radeon Graphics
Intel Iris Pro P580
Intel UHD Graphics P630
Ryzen 5 4600H with Radeon Graphics
Ryzen 5 PRO 7530U with Radeon Graphics
Radeon HD 5870
Radeon HD 6870
Ryzen 7 4700G with Radeon Graphics
Ryzen 5 5600U with Radeon Graphics
Radeon HD 7770
Ryzen 3 Pro 4350G with Radeon Graphics
Radeon Ryzen 5 5625U
GeForce GTX 745
Radeon Ryzen 7 4850U Mobile
Radeon Ryzen 3 PRO 7330U
Quadro M600M
Radeon Ryzen 5 5500U
Ryzen 5 5560U with Radeon Graphics
Ryzen 7 4800H with Radeon Graphics
Group 7
GeForce 945M
Ryzen 5 PRO 4650GE with Radeon Graphics
FirePro M5100
Radeon Ryzen 5 5600U
Radeon Ryzen 5 PRO 4500U
GeForce GTX 580M
Ryzen 7 PRO 5875U with Radeon Graphics
Ryzen 3 5300GE with Radeon Graphics
Radeon R9 M385
Quadro 5000M
Radeon Ryzen 7 4700U
Ryzen 5 PRO 5650U with Radeon Graphics
Radeon Ryzen 7 PRO 4750U
Ryzen 7 4700U with Radeon Graphics
Ryzen 7 PRO 4750U with Radeon Graphics
FirePro V7800
Radeon R9 350
Ryzen 3 4300G with Radeon Graphics
Radeon Vega 11 Ryzen 5 PRO 3350G
Radeon Ryzen 5 5560U
GeForce GTX 460 SE
Radeon Pro W5500M
Radeon Vega 11 Ryzen 5 PRO 3400G
Ryzen 5 5500U with Radeon Graphics
Ryzen 5 PRO 4500U with Radeon Graphics
GeForce GT 645
GeForce GTX 765M
Radeon R9 M385X
Ryzen 5 5625U with Radeon Graphics
Ryzen 3 PRO 7330U with Radeon Graphics
Radeon HD 5850
Radeon Vega 11 Ryzen 5 PRO 2400G
Intel Iris Pro 580
Radeon HD 6850
Intel Iris Xe MAX
Radeon Ryzen 7 PRO 5875U
Radeon Ryzen 5 7600 6-Core
GeForce GTX 470M
Ryzen 3 5300G with Radeon Graphics
GeForce GTX 670MX
Radeon RX 640
Qualcomm Adreno Gen 3
Radeon R7 450
GeForce GTX 675M
Radeon Pro WX 4130
Intel Iris Xe MAX 100
Quadro 5000
Radeon RX 570X
Radeon HD 7700-serie
Ryzen 5 4600U with Radeon Graphics
Ryzen 3 PRO 4350GE with Radeon Graphics
Radeon Vega 8
Group 8
GeForce MX230
GeForce GTX 765M
Quadro K4000M
Iris Pro Graphics P580 *
Iris Pro Graphics 580 *
GeForce GTX 645
Quadro M520
GeForce GTX 570M
GeForce MX130
Radeon RX 540
Radeon Ryzen 5 PRO 5675U
Intel UHD Graphics 770
Radeon RX Vega 11 Ryzen 7 3750H
Radeon Vega 11 Ryzen 5 PRO 3400GE
Radeon HD 5850
GeForce GTX 675M
GeForce GTX 580M
Radeon HD 6990M
Radeon R9 M385X *
Radeon R9 M470X *
Radeon R9 M470 *
Radeon R9 M385 *
Radeon R9 M380 *
Radeon R9 M370X
Radeon R9 M275
Radeon HD 7770
GeForce GTX 485M
GeForce GTX 460 768MB
Radeon HD 6790
GeForce GTX 285M SLI
Quadro K3100M
FirePro W5170M *
GeForce GTX 670MX
Quadro 5010M
GeForce GTX 760M
GeForce GTX 670M
Group 9
GeForce 940MX *
Maxwell GPU (940M, GDDR5)
FirePro M8900
Radeon HD 6970M
Radeon R9 M270
Radeon HD 8870M
Radeon HD 7870M
Quadro K3000M
GeForce GTX 570M
FirePro M6000
FirePro M5100
Quadro K2100M
Radeon HD 5770
GeForce GTX 550 Ti
GeForce GTX 280M SLI
Radeon HD 6950M
Radeon R7 250
GeForce GT 755M
GeForce GTX 660M
GeForce 845M
Radeon HD 8850M
Radeon R9 M365X
Radeon R9 M265X
Ryzen 5 PRO 4400GE with Radeon Graphics
FirePro W5130M *
Radeon Vega 8 Ryzen 5 3500U
Radeon HD 7850M
Radeon HD 8790M
FirePro W4170M
FirePro W4190M
FirePro W4100
Radeon Vega 6 Ryzen 3 3300U
Quadro 4000M
GeForce GTX 470M
GeForce GTX 480M
GeForce GT 750M
Iris Pro Graphics 6200
Quadro K1100M
GeForce 940M
Radeon R9 M375
GeForce 930MX *
Radeon R7 M380 *
Radeon R7 M370
Quadro M600M *
GeForce GT 650M
Quadro K620M
GeForce 840M
Radeon R7 M275DX
GeForce GT 745M
Radeon HD 7770M
GeForce GTX 560M
Radeon R7
Iris Pro Graphics 5200
GeForce GT 740M
GeForce 930M
Radeon HD 4850
Group 10
Iris Graphics 550 *
GeForce 830M
Iris Graphics 540
Quadro M500M *
Quadro K2000M
GeForce GTS 450
GeForce GTX 260M SLI
GeForce GT 735M
Mobility Radeon HD 5870
GeForce 825M
Quadro 5000M
FirePro M4000
FirePro M7820
Radeon HD 6870M
GeForce 9800M GTX SLI
Radeon HD 8830M *
Radeon HD 8770M
Radeon R7 M260X
GeForce GTX 460M
GeForce 920MX *
GeForce GT 730M
Radeon HD 7750M
GeForce GT 645M *
FirePro M4100
Radeon HD 8750M
Radeon R6 A10-9600P 4C+6G
Quadro 3000M
Radeon R7 M270
Radeon R7 M265
Quadro FX 3800M
GeForce GTX 285M
Mobility Radeon HD 4870
GeForce GT 640M
Radeon R7 (Kaveri)
Radeon R8 M365DX
Radeon R7 M460 *
Radeon HD 7730M
Radeon R7 M360
GeForce GTX 280M
Radeon HD 8690M
Quadro FX 3700M
Radeon R7 M340
GeForce 920M
Radeon R6 M340DX
HD Graphics 530
HD Graphics P530
Tegra X1 Maxwell GPU
Radeon R7 M260
Radeon R6
Group 11
Mobility Radeon HD 4860
FirePro M7740
Mobility Radeon HD 4850
GeForce GTX 260M
GeForce 9800M GTX
Quadro FX 2800M
Radeon HD 8670D
Radeon HD 7690M XT
FirePro M5950
GeForce GT 640M LE
Radeon R6 (Kaveri)
Radeon HD 8650M *
Radeon HD 8730M
Radeon HD 6770M
GeForce GT 635M
GeForce GT 555M
Radeon R7 A10 PRO-7800B
Radeon HD 5670
Mobility Radeon HD 5850
Radeon HD 6850M
Quadro 2000M
GeForce 9800M GT
GeForce 8800M GTX
Quadro FX 3600M
GeForce GT 445M
GeForce GTS 360M
Group 12
GeForce GT 240
Radeon R7 PRO A10-9700
Radeon HD 7690M
HD Graphics 5600
Radeon HD 8570D
Radeon HD 8670M
Radeon R6 M255DX
Radeon HD 7660D
Radeon HD 6750M
Quadro K1000M
GeForce GT 550M
Radeon HD 8590M *
GeForce GTS 260M
GeForce GTS 160M
GeForce 9800M GTS
GeForce GT 430
Radeon HD 6830M
Mobility Radeon HD 5830
Radeon HD 6730M *
GeForce 9800M GS
Mobility Radeon HD 4830
Mobility Radeon HD 5770
Radeon HD 6570M
Radeon HD 8650G
Radeon HD 7670M
GeForce GT 630M
Radeon HD 7560D
GeForce GTS 150M *
Radeon R5 M335
Radeon R5 M430 *
Radeon R5 M330
Radeon R5 M255
Radeon Vega 3
Quadro 1000M
GeForce 820M
FirePro W2100
HD Graphics 520 620
Iris Graphics 6100
GeForce GT 720M
GeForce 8800M GTS
Radeon R5 M240
Radeon R5 M320 *
Radeon R5 M230
Radeon R5 M315 *
Mobility Radeon HD 5750 *
Radeon HD 8570M
Radeon R7 PRO A10-8850B
HD Graphics 6000
Quadro K610M
Radeon HD 8550M
Iris Graphics 5100
GeForce GT 540M
Mali-T880 MP12 *
Radeon HD 8610G *
Radeon HD 6650M
HD Graphics 4600
Mobility Radeon HD 5730
HD Graphics 5500
Radeon R5 (Carrizo) *
Radeon R5 (Kaveri)
FirePro M5800
NVS 5400M
GeForce 710M
Radeon HD 7660G
GeForce GT 435M
HD Graphics 5000
Quadro K510M *
Radeon HD 5570
Radeon HD 6550M
Radeon HD 7590M *
GeForce GTS 350M
GeForce GTS 250M
Radeon HD 6630M
Radeon HD 7650M
FirePro M2000
Radeon HD 7570M
Radeon HD 7630M
Quadro FX 1800M
Mobility Radeon HD 5650
Radeon HD 8510G *
Radeon HD 6530M
Radeon HD 8550G
Quadro K500M *
GeForce GT 625M *
GeForce GT 620M
GeForce GT 525M
Radeon HD 6550D *
Radeon HD 7610M
Radeon HD 7620G
Radeon HD 8470D
Radeon HD 7640G
Adreno 530
GeForce ULP K1 (Tegra K1 Kepler GPU)
HD Graphics 4400
HD Graphics 510 515 *
NVS 5200M
Mobility Radeon HD 565v
Radeon HD 7550M
Mobility Radeon HD 4670
GeForce GT 425M
GeForce 9700M GTS
Radeon HD 6645G2 *
Quadro FX 2700M
GeForce GT 335M
Radeon HD 7600G
Mobility Radeon HD 3870
Mobility Radeon HD 4650
GeForce GT 220
GeForce GT 420M
Radeon HD 7530M *
Mobility Radeon HD 3850
GeForce GT 330M
Quadro FX 880M
Quadro NVS 5100M
GeForce GT 240M
Radeon HD 7490M *
HD Graphics 5300
Radeon HD 7510M *
GeForce Go 7950 GTX
Quadro FX 3500M
GeForce 8700M GT SLI
GeForce 9700M GT
GeForce GT 230M
Mobility Radeon HD 550v
Radeon HD 7480D
HD Graphics 4000
Mali-T760 MP8
Radeon HD 6620G
HD Graphics (Broadwell) *
Adreno 430
Radeon R5 (Beema/Carrizo-L)
Radeon R4 (Beema) (Kaveri)
HD Graphics (Skylake) *
Radeon HD 6450 GDDR5
Radeon HD 7500G
Radeon HD 8450G
Radeon HD 7470M
Radeon HD 6490M
Radeon HD 8400
Mali-T880 MP4
GeForce GT 520MX
Radeon HD 7520G
GeForce GT 325M
GeForce Go 7800 GTX SLI
GeForce 8600M GT SLI
GeForce Go 7900 GS SLI
GeForce GT 130M
NVS 4200M
GeForce Go 7900 GTX
Quadro FX 2500M
Radeon HD 8350G
Radeon HD 8330
GeForce 9650M GS
GeForce 9650M GT
Radeon R3 (Mullins/Beema)
GeForce 8700M GT
Quadro FX 1700M
Quadro FX 1600M
GeForce Go 7800 GTX
GeForce Go 7900 GS
Quadro NVS 320M
Quadro FX 1500M
GeForce 9600M GT
GeForce GT 220M
Quadro FX 770M
GeForce GT 120M
Radeon HD 7450M
GeForce 610M
GeForce 705M
Mali-T760 MP6
Radeon HD 6470M
FirePro M3900 *
GeForce GT 520M
Radeon HD 7420G
Mobility Radeon HD 3670
Mobility FireGL V5725
PowerVR GX6450
Adreno 420
HD Graphics (Haswell)
Radeon HD 6520G
Radeon HD 8310G *
GeForce 320M
GeForce GT 320M
Mobility Radeon HD 2600 XT
Mobility Radeon X1900
Mobility Radeon X1800XT
Mobility Radeon X1800
GeForce Go 6800 Ultra
GeForce Go 7800
GeForce 9600M GS
GeForce 9500M GS
Radeon HD 7400G
Radeon HD 6480G *
Mobility Radeon HD 2700
GeForce GT 415M
GeForce 410M
Radeon HD 7370M
Adreno 418
HD Graphics (Cherry Trail)
Radeon HD 6370M
Radeon HD 8280
Mobility Radeon HD 5470
Radeon HD 6450M
Radeon HD 7430M *
Mobility Radeon HD 3650
Mobility FireGL V5700
Mobility Radeon HD 5145
Mobility Radeon HD 545v
Radeon R6 (Mullins) *
Radeon HD 8240
Radeon HD 8250
Mobility Radeon HD 4570
Quadro FX 570M
Mobility Radeon HD 5450 *
Radeon R2 (Mullins/Beema) *
GeForce 8600M GT
Mobility Radeon HD 2600
HD Graphics 3000
Quadro FX 380M
GeForce 310M
GeForce G210M
NVS 3100M
GeForce 405M
GeForce 315M
GeForce Go 7600 GT
GeForce 9500M G
GeForce 8600M GS
NVS 2100M
GeForce Go 7700
GeForce Go 6800
Quadro FX Go 1400
Mobility Radeon X800XT
Radeon HD 6430M *
Radeon HD 6380G *
Mobility Radeon HD 5430
Radeon HD 8210
Mobility Radeon HD 540v
Mobility Radeon HD 4550
HD Graphics 2500
HD Graphics (Ivy Bridge)
Quadro NVS 310
Radeon HD 7350M *
Radeon HD 6350M *
Mobility Radeon HD 4530
Mobility Radeon HD 4350
Radeon HD 4350
GeForce 305M
Mobility Radeon X1700
Mobility FireGL V5250
Mobility Radeon X2500
GeForce Go 7600
Quadro NVS 300M
Mobility Radeon X800
Mobility Radeon X1600
Mobility FireGL V5200
Mobility Radeon 9800
GeForce Go 6600
Mobility Radeon X1450
Mobility Radeon X700
Mobility FireGL V5000
GeForce G 110M
Quadro NVS 295
Radeon HD 6330M *
Mobility Radeon HD 4330
GeForce 8400M GT
Quadro NVS 140M
HD Graphics 2000
GeForce 9500M GE *
GeForce 9400M (G) / ION (LE)
HD Graphics (Sandy Bridge) *
Adreno 330
PowerVR G6430
PowerVR GX6250
PowerVR G6400
HD Graphics (Bay Trail)
Mali-T628 MP6
Mali-T760 MP4
Chrome9HD *
Radeon HD 7340
Radeon HD 6320 *
Radeon HD 7310
Radeon HD 6310 *
Radeon HD 8180
Mobility Radeon HD 3470
GeForce 9300M G
ION 2 *
GeForce 9300M GS
Quadro FX 370M
Quadro NVS 160M
GeForce 9200M GS
Mobility Radeon HD 3450
Mobility Radeon HD 3430
Mobility Radeon HD 3410
Mobility Radeon HD 2400 XT
Radeon HD 4270
Radeon HD 4250
Radeon HD 7290 *
Radeon HD 6290 *
Radeon HD 4200
Graphics Media Accelerator (GMA) HD Graphics
Radeon HD 6250
Quadro NVS 150M
Quadro FX 360M
Mobility Radeon X1350
Mobility Radeon X1400
GeForce 9100M G
GeForce 8400M GS
Quadro NVS 135M
Mobility Radeon HD 2400
Radeon HD 3200
Radeon HD 4225 *
Radeon HD 4100 *
SGX554MP4
Mali-T628 MP4
Mobility Radeon HD 3400 *
Radeon HD 3100
GeForce 8400M G
Mali-T860 MP2
Quadro NVS 130M
GeForce 8200M G
Graphics Media Accelerator (GMA) 4700MHD
Graphics Media Accelerator (GMA) 4500MHD
Graphics Media Accelerator (GMA) 4500M
Mali-T604 MP4
GeForce Go 7400
Quadro FX 350M
Quadro NVS 120M
GeForce Go 7300
GeForce Tegra 4 *
PowerVR G6200
Adreno 405 *
Quadro NVS 110M
Mobility Radeon X600
Mobility FireGL V3200
Mobility FireGL V3100
Mobility Radeon HD X2300
Mobility Radeon 9700
Mobility FireGL T2e
Mobility Radeon X1300
GeForce4 4200 Go
Mobility Radeon 9600
Mobility FireGL T2
Mobility Radeon 9550
GeForce Go 7200
GeForce Go 6400
Mobility Radeon X300
GeForce Go 6250
GeForce Go 6200
GeForce FX Go 5700
Quadro FX Go 1000
GeForce FX Go 5600 / 5650
Radeon Xpress X1270
Radeon Xpress X1250
Radeon Xpress X1200
Graphics Media Accelerator (GMA) X3100
Mali-T624
Adreno 320 *
Mali-T760 MP2
Mali-T720 MP4
Mali-450 MP4
Graphics Media Accelerator (GMA) 3650 *
GeForce 7190M *
GeForce 7150M
Radeon Xpress 1150
GeForce Go 6150
GeForce Go 6100
GeForce 7000M
Graphics Media Accelerator (GMA) 3600 *
Mobility Radeon 9200
Mobility FireGL 9000
GeForce FX Go 5200
Mobility Radeon 9000
GeForce 4 488 Go
GeForce 4 460 Go
GeForce 4 440 Go
GeForce 4 420 Go
Graphics Media Accelerator (GMA) 3150
Graphics Media Accelerator (GMA) 950
SGX545 SGX544MP2 SGX543MP2 *
Mali-T720 MP2
Mali-T720
Adreno 302 304 305 306
Mobility Radeon 7500
Mobility FireGL 7800
Graphics Media Accelerator (GMA) 900
Radeon Xpress 200M
Radeon Xpress 1100
Mirage 3+ 672MX
Mirage 3 671MX
Mali-400 MP4 *
GeForce ULP (Tegra 3) *
VideoCore-IV *
Adreno 220 225*
Vivante GC1000+ Dual-Core
Mali-400 MP2 *
GeForce ULP (Tegra 2) *
Graphics Media Accelerator (GMA) 600 *
SGX540 *
Graphics Media Accelerator (GMA) 500
Adreno 205 *
Adreno 203 *
GC800 *
SGX535
SGX531
SGX530
Adreno 200 *
Mali-200 *
GeForce 3 Go *
GeForce 2 Go 200 / 100
Mobility Radeon 9100 IGP
Mobility Radeon 9000 IGP
Mobility Radeon M7
Mobility Radeon M6
Chrome9 HC
Extreme Graphics 2
Mobility Radeon 7000 IGP
Radeon IGP 340M
Radeon IGP 320M
S3G UniChrome Pro II
S3G UniChrome Pro
Castle Rock
Mirage 2 M760
Mirage M661FX
S3 Graphics ProSavage8
Mobility 128 M3
SM502 *
</pre>
Kernel-space drivers like '''radeon''' (older AMD driver for older GPUs), '''amdgpu''' (newer driver for newer GPUs, allows using a few new features), i915, nouveau and a few others. They are what handles the gory details of talking to the GPU itself (writing to proper registers, handling its memory directly, configuring outputs, and so on). Unfortunately most of what they're exposing can be only consumed by a single user of that GPU, which is why we need...
DRM and DRI (Direct Rendering Manager/Infrastructure) controls access to the GPUs, provides interfaces for talking to the GPU concurrently by multiple apps at once (without them breaking each other) and lets the system perform the most basic tasks like setting proper resolution and such if no userspace apps understand how to talk to the GPU exposed. DRI and DRM expose the GPU interfaces mostly as-is, not in a "vendor-neutral" portable way - if you don't have an application developed specifically for a GPU you have, it won't work.
"let's create a vendor-neutral interface for graphics so that apps can ignore the GPU-specific bits and get right to the drawing!" - which is what OpenGL is. User-space drivers implement the OpenGL specification and expose it as an OpenGL library to apps (like games, browsers, etc) instead of the GPU. Mesa is the most popular collection of open-source user-space drivers and contains a few user-space drivers for different GPU families: '''radeonsi''' for most modern AMD GPUs (and '''r600g''', r300g and others for older ones), '''i915/i965''' for old/new Intel GPUs and '''nouveau''' for Nvidia GPUs.
There's also Gallium, which is a bunch of utilities and common code shared among these drivers - if certain things can be done once and work everywhere, they'll land in Gallium and benefit all the drivers. Most Mesa drivers use Gallium (radeonsi, nouveau, software renderers), some don't (intel after gma950).
Displaying 2D windows supports device-specific 2D drivers as well, but nowadays most of these are no longer needed as the modesetting can handle most hardware on its own. As the DRM/DRI got some additional interfaces for what used to be hardware-specific (setting resolutions, refresh rates, etc) and software requiring accelerated 2D drawing was optimized OpenGL-based renderers, dedicated 2D acceleration is slowly going away. Since around 2012, the 3D part of the graphics card deals with 2D operations.
Modern GPUs can also decode video!? There's VDPAU (NVIDIA & AMD GPUs) and VA-API (AMD & Intel GPUs) that can also talk to the GPU exposed via DRM/DRI and issue proper commands to decode/encode a given video stream. Those drivers are GPU-specific too.
So let's say you have some example GPUs, here's how example stacks could look like:
* AMD Radeon HD8750: amdgpu -> DRM/DRI -> Mesa (radeonsi)
* AMD Radeon HD4850: radeon kernel driver -> DRM/DRI -> Mesa (r600g) -> games/apps/etc.
* NVIDIA GeForce 460: nouveau kernel driver -> DRM/DRI -> Mesa (nouveau) -> games/apps.
* Intel GMA950: i915 kernel driver -> DRM/DRI -> Mesa (i945) -> games/apps.
{| class="wikitable sortable" width="90%"
! width="15%" | Description
! width="15%" | Analog Output
! width="15%" | Digital Output
! width="15%" | Laptop LCD
! width=30%" | Comments
|-
| <!--Description-->Fudomi GC888A
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->1080p 100in throw projector
|-
| <!--Description-->Vamvo VF320 (720P)
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->720p 90in
|-
| <!--Description-->Happrun H1
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->1080p 90in
|-
| <!--Description-->Umbolite Magcubic HIPPUS HY320 Mini
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->720p 100in
|-
| <!--Description-->Zentality A10 Plus
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->720p 110in
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->nexigo nova mini
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->nebula mars 3
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->epson lifestudio flex plus portable projector
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->dangbei freedo
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->benq gv50
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
Unless your computer uses a Firewire chipset manufactured by Texas Instruments, FireWire interfaces are likely to act buggy.
AROS is unlikely to ever support FireWire.
Bluetooth is similarly unlikely to be ever supported due to huge cost to be certified.
No, x86 PCMCIA card.resource at the moment. Writing card.resource would be a similar amount of work to writing a typical driver. However, it might be complicated by having to support a variety of PCMCIA-controller chipsets like TI PCI1225, PCI1410, PCI1420, 1450, PCIxx12 and O2, etc. m68k card.resource does not really have many higher level functions, most functions are really simple or poke Gayle registers directly. only exception is CopyTuple(). Amiga card.resource has one significant flaw: it's single-unit. would need card.resource and pccard.library. There was talk in the past of designing a new API for PCMCIA because card.resource only supports one slot, but since most modern laptops only have one slot anyway, I think it might be worthwhile to implement card.resource as-is (at least as a first step). pccard.library would be trivial to port. So, a new API is needed.
jqj57qhplljlpf69h5lt2n77u2u1nnb
4641141
4641140
2026-06-25T16:47:01Z
Jeff1138
301139
4641141
wikitext
text/x-wiki
Google translation into [http://translate.google.com/translate?hl=en&sl=auto&tl=de&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support German], [http://translate.google.com/translate?hl=en&sl=auto&tl=fr&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support French], [http://translate.google.com/translate?hl=en&sl=auto&tl=nl&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Dutch], [http://translate.google.com/translate?hl=en&sl=auto&tl=it&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Italian], [http://translate.google.com/translate?hl=en&sl=auto&tl=es&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Spanish], [http://translate.google.com/translate?hl=en&sl=auto&tl=hi&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Hindi],
[http://translate.google.com/translate?hl=en&sl=auto&tl=zh-CN&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Chinese Simplified],
[http://translate.google.com/translate?hl=en&sl=auto&tl=pl&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Polish],
[http://translate.google.com/translate?hl=en&sl=auto&tl=ru&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Russian],
{{ArosNav}}
[[#Audio Chipsets]]
[[#Graphic GFX Chipsets]]
[[#Rough gfx comparison]]
[[#]]
==x86 Native Environment==
AROS should run on almost any i386 PC hardware so long as the CPU is newer than an i486, and has a "Floating Point Unit (FPU)". Ideally around 700Mhz and above with at least 256MB of memory is recommended for desktops and around 1GHz and at least 256MB for laptops/notebooks/netbooks. For web browsing, etc above 1GB is usually needed and offers the option to run web browsers, media players and other hard disk heavy usage from RAM: disk.
Motherboards supported
* Most Intel mobos are supported (Skt 775 is ok but newer is better) - additional pci / pci-e cards may be needed for networking, audio, etc
* AMD based socket 939 am2 am2+ am3+, fusion and am4 ryzen based systems work but additional pci / pci-e cards may be needed
Supported graphics cards (gfx)
* Nvidia 2D and 3D 2005-2017.
64bit AROS Nouveau covers '''2D''' 8xxxgs and higher to GTX 900s and '''3D''' from .
32bit AROS supports '''2D''' from TNT through to fermi gtx5xx and '''3D''' acceleration fx5xxx to gtx4xx.
* Intel GMA 2D and 3D 2006-2009.
'''2D''' for many old netbooks and motherboards. '''3D''' for many early netbooks and motherboards
* AMD/ATI 2D only and '''no 3D'''. 1999-2005.
Desktop ie external monitor support only (no laptop internal support) for very early Radeon 7000 through to x600. Experimental 2D version for up to HD3xxx came later
* VESA 2D fallback modes for all graphic cards (GPUs) and with [http://www.youtube.com/watch?v=HKCHZFYj9Kk screen dragging].
It's worth noting however that support isn't guaranteed. Nor will potential power of a card reflect its performance under AROS.
Sound wise there are
* HDaudio support for onboard intel and AMD netbooks, ultrabooks, notebooks and motherboards (2005 to 2020)
* some AC97 codec support for very old motherboards and laptops (ie pre 2004)
* PCI and some PCI-E C-Media CMI8738 for desktop plugin cards
* PCI Creative Soundblaster EMU10K1 cards [http://amigaworld.net/modules/news/article.php?storyid=2512 SBLive]
* PCI semi professional some early VIA Envy24 desktop sound cards
* PCI Sound Blaster 128 aka SB16
Supported [http://en.wikibooks.org/wiki/Aros/Platforms/x86_Network_support network] which could be desktop, laptop, etc
* PCI-E Realtek rtl8169 which also includes the rtl8111 and rtl8110
* PCI Realtek rtl8139 and includes rtl8101 and rtl8100
* PCI intel pro100
* Broadcom 44xx 10/100 integrated in laptops around 2005
* VIA 10/100
* 3com Etherlink 10/100
* Realtek rtl8029 10mbit
Wireless wifi
* atheros 5000 wireless
*realtek 8187 usb
It is very hard to recommend a completely supported motherboard because as soon as newer motherboards arrive so their features change subtly, often introducing non supported parts like ethernet and audio. It is a moving target.
* mini-itx motherboard will only get you 1 pci or pci-e slot
* micro mATX or uATX will have more, typically 2 pci-e or pci slots which helps if any onboard features are not supported.
* full atx will have more slots available
'''N.B''' It is frustrating when a piece of hardware is not supported. Hardware documentation can run to over 100 pages and a lot of hardware do not have any public documentation anyway. Chips from different manufacturers for sound, graphics, SATA, etc. vary just as much, unless they follow a standard such as [https://github.com/acidanthera/AppleALC/wiki/Supported-codecs HDAudio codecs], AHCI etc.
Coding drivers is a far cry from Hello World programs or even a port of existing software. If you do actually want to try then get a hold of documentation on the relevant hardware and start there. Alternatively you could try to find some '''BSD''', MIT or MPL licence drivers as a point of reference. Please , do not think you can just adapt strings in a driver for different strings, it does not work that way. You will '''need''' to start from scratch for each new bit of hardware. Device driver programming require '''embedded''' skills, like manipulation of bits within registers, good debugging skills, dealing with interrupts, lots of patience, etc.
The following specific chipsets and drivers are also available - use Tools/PCITool to confirm Vendor and Product IDs - Please let us know any mistakes or any information to be added, to this General Chat list on [https://arosworld.org/ AROS World]
: Brief Timeline
: 2000-12-06 HIDD first mouse.hidd completed ([http://msaros.blogspot.com/ Michal Schulz])
: 2001-03-31 BOOT first boot from floppy disk with IDE device
: 2001-10-30 BOOT first cd bootable version
: 2002-01-27 HIDD first pci.hidd added (Michal Schulz)
: 2002-04-13 BOOT software HDToolBox added ()
: 2003-04-03 HIDD vesa2.hidd graphic modes added ()
: 2004-03-08 HIDD new pci and ata (pata) devices worked on (Michal Schulz)
: 2004-03-17 HIDD nVidia 2D driver appears (Michal Schulz)
: 2005-01-05 AHI AHI v6 audio system ported (Martin Blom)
: 2005-01-06 AHI SBLive SoundBlaster Live driver ported (Georg Steger)
: 2005-02-04 AHI AC97 playback only driver added (Michal Schulz)
: 2005-06-27 NIC amiTCP stack ported with 3com, NE2000, prism2 drivers (Neil Cafferkey)
: 2005-08-25 NIC nForce2 support added (Michal Schulz)
: 2005-12-24 NIC Intel Pro100 network driver added (Neil Cafferkey)
: 2006-03-25 HIDD ATI radeon 2D driver added (Michal Schulz)
: 2007-03-06 HIDD vesa 1.0 video driver added (Pavel Fedin)
: 2007-03-08 HIDD dospackets and FAT filesystem (Rob Norris)
: 2007-03-21 HIDD usb initial commit (Michal Schulz)
: 2007-10-01 BOOT Installer added (Neil Cafferkey)
: 2007-11-29 PORT 64bit x86 added (Michal Schulz)
: 2008-04-12 BOOT GRUB2 added (Alain Greppin and Nick Andrews)
: 2008-08-26 NIC RTL8139 added ([http://kalamatee.blogspot.com/ Nick Andrews])
: 2008-10-22 PORT to SAM440ep (ppc) (Michal Schulz)
: 2009-02-25 PORT to efika (ppc) (Michal Schulz)
: 2009-05-18 HIDD poseidon usb2.0 stack ported to AROS (Chris Hodges)
: 2009-11-18 NIC RTL8169 network driver arrived (Nick Andrews and [http://pagesperso-orange.fr/franck.charlet/oldnews.html Franck Charlet])
: 2009-12-23 AHI HDAudio based Atom CPU and netbook audio driver arrived (Davy Wentzler)
: 2010-03-09 BOOT USB pendrive stick booting available (Neil Cafferkey)
: 2010-05-26 HIDD Intel GMA900 2D graphics card support (Michal Schulz)
: 2010-09-03 NIC Wireless PCI based NIC arrived (Neil Cafferkey)
: 2011-04-30 HIDD Nvidia 2D and 3D nouveau graphics card support (Deadwood)
: 2011-08-30 HIDD Radeon 2D enhanced AMD driver arrives (Bearsoft)
: 2011-09-17 NIC Wireless USB realtek arrives (Neil Cafferkey)
: 2011-12-09 HIDD Intel 945G 3D Gallium graphics support (Sami)
: 2013-02-25 AHI AC97 VIA 686 audio support (Davy Wentzler and Neil Cafferkey)
: 2013-03-31 PORT early Raspberry PI native support (Nik Andrews)
: 2014-01-16 AHI Envy24 audio chipset support (Davy Wentzler and Neil Cafferkey)
: 2017-02-17 PORT Symmetric MultiProcessing smp added for x86 64bit (Michal Schulz)
: 2018-10-20 PORT Big Endian ARM
: 2021-11-26 NIC Broadcom 44xx ethernet (Neil Cafferkey)
: 2023-01-12 NIC Nvidia MCP61 ethernet (Neil Cafferkey)
: 2025-11 HIDD xHCI USB3 and isoc (Nik Andrews)
[[#top|...to the top]]
===Audio Chipsets===
'''If sound beeps in AHI prefs after Music set then some support is there. Select more than one channel for multiple audio streams, set frequency up to 44 kHz or higher and set the volume if not already set. Ensure you set the music unit 0 to 3 which allows the extra features of the audio card like microphone, line-out, etc).'''
====1996-2000 sb128.audio aka SB16 PCI====
*2021 5.27
as per CREATIVE's website, the model number is the first two digits on the front and first two digits on the back. my card says CT4810 and 161TK110B 995; this translates to CT4816 as the model.
The original AudioPCI 3000 card with the ES1370 had a master clock crystal for 44.1 kHz (22.5792 MHz), used an AKM codec (AK4531, non-AC97) and had 4 channel output; Creative later modified the design with a crystal for 48 kHz (24.576 MHz) and Sigmatel AC97 codec (a CT4700 SB128 with a CT5507 chip, AK4531, 22.5792 MHz crystal and TDA7360 speaker power amp). The issue with these cards involved never quite eliminate the effects of resampling on the 64V, it also shows signs of undersized coupling caps. These Ensoniq cards automatically engaged headphone amplifier (with a 4565 opamp).
Porting involved [http://repo.or.cz/w/AROS.git/commit/b60abd12967144a844980c422ea9e99c056eabca 40897], [http://repo.or.cz/w/AROS.git/commit/b7d6511fca6430a63fbaaa390b4f51bf0203a460 40898 configure], [http://repo.or.cz/w/AROS.git/commit/f51034cd22759a4ec3a2547bddb3a7169d956eaa 40900 bugs], [http://repo.or.cz/w/AROS.git/commit/4f43fc38e3489ea45d12b7b5ba6fff50b69c5746 40901 further bugs], [http://repo.or.cz/w/AROS.git/commit/d23c78aec75f049484b6916d27b6804ce858bb2c 40913 memory IO fixes], [http://repo.or.cz/w/AROS.git/commit/d256860fe3035016952e88d143c6f2611997f2f3 40914 irq fix].
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| Ensoniq AudioPCI 1000
| 0x1274
| 0x5000
|
| {{unk}}
| {{unk}}
| untested - es1370 (u?) AK4531 (u?)
|-
| Ensoniq AudioPCI
| 0x1274
| 0x5000
| 0x00
| {{yes}}
| {{maybe}}
|
|-
| CT4700 Sound Blaster PCI 64 (audioPCI 3000)
| 0x1274
| 0x5000
| 0x7c
| {{yes}}
| {{maybe}}
| works - opamp JRC4565(u?) [http://en.wikipedia.org/wiki/Ensoniq_ES1370 es1370] (u?)
|-
| CT4750 Sound Blaster 64/PCI
|
|
|
| {{unk}}
| {{unk}}
| untested - 4565-1056W (u1) stac9708t(u2) [http://arstechnica.com/civis/viewtopic.php?f=6&t=916891 ct5880-dcq] (u3) 24wc012 (u4)
|-
| CT4751 (SB128PCI)
| 0x1274
| 0x8001
|
| {{unk}}
| {{unk}}
| untested - [http://en.wikipedia.org/wiki/Sound_Blaster#Ensoniq_AudioPCI-based_cards es1371] (u?)
|-
| CT4810 Creative AudioPCI64V
| 0x1274
| 0x1371
| 0x06
| {{yes}}
| {{maybe}}
| works
|-
| CT4811 (SB Vibra 128)
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4812 (Vibra 128)
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4813
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4815
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4816 es1373 (vibra 128)
|
|
|
| {{unk}}
| {{unk}}
| untested but this card has creative's ES1373 as the main chip(U1). it is also different from the other CT4810 (vibra128) in that it does not have a second chip in U2 position. Also there is only one jumper JP1 (2X3).
|-
| CT5801 HP
|
|
|
| {{unk}}
| {{unk}}
| untested - es1373 (u3)
|-
| CT5803 Gateway
| 0x1274
| 0x1371
| 0x08
| {{yes}}
| {{maybe}}
| works 4565-0005b jrc (u1) 4297a-jq ztae0c0002 (u2) es1373 (u3)
|-
| CT4740
| 0x1274
| 0x1371
| 0x08
| {{yes}}
| {{yes}}
|
|-
| CT5805 Compaq OEM Premier Sound Presario 7
|
|
|
| {{unk}}
| {{unk}}
| untested - es1373 (u3)
|-
| CT5806 (Sound Blaster AudioPCI 128D)
|
|
|
| {{unk}}
| {{unk}}
| untested - 4297A-JO EP (u?) ZTAPWC9933 (u2) es1373 (u3)
|-
| CT5807 Dell OEM Dimension 8100
|
|
|
| {{unk}}
| {{unk}}
| untested - es1373 (u?)
|-
| CT5808
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4730 Sound Blaster AudioPCI 64V Ectiva EV1938
| 0x1102
| 0x8938
|
| {{unk}}
| {{unk}}
| untested
|-
| CT5880 on various motherboards
| 0x1274
| 0x5880
|
| {{unk}}
| {{unk}}
| untested [http://www.xbitlabs.com/articles/mainboards/display/ga-6rx.html Gigabyte GA-6RX] (VIA ApolloPro 266 2001], Gigabyte GA-6VM7-4E mobo, [http://active-hardware.com/english/reviews/mainboard/ga-7vtx.htm Gigabyte GA-7VTX] (KT266 2001), Gigabyte [http://www.amdboard.com/gigabytega7vtxh.html GA-7VTXH] (KT266A 2001), [http://www.amdboard.com/gigabytega7vrxp.html Gigabyte 7VRXP] mobo (KT333 2002), MSI MS-6309, MS-6318, MS-6337 (815E Pro), MS-6339 (850Pro) and MS-6340, PCChips Motherboard M571 TXPRO, Soltek SL-65ME+,
|-
| VMware Virtual Workstation(TM)
| 0x1274
| 0x1371
| 0x02
| {{Yes|but not Hi-Fi modes}}
| {{maybe}}
| works
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
<pre>
Revision 0x04 = ES1371 REV_ES1373_A
Revision 0x06 = ES1371 REV_ES1373_B
Revision 0x07 = ES1371 REV_CT5880_A
Revision 0x02 = CT5880 REV_CT5880_C
Revision 0x03 = CT5880 REV_CT5880_D
Revision 0x04 = CT5880 REV_CT5880_E
Revision 0x09 = ES1371 REV_ES1371_B
Revision 0x00 = EV1938 REV_EV1938_A
Revision 0x08 = ES1371 REV_ES1373_8
</pre>
====1999-2001 via-ac97.audio====
*2021 5.10
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| <!--Description-->694X with 686A KT133 PM133 or 693A with VT8231
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3058
| <!--Revision-->
| <!--Playback-->{{Yes| }} redirects earphones correctly
| <!--Recording-->{{Yes| }}
| <!--Comments-->audio controller works but depends on the underlying invisible codec used see AC97 section
|-
| <!--Description-->686B KT133A with VT8231
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3058
| <!--Revision-->0x50
| <!--Playback-->{{Yes|}} reroutes ear pieces right
| <!--Recording-->{{Yes|}}
| <!--Comments-->audio controller works but depends on the underlying codec used see AC97 section below
|-
| <!--Description-->686C
| <!--Vendor ID-->0x1106
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->untested
|-
| <!--Description-->KM266 or KT266 with VT8233, KT266A with VT8233A, VT8233C
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3059
| <!--Revision-->0x10
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->KM333 KT333 with VT8235
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3059
| <!--Revision-->0x30
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
| <!--Description-->KM400 KT400 with VT8237, KT600 with VT8237R,
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3059
| <!--Revision-->0x40 0x50 0x60
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
|}
====1998-2003 emu10kx.audio - Creative Labs SoundBlaster Live! and Audigy====
*2021 6.5
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| PCI512 CT4790 (emu10k1)
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested (1st Gen)
|-
| Live CT4620
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Live CT4760
| 0x1102
| 0x0002
| 0x07
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| playback works
|-
| Live Value CT4670
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| works plays stereo (2nd Gen)
|-
| Live Value DELL CT4780
| 0x1102
| 0x0002
| 0x06
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| plays/records stereo - untested 4.1mode
|-
| Live Value Compaq CT4830
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{Maybe}}
| <!--Recording--> {{unk}}
| not working
|-
| Live Value CT4831
| 0x1102
| 0x0002
| 0x00
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Live Value CT4832
| 0x1102
| 0x0002
| 0x07
| <!--Playback--> {{yes}}
| <!--Recording--> {{partial|Line-In only}}
| works
|-
| Live Value CT4832
| 0x1102
| 0x0002
| 0x08
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| works
|-
| Live Value HP CT4870
| 0x1102
| 0x0002
|
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| Works
|-
| Live Value Gateway CT4871
| 0x1102
| 0x0002
|
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Live! Platinum 5.1 SB0060
| 0x1102
| 0x0002
| 0x00
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
| plays audio/records, untested 5.1 (3rd Gen)
|-
| Live 5.1 SB0100 -SFF
| 0x1102
| 0x0002
| 0x00
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| works
|-
| Live 5.1 Player SB0220
| 0x1102
| 0x0002
| 0x0a
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
| plays audio/records stereo, untested 5.1
|-
| Live 5.1 Digital SB0228
| 0x1102
| 0x0002
| 0x0a
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
| working
|-
| Audigy SB0090 (emu10k2)
| 0x1102
| 0x0004
|
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| <!--Description-->Audigy SB0230
| <!--Vendor ID-->0x1102
| <!--Product ID-->0x0004
| <!--Revision-->0x03
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Yes|Mic only}}
| <!--Comments-->5th Dec 2012 - untested optical tos link. contains also IEEE1394/Firewire (untested)
|-
| Audigy 2 Platinum 6.1 SB0240 SB0250 EMU10K2.5
| 0x1102
| 0x0004
| 0x04
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| works
|-
| Audigy 2 PRO SB0280 EMU10K2.5
| 0x1102
| 0x0004
|
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Audigy 2 ZS SB0350
| 0x1102
| 0x0004
| 0x04
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
|
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| Live 5.1 DELL SB0200 SB0203 emu10kx
| 0x1102
| 0x0006
| 0x0
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
|
|-
| Live 24bit SB0410
| 0x1102
| 0x0007
| 0x
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Live 24bit DELL SB0413
| 0x1102
| 0x0007
| 0x
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy LS SB0310
| 0x1102
| 0x0007
| 0x0
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy SE 7.1 SB0570
| 0x1102
| 0x0007
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 2 ZS SB0320 SB0360 (PRO)
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 2 VALUE SB0400
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 4 VALUE SB0610
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 4 PRO SB0380
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| EMU E-MU 0404 PCI (not USB) EM8852
| 0x1102
| 0x000
| 0x0
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver but linux support needs firmware
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
the green jack is for the main speaker pair AND headphones, so manual switching will be required
If your card is wired for the "AC97" standard, then it's up to your headphone jack to switch the green speaker output in and out
the headphone jack has Normally-closed contacts that will open on insertion, which breaks the signal path back to the sound card (FP_RETURN)
====2000-2010 cmi8738.audio - C-Media====
*2021 5.20
;Read [http://amigaworld.net/modules/news/article.php?storyid=2512 more] and imported on [http://repo.or.cz/w/AROS.git/commit/aff741d60160c6a9d7d39c9e004a25ea3aa13847 20th July 2011] and [http://alsa.opensrc.org/Cmipci alsa docs].
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| Audiotrak MAYA EX5
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| cmi8738-sx 4ch
| 0x13f6
| 0x0111
| 0x10
| <!--Playback-->
| <!--Recording-->
| untested
|-
| e3dx hsp56 CMedia 8738-sx 4ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| EDio SC3000D 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Genius SoundMaker Value PCI C3DX
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Guillemot Maxi Sound Muse
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Hercules Gamesurround Muse LT
| 0x13f6
| 0x0111
| 0x10
| <!--Playback--> {{yes}}
| <!--Recording--> {{no}}
|
|-
| Hercules Gamesurround Muse XL LT 5.1
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Inno audio extreme 5.1 cmi8738/lx pci 6ch
| 0x13f6
| 0x0111
| 0x
| <!--Playback-->
| <!--Recording-->
| untested
|-
| M-Audio (Midiman) DiO 2448
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Sabrent SBT-SP6C 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| StarTech PCISOUND4CH 8738sx 4ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Sweex SC012 CMI8738-lx 4ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Terratec 5.1 PCI
| 0x13f6
| 0x0111
| 0x10
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Terratec Aureon Fun 5.1
|
|
|
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| Has SPDIF
|-
| Trust Sound Expert Digital Surround 5.1 (cm8738-mx 6ch)
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Turtle Beach Riviera CMI8738-MX 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| XSonic CMI 8738 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->CMI8738 6ch PCI-E PCI Express version
| <!--Vendor ID-->0x13f6
| <!--Product ID-->0x0111
| <!--Revision-->0x10
| <!--Playback-->{{Yes|}}
| <!--Recording-->{{Maybe|}}
| <!--Comments-->Chinese based card with playback tested so far
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
====2001-2005 ac97.audio====
*6.4 27-12-2008
The AC97 chips were designed to be pinout interchangeable so that the sound support could change easily and quickly without motherboard redesigns
the green jack is for the main speaker pair AND headphones, so manual switching will be required
If your card is wired for the "AC97" standard, then it's up to your headphone jack to switch the green speaker output in and out, the headphone jack has Normally-closed contacts that will open on insertion, which breaks the signal path back to the sound card (FP_RETURN)
The ProductID and VendorID are for the audio controller only - the important additional codec is '''NOT''' so easily identified.
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| <!--Description-->Avance Logic (now Realtek) ALC100 and ALC101 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->ALC200 and ALC201 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->ALC201A and ALC202 and ALC202A codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->ALC650
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| <!--Comments-->most Nforce2 boards plays audio only - Abit NF7, Asus A7N8X, MSI K7N2, Epox 8RDA+, DFI
|-
| <!--Description-->ALC850 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{No}}
| <!--Comments-->no support for via P4P800 chipset on ASUS A8V-E SE Deluxe mobo - ICaros 1.3
|-
| <!--Description-->Realtek ALC653 codec and ALC655 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested Acorp 7NFU400
|-
| <!--Description-->Realtek ALC658 codec ALC658D
| <!--Vendor ID-->0x8080
| <!--Product ID-->0x24c5
| <!--Revision-->0x0
| <!--Playback-->{{Yes|Prefs Music and Units 0-3 set volume control - playback}}
| <!--Recording-->{{No}}
| <!--Comments-->MSI Motherboard on NB 22-09-2012
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->AD1881 SoundMAX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->Analog Devices first AC97
|-
| <!--Description-->AD1881A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Yes}}
| <!--Revision-->
| <!--Comments-->works with VIA Controller - untested Intel etc
|-
| <!--Description-->AD1881B
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1885 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{No}}
| <!--Comments-->Playback only with issues on D845HV but not working on MS-6367 because Units 0-3 have masked volume control
|-
| <!--Description-->AD1886
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1887
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->ADI AD1888 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{no}}
| <!--Recording-->{{No}}
| <!--Comments--> Icaros 1.51
|-
| <!--Description-->AD1980 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->AD1981A codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested IBM X30
|-
| <!--Description-->Analog Devices SoundMax(TM) AD1981B codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| <!--Comments-->plays back only on IBM T41 Thinkpad
|-
| <!--Description-->AD1985 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{No}}
| <!--Comments-->not working ahi prefs freezes on D865GLC mobo ([http://www.xbitlabs.com/articles/multimedia/display/int-sound2_3.html ]
|-
| <!--Description-->AD1986 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{No}}
| <!--Comments-->untested [http://uk.ts.fujitsu.com/rl/servicesupport/techsupport/Boards/Motherboards/Fujitsu/D1931/D1931.htm D1931] but works (Acer Aspire 3610 laptop)
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->Crystal Semiconductors CS4205, CS4202 codecs
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Cirrus Logic CrystalWare 4236
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->Cirrus Logic CrystalClear SoundFusion CS4297 CS4299 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested IBM T23
|-
| <!--Description-->conexant Cx20468-31 codec (id 30)
| <!--Vendor ID-->0x103c
| <!--Product ID-->0x3085
| <!--Revision-->
| <!--Playback-->{{No|AC97 appears in AHI Prefs}}
| <!--Recording-->{{No}}
| <!--Comments-->Tested AspireOS 1.8 on Gateway W322
|-
| <!--Description-->ESS Technology ES1921 AC'97 2.1
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->CMI 6501 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested on ASROCK SKT-AM2 AM2NF3-VSTA
|-
| <!--Description-->codec CMI9738
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->codec CMI9739
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->C-Media CMI 9739A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments--> untested on EPoX 8RDA3+
|-
| <!--Description-->CMedia CMI 9761A codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested ASRocK K7NF2-RAID
|-
| <!--Description-->C-Media CMI9880
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->National Semi conductor (now TI) LM4540, LM4543, LM4545, LM4546, LM4548, LM4549, LM4550 LM4560
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->STAC9708T codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->SigmaTel (now IDT) C-Major STAC 9460 (D/A only), 9461, 9462, 9463, 9200, 9202, 9250, 9251, 9220, 9221, 9223, 9750
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AKM (Asahi Kasei Microsystems) AK 4540, 4543, 4544A, 4545
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->codec VT1616 (VIA Six-TRAC Vinyl Audio)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->VIA VT1612, VT82C686
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->ESStech ESS ES1968 maestro-2
| <!--Vendor ID-->0x125d
| <!--Product ID-->0x1968
| <!--Revision-->0x
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->ESStech ESS ES1978 maestro2e
| <!--Vendor ID-->0x125d
| <!--Product ID-->0x1978
| <!--Revision-->0x
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->ESStech ESS ES1988 maestro3 allegro-1 codec
| <!--Vendor ID-->0x125d
| <!--Product ID-->0x1988
| <!--Revision-->0x12
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->Yamaha AC97 ymf-743 YMF752 YMF753 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->{{No}}
| <!--Comments-->untested ymf-753
|-
| <!--Description-->YMF724 YMF744 YMF-754 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| SIS 7018 / Trident 4dwave DX/NX / ALi 5451
| 0x1039 (0x1023 Trident)
| 0x7018 (0x2000 Trident DX) (0x2001 Trident NX)
| 0x02
| <!--Playback-->{{No}}
| <!--Recording-->{{No}}
| no support - introduced early 2000s
|-
| SIS 7012
| 0x1039
| 0x7012
|
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| working through 1 speaker only took over from SIS7018 (2002 onwards)
|-
| <!--Description-->Wolfson (now Cirrus Logic) WM9701, WM9701A (AC'97 1.03 spec), WM9703, WM9704 (AC'97 2.1), WM9705, WM9706, WM9707, WM9708
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->WM9709, WM9710, WM9711, WM9712, WM971
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->first Microsoft(TM) Xbox DAC sound chip (AC Link compliant D/A converter)
|-
| <!--Description-->Wolfson WM9717
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| Parallels
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested
|-
| VirtualBox
|
|
|
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| working
|-
| VirtualPC
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested
|-
| <!--Description-->Intel 82801AA Proxmox
| <!--Vendor ID-->0x8086
| <!--Product ID-->0x
| <!--Revision-->
| <!--Playback-->{{unk| }}
| <!--Recording-->{{unk| }}
| <!--Comments-->
|-
|}
====2005-20xx HDAUDIO.audio====
*6.36 2025 [https://github.com/aros-development-team/AROS/commit/43b33a9280b10963ca659de2cc3d1cf289b43a87 reset handler]
*6.35 202 []
*6.34 2019 AROS One 1.5 upwards
*6.29 2018
*6.27 2017 update
*6.25 2014 used for most Icaros 2.x
*6.20 July 2012
*6.17 Nov 2011
*6.15 Jun 2011
*[http://www.clusteruk.com/SitePortalPage.aspx?siteid=1&did=109 6.13] Sep 2010
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="5%" |Vendor ID
! width="5%" |Product ID
! width="5%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| <!--Description-->ALC260
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| <!--Description-->ALC262
* ALC262-VD2-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->LQFP-48
|-
| ALC268 codec
| 0x
| 0x
| 0x
| <!--Playback-->{{Yes|Version 6.17 Acer AOA110 and AOA150 netbooks), works (Dell Mini Inspiron 9 and 10v, }}
| <!--Recording-->{{Yes|Version 6.17 remove QUERY and select 'Mic 1' as input. Tested with 6.15 as well using QuickRecord and AE 4.0.23 under Icaros 1.4.}}
| <!--Comments-->AHI UNITS and Music are set to: hdaudio:HiFi 16 bit stereo++ / Frequency 48000 Hz, Volume +0.0 dB. The hdaudio.config in SYS:Prefs/Env-Archive is WITHOUT the QUERY-line. After changing and saving the config-file turn off and start again the computer. Switch from internal loudspeaker to headphone you must turn off the music before plug in the headphone-cable, otherwise there is no output on the socket. Back from line-out to internal speakers it is the same.
|-
| [http://blog.foool.net/wp-content/uploads/linuxdocs/sound.pdf Linux docs ALC269]
* ALC269Q-GR
* ALC269QSRS-GR
* ALC269W-GR
| 0x
| 0x
| 0x
| <!--Playback-->{{Maybe| }}
| <!--Recording-->{{Unk| }}
| <!--Comments-->TQFP 48 pin Power IC Chip From [https://patchwork.kernel.org/project/alsa-devel/patch/1408118123-15849-1-git-send-email-tiwai@suse.de/ ALC269 & co have many vendor-specific setups with COEF verbs, result in the codec stalling]
|-
| [http://www.alsa-project.org/db/?f=0321f8479fd670cd510f9912b1120fe7edcf2e07 ALC269VB]
* ALC269Q-VB5-GR
* ALC269Q-VB6-CG
* ALC269Q-VB6-GR
| 0x10ec
| 0x0269
| 0x100004, 0x100100, 0x100202
| <!--Playback-->{{Maybe|some versions work}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* v1 works Asus eee PC netbook 901/1000HA 1005HA/1008HA, 1001P,
* v2 maybe working Lenovo S9 S10 S10-2 S10-3 under HDAudio version 6.13
* v3 maybe dell wyse 7010
|-
| [http://alsa-project.org/db/?f=9c1746c5957b0ce72ff9cfffa312e97d14baf785 ALC269VC aka ALC3202]
* ALC269Q-VC2-GR
* ALC269Q-VC3-GR
| 0x10ec
| 0x0269
| 0x100203,
| <!--Playback-->{{Maybe|some versions work}}
| <!--Recording-->{{Unk}}
| <!--Comments-->SMT SMD QFN-48 -
* v1 unknown
* v2 unknown
* v3 x230, dell wyse,
|-
| ALC272
* ALC272-VA4-GR
| 0x10ec
| 0x0272
| 0x0
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Unk}}
|
* works Acer AOD150 and Acer AOD250 works [http://amigaworld.net/modules/newbb/viewtopic.php?topic_id=33755&forum=28#616910 Samsung NP-NC10], works Samsung NF210-A02] netbooks,
|-
| <!--Description-->ALC273
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| <!--Description-->ALC270
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC282
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x
| <!--Revision-->
| <!--Playback-->{{No|Version 6.17}}
| <!--Recording-->{{No|Version 6.17}}
| <!--Comments-->needs retest
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC660 ALC660-VD
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes| }}
| <!--Recording-->
| <!--Comments-->
* works asus F9s, F9e
* untested asus w7j, M51SN, A6Tc, A8Sr,
|-
| <!--Description-->ALC661-GR (2011)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| ALC662
| 0x1043
| 0x82a1
| 0x0
| <!--Playback-->{{Yes|Version 6.17 if QUERY added to top of hdaudio.config}}
| <!--Recording-->{{No|Version 6.17 not working for eee pc 900}}
|
* works Asus eee PC netbook 700/701/900, Atom 270 and 330 mobos, odd clicks (D410 NM10 PineTrail),
|-
| <!--Description-->[http://outpost.fr/rmaa/ALC663.htm ALC663]
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0861
| <!--Revision-->
| <!--Playback-->{{No|Version 6.13}}
| <!--Recording-->{{Unk}}
| <!--Comments-->not bad output like headphone amp part of the codec actually works well but messed up by undersized coupling capacitors to actually support such a low impedance
* not working Asus n50vn x71vn,
|-
| <!--Description-->ALC665
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC666
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC667
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC668
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC670
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->ALC880
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->some 915 and 925 chipset mobos
|-
| <!--Description-->ALC882M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| Realtek ALC883 ALC883-GR ALC883D-GR ALC883DTS-GR ALC883DD-GR codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe|some early versions work }}
| <!--Recording-->{{Unk| }}
| 2005 to 2007 HD Audio codec untested (Asus ),
|-
| Codec ALC885
| 0x10ec
| 0x0885
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
|-
| ALC888
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
|
|-
| ALC888s
* ALC888S-VD2-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}} MSI Wind U90/U100,
| <!--Recording-->{{Unk}}
| LQFP-48
|-
| ALC888b
| 0x8086
| 0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| untested (D510 NM10 Dual Core PineTrail mobo),
|-
| ALC888-VD
| 0x8086
| 0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| untested
|-
| ALC889A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes|works if QUERY added to the top of hdaudio.config in Prefs drawer/directory}}
| <!--Recording-->{{Unk}}
|
|-
| ALC889 Gr
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}} with crackles
| <!--Recording-->{{Unk}}
|
|-
| ALC889
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
| Tested with MSI H55 board
|-
| ALC887 ALC887-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
|
* working on ASUS P5KPL/EPU and Gigabyte GA-E350N-Win8 Rev1.0
|-
| ALC887-VD-CG
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0887
| <!--Revision-->0x100302
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}} Subsystem Id: 0x1458a002
|
|-
| ALC887-VD
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0887 0x1458
| <!--Revision-->0xa002
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{Unk}} index = 2
| ALC887 does not have any volume control ability on the mixer NIDs, so put the volume controls on the dac NIDs instead
* working with intermittent corrupting pop popping skipping stuttering sound issues MSI 760GM-P23 (FX),
* not working Gigabyte H61MA-D3V, AT3IONT-I Deluxe,
|-
| ALC887-VD2
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
| 3jacks
|-
| ALC887-VD2-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
|-
| ALC887-
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
|
|-
| ALC892-CG rev
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| 2011 48-pin LQFP Green package -
|-
| ALC892 ALC892-DTS-CG rev
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
| 2009 introduced
* works
* not working
* untested
|-
| ALC892 rev
| <!--Vendor ID-->0x0x10ec
| <!--Product ID-->0x0892
| <!--Revision-->0x100302
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| 2014
|-
| Realtek ALC886-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| LQFP-48
|-
| Codec ALC861 ALC861-VD
| 0x10ec
| <!--Product ID-->0x0663
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
|
* not working Toshiba Tecra A7
|-
| <!--Description-->ALC1200
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| ALC898
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
| not working
|-
| <!--Description-->ALC1500
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC3232 (aka ALC292)
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0292
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC3234 aka ALC255
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0255
| <!--Revision-->003
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC3287 aka ALC257
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes| }}
| <!--Recording-->{{no| }}
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->AD1882
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1883 HD Codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1884
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| Analog Devices SoundMAX AD1981
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| IBM Thinkpad T60,
|-
| AD1984 hp-m4 codec
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
* audio not working on Lenovo X61, Thinkpad T61,
|-
| AD1986
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
|
|-
| AD1988
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
|-
| <!--Description-->AD1988A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->Cirrus Logic CS4207
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->
| <!--Recording-->
|
|-
| <!--Description-->Cirrus Logic CS4208
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->
| <!--Recording-->
|
|-
| <!--Description-->Conexant CX20549 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe|very very very low volume}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested Fujitsu Amilo SI 1510 1520 no datasheet for the general public
|-
| <!--Description-->Conexant CX20549-12Z codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested HP 530
|-
| <!--Description-->Conexant CX20561 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* working lenovo x200s
* untested Lenovo Essential G555 Notebook, HP Pavilion dv6700,
|-
| <!--Description-->Conexant CX20582 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX2059x CX20590 CX20594-21Z codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX20585 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* working Lenovo Thinkpad T410,
|-
| <!--Description-->Conexant CX20672 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX20671 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX20751-21Z codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes| }}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| <!--Description-->Conexant CX11852 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX11880 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant after 2015 up to 2018 CX7501 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{no|no driver codec}}
| <!--Recording-->{{no|no driver codec}}
| <!--Comments-->Conexant bought by synaptics 2019
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->C-Media CMI9880 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->Gigabyte GA-8GPNXP
|-
| <!--Description-->Silicon Labs 3054
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| VIA 1708A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| untested,
|-
| VIA VT1708B
| <!--Vendor ID-->
| <!--Product ID-->
| 0x0010
| <!--Playback-->{{No|VIA PicoITX}}
| <!--Recording-->{{Unk}}
|
|-
| VIA 1708S
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
|
|-
| <!--Description-->VT2021 10ch
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->Gigabyte Z77MX-D3H, GA-H61M-S2H S2P,
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Creative CA0110-IBG
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->SigmaTel STAC 9220 9221 9223 8ch (7+1)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| <!--Comments-->ECS 945GCT/M-1333 (version 3.0),
|-
| IDT SigmaTec [http://explorer.cekli.com/articles/pdf/hd-audio STAC9227] /28/29/30 codec
| <!--Vendor ID-->0x8384
| <!--Product ID-->0x7626
| <!--Revision-->0x0002
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Unk}}
|
* works HP Compaq mini 110
* untested HP Pavilion HDX9000 CTO Notebook, Intel DG33TL mobo, Dell E520, Intel DP35DP mobo, Dell E6410 Laptop,
|-
| IDT (formerly SigmaTel) IDC STAC 9271/71D
| <!--Vendor ID-->0x8384
| <!--Product ID-->0x7626
| <!--Revision-->0x0002
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
|
|-
| <!--Description-->IDC STAC 9272 9273 9274
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->Intel D5400XS,
|-
| <!--Description-->IDT 92HD73C
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes}}
| <!--Recording-->
| <!--Comments-->headphones only Asus AT4NM10 mobo
|-
| <!--Description-->IDT 92HD75B
| <!--Vendor ID-->0x111d
| <!--Product ID-->0x7608
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* working [http://koti.kapsi.fi/jvaltane/aros/hdaudio/ HP Compaq Mini 700 Netbook - feedback required]
* untested HP Mini 5103 and 5102, HP Compaq 610, HP ProBook Laptop 4520s 4525s 6450b 6550b 6555b, HP EliteBook 2540p 2740p 8440p, Mobile Workstation 8540w 8740w, Pavilion NoteBook DV8,
|-
| <!--Description-->IDC 92HD81XX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC 92HD83XX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC STAC 92HD89XX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Wolfson (now Cirrus Logic) WM8850
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Wolfson WM8860
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->Intel High Definition Audio Revision 1.0. - 4-Channel DAC, 4-channel ADC. - DAC sampling
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
Using Prefs/AHI ensure you set the music unit and at least Units 0 (where most audio comes from) in top left drop down menu to HDaudio - HIFI in the section below. Set Units 1 or 2 to microphone or other outputs. Plus allow more than one channel for multiple audio streams and set frequency up to 44 kHz or higher on the right hand side of the ahi prefs. If sound beeps when you press the test button then all should be OK.
Output <- Codec <- Audio Controller (HDA) <-> Computer
codecs and exact hardware identifier. As mentioned above, HDA is only part of the work here, it gets the audio out of the main chipset in digital format (on a bus called I2S). This is not enough, there is another step needed which is routing that I2S signal to the output, converting it to actual audio, amplifying it, etc. This is handled by a separate chip called a "codec". Sometimes it is initialized by the BIOS, but this is not always the case.
Most audio drivers are made up of two parts a [http://www.kernel.org/doc/Documentation/sound/alsa/HD-Audio.txt Controller + a Codec]. The ProductID and VendorID are for the audio controller only - the important additional codec is '''NOT''' so easily identified.
Some newer versions of codecs are missing at the moment.
Things to try if sound not working
* try to connect something to the audio jack, maybe it is not playing on internal speakers or vice versa
* make sure you try and select all music units e.g. unit0, unit1....
* even if PCI ID's are in Prefs/Env-Archive/HDaudio.config, this doesn't mean it is working, it is the codec that matters
* it might be internally muted
<pre>
add debug=memory to grub boot line - continue booting with F10
Open a shell
Tools/Debug/Bifteck > RAM:audio.txt
</pre>
or
<pre>
Open a shell
Tools/Debug/Sashimi > RAM:audio.txt
Run ahi prefs
Click test tone button
Stop sashimi with Ctrl-C
</pre>
If the boot sound is enabled, you have to use Bifteck to capture AHI debug output. In the GRUB menu, press E on your selected entry, then add "debug=memory" to the options (alongside ATA=, vesa= etc.). Then F10 or Ctrl-X to boot. Once booted, run Tools/Debug/Bifteck again.
or
* try adding QUERYD to the start of ENVARC:hdaudio.config file (also known as Prefs/Env-Archive/) ie. on the first line
* '''OR''' try removing QUERY and QUERYD from the start of the hdaudio.config file
* Reboot
* open a shell
* type: sys:tools/debug/sashimi > ram:debug.txt
* open ahi prefs
* select one of the audio modes - HIFI or otherwise
* press the 'test sound' button
* press ctrl-c in the shell
* post the results to Aros-World
The HD Audio standard was designed to be hardware pinout interchangeable so that the sound support could change easily and quickly. HDA is a standard around particular chips. Each kind of chip has a certain number of DACs and pins, and even the same chip could be hooked up in different ways on different motherboards. The chips are programmable and the operating system can adjust how things are routed. Some pins aren’t even hooked up, so it makes no sense to route sound to them. Also some pins have sensors that can tell when something is plugged in, so that for example the speakers in a laptop can be muted when headphones are plugged in. Pins are also grouped, so for example all the outputs for a 5.1 sound system are grouped. Generally the HDA driver in the operating system is supposed to read the pin set up and figure out a reasonable way to set things up, and disconnected pins should be ignored, etc.
HDAudio standard has headphones on a separate DAC, and it's up to the driver.. it can even send different audio to the headphones without interrupting the main (green) outputs
====Envy24 series ====
A little history. VIA bought the ICE created Envy chipsets [http://www.via.com.tw/en/products/audio/controllers/comparison_controller.jsp VT1712] first. A few years later, they created several cheaper variants VT1724 (mixer missing), VT1721 (low end cut down), VT1720 (embedded on motherboard) and lastly the VT1723 (no support apart from Windows Envy24DT like SYBA SD-PEX63034).
There are PCI Express versions appearing.
The Envy24 is the base product that was originally designed by ICEnsemble, and it supports multi-channel hardware mixing, which is great for professional use. The HT version removes the hardware mixer (unimportant for non-professional uses). The [http://www.avsforum.com/t/364771/envy24ht-s-the-definitive-source HT-S] version is almost exactly the same as the HT, it just uses cheaper DACs. The PT version is exactly the same as the HT-S version, it is just the edition used for on-board audio on motherboards.
N.B. [http://www.soundonsound.com/sos/dec04/articles/pcnotes.htm PCI slot identification] and [http://hsi.web.cern.ch/HSI/s-link/devices/s32pci64/slottypes.html 3.3v PCI].
=====[http://www.opensound.com/readme/README.Envy24.html envy24.audio] - [http://www.anime.net/~goemon/alsa/ VT1712] =====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Playback
! Recording
! Comments
|-
| M-Audio Delta 66 - Rev B 1999
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested AK4524VF CS8404A-CS - needs Delta Series break out box with D-sub lead -
|-
| [http://ixbtlabs.com/articles/maudioaudiophile/index.html Audiophile 2496] Rev A 2000
| 0x14
| 0x
|
| <!--Playback-->{{unk| }}
| <!--Recording-->{{unk| }}
| works audio out on - I2S stereo codec AKM AK4528VF with the 24bit/96kHz DAC and ADC; CS8427 digital transceiver
|-
| [http://ixbtlabs.com/articles/maudioaudiophile/index.html Audiophile 2496] Rev B 2003
| 0x14
| 0x
|
| <!--Playback-->{{Yes }}
| <!--Recording-->
| works well - I2S stereo codec AKM AK4528VF with the 24bit/96kHz DAC and ADC; CS8427 digital transceiver
|-
| M-Audio Delta 410 - 2001 2001 REV-B
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested for D-A AK4529VQ converters with CS8427-CS 5532 1158B or Event Echo Gina 20-Bit Multitrack Interface Breakout Box -
|-
| M-Audio Delta 1010
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested AK5383 and AK4393 - 25 pin dsub -
|-
| M-Audio Delta 1010LT 1010E
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested for D-A AK4529 converters with 2 XLR Microphone inputs with pre amps
* be aware of redesign in 2007 - possible issues
|-
| M Audio Delta 44 - Rev A 2002 - Rev B 2003 - Rev D 2003
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested ICE1712G AK4524VF needs breakout box with 15 pin D-sub lead -
|-
| M-Audio Delta 66 Rev E 2006 - Omni Studio
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested needs break out box with 15 pin D-sub lead -
|-
| <!--Description-->M-Audio Delta DiO 2496
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| Terratec EWX24/96
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| [http://ixbtlabs.com/articles2/terratecdmx6fire/index.html TerraTec 6fire DMX 24/96]
| <!--Vendor ID-->0x1412
| <!--Product ID-->0x1712
| <!--Revision-->0x02
| <!--Playback-->{{No|tried line 1-2 3-4 5-6 7-8 }}
| <!--Recording-->{{No| }}
| untested - AKM and codec
|-
| <!--Description-->Terratec EWSA88MT
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| [http://lists.freebsd.org/pipermail/freebsd-multimedia/2007-March/006087.html Audiotrak Prodigy HD2] 24/96
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Audiotrak (ESI) Maya 1010 1010L
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| EMU 1212M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| EMU 1616M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| <!--Description-->Terratec EWS 88MT EWS 88D
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Hoontech Soundtrack DSP 24
Soundtrack DSP 24 Value
Soundtrack DSP 24 Media 7.1
Event Electronics EZ8
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Digigram VX442
Lionstracs
Mediastation
Terrasoniq TS 88
Roland/Edirol DA-2496
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
=====envy24ht.audio - VIA VT1724=====
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| ESI Juli@
| 0x3031
| 0x4553
| 0x0
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Yes}}
| reported working years ago [http://envy24.svobodno.com/ Envy24HT-S] - AKM 4358 DAC - AKM 4114/4112 DIT
|-
| ESI Juli@ Ego Igo rev K
| 0x3031
| 0x
| 0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| AK4358? DAC - AK4114 AK4112 DIT
|-
| [http://ixbtlabs.com/articles2/multimedia/m-audio-revolution51.html M-Audio Revolution 5.1]
| 0x1412
| 0x3631
| 0x0
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| reported working years ago but discontinued - (Envy24GT) - 3ch AKM 4358 DAC - ADC AKM 5365 -
|-
| [http://ixbtlabs.com/articles2/m-audio-revolution71/index.html M-Audio Revolution 7.1] 24/192
| 0x1412
| 0x3630 0x1724
| 0x0
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| not working - illegal semaphore - 6ch ADC AKM AK4355 24-bit 192 kHz - 2ch DAC AKM AK4381 24-bit 192 kHz - ADC AKM AK5380
|-
| Terratec Aureon Sky 5.1
| 0x153b
| 0x1147
| 0x
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - discontinued
|-
| [http://ixbtlabs.com/articles2/terratec-aureon71/index.html Terratec Aureon Space 7.1]
| 0x153b
| 0x1145
| 0x0
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - Wolfson WM8770 DAC, AC'97 codec SigmaTel STAC9744
|-
| Terratec Aureon Universe 7.1
| 0x153b
| 0x1153 (rev x) 0x1724 (rev3)
| 0x0
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| not working - semaphore error on rev 3 - DAC ADC
|-
| Terratec Phase 22
| 0x153b
| 0x1150
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - Envy24HT-S - AK4524
|-
| Terratec Phase 28
| 0x153b
| 0x1149
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - Envy24HT-S - AK4524
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Playback
| Recording
| Revision
| Comments
|-
| Audiotrak (ESI) Prodigy 7.1
| 0x4933
| 0x4553
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - Wolfson WM8770 and AC'97 SigmaTel STAC9744 codec
|-
| Audiotrak (ESI) Prodigy 7.1 LT
| 0x3132
| 0x4154
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver -
|-
| [http://ixbtlabs.com/articles2/sound/audiotrak-prodigy192.html Audiotrak (ESI) Prodigy 192] 24/96
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - STAC9460S codec
|-
| <!--Description-->Echo Layla 24/96
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
| [http://www.bit-tech.net/custompc/labs/80752/hercules-gamesurround-fortissimo-4.html Hercules Gamesurround Fortissimo 4]
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - Wolfson WM8776 Codec and WM8766 DAC
|-
| [http://ixbtlabs.com/articles2/multimedia/m-audio-audiophile192.html M-Audio Audiophile Delta AP 192k]
| 0x1412
| 0x3632
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - Stereo ADC AKM AK5385A 24-bit 192 kHZ - 8-channel DAC AKM AK4358 24-bit 192 kHz - AKM 4114/4112 DIT
|-
| ONKYO SE-150PCI
| 0x160b
| 0x0001
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver
|-
| <!--Description-->ESI Waveterminal 192x
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
| <!--Description-->Quartet
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments--> - AKM 4114/4112 DIT
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
|}
====hdmiaudio.audio - hdmi no support====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->ATI R6xx HDMI Audio codec support output
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x9840
| <!--Revision-->
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->Not detected
|-
| <!--Description-->NVidia HDMI
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Intel Series 6 CougarPoint HDMI codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Intel HDMI
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|}
[[#top|...to the top]]
===Graphic GFX Chipsets===
[https://gallium.readthedocs.io/en/latest/systems.html PCIe based] graphic chipset is defacto on 64bit AROS and recommended on 32bit.
AGP works on 32bit but faster transfers through the AGP slot are only available on a few supported motherboard chipsets
* Faster AGP Working = SIS 650 board, Intel 865pe AGP slot on MSI 6788-050,
* Not Supported = NForce2 chipsets, most Intel 815/820 chipsets, VIA chipsets, ALi chipsets,
The fallback for all graphics modes is vesa if any native support does not work. There is a choice of very low resolution vga as the last resort
2D tests performed with [http://download.aros3d.org/software/gfxbench.zip gfxbench] in the shell type gfxbench > out.txt (40 seconds blank screen is part of the test), via FreeDoom via limit-removing engine like odamex, chocolate or vanilla doom -timedemo demo1 or doom2 -timedemo demo1, doom.exe -iwad doom2 -file mymap.wad, Duke DNRATE 640x480 windowed
3D tests performed with Demos/Mesa/ , Cube 1080p, Cube 2 windowed not fullscreen 1920 x 1025, Quake3 ~ cl_drawFPS 1, Xonotic , [http://shinh.skr.jp/sdlbench/showtestgl.cgi test gl],
HDMI, DVI and DisplayPort monitors have a native resolution of 480p, 720p, 1080i, 1080p and up
<pre>
HDMI (licensing fee)
1.2 720p res.
1.3 1080 resolution
1.4 4K @ 30Hz
2.0 4K @ 60Hz
2.1 48Gbs for 4K @ 120Hz, 8K @ , VRR, etc
2.2 ultra96
</pre>
<pre>
DisplayPort (VESA introduced)
1.4 4K @ 60Hz
2.1 96Gbs for 4K @ 240Hz, 8K @ 120Hz. MST daisy chain multiple monitors,
</pre>
<pre>
GPMI chinese standard
2.0
</pre>
Might be supported on AROS
*OpenGL4 GPU must have 64-bit floating point FP64 math support, which is a hard requirement for GL 4.0. The max last revision opengl 4.6 (2017) on [https://wiki.gentoo.org/wiki/AMDGPU AMDGPU] RX 5000's / 6000s ([https://forum.batocera.org/d/7491-enable-opengl-46-and-vulkan-for-an-old-radeon-video-card RDNA] and Nvidia RTX might come to AROS) but Intel UHD, Iris Plus or Xe or Arc (will not unless a developer wants the challenge)
*OpenGL3 last revision 3.3 (2011)
Already supported on AROS
*OpenGL2 nvidia-nouveau,
*OpenGL1 intel gma950,
====vga.hidd====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Comments
|-
|
| 0x
| 0x
| 0x0
| Generic VGA Driver, limited to 640x480 in 16 colours - no 3D support
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Comments-->
|-
|}
====vesa.hidd====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Comments
|-
|
| 0x
| 0x
| 0x0
| 2D support for VBE1, VBE2 and VBE3 (most cards) - various resolutions and 24bit colour - no 3D support
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Comments-->
|-
|}
[[#top|...to the top]]
====[[w:en:Intel GMA|Intel GMA]]====
DVI output is not supported at the moment.
If having problems:
* Ensure the latest version is being used.
* Set GMA_MEM to 128 or 256 to test
* Try the FORCEGMA ToolType for 2D, and try the FORCEGALLIUM ToolType for 3D acceleration after 2D is verified to work. ToolTypes should be applied to the Devs/Monitors/IntelGMA monitor icon.
If still having problems:
* At GRUB boot screen edit boot line and add option: debug=memory
* Boot.
* Use shell command: tools/debug/bifteck > RAM:debug.txt
* And post [GMA MONITOR DETECTION] and other related debug lines
{| class="wikitable sortable" width="90%"
! width="5%" |Description
! width="5%" |Vendor ID
! width="5%" |Product ID
! width="3%" |Rev
! width="5%" |2D
! width="5%" |3D
! width="5%" |Analog Output
! width="5%" |Digital Output
! width="5%" |Laptop LCD
! width="30%" |Comments
|-
| 910GL 82910GL GMCH + ICH6
| 0x8086
| 0x2582 0x2592
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| 910GML 82910 GML GMCH + ICH6 Mobile
| 0x8086
| 0x2582 0x2592
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| may need to add forceGMA to grub boot line to work
|-
| 915G 82915G GMCH + ICH6-M
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
|
|-
| 915GL 82915GL GMCH
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
|
|-
| 915GV 82915GV GMCH
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Yes|}}
| <!--3D-->{{No|}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{N/A}}
| HP DC5100 small form factor
|-
| 915GM GMA900
| 0x8086
| 0x
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| tunnel gearbox }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes}}
| asus eee pc 900
|-
| 915GMS
| 0x8086
| 0x
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| tunnel }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes| }}
|
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| [http://www.notebookcheck.net/Intel-Graphics-Media-Accelerator-950.2177.0.html 945GU] - 133 MHz (Lake port for Intel A100 and A110)
| 0x8086
| 0x2772
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| Fujitsu LifeBook U1010,
|-
| 945GMS - 166 MHz / 250 MHz (1.05V)
| 0x8086
| 0x27a2
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes}}
| Dell D430
|-
| 945GSE - 166 MHz (for Atom)
| 0x8086
| 0x27ae
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Yes|[http://www.x.org/wiki/GalliumStatus]}}
| {{Yes}}
| {{No|dvi port}}
| {{Yes| }}
| for atom motherboards and most 2008/2009 netbooks
* 3D Works - AOA110 AOA150, Dell Mini 9, Samsung NC10, Toshiba NB100,
|-
| 945G 82945G GMCH + ICH7
| 0x8086
| 0x27a6
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| untested 2D and 3D
|-
| 945GC 82945GC MCH
| 0x8086
| 0x27a6
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| untested 2D and 3D
|-
| 945PM
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| Dell D420, Compaq nc6400,
|-
| 945GMS - 250 MHz Calistoga
| 0x8086
| 0x
| 0x0
| <!--2D--> {{Yes}}
| <!--3D--> {{Yes|most models}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes}}
|
* 3D Works Dell Latitude 2100, HP Compaq nc6320, Lenovo 3000, Lenovo T60, Samsung Q35, Dell D620, Dell D820,
* 3D untested Toshiba Satellite L100-120, Toshiba Portege M400,
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
|
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GMA 3100 G31
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works 2D but no 3D
|-
| GMA 3100 G33
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works 2D but no 3D
|-
| [http://en.wikipedia.org/wiki/Intel_GMA GMA 3150] netbooks and nettops
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works 2D but no 3D. no vga, dvi or hdmi output for nettops
|-
| <!--Description--> G965
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments-->
|-
| <!--Description--> Q965
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x2992
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{No}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments--> Only tested with VGA output.
|-
| 965GM X3100 (500 MHz)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| some support 2D but no hardware 3D - could not get it to work with VGA or dvi output
* untested Apple MacBook Air, Lenovo Thinkpad X300, Dell Inspiron 1525, Toshiba M9,
|-
| 960GM X3100 (400 MHz)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
|
|-
| 965M X3100 (400 MHz)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| Dell D830,
|-
| 965PM ??
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| Toshiba A9 works with limited 2D acceleration but no hardware 3D
|-
| GL965
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works with limited 2D acceleration but no hardware 3D
|-
| GM965
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works with limited 2D acceleration but no hardware 3D
|-
| GMA X3500 G35
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->X4500M G41 G43 G45 (400Mhz) Mobile 4 Series
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x2a42 0x2a43
| <!--Revision-->0x07
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue--> {{No|}}
| <!--Digital--> {{No|}}
| <!--Laptop LCD--> {{Yes| VESA}}
| <!--Comments-->works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->GMA 4500M HD (533 MHz)
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments-->works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->GMA 4700M HD (640MHZ)
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x2a42
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments-->works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
====[http://nouveau.freedesktop.org/wiki/FeatureMatrix nouveau].hidd (nvidia pci, agp, pci-e desktop)====
PCIe based nvidia graphics (gfx 8xxx) are the base level for 64bit AROS but earlier models still has some support on 32bit AROS
*Desktop, more likely hit rather than miss on early nvidia on Aros 32bit but on Aros 64bit ...
*Laptop, limited support for '''very''' early non-optimus (i.e. just Nvidia gfx only so no Intel and nvidia gfx combinations on 32bit but on 64bit ...)
Please note that the nouveau project is reverse engineering a nvidia graphics driver but takes time because of [https://nouveau.freedesktop.org/ nVidia's closed firmwares], etc
* 2026-06 - DEVS Nouveau.hidd Gallium.hidd Softpipe - LIBS Gallium GLU 20.0 Mesa OpenCL
* 2011-10 - DEVS 6.11 Nouveau.hidd 7.4 Gallium.hidd 9.4 Softpipe - LIBS 2.3 Gallium 1.3 GLU 19.0 Mesa OpenCL 1.x
* 2011-04 - DEVS 5.31 Nouveau.hidd 7.3 Gallium.hidd 9.3 Softpipe - LIBS 2.2 Gallium 1.1 GLU 18.0 Mesa OpenCL n/a
Nouveau support for AROS is limited to OpenGL 2.1 compliance on 32bit even for modern GL4 capable GPUs but on 64bit ...
On Aros 32bit OpenCL supports the NV50 (8000 9000) cards, less support in NVC0 fermi cards (300 upwards)
On Aros 64bit
ADoom3 graphic details ultra, benchmark while playing press the "`" key and type "Timedemo demo1" in the console
{| class="wikitable sortable" width="90%"
! width="5%" | Graphic Card
! width="5%" | Aros 32bit 1024 x 768
! width="5%" | Aros 32bit 800 x 600
! width="5%" | Aros 32bit 640 x 480
! width="5%" | Aros 64bit 1024 x 768
! width="5%" | Aros 64bit 800 x 600
! width="5%" | Aros 64bit 640 x 480
|-
| NV50 Asus EN8400GS SILENT/P/512M PCIe (G98) || || || || || ||
|-
| Gigabyte 8500GT 256M || 42,6 || 57,2 || 68,6 || || ||
|-
| NV96 (G96) Geforce 9500GT 512M || 43 || 53 || 57 || || ||
|-
| NV96 (G96) 9600GT || || || || || ||
|-
| NVA3 (GT215) GT240 || || || || || ||
|-
| NVA5 (GT216) Palit GT220 Sonic 512M || 39,7 || 55,8 || 63,7 || || ||
|-
| NVA8 (GT218) gt210 || || || || || ||
|-
| NVA8 (GT218) ION2 || || || || || ||
|-
| NVC3 (GF106) GT440 GTS 450 || || || || || ||
|-
| NVCF (GF116) NVC0 Fermi GTX 550Ti or GTS 450 v2 || || || || || ||
|-
| NVC8 (GF110) 580GTX || N/A || N/A || N/A || || ||
|-
| NVE0 Kepler GT630 || N/A || N/A || N/A || || ||
|-
| NVE6 (GK106) Kepler GTX660 || N/A || N/A || N/A || || ||
|-
| NVE7 (GK107) GTX 650 || N/A || N/A || N/A || || ||
|-
| NV110 Maxwell GTX 750 || N/A || N/A || N/A || || ||
|-
| NV126 (GM206) GTX950 upwards no reclocking || N/A || N/A || N/A || poor || poor || poor
|-
| NV160 family (Turing) GTX 1650 and RTX 2000 upwards with GSP firmware || N/A || N/A || N/A || unknown || unknown || unknown
|-
| HostGL Ryzen 5 4600H - Nvidia 1650 - Linux mint 21.1 || N/A || N/A || N/A || 150fps || 154fps || 155fps
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| width="5%" | Graphic Card
| width="5%" | Aros 32bit 1024 x 768
| width="5%" | Aros 32bit 800 x 600
| width="5%" | Aros 32bit 640 x 480
| width="5%" | Aros 64bit 1024 x 768
| width="5%" | Aros 64bit 800 x 600
| width="5%" | Aros 64bit 640 x 480
|}
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|-
| <!--Description-->tnt1 (nv04) tnt2 (nv05) m64 value (1998)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|very slow}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| NV04 Riva TNT TNT2 Fahrenheit freezes on via motherboard chipset so rename agp.hidd in SYS:Devs/Drivers or Monitors
|-
| <!--Description-->tnt vanta lt (nv06) 1998 /9
| 0x10de
| 0x002c
| 0x15
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|slow}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| <!--Description-->Geforce 256 (nv10) (2000)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|slow }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| untested Geforce256
|-
| <!--Description-->Geforce 2 Geforce 3 Geforce 4 (nv20) 2000 / 2
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|slow }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| works for some PCI and AGP Geforce2 Geforce3 Geforce4
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| Geforce FX5200 nv34 (2003)
| 0x10DE
| 0x0322 0x
| 0xA1
| <!--2D-->{{Maybe| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->{{Maybe|VGA15 }}
| <!--Digital-->{{Maybe|DVI}}
| <!--Laptop LCD-->{{N/A}}
| NV30 GeForce 5 FX Rankine Hardware OpenGL 1.5 - slower than GF MX 4000 for 2D - max 1024 x768
* not working [https://eab.abime.net/showthread.php?t=92328&page=8 mobos with VIA chipsets 2018]
* working (MSI 0x9174) the previous nouveau 5.x driver
* Others work with 6.x series XFX PV-T34K-NA, ASUS V9520-X/TD
|-
| Geforce FX5500 (nv34) (2003)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{Maybe| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| works
|-
| Geforce 5100 (NV34)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce FX 5200LE (NV34)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5200 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce FX5600 (nv31) (2004)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Maybe| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| works
|-
| GeForce FX 5600 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5600SE
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5600XT
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce FX5700 (nv36) (2004)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes|some}}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{Maybe| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5700VE
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5700 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5700LE
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5800 (NV30)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5800 Ultra (NV30)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900 (NV35)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900XT
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900ZT
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5950 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce 5xxx
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
|
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| Geforce 6200 (nv44) (2005)
| 0x
| 0x00F3 0x014F
| 0x0
| <!--2D-->{{Yes|5.28 Pixel Text}}
| <!--3D-->{{Maybe| use 5.28}}
| <!--Analogue-->{{Yes|VGA15 and s-video - plain 4pin cable lead will work with 7pin}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| NV40 GeForce 6 GeForce 7 Curie AGP Hardware OpenGL 2.1 needing previous 5.x version as regression arose 2011-10
|-
| Geforce 6200 (nv44a) (2006)
| 0x
| 0x0221
| 0x0
| <!--2D-->{{Yes|5.28 Pixel Text }}
| <!--3D-->{{Yes|}}
| <!--Analogue-->{{Yes|VGA15}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| Hardware OpenGL 2.1, PCI version tested OK in 2014-01-02 - Icaros 1.5.2
* not working
*working
|-
| GeForce 6200 with Turbo Cache (NV43)
| 0x
| 0x0161
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce 6200SE with Turbo Cache (NV44)
| 0x
| 0x0162
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce 6200 LE
| 0x10de
| 0x0163
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| PCI-E
|-
| GeForce 6600 LE
| 0x
| 0x00F4 0x0142
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6600
| 0x
| 0x00F2 0x0141
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| 2006 PureVideo HD 1 or VP1 re-used the MPEG-1/MPEG-2 decoding pipeline from FX
|-
| Geforce 6600gt (nv4x) (2005)
| 0x
| 0x00F1 0x0140
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Yes| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| OpenGL tests -
|-
| Geforce 6800 (nv40) (2005)
| 0x
| 0x0041 0x00C1 0x00F0 0x0211
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Yes| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 XE (NV4x)
| 0x
| 0x0043
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 LE
| 0x
| 0x0042 0x00C2 0x0212
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 GT (quadro fx 1400)
| 0x
| 0x0045 0x0046 0x0215
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 6800 GS
| 0x
| 0x0047 0x00C0 0x00F6
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 GTS NV40
| 0x
| 0x0040 0x0F9
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 6800XT
| 0x
| 0x0044 0x0048 0x00C3 0x0218
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6600 VE
| 0x
| 0x0143
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6500 NV44
| 0x
| 0x0160
| 0x0
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6250
| 0x
| 0x0169
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 6xxx
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GeForce 7800 GTX
| 0x
| 0x0090 0x0091
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| tunnel gearbox cube cube2 25}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> 256MB DDR3 - 1 6pin psu connector -
* not working asus en7800gtx/2dhtv/256m/osp/a -
* Works XFX PV-T70F-UDD7 Works in steve jones' scrap pc aros build 2010 2 DVI-I ports
* Untested
|-
| GeForce 7800 GT
| 0x
| 0x0092
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7600gt (G8 ) (nv4 ) (2006)
| 0x
| 0x02E0 0x0391
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL 2.1
* not working
* working
|-
| GeForce 7800 SLI
| 0x
| 0x0095
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GTX
| 0x
| 0x0290
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GT GTO
| 0x
| 0x0291
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GS
| 0x10de
| 0x0292
| 0x0a1
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working
* Works with a few glitches with XFX Pine 0x2218
|-
| GeForce 7950 GX2
| 0x10de
| 0x0293 0x0294
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| GeForce 7950 GT
| 0x
| 0x0295 0x02E4
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GS
| 0x
| 0x02E3
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7600 GS
| 0x
| 0x02E1 0x0392
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7650 GS
| 0x
| 0x0390
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7600 LE
| 0x
| 0x0394
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7800GS (G8 ) (nv4 ) (2006)
| 0x
| 0x0093 0x00F5
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working
* works if AGP motherboard chipset is supported - Hardware OpenGL 2.1
|-
| GeForce 7100 GS
| 0x
| 0x016A
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7350 LE
| 0x
| 0x01D0
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7300le (G8 ) (nv4 ) (2006)
| 0x
| 0x01D1
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7300SE 7200GSGF-7200GS-N-B1 variant (G72)
| 0x10de
| 0x01D3
| 0x0a1
| <!--2D-->
| <!--3D-->
| <!--Analogue-->{{Unk|1x DVI, 1x VGA, 1x S-Video}}
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2007 40W pci-e 1.0 VP1 no unified shaders -
* not working Asus on via chipset (2015),
* works Asus on intel chipset (2015),
|-
| Geforce 7300gt (G8 ) (nv4 ) (2006)
| 0x
| 0x0395 0x0393
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working
* works
|-
| GeForce 7300 GS
| 0x
| 0x01DF
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7500 LE
| 0x
| 0x01DD
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7xxx
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GeForce 8800 Ultra (NV50 family)
| 0x
| 0x0194
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NV50 GeForce 8 to GeForce 200s opengl 3.x - max res - 80nm technology - PureVideo HD 2 or VP2 Nvidia VDPAU Feature Set A (absent from ultra and some 8800gt?) added a dedicated bitstream processor (BSP) and enhanced video processor for H.264, VC-1 acceleration
|-
| Geforce 8800gts (nv50) (G8x) (2007)
| 0x
| 0x0400 0x0600 0x0193
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2007 200w openGL3 openCL - 2x6pin psu
* not working 0x0193 models (2015) on via chipsets,
* works
|-
| Geforce 8800gtx (nv5 ) (G8x) (2007)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2008 200W 1x 6pin connector,
* not working
* working
* untested XFX PV-T88P-YDF4, Alpha Dog Edition runs extremely hot - Gigabyte GV-NX88T512H,
|-
| GeForce 8800 GT
| 0x
| 0x0602 0x0611 0x0193
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->DVI up to 2500 x 1600
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - 6pin psu power connector required
* not working
* untested Asus EN8800GT/HTDP/256M EN8800GT/HTDP/512M EN8800GT/G/HTDP/512M
* works
|-
| GeForce 8800 GT (G92)
| 0x10de
| 0x0611
| 0x0a2
| <!--2D-->{{Yes|6.11 Pixel Text}}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{N/A}}
| <!--Digital-->{{Yes}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3 pci-e 2.0 8800GT 512MB on Icaros 2.0.3 [[File:8800GT aros heads.png|thumb|8800GT]] [[File:8800GT aros tails.png|thumb|8800GT detail]]
|-
| Geforce 8600gt (nv5 ) (G8x) (2007)
| 0x
| 0x0401 0x0402
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res
* not working
* works
|-
| GeForce 8500 GT
| 0x
| 0x0421
| 0x0
| <!--2D-->{{Yes| some color }}
| <!--3D-->{{yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL tests - max opengl 3.x but 2.1 offered - max res
* not working
* works Gigabyte 8500 GT,
|-
| GeForce 8800 GS
| 0x
| 0x0606 0x060D
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res
|-
| GeForce 8600GS
| 0x
| 0x0403
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 3.x VP3 offers complete hardware-decoding for all 3 video codecs of the Blu-ray Disc format: MPEG-2, VC-1, and H.264 - Nvidia VDPAU Feature Set B
|-
| GeForce 8300 GS
| 0x
| 0x0423
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res
|-
| Geforce 8400gs G98GS (end 2007) GT218 (2009)
* Rev2 with 8/16 cores and 128-512MB of DDR2 or GDDR3 memory.
* Rev3 with 8 cores and 512MB-1GB of DDR3 memory (based on Tesla 2.0)
| 0x
| 0x0424 0x0422
| 0x0
| <!--2D-->{{Yes|Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 490 gearbox 505 Cube 135 Cube2 55 quake3 }}
| <!--Analogue-->{{Yes|works digital part of DVI but nothing from any display port}}
| <!--Digital-->{{Yes|output on digital 24 pin array of DDWG's DVI and hdmi}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 50W openGL 3.1 openCL - case single slot - one single-link DVI digital output, supporting up to one 1920x1080 resolution display - analog resolution 640 x 480 to 1024 x 768 16 and 24 bit color - [http://www.phoronix.com/scan.php?page=article&item=nouveau_comp_2011&num=19 runs a little hotter than expected] - G98 VP3 pci-e 2.0 512MB DDR2 -
* not working
* works Asus EN8400GS SILENT/P/512M PCIe (G98),
|-
| Geforce 8400gs (nv50) (G86) (mid-2007)
* Rev1 with 16 cores / 256MB of DDR2 memory.
| 0x
| 0x0404
| 0x0
| <!--2D-->{{Yes|Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 490 gearbox 505 Cube 135 Cube2 55 quake3 }}
| <!--Analogue-->{{Yes|works but not tested thru 4 pins of analog signal of DVI plug}}
| <!--Digital-->{{Yes|output on digital 24 pin array of DDWG's DVI and hdmi}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2008 50W openGL 3.1 openCL - case single slot - one single-link DVI digital output up to 1920x1080 resolution display - analog resolution 640 x 480 to 1024 x 768 16 and 24 bit color - [http://www.phoronix.com/scan.php?page=article&item=nouveau_comp_2011&num=19 runs a little hotter than expected] - G86 VP2 128MB -
* not working XFX PV-T86S-YAJG NVIDIA GeForce 8400 GS 512MB DDR2, Sparkle 8400GS 512MB SX84GS512D2L-DPP,
* works Asus EN8400GS SILENT/HTP/256M SILENT/HTP/512M/A,
|-
| GeForce 8400 SE
| 0x
| 0x0420
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 2.x openCL
|-
| NVidia Quadro NVS290 DMS-59
| 0x
| 0x0403
| 0x0
| <!--2D-->{{no| }}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk|DMS-59 socket}}
| <!--Digital-->{{unk|DMS-59 }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2008 21W - G86S (G86-827-A2) - 16 shading units, 8 texture mapping units, and 4 ROPs. NVIDIA has paired 256 MB DDR2 - PCIe 1.0 x16 Low Profile -
|-
| Geforce Quadro FX 4600 (SDI), 5600
| 0x
| 0x
| 0x0
| <!--2D-->{{Partial|VESA 2d}}
| <!--3D-->{{no| }}
| <!--Analogue-->{{partial| }}
| <!--Digital-->{{partial| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GeForce 9800 GX2 (NV50 family)
| 0x
| 0x0604
| 0x0
| <!--2D-->{{Partial|VESA }}
| <!--3D-->{{no| }}
| <!--Analogue-->{{Partial| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 150w - 65nm technology
|-
| GeForce 9800 GTX
| 0x10de
| 0x0612
| 0x0a2
| <!--2D-->{{Yes| }}
| <!--3D-->{{Maybe|6.11 }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 2x6pin psu -
* not working xfx on via chipset (2015),
* works xfx on chipset intel ,
|-
| GeForce 9800 GTX+
| 0x10de
| 0x0613
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res 2560 x 1920 - case dual slot - 26amp 12v rail on computer psu if 2x6pin connectors needed - 55nm version of the G92 chip - will not work with PCI-e 1.0a slots -
* not working
* works on a few models
|-
| Geforce 9800gt (nv50) (G92a) (2008)
| 0x10de
| 0x0614
| 0x0xa2
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel 495 gearbox 513 Cube 156 Cube2 120 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{partial| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL 3.1 openCL 1.x - case dual slot - 600w 26amp on both 12v rails for 2x6pin psu on gfx card - no fan control - some come with 1x6pin - renamed version of the venerable GeForce 8800 GT - randomly works
* not working Gainward 512M untested
* working Gainward CardExpert (0x0401) Green Edition NE39800TFHD02-PM8D92 1024MB (no 6pin)
|-
| Geforce gf9600 9600gt (nv5 ) (G9x) (2008)
| 0x10de
| 0x0622
| 0x0a1
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel 493 gearbox 675 Cube Cube2 100 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL 3.2 openCL but no fan control - case dual slot - 1 6pin pcie psu connector - 500 Watt or greater power supply with a minimum of 26 Amp on the +12 volt rail - Max Analog: 2048x1536 and Max Digital: 2560x1600 (Dual Link DVI Only) - PCI Express® 2.0 / 1.1 Support - g96 gpu randomly works -
* not working bfg tech ocx,
* works gigabyte gv-n96tsl-512i -
|-
| Geforce gf9500 9500gt (nv5 ) (G9x) (2008)
| 0x10de
| 0x0640
| 0x0a1
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel 480 gearbox 500 Cube Cube2 64 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.2 - case single slot - 350 Watt/400 Watt or greater power supply with a minimum of 18 Amp/22 Amp on the +12 volt rail - Max Analog: 2048x1536 and Max Digital: 2560x1600 (Dual Link DVI Only) - PCI Express® 2.0 / 1.1 Support -
* not working zotac zone fanless, Gainward USA NE29500THHD01-PM8796, PNY G9500GN2E50X+0TE,
* works xfx xne-9500t-td01-pm8596 1024mb ddr2,
|-
| GeForce 9600 GS
| 0x
| 0x0623
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res - will not work with PCI-e 1.0a slots -
* not working
* works
|-
| GeForce 9600 GSO
| 0x
| 0x0610
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res - G92 chopped down - 9600GSO is re-badged 8800GS both very power hungry cards -
|-
| GeForce 9300 GS
| 0x
| 0x06E1
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 opengl 3.x - max res
|-
| Geforce 9400 GT (nv5 ) (G86S) (2008)
| 0x
| 0x
| 0x0
| <!--2D-->{{partial|}}
| <!--3D-->{{unk|}}
| <!--Analogue-->{{unk|1x DVI, 1x VGA, 1x S-Video}}
| <!--Digital-->{{unk|1x DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 50W opengl 3.x - max res
|-
| Geforce 9xxx (nv5 ) (G9x) (2008)
| 0x
| 0x
| 0x0
| <!--2D-->{{unk|}}
| <!--3D-->{{unk|}}
| <!--Analogue-->{{unk|}}
| <!--Digital-->{{unk|}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 opengl 3.x - max res
|-
| <!--Description-->Quadro FX 580 G96 chipset
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2009
|-
| <!--Description-->
NV84 (G84) GeForce 8600 (GT, GTS, M GT, M GS), 8700M GT,
NV92 (G92) GeForce 8800 (GT, GS, GTS 512, M GTS, M GTX)
GeForce 9600 GSO, 9800 (GT, GTX, GTX+, GX2, M GT, M GTX)
NV96 (G96) GeForce 9400 GT, 9500 (GT, M G), 9600 (M GS, M GT),
NV86 (G86) GeForce 8300 GS, 8400 (GS, M G, M GS, M GT), 8500 GT
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NVA0 (GT200) Tesla GeForce GTX (260, 275, 280, 285, 295)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->GeForce GTX 280 (NV50 family)
| <!--Vendor ID-->
| <!--Product ID-->0x05E1
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res PureVideo HD 4 (Nvidia Feature Set C or "VDPAU Feature Set C), VP4 added hardware to offload MPEG-4 Advanced Simple Profile (original DivX and Xvid)
|-
| <!--Description-->GeForce GTX 260
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x05E2
| <!--Revision-->
| <!--2D-->{{partial|Vesa}}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> 2 6pin - psu pci express 2.1 -
|-
| Geforce GTS250 250GTS (g92b) (2009)
| 0x10de
| 0x0615
| 0x0a2
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 486 gearbox 508-642 Cube Cube2 80 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> 2x6pin psu VP2 - pci-e 2.x - case dual slots - 738m 1gb ddr3 -
* not working Zotac branded version GDDR3 -
* works PNY gs-250x-zdfl and Gigabyte ??, BFG Tech RGTS2501024OCE, palit ne3ts250fhd52-pm8a92 with 2x6pin on top and hdmi output port,
|-
| <!--Description-->GeForce GT 240 (GT215 family)
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0ca3
| <!--Revision-->0xa2
| <!--2D-->{{Maybe|use VESA}}
| <!--3D-->{{No|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->late 2009 openGl 3.2 - case dual slots - no 6pin psu required with VP4 - All are pcie 2.1 cards and may not work in 1.0a slots -
* not working
* DDR3 with 512MB or 1GB -
* DDR5 -Asus ENGT240 - XFX Pine GT240XYHFC 0x3001 - Gigabyte GV-N240D5-512I rev 1.0 - Zotac AMP! with HDMI 1.3a with DisplayPort 1.1, Dual Link DVI -
* works
|-
| <!--Description-->GT220 (GT216) G220
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0a20
| <!--Revision-->0xa2
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Yes}}
| <!--Digital-->{{Yes|DVI }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> Icaros 2.0.3 GeForce GT220 1GB[[File:GT220 aros heads.png|thumb|GT220]][[File:GT220 aros tails.png|thumb|GT220]]
* untested NVIDIA Quadro® 400 512MB DDR3 GT216 DP DVI, AFox AF220 1Gb DDR3,
|-
| Geforce GT220 220GT G94 Tesla (g92b)
| 0x10de
| 0x0a20
| 0xa2
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 490 gearbox 505 cube 150 cube2 50 Quake3 }}
| <!--Analogue-->{{Unk|1x DVI, 1x VGA}}
| <!--Digital-->{{Yes|DVI but not 1x HDMI }}
| <!--Laptop LCD-->{{N/A}}
| 58W pci express 2.0 cards DDR3 - case single slot -
* not working ASUS ENGT220/DI/1GD2(LP)/V2 -
* works - gainward card expert 0x0401 GDDr3 512MB -
|-
| <!--Description-->GT210 GT 210 210GT G210 based on Tesla 2.0 GT218S GT218-300-A2 variant, GT218-300-B1
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0a65
| <!--Revision-->0xa2
| <!--2D-->{{Yes|6.11 Pixel Text}}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{Unk|1x DVI, 1x VGA}}
| <!--Digital-->{{Maybe|DVI out works but not hdmi or 1x DisplayPort}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 31W OpenGL 3.3 pci-e 2.0 cards - single slot -
* working GT218 based Asus EN210 based silent low profile large passively cooled -
* untested MSI GeForce 210 1GB DDR3 PCIe N210-MD1GD3H/LP,
* not working
|-
| <!--Description-->Nvidia ION2 (GT218) Tesla
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2012
|-
| <!--Description-->Quadro NVS 295 (256 MB GDDR3), NVS 450 (256M/512 MB DDR3)
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x
| <!--Revision-->
| <!--2D-->{{yes| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->
| <!--Digital-->{{partial|2 or 4 dp ports}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 25w low performance - G98s with 8 shading units, 4 texture mapping units, and 4 ROPs on PCI-Express 1.0 x16 -
*not working some NVIDIA Quadro NVS 295 2 dp ports (DELL, HP),
*working
|-
| <!--Description-->GT310 Tesla 310, 315, GT 320, GT 330 GT 340
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{Maybe|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2010 50w OpenGL 3.3 openCL all similar in performance to GT2xx except gt31x (poor)
|-
| <!--Description-->Quadro NVS310 NVIDIA NVS 310
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital--> 2 dp
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 25w GF119S (GF119-825-A1) 48 shading units, 8 texture mapping units, and 4 ROPs on PCI-Express 2.0 x16 - 512 MB DDR3 - PureVideo VP5 VDPAU Feature Set D -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description--> GTX 470, GTX 480 GF10 GF10* core (NVC0 family)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{Maybe| tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2010 215w 2x6 plugs - NVC0 family (Fermi) GF100 (GF100-275-A3) Fermi 448 shading units, 56 texture mapping units, and 40 ROPs with 1,280 MB GDDR5 - OpenGL4.5 OpenCL1.1 Tessellation - case dual slots -
|-
| Geforce GTX460 460GTX (G104) 256bit, 1GB v2 192bit and GTX 465
| 0x10de
| 0x0e22
| 0xa1
| <!--2D-->{{Maybe|VESA }}
| <!--3D-->{{Maybe| tunnel gearbox cube 055-111 cube2 50}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVC0 family (Fermi) OpenGL 4.x but - 2x6pin psu - case dual slots -
* not working evga 768MB GDDR5 192bit 01G-P3-1373-ER or 01G-P3-1372-TR
* works 1GB GDDR5 256bit 01G-P3-1371-ER
|-
| <!--Description-->Geforce GTX 460SE 192bit
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0e23
| <!--Revision-->0x91 or 0xa1
| <!--2D-->{{Yes| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->{{Yes| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> nouveau 6.11 - 2 6pin psu needed - case dual slots -
* not working
* works EVGA 01g-p3-1366-b6 et 1024MB p1041 -
|-
| Geforce GT450 GTS450 450GTS GF106
| 0x10de
| 0x0dc4
| 0x0a1
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel gearbox cube cube2 50 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes|DVI }}
| <!--Laptop LCD-->{{N/A}}
| 2010 Hardware OpenGL 4.2 but nouveau at 3.3 - most need 1x 6pin psu - case dual slots -
* not working
* DDR3 1 or 2GB - Palit NEAS450NHD41F,
* GDDR5 512Mb or 1GB - MSI MPN N450GTSM2D1GD5OC, Asus MPN ENGTS450DI1GD5,
* works Gainward Card Expert NE5S4500FHd51,
|-
| <!--Description-->GT 440 GF108 chipset or better OEM GF106
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 6.11 Pixel Text}}
| <!--3D-->{{Maybe| tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGl 4.1 opencl 1.x - no 6 pin psu - 96 cuda cores 128bit - case dual slots -
* not working
* OEM
* GDDR5 512MB to 1GB ASUSTeK ENGT440/DI/1GD5
* GDDR3 Asus 1gb to 2gb,
* works
|-
| <!--Description-->GT430 430GT (GF108)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|6.11 Pixel Text}}
| <!--3D-->{{Maybe|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->ddr3 memory 64bit or 128bit - buggy await new revision of driver
* not working
* works
|-
| <!--Description-->nVidia Quadro FX1800 768MB GDDR3 Full Height Graphics Card Workstation
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 6.11 Pixel Text}}
| <!--3D-->{{no|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->{{Maybe|DVI-I 2xDP}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->59W 768 MB GDDR3 memory using a 192-bit memory interface - OpenGL 3.3 -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GTX 590 Fermi
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->OpenGL4.4 OpenCL 1.1 - GDDR5 - 6pin and 8pin psu connectors - 512 cuda - case dual slots -
* not working
* works
|-
| <!--Description-->GTX 580,
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->PureVideo HD 5" or "VP5" (Nvidia Feature Set D or VDPAU Feature Set D) 4k UHD 3840 × 2160 H.264 decode -
|-
| <!--Description-->GTX 570,
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{Maybe|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working Zotac GTX 570, Gainward GTX560TI/570 Phantom,
* works gigabyte, evga
|-
| <!--Description-->Geforce 5xx 560gtx Fermi GTX 560,
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->opengl 4.x - 2 6pin psu - 384 cuda cores - case dual slots - will not work with PCI-e 1.0a slots -
* not working Asus ENGTX560 DC/2DI/1GD5,
* Ti LE 448 cuda GDDR5 320bit
* Ti 256bit
* works
|-
| <!--Description-->GTX 560 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working evga GTX 560Ti 01GP31560KR - Gainward GTX560TI/570 Phantom,
* works
|-
| <!--Description-->GTX 550 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x1201
| <!--Revision-->
| <!--2D-->{{Maybe|VESA Doom Doom2 Duke }}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->can hang on boot up on I2C Init or suffer random lockups on OpenGL apps - most need 1 6pin min 400W 24A on the +12V1 / +12V2 dual 12V rails of the computers' power supply unit - 192 cuda cores - case dual slots used - will not work with PCI-e 1.0a slots -
* not working eVGA GeForce GTX 550 Ti (1024 MB) (01GP31556KR) -
* untested asus Extreme, eVGA GeForce GTX 550 Ti (1024 MB) (01GP31557KR) - -
* works
|-
| <!--Description-->GT 545 and OEM GF116
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 4.2 opencl 1.x - GDDR5 with OEM only -
|-
| <!--Description-->GT530 OEM
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 6.11 Pixel Text}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->96 cuda cores - 1GB or 2GB DDR3 128bit
|-
| <!--Description-->GT520 520GT
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->untested 48 cuda cores - DDR3 64bit
|-
| <!--Description-->510, GT 530
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D 6.11 Pixel Text}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> ddr 3 - 50w max -
|-
| <!--Description-->GT610 Fermi GF119
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVS 315 300 GF119S
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{No|VESA}} needs special dms-59 cable
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 fermi 315 PNY VCNVS315-T 1Gb DDR3 but needs special dms-59 cable -
|-
| <!--Description-->GT630 GF108 Fermi
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->not accelerated 2015 - like the GT730 below - 96 cuda cores whilst kepler version has 384 - 128bit to keplers' 64bit bandwidth - kepler has 2GB DDR3
* not working Gigabyte
* DDR3
* GDDR5
* works
|-
| <!--Description-->Geforce GT 730 (two versions)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe| use VESA 6.11 Pixel Text}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> fermi version has 96 cuda cores 128bit GF108
* not working Asus
* works
|-
| <!--Description-->nVIDIA Quadro 4000
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}} 2 dp ports
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->142W 2Gb GDDR5 - PCI Express 2.0 x16 ; full Height card with 1x 6-Pin PCIe power need - CUDA Cores 256 - OpenGL 4.5
|-
| <!--Description-->nVIDIA Quadro 5000
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2011 200W 2.5Gb GDDR5 320 bit - PCI Express 2.0 x16 full Height card with 2x 6-Pin PCIe power need -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce GTX Titan GeForce GTX Titan Black GeForce GTX Titan Z
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVE0 family (Kepler) GeForce 600 GeForce 700 GeForce GTX Titan Kepler
|-
| <!--Description-->GeForce GTX 780 GeForce GTX 780 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->PureVideo HD 6" or "VP6" (Nvidia Feature Set E or VDPAU Feature Set E) significantly improved performance when decoding H.264 and MPEG-2
|-
| <!--Description-->GeForce GTX 770
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->opengl 4.4 opencl 1.1
|-
| <!--Description-->GeForce GTX 760 GeForce GTX 760 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce GT 740
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce GT 730 Kepler (two versions) f
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> kepler 384 cores 64bit GK208
|-
| <!--Description-->680gtx GK104 core gtx680 680m
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVE0 family (Kepler)
|-
| <!--Description-->GTX 690 Kepler NVE0
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->pci-e 3.0, OpenGL 4.4 OpenCL 1.1
|-
| <!--Description-->GTX 670
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GTX 660 GTX 660 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GTX 650 GTX 650 Ti GTX 650 Ti Boost
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVE0 family (Kepler) most need 1 6pin psu
* not working asus ENGTX560 DC/2DI/1GD5
* works
|-
| <!--Description-->Geforce GT 640
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* 128bit DDR3
* 192bit DDR3 1.5 to 3GB 50W
* 128bit GDDR5 75W
|-
| <!--Description-->GT 620 GT 640
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->Quadro K2200 (GK1) Kepler
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 - 65w single slot pcie 2.0 -
|-
| <!--Description-->Quadro K2000 NVE7 (GK107) Kepler
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 - 50w single slot pcie 2.0 -
|-
| <!--Description-->NVIDIA® Quadro® K4200 GK107 Kepler
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2014 4Gb GDDR5 - 105W 1 6pin -
|-
| <!--Description-->NVIDIA® Quadro® K420 1GB DDR3 Kepler
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2014 41W -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce 750ti, GeForce 900
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->[https://nouveau.freedesktop.org/FeatureMatrix.html NV110] Maxwell -
|-
| <!--Description-->Nvidia GTX 750
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x1381
| <!--Revision-->0xa2
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2026 nvidia test
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->GM206 2nd gen maxwell PureVideo HD 7" or "VP7" (Nvidia Feature Set F or VDPAU Feature Set F) adds full hardware-decode of H.265 HEVC Version 1 (Main and Main 10 profiles and full fixed function VP9 (video codec) hardware decoding
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV132 (GP102) NVIDIA Titan (X, Xp), GeForce GTX 1080 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV134 (GP104) GeForce GTX (1070, 1080)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV136 (GP106) GeForce GTX 1060
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->Quadro K620 Maxwell
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2014 50w slim low profile 2gb ddr3 -
|-
| <!--Description-->quadro p620 2gb gddr5 128bit and quadro p1000 4gb gt1030 30w
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 50w slim low profile -
|-
| <!--Description-->GeForce gtx 1060, GeForce 1070
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NV130 Pascal
|-
| <!--Description-->NV137 (GP107) GeForce GTX (1050, 1050 Ti)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV138 (GP108) GeForce GT 1030
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->NV130 family (Pascal)
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV162 (TU102) NVIDIA Titan RTX, GeForce RTX 2080 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV164 (TU104) GeForce RTX (2070 Super, 2080, 2080 Super)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2020 NV160 family (Turing) unified gsp-rm firmware - best starting point for Vulkan support
|-
| <!--Description-->NV166 (TU106) GeForce RTX (2060, 2060 Super, 2070)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV168 (TU116) GeForce GTX (1650 Super, 1660, 1660 Ti, 1660 Super)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV167 (TU117) GeForce GTX 1650
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->gtx 1650ti super
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2018 old style
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV172 (GA102) GeForce RTX (3080, 3090)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 av1 decoding ampere
|-
| <!--Description-->NV174 (GA104) GeForce RTX (3060 Ti, 3070, 3080 Mobile)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->NV170 family (Ampere)
|-
| <!--Description-->NV176 (GA106) GeForce RTX (3050, 3060)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV177 (GA107) GeForce RTX 3050
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV192 (AD102) GeForce RTX 4090
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV193 (AD103) GeForce RTX 4080
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->NV190 family (Ada Lovelace)
|-
| <!--Description-->NV194 (AD104) GeForce RTX (4070, 4070 Ti)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV196 (AD106) GeForce RTX 4060 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV197 (AD107) GeForce RTX 4060
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
|}
==== nouveau mobile integrated ====
If you purchased a notebook with an NVidia sticker on it, most of the time you have a optimus based one, ie Intel CPU+GPU melded with Nvidia GPU, Optimus was slated at one point to go into desktop PCs but the industry ended up rejecting that concept
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|-
| GeForce 6100 nForce 405
| 0x
| 0x03D1 0x0242
| 0x0
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
|
|-
| <!--Description-->GeForce 6100 nForce 400
| <!--Vendor ID-->
| <!--Product ID-->0x03D2
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce 6100 nForce 420
| <!--Vendor ID-->
| <!--Product ID-->0x03D5
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce 6150 LE
| <!--Vendor ID-->
| <!--Product ID-->0x0241
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6150SE nForce 430
| 0x
| 0x03D0
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| working
|-
| <!--Description-->GeForce 6150
| <!--Vendor ID-->
| <!--Product ID-->0x0240
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7150M / nForce 630M
| <!--Vendor ID-->
| <!--Product ID-->0x0531
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7000M / nForce 610M
| <!--Vendor ID-->
| <!--Product ID-->0x0533
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7050 PV / NVIDIA nForce 630a
| <!--Vendor ID-->
| <!--Product ID-->0x053A 0x053B
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Geforce IGP 7025 nForce 630a
| 0x
| 0x053E
| 0x0
| <!--2D-->{{Yes|some}}
| <!--3D-->{{Yes|some}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No| }}
| some support on some chipsets
|-
| GeForce 7100 / nForce 630i (C73)
| 0x10de
| 0x07e1
| 0x0a2
| <!--2D-->{{Maybe}}
| <!--3D-->{{Maybe}}
| <!--Analogue-->{{Maybe}}
| <!--Digital-->{{Maybe}}
| <!--Laptop LCD-->{{N/A}}
| Icaros 2.0.3 and Gigabyte 73-pvm-s2h rev. 1.0 but will not boot on [https://ae.amigalife.org/index.php?topic=806.msg8765#new Acer x270 with Icaros 2.3]
|-
| <!--Description-->GeForce 7150 / NVIDIA nForce 630i
| <!--Vendor ID-->
| <!--Product ID-->0x07E0
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7050 / NVIDIA nForce 610i
| <!--Vendor ID-->
| <!--Product ID-->0x07E3
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Geforce IGP 8100 (nForce 720a)
| 0x
| 0x084F
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
|
|-
| GeForce 8100P
| 0x
| 0x0847
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
|
|-
| <!--Description-->Geforce 8200 8300 nForce 730a
| <!--Vendor ID-->
| <!--Product ID-->0x084A 0x0848 (GeForce 8300) 0x0849 (GeForce 8200) 0x084B (GeForce 8200)
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->working on some 8300's with Icaros 1.5 but others untested
|-
| <!--Description-->nForce 780a SLI
| <!--Vendor ID-->
| <!--Product ID-->0x084C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->nForce 750a SLI
| <!--Vendor ID-->
| <!--Product ID-->0x084D
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Nvidia Geforce IGP 9300 (nForce MCP7a)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->works
|
|-
| <!--Description-->9400 (ION)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->If AROS detects GPU chipset, works well
|-
| <!--Description-->9700M ()
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Geforce ION 2
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->works well
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce Go 6150
| <!--Vendor ID-->
| <!--Product ID-->0x0244
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6100
| <!--Vendor ID-->
| <!--Product ID-->0x0247
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6200
| <!--Vendor ID-->
| <!--Product ID-->0x0164 0x0167
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6400
| <!--Vendor ID-->
| <!--Product ID-->0x0166 0x0168
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->Sony Laptop
|-
| <!--Description-->GeForce Go 6800
| <!--Vendor ID-->
| <!--Product ID-->0x00C8
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6800 Ultra
| <!--Vendor ID-->
| <!--Product ID-->0x00C9
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600
| <!--Vendor ID-->
| <!--Product ID-->0x0144
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600 TE/6200 TE
| <!--Vendor ID-->
| <!--Product ID-->0x0146
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600
| <!--Vendor ID-->
| <!--Product ID-->0x0148
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600 GT
| <!--Vendor ID-->
| <!--Product ID-->0x0149
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7200
| <!--Vendor ID-->
| <!--Product ID-->0x01D6
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7300
| <!--Vendor ID-->
| <!--Product ID-->0x01D7
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->untested
|-
| <!--Description-->GeForce Go 7400
| <!--Vendor ID-->
| <!--Product ID-->0x01D8
| <!--Revision-->
| <!--2D-->
| <!--3D-->works 2D and 3d issues though
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7800
| <!--Vendor ID-->
| <!--Product ID-->0x098
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7800 GTX
| <!--Vendor ID-->
| <!--Product ID-->0x0099
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7950 GTX
| <!--Vendor ID-->
| <!--Product ID-->0x0297
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7900 GS
| <!--Vendor ID-->
| <!--Product ID-->0x0298
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7900 GTX
| <!--Vendor ID-->
| <!--Product ID-->0x0299
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7600
| <!--Vendor ID-->
| <!--Product ID-->0x0398
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7600 GT
| <!--Vendor ID-->
| <!--Product ID-->0x0399
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 6610 XL
| <!--Vendor ID-->
| <!--Product ID-->0x0145
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 6700 XL
| <!--Vendor ID-->
| <!--Product ID-->0x0147
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce 8700M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0409
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8600M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0425
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8400M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0426
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8400M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0427
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8400M G
| <!--Vendor ID-->
| <!--Product ID-->0x0428
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8800M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x0609
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8800M GTX
| <!--Vendor ID-->
| <!--Product ID-->0x060C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9500M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0405
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8600M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0407
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9650M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0408
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9400M GT
| <!--Vendor ID-->
| <!--Product ID-->0x042C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9300M G
| <!--Vendor ID-->
| <!--Product ID-->0x042E
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9100M G
| <!--Vendor ID-->
| <!--Product ID-->0x0844
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9800M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x0628
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9700M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x062A
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9800M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x062C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9600M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0647
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9600M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0648
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9600M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0649
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9500M G
| <!--Vendor ID-->
| <!--Product ID-->0x064B
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9300M GS
| <!--Vendor ID-->
| <!--Product ID-->0x06E5
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9200M GS
| <!--Vendor ID-->
| <!--Product ID-->0x06E8
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9300M GS
| <!--Vendor ID-->
| <!--Product ID-->0x06E8
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->NV50 (G80) Quadro FX (4600 (SDI), 5600)
Quadro FX (2800M, 3600M, 3700, 3700M, 3800M, 4700 X2), VX 200
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV94 (G94) 9700M GTS, 9800M GTS, GeForce G 110M, GT 130(M), GT 140, Quadro FX (1800, 2700M)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV84 (G84) Tesla 8700M GT, GeForce 9500M GS, 9650M GS
Quadro FX (370, 570, 570M, 1600M, 1700), NVS 320M
NV86 (G86) GeForce 8300 GS, 8400 (GS, M G, M GS, M GT), 8500 GT, GeForce 9300M G
Quadro FX 360M, NVS (130M, 135M, 140M, 290)
GeForce GTS 150(M), GTS 160M, GTS 240, GTS 250, GTX (260M, 280M, 285M), GT (330, 340)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV96 (G96) 9650M GT, 9700M GT
GeForce G 102M, GT 120
Quadro FX (380, 580, 770M, 1700M)
NV98 (G98) GeForce 8400 GS, GeForce 9200M GS, 9300 (GE, GS, M GS)
GeForce G 100, G 105M
Quadro FX (370 LP, 370M), NVS (150M, 160M, 295, 420, 450)
Quadro CX, FX (3800, 4800, 5800)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVA3 (GT215) GeForce GT (240, 320, 335M), GTS (250M, 260M, 350M, 360M) Quadro FX 1800M
NVA5 (GT216) GeForce GT (220, 230M, 240M, 325M, 330M), 315
Quadro 400, FX 880M, NVS 5100M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVA8 (GT218) Tesla GeForce 8400 GS, GeForce 210M, 305M, 310M, Quadro FX 380M, NVS 2100M, 3100M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVAA (MCP77/MCP78) GeForce 8100, 8200, 8300 mGPU / nForce 700a series, 8200M G
NVAC (MCP79/MCP7A) ION, GeForce 9300, 9400 mGPU / nForce 700i series, 8200M G, 9100M, 9400M (G)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVAF (MCP89) GeForce 320M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NVC0 (GF100) Fermi GeForce GTX 480M, Quadro 5000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVC1 (GF108) GeForce GT 415M, 420M, 425M, 435M, 520M, 525M, 540M, 550M, 555M, 630M, 635M, 640M LE, Quadro 1000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVC3 (GF106) Fermi GeForce GT 445M, 555M, 630M, 635M), GTX 460M, Quadro 2000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVC4 (GF104) GeForce GTX 470M, 485M, Quadro 5000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVCE (GF114) GeForce GTX 570M, 580M, 670M, 675M,
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVD7 (GF117) Fermi Geforce GT 620M, 625M, (some) 630M, 710M, 720M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVD9 (GF119) Fermi GeForce 410M, GT 520M, 520MX, 610M, Quadro NVS 4200M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NVE4 (GK104) GeForce GTX 670M, 680M, 775M, 780M, 860M, Quadro K3000M, K3100M, K4000M, K4100M, K5000M, K5100M,
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVE7 (GK107) GeForce GT640M, 645M, 650M, 710M, 720M, 730M, 740M, 745M, 750M, 755M, GTX 660M, K500M, K1000M, K1100M, K2000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GTX 1650 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2019 turing architecture - last old skool support pre Vulkan
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rtx 2050 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 ampere architecture best starting point for vulkan support
|-
| <!--Description-->rtx 2060 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rtx 4060 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
|}
====radeon.hidd====
Michel Shultz ''2D'' graphics driver (standard on most distributions but only for very old GPUs) and bearsofts updated 2013 around Icaros 1.3.1
3D is not implemented by AROS yet but could cover these AMD chipsets
<pre>
2014 SI AMD HD 7xxx
2016 GCN3rd AMD R5E R7E
2019 GCN5th AMD Vega 8
2022 RDNA1 AMD RX5500 desktop only
2023 RDNA2 AMD 680M 780M
2024 RDNA3 AMD 880M 890M
2025 RDNA3.5 AMD 8060S strix halo and AI
2027 RDNA4 AMD
</pre>
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! 2D
! 3D
! Analogue Output
! Digital Output
! Laptop LCD
! Comments
|-
| 7000 (r100)
| 0x1002
| 0x5159
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->{{Maybe|vga15 pin connection but not s-video}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.3
|-
| 7500 (rv200 but still r100 based)
| 0x1002
| 0x5157
| 0x
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->{{Yes|vga15}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.3
|-
| 8000 8500 (r200)
| 0x1002
| 0x514c (8500LE)
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.4
|-
| 9000 9100 9250 (r200)
| 0x1002
| 0x5964 (9000) 0x514d (9100)
| 0x0001
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->{{Maybe|VGA15 but not s-video}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.4
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| 9600 9800 (r300)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1
|-
| x300 x600 (r300)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1
|-
| x700, x800 ([http://en.wikipedia.org/wiki/Radeon_R600 r420])
| 0x
| 0x554d (R430 x800xl)
| 0x0
| <!--2D-->{{Yes|new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1 - x800 XL PCIE (problem with mouse-pointer, some part of the pointer is not transparent)
|-
| x1300 x1550 x1600 x1800 x1900 x1950 ([http://en.wikipedia.org/wiki/Radeon_R520 r520])
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes|new driver}}
| <!--3D-->{{no}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| HD2400 HD2600 HD2900 ([http://en.wikipedia.org/wiki/Radeon_R600 r600])
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|some features with new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 3.3 open CL 1.2 TeraScale architecture
|-
| HD3400 HD3600 HD3800 (r600)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|some features with new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->pci-e 2.0, openGL 3.3
|-
| HD4300 HD4500 HD4600 HD4700 HD4800 ([http://en.wikipedia.org/wiki/Radeon_R600 r700])
| 0x1002
| 0x
| 0x0
| <!--2D-->{{Maybe|but some later cards need 3D engine for faster and more flexible 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 3.3 - DDR3 - GDDR5 was one of AMD's aces for the 4800 series - 4670 liked -
|-
| HD6900 cayman series
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|some features with new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 3.3 open CL not mature (2014) -
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| HD5400 Series HD5430 HD5450 HD5470
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2010 openGL 3.3 openCL - GDDR3 -
|-
| HD5500 Series HD5550 HD5570 HD5600 Series HD5650 HD5670 HD5700 Series HD5750 HD5770
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 3.3 openCL - GDDR5
|-
| HD 5800 Series HD5850 HD5870 HD5900 Series HD5950 HD5970 - HD6xxx not NI chipset ([http://en.wikipedia.org/wiki/Evergreen_(GPU_family) r800 evergreen])
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 openGL 3.3 openCL - DDR5 pci-e 2.1 best avoided for all pci-e 1.0 mobos - Ati TeraScale2 architecture -
|-
| HD6450 [http://en.wikipedia.org/wiki/Northern_Islands_(GPU_family) Northern Islands chipset]
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> - DDR3 -
|-
| HD6600 Series HD6650 HD6570 HD6600 Series HD6650 HD6670
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2011 - DDR5 -
Radeon HD 8470 11 TeraScale 2
Radeon HD 8350 11 TeraScale 2
Radeon HD 7510 11 TeraScale 2
Radeon HD 6550D 11 TeraScale 2
Radeon HD 6530D 11 TeraScale 2
Radeon HD 6410D 11 TeraScale 2
Radeon HD 6370D 11 TeraScale 2
Radeon HD 6320 11 TeraScale 2
Radeon HD 6310 11 TeraScale 2
Radeon HD 6290 11 TeraScale 2
Radeon HD 6250 11 TeraScale 2
|-
| HD6800 Series HD6850 HD6870 HD6700 Series HD6790 to HD6990
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2011 - DDR5 - AMD TeraScale3 -
|-
| <!--Description-->HD7450-HD7670
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 OpenGL but not Vulkan
Radeon HD 7660D 11 TeraScale 3
Radeon HD 7560D 11 TeraScale 3
Radeon HD 7540D 11 TeraScale 3
Radeon HD 7480D 11 TeraScale 3
Radeon HD 6930 11 TeraScale 3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->HD7750 HD 7770 / R7 250X HD7850 HD7870 / R9 270X HD 7950 / R9 280 HD 7970 / R9 280X [http://en.wikipedia.org/wiki/Southern_Islands_(GPU_family) Southern Islands]
*AMD Radeon R7 250XE Cape Verde XT
*AMD Radeon R7 M465X Cape Verde
*AMD Radeon R9 255 Cape Verde PRX
*AMD Radeon HD 7750 Cape Verde PRO
*AMD Radeon R7 250E Cape Verde PRO
*AMD Radeon HD 8740 Cape Verde PRO
*AMD Radeon HD 7730 Cape Verde LE
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 pci-e 3.0 1st Gen GCN architecture -
|-
| <!--Description-->R5 430, FirePro W2100,
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 50W+ openGL openCL 1/3 speed of gtx750ti 1st gen gcn1
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->HD7790 [ Sea Islands ]
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 openGL 4.1 open CL - GCN2.0 Vulkan 1.0 introduced a Shader Engine (SE) comprising one geometry processor, up to 44 CUs (Hawaii chip), rasterizers, ROPs, and L1 cache and Graphics Command Processor for faster audio/video - suits Vulkan 1.1
|-
| <!--Description-->r5 240 240x (slow) R7 250 250x (faster) HD 7790 / R7 260 260X / R7 360 to R5 350 (fast) and last one R5 430 OEM Plus (slow again)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 50W+ GCN 1st gen - openGL 4.x openCL 1.x Vulkan 1.0
|-
| <!--Description-->R9 290 / R9 390 R9 290X / R9 390X
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2014 GCN 1.1 2nd Gen architecture - openGL 4.x openCL 1.x Vulkan 1.1 -
|-
| <!--Description-->R9 Fury Nano
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 GCN 1.2 3rd Gen - openGL openCL vulkan
|-
| <!--Description-->r-200 series r8 275 285 295 375 [Volcanic Islands]
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 GCN1.2 - openGL 4.x openCL 1.x Vulkan 1.2
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 [https://gpuopen.com/download/AMD_GCN3_Instruction_Set_Architecture_rev1.1.pdf GCN3]
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Radeon™ RX 5700/5600/5500 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 GCN 4 - OpenGL 4, Vulkan 1.3 -
|-
| <!--Description-->Radeon™ RX 400/500 Series like rx vega 580
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->Radeon™ Pro WX 9100, x200 Series and Radeon™ Pro W5700/W5500 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Radeon™ RX 7900/7600 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->Radeon™ RX 6900/6800/6700/6600/6500 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|}
==== amd radeon mobile integrated ====
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|-
| <!--Description-->ATI RC410 [Radeon Xpress 200M]
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x5a62 0x5955 0x5974 (200m)
| <!--Revision-->0x00
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->
|-
| <!--Description-->Mobility Radeon 7500
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x4c57 (7500)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->
|-
| <!--Description-->Mobility Radeon 9000
| 0x1002
| 0x4966 (9000)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->
|-
| <!--Description-->Mobility Radeon 9500 9550 (rv360) 9600 (rv350)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon 9800 (rv420)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon X300 (RV370) X600 (RV380)
| 0x1002
| 0x (RV370) 0x5657 (RV380)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon X700 (RV410) X800 (RV423)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon X1200 (RS69M0)
| 0x1002
| 0x791f
| 0x0
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->X1200 IGP (RS690)
|-
| <!--Description-->Mobility Radeon X1300 X1350 X1400(rv515) X1600 (rv530) X1650 (RV535) X1800 (rv520) x1900 (rv570)
| 0x1002
| 0x71c7 (X1650)
| 0x009e
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon 2100
| 0x1002
| 0x796e (2100)
| 0x0
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{No|}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 2400 (rv610) HD2600 (rv630)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 3100 HD3200 HD3450 3470 (RS780MC RV620) 3670 (M86-XT RV635) HD3870 (M88-LXT RV670)
| 0x1002
| 0x9610 and 0x9612 (HD3200) 0x9614 (HD3300)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 4200 4250 (RV620)
| 0x1002
| 0x (HD4200) 0x9715 (HD4250)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 4330 4530 4550 (M92 RV710) 4650 (M96-XT RV730) 4670 RV730XT 4830 (M97 RV740) 4850 (M98 RV770)
| 0x1002
| 0x (HD4350) 0x9442 (RV770) 0x9490 (HD4670)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 530v (M92 RV710) HD 550v (M96 RV730)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->no support yet
|-
| <!--Description-->Mobility Radeon HD 5430 HD5650 (cedar Park LP)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->no support yet
|-
| <!--Description-->Radeon HD 6250 6290 6310 6320 6350M (Redwood Capilano PRO)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->no support yet
|-
| <!--Description-->AMD 7640G, 8450G, 8550G, 8650G Northern Islands
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 Last real support for old graphics standard before Vulkan takeover
|-
| <!--Description-->R5 M230 M240 M255 - R7 M260 M265 (Kaveri Crystal series with Mantle and HSA)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->2015 Maybe better with Vulkan
|-
| <!--Description-->R5E R7E
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->2016 bristol ridge GCN 3.0 IGP (Carrizo Mobile)
|-
| <!--Description-->AMD Vega 3, 6, 8, 11 iGP
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2018 raven ridge GCN 5th Gen
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->5500m 5600m 5800m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA1 NaviX1 Zen 2
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rx680m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA2 NaviX2 Zen 3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->phoenix apu 1103
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 RDNA3 NaviX3 zen 4
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
==== AMDGPU Vulkan desktop ====
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Kaveri 290 290X, 260 260X
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 AMDGPU Vulkan
|-
| <!--Description-->R9 285 / R9 380 R9 380X Fury / Fury X
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->opengl 4 opencl 1 3rd Gen GCN architecture
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX470 RX460 RX480 RX580 polaris10
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 opengl 4 opencl 2 4th Gen GCN architecture vulkan 1.3
|-
| <!--Description-->RX460 RX560D polaris11
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 opengl 4 opencl 2 4th Gen GCN architecture vulkan 1.3
|-
| <!--Description-->RX580 polaris20
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 opengl 4 opencl 2 4th Gen GCN architecture vulkan 1.3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX 5000 5500 Navi 1x
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RNDA 1
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX 6000 Navi 2x
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RNDA 2 Mesa 21.3 decode av1
|-
| <!--Description-->RX6000
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX 7000
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 RNDA 3 navi
|-
| <!--Description-->RX7000
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->RX9070 rx 9060 XT
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2025 rdna4 navi
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2026 udna (aka rdna5)
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
|}
==== AMDGPU Vulkan mobile ====
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->R5E R7E
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->2016 bristol ridge GCN 3.0 IGP (Carrizo Mobile)
|-
| <!--Description-->Vega 8
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> GCN 5
|-
| <!--Description-->Vega iGP 3, 6, 8, 11
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2018 raven ridge - Graphics Core Next (GCN) 5th gen -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->5500m 5600m 5800m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA1 NaviX1 Zen 2
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rx680m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA2 NaviX2 Zen 3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->phoenix apu 1103
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA3 NaviX3 zen 4
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
fyi if a notebooks with two graphic cards, the integrated Intel card (id 0x7d) for low power usage and a discrete Radeon card (id 0x56) which should be used for GPU-intensive applications. By default the Intel card is always used
[https://wiki.archlinux.org/title/ATI Gallium Radeon HD] is not ported yet but is [https://www.phoronix.com/scan.php?page=news_item&px=Linux-5.9-AMDGPU-Stats really big] and complex so another solution may have to be [https://discuss.haiku-os.org/t/the-graphics-acceleration-can-of-worms/10515/5 found] like [https://discuss.haiku-os.org/t/vulkan-lavapipe-software-rendering-is-working-on-haiku/11363/10 vulkan] where support starts from very recent ISA GCN islands HD7000s cards only
*Vulkan
*Gallium
Vulkan software renderer allows to prepares the infrastructure for hardware rendering. Primary difference between software and hardware renderer is output to regular RAM vs GPU RAM, the rest is almost the same. It is possible to render to GPU RAM offscreen.
bare bones basics data flow
application,>>> api/opengl/vulkan>>>>, jit compiler, >>>>memory manger, >>>>gpu hardware
so you need to have a compiler that takes your api call/program/shaders/drawing commands and turns them into a program the gpu can render.
the vulkan to amd gpu compiler for shaders and textures is nearly os agnostic iirc as long as you have solid posix compliance
Unlike OpenGL, Vulkan does not depend on windowing system and it have driver add-on system with standardized API (Mesa also have OpenGL driver add-ons, but it have non-standard Mesa-specific API). OpenGL may need more work for windowing system related code at this point but developing Vulkan on real hardware is more strategic than developing OpenGL, since now Zink 3 running on Vulkan compensates for the lack of OpenGL support by giving performance similar to native accelerated OpenGL
RadeonGfx use client-server model with client-server thread pairs. For each client thread that calls 3D acceleration API, server side thread is created. If client thread terminates, server side thread also exit.
==Rough gfx comparison==
<pre>
Group 1
GeForce RTX 5090 5070 5060 5050
GeForce RTX 4090 4070 4060 4050
Group 2
GeForce RTX 2070
Radeon RX 7600
Quadro RTX 5000
Radeon PRO W6600
GeForce RTX 2060 12GB
Radeon PRO W7500
Quadro GP100
Radeon RX 6800S
GeForce RTX 3070 Laptop GPU
GeForce GTX 1080
GeForce RTX 3060 8GB
Quadro RTX 4000
Radeon Pro W5700
Radeon RX 6600
GeForce RTX 2080 (Mobile)
Radeon RX 7700S
Radeon RX 6700S
Radeon RX 6600S
Quadro RTX 5000 (Mobile)
GeForce GTX 1070 Ti
GeForce RTX 4050 Laptop GPU
Radeon Pro Vega 64X
Radeon RX 5700
Radeon RX Vega 64
GeForce RTX 2060
GeForce RTX 2070 Super with Max-Q Design
Group 3
Radeon RX 6600M
GeForce GTX 1070
Radeon RX 6650M
GeForce RTX 3060 Laptop GPU
Radeon RX Vega 56
Radeon RX 6700M
GeForce RTX 2080 with Max-Q Design
Radeon RX 6800M
GeForce GTX 980 Ti
Radeon R9 Fury
GeForce GTX 980
Quadro M5500
Radeon R9 390X
Radeon RX 580
Radeon RX 5500
Radeon RX 6550M
GeForce GTX 1660 Ti with Max-Q Design
GeForce GTX 780 Ti
GeForce GTX 970
Radeon R9 290X
Radeon RX 480
Radeon RX 5600M
Quadro RTX 3000 with Max-Q Design
Radeon R9 290X / 390X
Ryzen 5 4600HS with Radeon Graphics
Radeon R9 290
Radeon Pro 5500 XT
Radeon R9 M490 *
GeForce GTX 780
Radeon RX 6500M
Quadro M5500
GeForce GTX 1060 with Max-Q Design
Radeon RX 6500
Radeon RX 5300
Intel Arc A770M
GeForce GTX 1650 Ti
Radeon Pro 580X
Radeon RX 6400
GeForce RTX 2050
Ryzen 9 4900HS with Radeon Graphics
Radeon Ryzen 9 6900HS
GeForce GTX 980M
Quadro M5000M
Radeon RX 6300
GeForce GTX 1650 Ti with Max-Q Design
Radeon Pro 570
Ryzen 9 6900HS with Radeon Graphics
GeForce GTX 1050 Ti
Quadro M4000M
Radeon R9 280X 380X
GeForce GTX 1650 with Max-Q Design
GeForce MX570
Radeon R9 280X
Radeon R9 380
Radeon 780M
GeForce GTX 960
GeForce GTX 970M
Quadro M4000M *
GeForce GTX 680
Group 4
Radeon RX 6500M
Quadro M5500
Radeon Pro WX 7100
GeForce GTX 1060 with Max-Q Design
GeForce GTX 1650
Intel Arc A730M
Radeon HD 7970
Radeon R9 M395X
Radeon R9 M485X
Radeon R9 M480 *
Radeon R9 M295X
Radeon R9 M390X *
FirePro W7170M *
Radeon R9 M395
Radeon R7 370
Radeon RX 5500M
GeForce GTX 590
GeForce GTX 880M
GeForce GTX 950
Radeon R9 270X
GeForce GTX 660 Ti
GeForce GTX 760
GeForce GTX 780M
Quadro K5100M
GeForce GTX 680MX
Radeon HD 7870
GeForce GTX 965M
Quadro M3000M *
GeForce GTX 870M
Radeon R9 M290X
Radeon HD 8970M
Radeon Ryzen 7 7735U (680M), Radeon Ryzen 7 7735HS (680M 12C)
GeForce GTX 580
Radeon HD 6970
GeForce GTX 1050
GeForce GTX 680M
GeForce GTX 775M
GeForce GTX 1630
FirePro M6100
Radeon HD 7970M
Radeon R9 M390 *
GeForce GTX 750 Ti
Group 5
GeForce GTX 570
GeForce GTX 480
GeForce GTX 960M
Quadro M2000M *
Quadro K5000M
Quadro K4100M
GeForce GTX 770M
GeForce GTX 860M
GeForce GTX 675MX
GeForce GTX 950M
GeForce GTX 850M
Quadro M1000M
Radeon R9 M280X
Radeon HD 7950M *
GeForce GTX 560 Ti
Radeon HD 6870
GeForce GTX 470
GeForce GT 1030
GeForce MX330
Ryzen 5 PRO 5650GE with Radeon Graphics
Ryzen 7 5800HS
FirePro 3D V8800
GeForce MX250
Group 6
Radeon Pro WX 3200
Ryzen 7 PRO 5750G with Radeon Graphics
Radeon Ryzen 5 5600H
Ryzen 5 Pro 4650G with Radeon Graphics
Radeon Ryzen 7 5800U
Ryzen 7 7730U with Radeon Graphics
Radeon Ryzen 7 5825U
Radeon Pro WX 4150
Radeon Ryzen 5 PRO 4655G
Ryzen 5 4600G with Radeon Graphics
Radeon Ryzen 5 PRO 4655GE
GeForce GTX 485M
FirePro W6150M
Ryzen 7 5800U with Radeon Graphics
Ryzen 5 7530U with Radeon Graphics
Ryzen 7 4800U with Radeon Graphics
Radeon R9 M470
Ryzen 3 PRO 5350G with Radeon Graphics
Radeon RX Vega Ryzen 3 5300U
Ryzen 7 5825U with Radeon Graphics
Ryzen 5 PRO 4400G with Radeon Graphics
Radeon Ryzen 7 PRO 4750GE
Radeon Ryzen 7 4800U
FirePro V7900
Radeon HD 5970
Radeon Ryzen 7 7700X 8-Core
Radeon Ryzen 5 PRO 5650G
Radeon Ryzen 5 4400G
Radeon Ryzen 5 PRO 5650GE
Radeon RX 550X
FirePro V8800
Radeon RX Vega Ryzen 5 5500U
GeForce MX150
Quadro K3100M
Ryzen 7 PRO 5850U with Radeon Graphics
Radeon HD 6970M
Radeon R7 250X
Intel HD 5600
Ryzen 3 4300GE with Radeon Graphics
GeForce GTX 460
Ryzen 7 5700U with Radeon Graphics
Radeon Ryzen 5 7530U
Quadro K620
Ryzen 3 PRO 5350GE with Radeon Graphics
Intel Iris Pro P580
Intel UHD Graphics P630
Ryzen 5 4600H with Radeon Graphics
Ryzen 5 PRO 7530U with Radeon Graphics
Radeon HD 5870
Radeon HD 6870
Ryzen 7 4700G with Radeon Graphics
Ryzen 5 5600U with Radeon Graphics
Radeon HD 7770
Ryzen 3 Pro 4350G with Radeon Graphics
Radeon Ryzen 5 5625U
GeForce GTX 745
Radeon Ryzen 7 4850U Mobile
Radeon Ryzen 3 PRO 7330U
Quadro M600M
Radeon Ryzen 5 5500U
Ryzen 5 5560U with Radeon Graphics
Ryzen 7 4800H with Radeon Graphics
Group 7
GeForce 945M
Ryzen 5 PRO 4650GE with Radeon Graphics
FirePro M5100
Radeon Ryzen 5 5600U
Radeon Ryzen 5 PRO 4500U
GeForce GTX 580M
Ryzen 7 PRO 5875U with Radeon Graphics
Ryzen 3 5300GE with Radeon Graphics
Radeon R9 M385
Quadro 5000M
Radeon Ryzen 7 4700U
Ryzen 5 PRO 5650U with Radeon Graphics
Radeon Ryzen 7 PRO 4750U
Ryzen 7 4700U with Radeon Graphics
Ryzen 7 PRO 4750U with Radeon Graphics
FirePro V7800
Radeon R9 350
Ryzen 3 4300G with Radeon Graphics
Radeon Vega 11 Ryzen 5 PRO 3350G
Radeon Ryzen 5 5560U
GeForce GTX 460 SE
Radeon Pro W5500M
Radeon Vega 11 Ryzen 5 PRO 3400G
Ryzen 5 5500U with Radeon Graphics
Ryzen 5 PRO 4500U with Radeon Graphics
GeForce GT 645
GeForce GTX 765M
Radeon R9 M385X
Ryzen 5 5625U with Radeon Graphics
Ryzen 3 PRO 7330U with Radeon Graphics
Radeon HD 5850
Radeon Vega 11 Ryzen 5 PRO 2400G
Intel Iris Pro 580
Radeon HD 6850
Intel Iris Xe MAX
Radeon Ryzen 7 PRO 5875U
Radeon Ryzen 5 7600 6-Core
GeForce GTX 470M
Ryzen 3 5300G with Radeon Graphics
GeForce GTX 670MX
Radeon RX 640
Qualcomm Adreno Gen 3
Radeon R7 450
GeForce GTX 675M
Radeon Pro WX 4130
Intel Iris Xe MAX 100
Quadro 5000
Radeon RX 570X
Radeon HD 7700-serie
Ryzen 5 4600U with Radeon Graphics
Ryzen 3 PRO 4350GE with Radeon Graphics
Radeon Vega 8
Group 8
GeForce MX230
GeForce GTX 765M
Quadro K4000M
Iris Pro Graphics P580 *
Iris Pro Graphics 580 *
GeForce GTX 645
Quadro M520
GeForce GTX 570M
GeForce MX130
Radeon RX 540
Radeon Ryzen 5 PRO 5675U
Intel UHD Graphics 770
Radeon RX Vega 11 Ryzen 7 3750H
Radeon Vega 11 Ryzen 5 PRO 3400GE
Radeon HD 5850
GeForce GTX 675M
GeForce GTX 580M
Radeon HD 6990M
Radeon R9 M385X *
Radeon R9 M470X *
Radeon R9 M470 *
Radeon R9 M385 *
Radeon R9 M380 *
Radeon R9 M370X
Radeon R9 M275
Radeon HD 7770
GeForce GTX 485M
GeForce GTX 460 768MB
Radeon HD 6790
GeForce GTX 285M SLI
Quadro K3100M
FirePro W5170M *
GeForce GTX 670MX
Quadro 5010M
GeForce GTX 760M
GeForce GTX 670M
Group 9
GeForce 940MX *
Maxwell GPU (940M, GDDR5)
FirePro M8900
Radeon HD 6970M
Radeon R9 M270
Radeon HD 8870M
Radeon HD 7870M
Quadro K3000M
GeForce GTX 570M
FirePro M6000
FirePro M5100
Quadro K2100M
Radeon HD 5770
GeForce GTX 550 Ti
GeForce GTX 280M SLI
Radeon HD 6950M
Radeon R7 250
GeForce GT 755M
GeForce GTX 660M
GeForce 845M
Radeon HD 8850M
Radeon R9 M365X
Radeon R9 M265X
Ryzen 5 PRO 4400GE with Radeon Graphics
FirePro W5130M *
Radeon Vega 8 Ryzen 5 3500U
Radeon HD 7850M
Radeon HD 8790M
FirePro W4170M
FirePro W4190M
FirePro W4100
Radeon Vega 6 Ryzen 3 3300U
Quadro 4000M
GeForce GTX 470M
GeForce GTX 480M
GeForce GT 750M
Iris Pro Graphics 6200
Quadro K1100M
GeForce 940M
Radeon R9 M375
GeForce 930MX *
Radeon R7 M380 *
Radeon R7 M370
Quadro M600M *
GeForce GT 650M
Quadro K620M
GeForce 840M
Radeon R7 M275DX
GeForce GT 745M
Radeon HD 7770M
GeForce GTX 560M
Radeon R7
Iris Pro Graphics 5200
GeForce GT 740M
GeForce 930M
Radeon HD 4850
Group 10
Iris Graphics 550 *
GeForce 830M
Iris Graphics 540
Quadro M500M *
Quadro K2000M
GeForce GTS 450
GeForce GTX 260M SLI
GeForce GT 735M
Mobility Radeon HD 5870
GeForce 825M
Quadro 5000M
FirePro M4000
FirePro M7820
Radeon HD 6870M
GeForce 9800M GTX SLI
Radeon HD 8830M *
Radeon HD 8770M
Radeon R7 M260X
GeForce GTX 460M
GeForce 920MX *
GeForce GT 730M
Radeon HD 7750M
GeForce GT 645M *
FirePro M4100
Radeon HD 8750M
Radeon R6 A10-9600P 4C+6G
Quadro 3000M
Radeon R7 M270
Radeon R7 M265
Quadro FX 3800M
GeForce GTX 285M
Mobility Radeon HD 4870
GeForce GT 640M
Radeon R7 (Kaveri)
Radeon R8 M365DX
Radeon R7 M460 *
Radeon HD 7730M
Radeon R7 M360
GeForce GTX 280M
Radeon HD 8690M
Quadro FX 3700M
Radeon R7 M340
GeForce 920M
Radeon R6 M340DX
HD Graphics 530
HD Graphics P530
Tegra X1 Maxwell GPU
Radeon R7 M260
Radeon R6
Group 11
Mobility Radeon HD 4860
FirePro M7740
Mobility Radeon HD 4850
GeForce GTX 260M
GeForce 9800M GTX
Quadro FX 2800M
Radeon HD 8670D
Radeon HD 7690M XT
FirePro M5950
GeForce GT 640M LE
Radeon R6 (Kaveri)
Radeon HD 8650M *
Radeon HD 8730M
Radeon HD 6770M
GeForce GT 635M
GeForce GT 555M
Radeon R7 A10 PRO-7800B
Radeon HD 5670
Mobility Radeon HD 5850
Radeon HD 6850M
Quadro 2000M
GeForce 9800M GT
GeForce 8800M GTX
Quadro FX 3600M
GeForce GT 445M
GeForce GTS 360M
Group 12
GeForce GT 240
Radeon R7 PRO A10-9700
Radeon HD 7690M
HD Graphics 5600
Radeon HD 8570D
Radeon HD 8670M
Radeon R6 M255DX
Radeon HD 7660D
Radeon HD 6750M
Quadro K1000M
GeForce GT 550M
Radeon HD 8590M *
GeForce GTS 260M
GeForce GTS 160M
GeForce 9800M GTS
GeForce GT 430
Radeon HD 6830M
Mobility Radeon HD 5830
Radeon HD 6730M *
GeForce 9800M GS
Mobility Radeon HD 4830
Mobility Radeon HD 5770
Radeon HD 6570M
Radeon HD 8650G
Radeon HD 7670M
GeForce GT 630M
Radeon HD 7560D
GeForce GTS 150M *
Radeon R5 M335
Radeon R5 M430 *
Radeon R5 M330
Radeon R5 M255
Radeon Vega 3
Quadro 1000M
GeForce 820M
FirePro W2100
HD Graphics 520 620
Iris Graphics 6100
GeForce GT 720M
GeForce 8800M GTS
Radeon R5 M240
Radeon R5 M320 *
Radeon R5 M230
Radeon R5 M315 *
Mobility Radeon HD 5750 *
Radeon HD 8570M
Radeon R7 PRO A10-8850B
HD Graphics 6000
Quadro K610M
Radeon HD 8550M
Iris Graphics 5100
GeForce GT 540M
Mali-T880 MP12 *
Radeon HD 8610G *
Radeon HD 6650M
HD Graphics 4600
Mobility Radeon HD 5730
HD Graphics 5500
Radeon R5 (Carrizo) *
Radeon R5 (Kaveri)
FirePro M5800
NVS 5400M
GeForce 710M
Radeon HD 7660G
GeForce GT 435M
HD Graphics 5000
Quadro K510M *
Radeon HD 5570
Radeon HD 6550M
Radeon HD 7590M *
GeForce GTS 350M
GeForce GTS 250M
Radeon HD 6630M
Radeon HD 7650M
FirePro M2000
Radeon HD 7570M
Radeon HD 7630M
Quadro FX 1800M
Mobility Radeon HD 5650
Radeon HD 8510G *
Radeon HD 6530M
Radeon HD 8550G
Quadro K500M *
GeForce GT 625M *
GeForce GT 620M
GeForce GT 525M
Radeon HD 6550D *
Radeon HD 7610M
Radeon HD 7620G
Radeon HD 8470D
Radeon HD 7640G
Adreno 530
GeForce ULP K1 (Tegra K1 Kepler GPU)
HD Graphics 4400
HD Graphics 510 515 *
NVS 5200M
Mobility Radeon HD 565v
Radeon HD 7550M
Mobility Radeon HD 4670
GeForce GT 425M
GeForce 9700M GTS
Radeon HD 6645G2 *
Quadro FX 2700M
GeForce GT 335M
Radeon HD 7600G
Mobility Radeon HD 3870
Mobility Radeon HD 4650
GeForce GT 220
GeForce GT 420M
Radeon HD 7530M *
Mobility Radeon HD 3850
GeForce GT 330M
Quadro FX 880M
Quadro NVS 5100M
GeForce GT 240M
Radeon HD 7490M *
HD Graphics 5300
Radeon HD 7510M *
GeForce Go 7950 GTX
Quadro FX 3500M
GeForce 8700M GT SLI
GeForce 9700M GT
GeForce GT 230M
Mobility Radeon HD 550v
Radeon HD 7480D
HD Graphics 4000
Mali-T760 MP8
Radeon HD 6620G
HD Graphics (Broadwell) *
Adreno 430
Radeon R5 (Beema/Carrizo-L)
Radeon R4 (Beema) (Kaveri)
HD Graphics (Skylake) *
Radeon HD 6450 GDDR5
Radeon HD 7500G
Radeon HD 8450G
Radeon HD 7470M
Radeon HD 6490M
Radeon HD 8400
Mali-T880 MP4
GeForce GT 520MX
Radeon HD 7520G
GeForce GT 325M
GeForce Go 7800 GTX SLI
GeForce 8600M GT SLI
GeForce Go 7900 GS SLI
GeForce GT 130M
NVS 4200M
GeForce Go 7900 GTX
Quadro FX 2500M
Radeon HD 8350G
Radeon HD 8330
GeForce 9650M GS
GeForce 9650M GT
Radeon R3 (Mullins/Beema)
GeForce 8700M GT
Quadro FX 1700M
Quadro FX 1600M
GeForce Go 7800 GTX
GeForce Go 7900 GS
Quadro NVS 320M
Quadro FX 1500M
GeForce 9600M GT
GeForce GT 220M
Quadro FX 770M
GeForce GT 120M
Radeon HD 7450M
GeForce 610M
GeForce 705M
Mali-T760 MP6
Radeon HD 6470M
FirePro M3900 *
GeForce GT 520M
Radeon HD 7420G
Mobility Radeon HD 3670
Mobility FireGL V5725
PowerVR GX6450
Adreno 420
HD Graphics (Haswell)
Radeon HD 6520G
Radeon HD 8310G *
GeForce 320M
GeForce GT 320M
Mobility Radeon HD 2600 XT
Mobility Radeon X1900
Mobility Radeon X1800XT
Mobility Radeon X1800
GeForce Go 6800 Ultra
GeForce Go 7800
GeForce 9600M GS
GeForce 9500M GS
Radeon HD 7400G
Radeon HD 6480G *
Mobility Radeon HD 2700
GeForce GT 415M
GeForce 410M
Radeon HD 7370M
Adreno 418
HD Graphics (Cherry Trail)
Radeon HD 6370M
Radeon HD 8280
Mobility Radeon HD 5470
Radeon HD 6450M
Radeon HD 7430M *
Mobility Radeon HD 3650
Mobility FireGL V5700
Mobility Radeon HD 5145
Mobility Radeon HD 545v
Radeon R6 (Mullins) *
Radeon HD 8240
Radeon HD 8250
Mobility Radeon HD 4570
Quadro FX 570M
Mobility Radeon HD 5450 *
Radeon R2 (Mullins/Beema) *
GeForce 8600M GT
Mobility Radeon HD 2600
HD Graphics 3000
Quadro FX 380M
GeForce 310M
GeForce G210M
NVS 3100M
GeForce 405M
GeForce 315M
GeForce Go 7600 GT
GeForce 9500M G
GeForce 8600M GS
NVS 2100M
GeForce Go 7700
GeForce Go 6800
Quadro FX Go 1400
Mobility Radeon X800XT
Radeon HD 6430M *
Radeon HD 6380G *
Mobility Radeon HD 5430
Radeon HD 8210
Mobility Radeon HD 540v
Mobility Radeon HD 4550
HD Graphics 2500
HD Graphics (Ivy Bridge)
Quadro NVS 310
Radeon HD 7350M *
Radeon HD 6350M *
Mobility Radeon HD 4530
Mobility Radeon HD 4350
Radeon HD 4350
GeForce 305M
Mobility Radeon X1700
Mobility FireGL V5250
Mobility Radeon X2500
GeForce Go 7600
Quadro NVS 300M
Mobility Radeon X800
Mobility Radeon X1600
Mobility FireGL V5200
Mobility Radeon 9800
GeForce Go 6600
Mobility Radeon X1450
Mobility Radeon X700
Mobility FireGL V5000
GeForce G 110M
Quadro NVS 295
Radeon HD 6330M *
Mobility Radeon HD 4330
GeForce 8400M GT
Quadro NVS 140M
HD Graphics 2000
GeForce 9500M GE *
GeForce 9400M (G) / ION (LE)
HD Graphics (Sandy Bridge) *
Adreno 330
PowerVR G6430
PowerVR GX6250
PowerVR G6400
HD Graphics (Bay Trail)
Mali-T628 MP6
Mali-T760 MP4
Chrome9HD *
Radeon HD 7340
Radeon HD 6320 *
Radeon HD 7310
Radeon HD 6310 *
Radeon HD 8180
Mobility Radeon HD 3470
GeForce 9300M G
ION 2 *
GeForce 9300M GS
Quadro FX 370M
Quadro NVS 160M
GeForce 9200M GS
Mobility Radeon HD 3450
Mobility Radeon HD 3430
Mobility Radeon HD 3410
Mobility Radeon HD 2400 XT
Radeon HD 4270
Radeon HD 4250
Radeon HD 7290 *
Radeon HD 6290 *
Radeon HD 4200
Graphics Media Accelerator (GMA) HD Graphics
Radeon HD 6250
Quadro NVS 150M
Quadro FX 360M
Mobility Radeon X1350
Mobility Radeon X1400
GeForce 9100M G
GeForce 8400M GS
Quadro NVS 135M
Mobility Radeon HD 2400
Radeon HD 3200
Radeon HD 4225 *
Radeon HD 4100 *
SGX554MP4
Mali-T628 MP4
Mobility Radeon HD 3400 *
Radeon HD 3100
GeForce 8400M G
Mali-T860 MP2
Quadro NVS 130M
GeForce 8200M G
Graphics Media Accelerator (GMA) 4700MHD
Graphics Media Accelerator (GMA) 4500MHD
Graphics Media Accelerator (GMA) 4500M
Mali-T604 MP4
GeForce Go 7400
Quadro FX 350M
Quadro NVS 120M
GeForce Go 7300
GeForce Tegra 4 *
PowerVR G6200
Adreno 405 *
Quadro NVS 110M
Mobility Radeon X600
Mobility FireGL V3200
Mobility FireGL V3100
Mobility Radeon HD X2300
Mobility Radeon 9700
Mobility FireGL T2e
Mobility Radeon X1300
GeForce4 4200 Go
Mobility Radeon 9600
Mobility FireGL T2
Mobility Radeon 9550
GeForce Go 7200
GeForce Go 6400
Mobility Radeon X300
GeForce Go 6250
GeForce Go 6200
GeForce FX Go 5700
Quadro FX Go 1000
GeForce FX Go 5600 / 5650
Radeon Xpress X1270
Radeon Xpress X1250
Radeon Xpress X1200
Graphics Media Accelerator (GMA) X3100
Mali-T624
Adreno 320 *
Mali-T760 MP2
Mali-T720 MP4
Mali-450 MP4
Graphics Media Accelerator (GMA) 3650 *
GeForce 7190M *
GeForce 7150M
Radeon Xpress 1150
GeForce Go 6150
GeForce Go 6100
GeForce 7000M
Graphics Media Accelerator (GMA) 3600 *
Mobility Radeon 9200
Mobility FireGL 9000
GeForce FX Go 5200
Mobility Radeon 9000
GeForce 4 488 Go
GeForce 4 460 Go
GeForce 4 440 Go
GeForce 4 420 Go
Graphics Media Accelerator (GMA) 3150
Graphics Media Accelerator (GMA) 950
SGX545 SGX544MP2 SGX543MP2 *
Mali-T720 MP2
Mali-T720
Adreno 302 304 305 306
Mobility Radeon 7500
Mobility FireGL 7800
Graphics Media Accelerator (GMA) 900
Radeon Xpress 200M
Radeon Xpress 1100
Mirage 3+ 672MX
Mirage 3 671MX
Mali-400 MP4 *
GeForce ULP (Tegra 3) *
VideoCore-IV *
Adreno 220 225*
Vivante GC1000+ Dual-Core
Mali-400 MP2 *
GeForce ULP (Tegra 2) *
Graphics Media Accelerator (GMA) 600 *
SGX540 *
Graphics Media Accelerator (GMA) 500
Adreno 205 *
Adreno 203 *
GC800 *
SGX535
SGX531
SGX530
Adreno 200 *
Mali-200 *
GeForce 3 Go *
GeForce 2 Go 200 / 100
Mobility Radeon 9100 IGP
Mobility Radeon 9000 IGP
Mobility Radeon M7
Mobility Radeon M6
Chrome9 HC
Extreme Graphics 2
Mobility Radeon 7000 IGP
Radeon IGP 340M
Radeon IGP 320M
S3G UniChrome Pro II
S3G UniChrome Pro
Castle Rock
Mirage 2 M760
Mirage M661FX
S3 Graphics ProSavage8
Mobility 128 M3
SM502 *
</pre>
Kernel-space drivers like '''radeon''' (older AMD driver for older GPUs), '''amdgpu''' (newer driver for newer GPUs, allows using a few new features), i915, nouveau and a few others. They are what handles the gory details of talking to the GPU itself (writing to proper registers, handling its memory directly, configuring outputs, and so on). Unfortunately most of what they're exposing can be only consumed by a single user of that GPU, which is why we need...
DRM and DRI (Direct Rendering Manager/Infrastructure) controls access to the GPUs, provides interfaces for talking to the GPU concurrently by multiple apps at once (without them breaking each other) and lets the system perform the most basic tasks like setting proper resolution and such if no userspace apps understand how to talk to the GPU exposed. DRI and DRM expose the GPU interfaces mostly as-is, not in a "vendor-neutral" portable way - if you don't have an application developed specifically for a GPU you have, it won't work.
"let's create a vendor-neutral interface for graphics so that apps can ignore the GPU-specific bits and get right to the drawing!" - which is what OpenGL is. User-space drivers implement the OpenGL specification and expose it as an OpenGL library to apps (like games, browsers, etc) instead of the GPU. Mesa is the most popular collection of open-source user-space drivers and contains a few user-space drivers for different GPU families: '''radeonsi''' for most modern AMD GPUs (and '''r600g''', r300g and others for older ones), '''i915/i965''' for old/new Intel GPUs and '''nouveau''' for Nvidia GPUs.
There's also Gallium, which is a bunch of utilities and common code shared among these drivers - if certain things can be done once and work everywhere, they'll land in Gallium and benefit all the drivers. Most Mesa drivers use Gallium (radeonsi, nouveau, software renderers), some don't (intel after gma950).
Displaying 2D windows supports device-specific 2D drivers as well, but nowadays most of these are no longer needed as the modesetting can handle most hardware on its own. As the DRM/DRI got some additional interfaces for what used to be hardware-specific (setting resolutions, refresh rates, etc) and software requiring accelerated 2D drawing was optimized OpenGL-based renderers, dedicated 2D acceleration is slowly going away. Since around 2012, the 3D part of the graphics card deals with 2D operations.
Modern GPUs can also decode video!? There's VDPAU (NVIDIA & AMD GPUs) and VA-API (AMD & Intel GPUs) that can also talk to the GPU exposed via DRM/DRI and issue proper commands to decode/encode a given video stream. Those drivers are GPU-specific too.
So let's say you have some example GPUs, here's how example stacks could look like:
* AMD Radeon HD8750: amdgpu -> DRM/DRI -> Mesa (radeonsi)
* AMD Radeon HD4850: radeon kernel driver -> DRM/DRI -> Mesa (r600g) -> games/apps/etc.
* NVIDIA GeForce 460: nouveau kernel driver -> DRM/DRI -> Mesa (nouveau) -> games/apps.
* Intel GMA950: i915 kernel driver -> DRM/DRI -> Mesa (i945) -> games/apps.
{| class="wikitable sortable" width="90%"
! width="15%" | Description
! width="15%" | Analog Output
! width="15%" | Digital Output
! width="15%" | Laptop LCD
! width=30%" | Comments
|-
| <!--Description-->Fudomi GC888A
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->1080p 100in throw projector
|-
| <!--Description-->Vamvo VF320 (720P)
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->720p 90in
|-
| <!--Description-->Happrun H1
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->1080p 90in
|-
| <!--Description-->Umbolite Magcubic HIPPUS HY320 Mini
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->720p 100in
|-
| <!--Description-->Zentality A10 Plus
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->720p 110in
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->nexigo nova mini
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->nebula mars 3
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->epson lifestudio flex plus portable projector
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->dangbei freedo
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->benq gv50
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
Unless your computer uses a Firewire chipset manufactured by Texas Instruments, FireWire interfaces are likely to act buggy.
AROS is unlikely to ever support FireWire.
Bluetooth is similarly unlikely to be ever supported due to huge cost to be certified.
No, x86 PCMCIA card.resource at the moment. Writing card.resource would be a similar amount of work to writing a typical driver. However, it might be complicated by having to support a variety of PCMCIA-controller chipsets like TI PCI1225, PCI1410, PCI1420, 1450, PCIxx12 and O2, etc. m68k card.resource does not really have many higher level functions, most functions are really simple or poke Gayle registers directly. only exception is CopyTuple(). Amiga card.resource has one significant flaw: it's single-unit. would need card.resource and pccard.library. There was talk in the past of designing a new API for PCMCIA because card.resource only supports one slot, but since most modern laptops only have one slot anyway, I think it might be worthwhile to implement card.resource as-is (at least as a first step). pccard.library would be trivial to port. So, a new API is needed.
4ehnl6zxxcxgiaunm4nrr7dyke3hbcc
4641142
4641141
2026-06-25T16:47:43Z
Jeff1138
301139
4641142
wikitext
text/x-wiki
Google translation into [http://translate.google.com/translate?hl=en&sl=auto&tl=de&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support German], [http://translate.google.com/translate?hl=en&sl=auto&tl=fr&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support French], [http://translate.google.com/translate?hl=en&sl=auto&tl=nl&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Dutch], [http://translate.google.com/translate?hl=en&sl=auto&tl=it&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Italian], [http://translate.google.com/translate?hl=en&sl=auto&tl=es&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Spanish], [http://translate.google.com/translate?hl=en&sl=auto&tl=hi&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Hindi],
[http://translate.google.com/translate?hl=en&sl=auto&tl=zh-CN&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Chinese Simplified],
[http://translate.google.com/translate?hl=en&sl=auto&tl=pl&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Polish],
[http://translate.google.com/translate?hl=en&sl=auto&tl=ru&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Russian],
{{ArosNav}}
[[#Audio Chipsets]]
[[#Graphic GFX Chipsets]]
[[#Rough gfx comparison]]
[[#]]
==x86 Native Environment==
AROS should run on almost any i386 PC hardware so long as the CPU is newer than an i486, and has a "Floating Point Unit (FPU)". Ideally around 700Mhz and above with at least 256MB of memory is recommended for desktops and around 1GHz and at least 256MB for laptops/notebooks/netbooks. For web browsing, etc above 1GB is usually needed and offers the option to run web browsers, media players and other hard disk heavy usage from RAM: disk.
Motherboards supported
* Most Intel mobos are supported (Skt 775 is ok but newer is better) - additional pci / pci-e cards may be needed for networking, audio, etc
* AMD based socket 939 am2 am2+ am3+, fusion and am4 ryzen based systems work but additional pci / pci-e cards may be needed
Supported graphics cards (gfx)
* Nvidia 2D and 3D 2005-2017.
64bit AROS Nouveau covers '''2D''' 8xxxgs and higher to GTX 900s and '''3D''' from .
32bit AROS supports '''2D''' from TNT through to fermi gtx5xx and '''3D''' acceleration fx5xxx to gtx4xx.
* Intel GMA 2D and 3D 2006-2009.
'''2D''' for many old netbooks and motherboards. '''3D''' for many early netbooks and motherboards
* AMD/ATI 2D only and '''no 3D'''. 1999-2005.
Desktop ie external monitor support only (no laptop internal support) for very early Radeon 7000 through to x600. Experimental 2D version for up to HD3xxx came later
* VESA 2D fallback modes for all graphic cards (GPUs) and with [http://www.youtube.com/watch?v=HKCHZFYj9Kk screen dragging].
It's worth noting however that support isn't guaranteed. Nor will potential power of a card reflect its performance under AROS.
Sound wise there are
* HDaudio support for onboard intel and AMD netbooks, ultrabooks, notebooks and motherboards (2005 to 2020)
* some AC97 codec support for very old motherboards and laptops (ie pre 2004)
* PCI and some PCI-E C-Media CMI8738 for desktop plugin cards
* PCI Creative Soundblaster EMU10K1 cards [http://amigaworld.net/modules/news/article.php?storyid=2512 SBLive]
* PCI semi professional some early VIA Envy24 desktop sound cards
* PCI Sound Blaster 128 aka SB16
Supported [http://en.wikibooks.org/wiki/Aros/Platforms/x86_Network_support network] which could be desktop, laptop, etc
* PCI-E Realtek rtl8169 which also includes the rtl8111 and rtl8110
* PCI Realtek rtl8139 and includes rtl8101 and rtl8100
* PCI intel pro100
* Broadcom 44xx 10/100 integrated in laptops around 2005
* VIA 10/100
* 3com Etherlink 10/100
* Realtek rtl8029 10mbit
Wireless wifi
* atheros 5000 wireless
*realtek 8187 usb
It is very hard to recommend a completely supported motherboard because as soon as newer motherboards arrive so their features change subtly, often introducing non supported parts like ethernet and audio. It is a moving target.
* mini-itx motherboard will only get you 1 pci or pci-e slot
* micro mATX or uATX will have more, typically 2 pci-e or pci slots which helps if any onboard features are not supported.
* full atx will have more slots available
'''N.B''' It is frustrating when a piece of hardware is not supported. Hardware documentation can run to over 100 pages and a lot of hardware do not have any public documentation anyway. Chips from different manufacturers for sound, graphics, SATA, etc. vary just as much, unless they follow a standard such as [https://github.com/acidanthera/AppleALC/wiki/Supported-codecs HDAudio codecs], AHCI etc.
Coding drivers is a far cry from Hello World programs or even a port of existing software. If you do actually want to try then get a hold of documentation on the relevant hardware and start there. Alternatively you could try to find some '''BSD''', MIT or MPL licence drivers as a point of reference. Please , do not think you can just adapt strings in a driver for different strings, it does not work that way. You will '''need''' to start from scratch for each new bit of hardware. Device driver programming require '''embedded''' skills, like manipulation of bits within registers, good debugging skills, dealing with interrupts, lots of patience, etc.
The following specific chipsets and drivers are also available - use Tools/PCITool to confirm Vendor and Product IDs - Please let us know any mistakes or any information to be added, to this General Chat list on [https://arosworld.org/ AROS World]
: Brief Timeline
: 2000-12-06 HIDD first mouse.hidd completed ([http://msaros.blogspot.com/ Michal Schulz])
: 2001-03-31 BOOT first boot from floppy disk with IDE device
: 2001-10-30 BOOT first cd bootable version
: 2002-01-27 HIDD first pci.hidd added (Michal Schulz)
: 2002-04-13 BOOT software HDToolBox added ()
: 2003-04-03 HIDD vesa2.hidd graphic modes added ()
: 2004-03-08 HIDD new pci and ata (pata) devices worked on (Michal Schulz)
: 2004-03-17 HIDD nVidia 2D driver appears (Michal Schulz)
: 2005-01-05 AHI AHI v6 audio system ported (Martin Blom)
: 2005-01-06 AHI SBLive SoundBlaster Live driver ported (Georg Steger)
: 2005-02-04 AHI AC97 playback only driver added (Michal Schulz)
: 2005-06-27 NIC amiTCP stack ported with 3com, NE2000, prism2 drivers (Neil Cafferkey)
: 2005-08-25 NIC nForce2 support added (Michal Schulz)
: 2005-12-24 NIC Intel Pro100 network driver added (Neil Cafferkey)
: 2006-03-25 HIDD ATI radeon 2D driver added (Michal Schulz)
: 2007-03-06 HIDD vesa 1.0 video driver added (Pavel Fedin)
: 2007-03-08 HIDD dospackets and FAT filesystem (Rob Norris)
: 2007-03-21 HIDD usb initial commit (Michal Schulz)
: 2007-10-01 BOOT Installer added (Neil Cafferkey)
: 2007-11-29 PORT 64bit x86 added (Michal Schulz)
: 2008-04-12 BOOT GRUB2 added (Alain Greppin and Nick Andrews)
: 2008-08-26 NIC RTL8139 added ([http://kalamatee.blogspot.com/ Nick Andrews])
: 2008-10-22 PORT to SAM440ep (ppc) (Michal Schulz)
: 2009-02-25 PORT to efika (ppc) (Michal Schulz)
: 2009-05-18 HIDD poseidon usb2.0 stack ported to AROS (Chris Hodges)
: 2009-11-18 NIC RTL8169 network driver arrived (Nick Andrews and [http://pagesperso-orange.fr/franck.charlet/oldnews.html Franck Charlet])
: 2009-12-23 AHI HDAudio based Atom CPU and netbook audio driver arrived (Davy Wentzler)
: 2010-03-09 BOOT USB pendrive stick booting available (Neil Cafferkey)
: 2010-05-26 HIDD Intel GMA900 2D graphics card support (Michal Schulz)
: 2010-09-03 NIC Wireless PCI based NIC arrived (Neil Cafferkey)
: 2011-04-30 HIDD Nvidia 2D and 3D nouveau graphics card support (Deadwood)
: 2011-08-30 HIDD Radeon 2D enhanced AMD driver arrives (Bearsoft)
: 2011-09-17 NIC Wireless USB realtek arrives (Neil Cafferkey)
: 2011-12-09 HIDD Intel 945G 3D Gallium graphics support (Sami)
: 2013-02-25 AHI AC97 VIA 686 audio support (Davy Wentzler and Neil Cafferkey)
: 2013-03-31 PORT early Raspberry PI native support (Nik Andrews)
: 2014-01-16 AHI Envy24 audio chipset support (Davy Wentzler and Neil Cafferkey)
: 2017-02-17 PORT Symmetric MultiProcessing smp added for x86 64bit (Michal Schulz)
: 2018-10-20 PORT Big Endian ARM
: 2021-11-26 NIC Broadcom 44xx ethernet (Neil Cafferkey)
: 2023-01-12 NIC Nvidia MCP61 ethernet (Neil Cafferkey)
: 2025-11 HIDD xHCI USB3 and isoc (Nik Andrews)
[[#top|...to the top]]
===Audio Chipsets===
'''If sound beeps in AHI prefs after Music set then some support is there. Select more than one channel for multiple audio streams, set frequency up to 44 kHz or higher and set the volume if not already set. Ensure you set the music unit 0 to 3 which allows the extra features of the audio card like microphone, line-out, etc).'''
====1996-2000 sb128.audio aka SB16 PCI====
*2021 5.27
as per CREATIVE's website, the model number is the first two digits on the front and first two digits on the back. my card says CT4810 and 161TK110B 995; this translates to CT4816 as the model.
The original AudioPCI 3000 card with the ES1370 had a master clock crystal for 44.1 kHz (22.5792 MHz), used an AKM codec (AK4531, non-AC97) and had 4 channel output; Creative later modified the design with a crystal for 48 kHz (24.576 MHz) and Sigmatel AC97 codec (a CT4700 SB128 with a CT5507 chip, AK4531, 22.5792 MHz crystal and TDA7360 speaker power amp). The issue with these cards involved never quite eliminate the effects of resampling on the 64V, it also shows signs of undersized coupling caps. These Ensoniq cards automatically engaged headphone amplifier (with a 4565 opamp).
Porting involved [http://repo.or.cz/w/AROS.git/commit/b60abd12967144a844980c422ea9e99c056eabca 40897], [http://repo.or.cz/w/AROS.git/commit/b7d6511fca6430a63fbaaa390b4f51bf0203a460 40898 configure], [http://repo.or.cz/w/AROS.git/commit/f51034cd22759a4ec3a2547bddb3a7169d956eaa 40900 bugs], [http://repo.or.cz/w/AROS.git/commit/4f43fc38e3489ea45d12b7b5ba6fff50b69c5746 40901 further bugs], [http://repo.or.cz/w/AROS.git/commit/d23c78aec75f049484b6916d27b6804ce858bb2c 40913 memory IO fixes], [http://repo.or.cz/w/AROS.git/commit/d256860fe3035016952e88d143c6f2611997f2f3 40914 irq fix].
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| Ensoniq AudioPCI 1000
| 0x1274
| 0x5000
|
| {{unk}}
| {{unk}}
| untested - es1370 (u?) AK4531 (u?)
|-
| Ensoniq AudioPCI
| 0x1274
| 0x5000
| 0x00
| {{yes}}
| {{maybe}}
|
|-
| CT4700 Sound Blaster PCI 64 (audioPCI 3000)
| 0x1274
| 0x5000
| 0x7c
| {{yes}}
| {{maybe}}
| works - opamp JRC4565(u?) [http://en.wikipedia.org/wiki/Ensoniq_ES1370 es1370] (u?)
|-
| CT4750 Sound Blaster 64/PCI
|
|
|
| {{unk}}
| {{unk}}
| untested - 4565-1056W (u1) stac9708t(u2) [http://arstechnica.com/civis/viewtopic.php?f=6&t=916891 ct5880-dcq] (u3) 24wc012 (u4)
|-
| CT4751 (SB128PCI)
| 0x1274
| 0x8001
|
| {{unk}}
| {{unk}}
| untested - [http://en.wikipedia.org/wiki/Sound_Blaster#Ensoniq_AudioPCI-based_cards es1371] (u?)
|-
| CT4810 Creative AudioPCI64V
| 0x1274
| 0x1371
| 0x06
| {{yes}}
| {{maybe}}
| works
|-
| CT4811 (SB Vibra 128)
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4812 (Vibra 128)
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4813
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4815
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4816 es1373 (vibra 128)
|
|
|
| {{unk}}
| {{unk}}
| untested but this card has creative's ES1373 as the main chip(U1). it is also different from the other CT4810 (vibra128) in that it does not have a second chip in U2 position. Also there is only one jumper JP1 (2X3).
|-
| CT5801 HP
|
|
|
| {{unk}}
| {{unk}}
| untested - es1373 (u3)
|-
| CT5803 Gateway
| 0x1274
| 0x1371
| 0x08
| {{yes}}
| {{maybe}}
| works 4565-0005b jrc (u1) 4297a-jq ztae0c0002 (u2) es1373 (u3)
|-
| CT4740
| 0x1274
| 0x1371
| 0x08
| {{yes}}
| {{yes}}
|
|-
| CT5805 Compaq OEM Premier Sound Presario 7
|
|
|
| {{unk}}
| {{unk}}
| untested - es1373 (u3)
|-
| CT5806 (Sound Blaster AudioPCI 128D)
|
|
|
| {{unk}}
| {{unk}}
| untested - 4297A-JO EP (u?) ZTAPWC9933 (u2) es1373 (u3)
|-
| CT5807 Dell OEM Dimension 8100
|
|
|
| {{unk}}
| {{unk}}
| untested - es1373 (u?)
|-
| CT5808
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4730 Sound Blaster AudioPCI 64V Ectiva EV1938
| 0x1102
| 0x8938
|
| {{unk}}
| {{unk}}
| untested
|-
| CT5880 on various motherboards
| 0x1274
| 0x5880
|
| {{unk}}
| {{unk}}
| untested [http://www.xbitlabs.com/articles/mainboards/display/ga-6rx.html Gigabyte GA-6RX] (VIA ApolloPro 266 2001], Gigabyte GA-6VM7-4E mobo, [http://active-hardware.com/english/reviews/mainboard/ga-7vtx.htm Gigabyte GA-7VTX] (KT266 2001), Gigabyte [http://www.amdboard.com/gigabytega7vtxh.html GA-7VTXH] (KT266A 2001), [http://www.amdboard.com/gigabytega7vrxp.html Gigabyte 7VRXP] mobo (KT333 2002), MSI MS-6309, MS-6318, MS-6337 (815E Pro), MS-6339 (850Pro) and MS-6340, PCChips Motherboard M571 TXPRO, Soltek SL-65ME+,
|-
| VMware Virtual Workstation(TM)
| 0x1274
| 0x1371
| 0x02
| {{Yes|but not Hi-Fi modes}}
| {{maybe}}
| works
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
<pre>
Revision 0x04 = ES1371 REV_ES1373_A
Revision 0x06 = ES1371 REV_ES1373_B
Revision 0x07 = ES1371 REV_CT5880_A
Revision 0x02 = CT5880 REV_CT5880_C
Revision 0x03 = CT5880 REV_CT5880_D
Revision 0x04 = CT5880 REV_CT5880_E
Revision 0x09 = ES1371 REV_ES1371_B
Revision 0x00 = EV1938 REV_EV1938_A
Revision 0x08 = ES1371 REV_ES1373_8
</pre>
====1999-2001 via-ac97.audio====
*2021 5.10
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| <!--Description-->694X with 686A KT133 PM133 or 693A with VT8231
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3058
| <!--Revision-->
| <!--Playback-->{{Yes| }} redirects earphones correctly
| <!--Recording-->{{Yes| }}
| <!--Comments-->audio controller works but depends on the underlying invisible codec used see AC97 section
|-
| <!--Description-->686B KT133A with VT8231
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3058
| <!--Revision-->0x50
| <!--Playback-->{{Yes|}} reroutes ear pieces right
| <!--Recording-->{{Yes|}}
| <!--Comments-->audio controller works but depends on the underlying codec used see AC97 section below
|-
| <!--Description-->686C
| <!--Vendor ID-->0x1106
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->untested
|-
| <!--Description-->KM266 or KT266 with VT8233, KT266A with VT8233A, VT8233C
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3059
| <!--Revision-->0x10
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->KM333 KT333 with VT8235
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3059
| <!--Revision-->0x30
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
| <!--Description-->KM400 KT400 with VT8237, KT600 with VT8237R,
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3059
| <!--Revision-->0x40 0x50 0x60
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
|}
====1998-2003 emu10kx.audio - Creative Labs SoundBlaster Live! and Audigy====
*2021 6.5
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| PCI512 CT4790 (emu10k1)
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested (1st Gen)
|-
| Live CT4620
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Live CT4760
| 0x1102
| 0x0002
| 0x07
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| playback works
|-
| Live Value CT4670
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| works plays stereo (2nd Gen)
|-
| Live Value DELL CT4780
| 0x1102
| 0x0002
| 0x06
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| plays/records stereo - untested 4.1mode
|-
| Live Value Compaq CT4830
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{Maybe}}
| <!--Recording--> {{unk}}
| not working
|-
| Live Value CT4831
| 0x1102
| 0x0002
| 0x00
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Live Value CT4832
| 0x1102
| 0x0002
| 0x07
| <!--Playback--> {{yes}}
| <!--Recording--> {{partial|Line-In only}}
| works
|-
| Live Value CT4832
| 0x1102
| 0x0002
| 0x08
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| works
|-
| Live Value HP CT4870
| 0x1102
| 0x0002
|
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| Works
|-
| Live Value Gateway CT4871
| 0x1102
| 0x0002
|
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Live! Platinum 5.1 SB0060
| 0x1102
| 0x0002
| 0x00
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
| plays audio/records, untested 5.1 (3rd Gen)
|-
| Live 5.1 SB0100 -SFF
| 0x1102
| 0x0002
| 0x00
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| works
|-
| Live 5.1 Player SB0220
| 0x1102
| 0x0002
| 0x0a
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
| plays audio/records stereo, untested 5.1
|-
| Live 5.1 Digital SB0228
| 0x1102
| 0x0002
| 0x0a
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
| working
|-
| Audigy SB0090 (emu10k2)
| 0x1102
| 0x0004
|
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| <!--Description-->Audigy SB0230
| <!--Vendor ID-->0x1102
| <!--Product ID-->0x0004
| <!--Revision-->0x03
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Yes|Mic only}}
| <!--Comments-->5th Dec 2012 - untested optical tos link. contains also IEEE1394/Firewire (untested)
|-
| Audigy 2 Platinum 6.1 SB0240 SB0250 EMU10K2.5
| 0x1102
| 0x0004
| 0x04
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| works
|-
| Audigy 2 PRO SB0280 EMU10K2.5
| 0x1102
| 0x0004
|
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Audigy 2 ZS SB0350
| 0x1102
| 0x0004
| 0x04
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
|
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| Live 5.1 DELL SB0200 SB0203 emu10kx
| 0x1102
| 0x0006
| 0x0
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
|
|-
| Live 24bit SB0410
| 0x1102
| 0x0007
| 0x
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Live 24bit DELL SB0413
| 0x1102
| 0x0007
| 0x
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy LS SB0310
| 0x1102
| 0x0007
| 0x0
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy SE 7.1 SB0570
| 0x1102
| 0x0007
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 2 ZS SB0320 SB0360 (PRO)
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 2 VALUE SB0400
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 4 VALUE SB0610
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 4 PRO SB0380
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| EMU E-MU 0404 PCI (not USB) EM8852
| 0x1102
| 0x000
| 0x0
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver but linux support needs firmware
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
the green jack is for the main speaker pair AND headphones, so manual switching will be required
If your card is wired for the "AC97" standard, then it's up to your headphone jack to switch the green speaker output in and out
the headphone jack has Normally-closed contacts that will open on insertion, which breaks the signal path back to the sound card (FP_RETURN)
====2000-2010 cmi8738.audio - C-Media====
*2021 5.20
;Read [http://amigaworld.net/modules/news/article.php?storyid=2512 more] and imported on [http://repo.or.cz/w/AROS.git/commit/aff741d60160c6a9d7d39c9e004a25ea3aa13847 20th July 2011] and [http://alsa.opensrc.org/Cmipci alsa docs].
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| Audiotrak MAYA EX5
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| cmi8738-sx 4ch
| 0x13f6
| 0x0111
| 0x10
| <!--Playback-->
| <!--Recording-->
| untested
|-
| e3dx hsp56 CMedia 8738-sx 4ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| EDio SC3000D 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Genius SoundMaker Value PCI C3DX
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Guillemot Maxi Sound Muse
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Hercules Gamesurround Muse LT
| 0x13f6
| 0x0111
| 0x10
| <!--Playback--> {{yes}}
| <!--Recording--> {{no}}
|
|-
| Hercules Gamesurround Muse XL LT 5.1
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Inno audio extreme 5.1 cmi8738/lx pci 6ch
| 0x13f6
| 0x0111
| 0x
| <!--Playback-->
| <!--Recording-->
| untested
|-
| M-Audio (Midiman) DiO 2448
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Sabrent SBT-SP6C 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| StarTech PCISOUND4CH 8738sx 4ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Sweex SC012 CMI8738-lx 4ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Terratec 5.1 PCI
| 0x13f6
| 0x0111
| 0x10
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Terratec Aureon Fun 5.1
|
|
|
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| Has SPDIF
|-
| Trust Sound Expert Digital Surround 5.1 (cm8738-mx 6ch)
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Turtle Beach Riviera CMI8738-MX 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| XSonic CMI 8738 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->CMI8738 6ch PCI-E PCI Express version
| <!--Vendor ID-->0x13f6
| <!--Product ID-->0x0111
| <!--Revision-->0x10
| <!--Playback-->{{Yes|}}
| <!--Recording-->{{Maybe|}}
| <!--Comments-->Chinese based card with playback tested so far
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
====2001-2005 ac97.audio====
*6.4 27-12-2008
The AC97 chips were designed to be pinout interchangeable so that the sound support could change easily and quickly without motherboard redesigns
the green jack is for the main speaker pair AND headphones, so manual switching will be required
If your card is wired for the "AC97" standard, then it's up to your headphone jack to switch the green speaker output in and out, the headphone jack has Normally-closed contacts that will open on insertion, which breaks the signal path back to the sound card (FP_RETURN)
The ProductID and VendorID are for the audio controller only - the important additional codec is '''NOT''' so easily identified.
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| <!--Description-->Avance Logic (now Realtek) ALC100 and ALC101 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->ALC200 and ALC201 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->ALC201A and ALC202 and ALC202A codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->ALC650
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| <!--Comments-->most Nforce2 boards plays audio only - Abit NF7, Asus A7N8X, MSI K7N2, Epox 8RDA+, DFI
|-
| <!--Description-->ALC850 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{No}}
| <!--Comments-->no support for via P4P800 chipset on ASUS A8V-E SE Deluxe mobo - ICaros 1.3
|-
| <!--Description-->Realtek ALC653 codec and ALC655 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested Acorp 7NFU400
|-
| <!--Description-->Realtek ALC658 codec ALC658D
| <!--Vendor ID-->0x8080
| <!--Product ID-->0x24c5
| <!--Revision-->0x0
| <!--Playback-->{{Yes|Prefs Music and Units 0-3 set volume control - playback}}
| <!--Recording-->{{No}}
| <!--Comments-->MSI Motherboard on NB 22-09-2012
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->AD1881 SoundMAX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->Analog Devices first AC97
|-
| <!--Description-->AD1881A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Yes}}
| <!--Revision-->
| <!--Comments-->works with VIA Controller - untested Intel etc
|-
| <!--Description-->AD1881B
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1885 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{No}}
| <!--Comments-->Playback only with issues on D845HV but not working on MS-6367 because Units 0-3 have masked volume control
|-
| <!--Description-->AD1886
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1887
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->ADI AD1888 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{no}}
| <!--Recording-->{{No}}
| <!--Comments--> Icaros 1.51
|-
| <!--Description-->AD1980 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->AD1981A codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested IBM X30
|-
| <!--Description-->Analog Devices SoundMax(TM) AD1981B codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| <!--Comments-->plays back only on IBM T41 Thinkpad
|-
| <!--Description-->AD1985 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{No}}
| <!--Comments-->not working ahi prefs freezes on D865GLC mobo ([http://www.xbitlabs.com/articles/multimedia/display/int-sound2_3.html ]
|-
| <!--Description-->AD1986 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{No}}
| <!--Comments-->untested [http://uk.ts.fujitsu.com/rl/servicesupport/techsupport/Boards/Motherboards/Fujitsu/D1931/D1931.htm D1931] but works (Acer Aspire 3610 laptop)
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->Crystal Semiconductors CS4205, CS4202 codecs
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Cirrus Logic CrystalWare 4236
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->Cirrus Logic CrystalClear SoundFusion CS4297 CS4299 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested IBM T23
|-
| <!--Description-->conexant Cx20468-31 codec (id 30)
| <!--Vendor ID-->0x103c
| <!--Product ID-->0x3085
| <!--Revision-->
| <!--Playback-->{{No|AC97 appears in AHI Prefs}}
| <!--Recording-->{{No}}
| <!--Comments-->Tested AspireOS 1.8 on Gateway W322
|-
| <!--Description-->ESS Technology ES1921 AC'97 2.1
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->CMI 6501 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested on ASROCK SKT-AM2 AM2NF3-VSTA
|-
| <!--Description-->codec CMI9738
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->codec CMI9739
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->C-Media CMI 9739A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments--> untested on EPoX 8RDA3+
|-
| <!--Description-->CMedia CMI 9761A codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested ASRocK K7NF2-RAID
|-
| <!--Description-->C-Media CMI9880
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->National Semi conductor (now TI) LM4540, LM4543, LM4545, LM4546, LM4548, LM4549, LM4550 LM4560
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->STAC9708T codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->SigmaTel (now IDT) C-Major STAC 9460 (D/A only), 9461, 9462, 9463, 9200, 9202, 9250, 9251, 9220, 9221, 9223, 9750
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AKM (Asahi Kasei Microsystems) AK 4540, 4543, 4544A, 4545
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->codec VT1616 (VIA Six-TRAC Vinyl Audio)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->VIA VT1612, VT82C686
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->ESStech ESS ES1968 maestro-2
| <!--Vendor ID-->0x125d
| <!--Product ID-->0x1968
| <!--Revision-->0x
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->ESStech ESS ES1978 maestro2e
| <!--Vendor ID-->0x125d
| <!--Product ID-->0x1978
| <!--Revision-->0x
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->ESStech ESS ES1988 maestro3 allegro-1 codec
| <!--Vendor ID-->0x125d
| <!--Product ID-->0x1988
| <!--Revision-->0x12
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->Yamaha AC97 ymf-743 YMF752 YMF753 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->{{No}}
| <!--Comments-->untested ymf-753
|-
| <!--Description-->YMF724 YMF744 YMF-754 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| SIS 7018 / Trident 4dwave DX/NX / ALi 5451
| 0x1039 (0x1023 Trident)
| 0x7018 (0x2000 Trident DX) (0x2001 Trident NX)
| 0x02
| <!--Playback-->{{No}}
| <!--Recording-->{{No}}
| no support - introduced early 2000s
|-
| SIS 7012
| 0x1039
| 0x7012
|
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| working through 1 speaker only took over from SIS7018 (2002 onwards)
|-
| <!--Description-->Wolfson (now Cirrus Logic) WM9701, WM9701A (AC'97 1.03 spec), WM9703, WM9704 (AC'97 2.1), WM9705, WM9706, WM9707, WM9708
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->WM9709, WM9710, WM9711, WM9712, WM971
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->first Microsoft(TM) Xbox DAC sound chip (AC Link compliant D/A converter)
|-
| <!--Description-->Wolfson WM9717
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| Parallels
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested
|-
| VirtualBox
|
|
|
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| working
|-
| VirtualPC
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested
|-
| <!--Description-->Intel 82801AA Proxmox
| <!--Vendor ID-->0x8086
| <!--Product ID-->0x
| <!--Revision-->
| <!--Playback-->{{unk| }}
| <!--Recording-->{{unk| }}
| <!--Comments-->
|-
|}
====2005-20xx HDAUDIO.audio====
*6.36 2025 [https://github.com/aros-development-team/AROS/commit/43b33a9280b10963ca659de2cc3d1cf289b43a87 reset handler]
*6.35 202 []
*6.34 2019 AROS One 1.5 upwards
*6.29 2018
*6.27 2017 update
*6.25 2014 used for most Icaros 2.x
*6.20 July 2012
*6.17 Nov 2011
*6.15 Jun 2011
*[http://www.clusteruk.com/SitePortalPage.aspx?siteid=1&did=109 6.13] Sep 2010
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="5%" |Vendor ID
! width="5%" |Product ID
! width="5%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| <!--Description-->ALC260
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| <!--Description-->ALC262
* ALC262-VD2-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->LQFP-48
|-
| ALC268 codec
| 0x
| 0x
| 0x
| <!--Playback-->{{Yes|Version 6.17 Acer AOA110 and AOA150 netbooks), works (Dell Mini Inspiron 9 and 10v, }}
| <!--Recording-->{{Yes|Version 6.17 remove QUERY and select 'Mic 1' as input. Tested with 6.15 as well using QuickRecord and AE 4.0.23 under Icaros 1.4.}}
| <!--Comments-->AHI UNITS and Music are set to: hdaudio:HiFi 16 bit stereo++ / Frequency 48000 Hz, Volume +0.0 dB. The hdaudio.config in SYS:Prefs/Env-Archive is WITHOUT the QUERY-line. After changing and saving the config-file turn off and start again the computer. Switch from internal loudspeaker to headphone you must turn off the music before plug in the headphone-cable, otherwise there is no output on the socket. Back from line-out to internal speakers it is the same.
|-
| [http://blog.foool.net/wp-content/uploads/linuxdocs/sound.pdf Linux docs ALC269]
* ALC269Q-GR
* ALC269QSRS-GR
* ALC269W-GR
| 0x
| 0x
| 0x
| <!--Playback-->{{Maybe| }}
| <!--Recording-->{{Unk| }}
| <!--Comments-->TQFP 48 pin Power IC Chip From [https://patchwork.kernel.org/project/alsa-devel/patch/1408118123-15849-1-git-send-email-tiwai@suse.de/ ALC269 & co have many vendor-specific setups with COEF verbs, result in the codec stalling]
|-
| [http://www.alsa-project.org/db/?f=0321f8479fd670cd510f9912b1120fe7edcf2e07 ALC269VB]
* ALC269Q-VB5-GR
* ALC269Q-VB6-CG
* ALC269Q-VB6-GR
| 0x10ec
| 0x0269
| 0x100004, 0x100100, 0x100202
| <!--Playback-->{{Maybe|some versions work}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* v1 works Asus eee PC netbook 901/1000HA 1005HA/1008HA, 1001P,
* v2 maybe working Lenovo S9 S10 S10-2 S10-3 under HDAudio version 6.13
* v3 maybe dell wyse 7010
|-
| [http://alsa-project.org/db/?f=9c1746c5957b0ce72ff9cfffa312e97d14baf785 ALC269VC aka ALC3202]
* ALC269Q-VC2-GR
* ALC269Q-VC3-GR
| 0x10ec
| 0x0269
| 0x100203,
| <!--Playback-->{{Maybe|some versions work}}
| <!--Recording-->{{Unk}}
| <!--Comments-->SMT SMD QFN-48 -
* v1 unknown
* v2 unknown
* v3 x230, dell wyse,
|-
| ALC272
* ALC272-VA4-GR
| 0x10ec
| 0x0272
| 0x0
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Unk}}
|
* works Acer AOD150 and Acer AOD250 works [http://amigaworld.net/modules/newbb/viewtopic.php?topic_id=33755&forum=28#616910 Samsung NP-NC10], works Samsung NF210-A02] netbooks,
|-
| <!--Description-->ALC273
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| <!--Description-->ALC270
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC282
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x
| <!--Revision-->
| <!--Playback-->{{No|Version 6.17}}
| <!--Recording-->{{No|Version 6.17}}
| <!--Comments-->needs retest
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC660 ALC660-VD
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes| }}
| <!--Recording-->
| <!--Comments-->
* works asus F9s, F9e
* untested asus w7j, M51SN, A6Tc, A8Sr,
|-
| <!--Description-->ALC661-GR (2011)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| ALC662
| 0x1043
| 0x82a1
| 0x0
| <!--Playback-->{{Yes|Version 6.17 if QUERY added to top of hdaudio.config}}
| <!--Recording-->{{No|Version 6.17 not working for eee pc 900}}
|
* works Asus eee PC netbook 700/701/900, Atom 270 and 330 mobos, odd clicks (D410 NM10 PineTrail),
|-
| <!--Description-->[http://outpost.fr/rmaa/ALC663.htm ALC663]
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0861
| <!--Revision-->
| <!--Playback-->{{No|Version 6.13}}
| <!--Recording-->{{Unk}}
| <!--Comments-->not bad output like headphone amp part of the codec actually works well but messed up by undersized coupling capacitors to actually support such a low impedance
* not working Asus n50vn x71vn,
|-
| <!--Description-->ALC665
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC666
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC667
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC668
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC670
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->ALC880
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->some 915 and 925 chipset mobos
|-
| <!--Description-->ALC882M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| Realtek ALC883 ALC883-GR ALC883D-GR ALC883DTS-GR ALC883DD-GR codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe|some early versions work }}
| <!--Recording-->{{Unk| }}
| 2005 to 2007 HD Audio codec untested (Asus ),
|-
| Codec ALC885
| 0x10ec
| 0x0885
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
|-
| ALC888
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
|
|-
| ALC888s
* ALC888S-VD2-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}} MSI Wind U90/U100,
| <!--Recording-->{{Unk}}
| LQFP-48
|-
| ALC888b
| 0x8086
| 0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| untested (D510 NM10 Dual Core PineTrail mobo),
|-
| ALC888-VD
| 0x8086
| 0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| untested
|-
| ALC889A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes|works if QUERY added to the top of hdaudio.config in Prefs drawer/directory}}
| <!--Recording-->{{Unk}}
|
|-
| ALC889 Gr
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}} with crackles
| <!--Recording-->{{Unk}}
|
|-
| ALC889
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
| Tested with MSI H55 board
|-
| ALC887 ALC887-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
|
* working on ASUS P5KPL/EPU and Gigabyte GA-E350N-Win8 Rev1.0
|-
| ALC887-VD-CG
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0887
| <!--Revision-->0x100302
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}} Subsystem Id: 0x1458a002
|
|-
| ALC887-VD
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0887 0x1458
| <!--Revision-->0xa002
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{Unk}} index = 2
| ALC887 does not have any volume control ability on the mixer NIDs, so put the volume controls on the dac NIDs instead
* working with intermittent corrupting pop popping skipping stuttering sound issues MSI 760GM-P23 (FX),
* not working Gigabyte H61MA-D3V, AT3IONT-I Deluxe,
|-
| ALC887-VD2
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
| 3jacks
|-
| ALC887-VD2-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
|-
| ALC887-
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
|
|-
| ALC892-CG rev
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| 2011 48-pin LQFP Green package -
|-
| ALC892 ALC892-DTS-CG rev
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
| 2009 introduced
* works
* not working
* untested
|-
| ALC892 rev
| <!--Vendor ID-->0x0x10ec
| <!--Product ID-->0x0892
| <!--Revision-->0x100302
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| 2014
|-
| Realtek ALC886-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| LQFP-48
|-
| Codec ALC861 ALC861-VD
| 0x10ec
| <!--Product ID-->0x0663
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
|
* not working Toshiba Tecra A7
|-
| <!--Description-->ALC1200
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| ALC898
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
| not working
|-
| <!--Description-->ALC1500
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC3232 (aka ALC292)
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0292
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC3234 aka ALC255
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0255
| <!--Revision-->003
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC3287 aka ALC257
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes| }}
| <!--Recording-->{{no| }}
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->AD1882
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1883 HD Codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1884
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| Analog Devices SoundMAX AD1981
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| IBM Thinkpad T60,
|-
| AD1984 hp-m4 codec
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
* audio not working on Lenovo X61, Thinkpad T61,
|-
| AD1986
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
|
|-
| AD1988
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
|-
| <!--Description-->AD1988A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->Cirrus Logic CS4207
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->
| <!--Recording-->
|
|-
| <!--Description-->Cirrus Logic CS4208
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->
| <!--Recording-->
|
|-
| <!--Description-->Conexant CX20549 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe|very very very low volume}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested Fujitsu Amilo SI 1510 1520 no datasheet for the general public
|-
| <!--Description-->Conexant CX20549-12Z codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested HP 530
|-
| <!--Description-->Conexant CX20561 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* working lenovo x200s
* untested Lenovo Essential G555 Notebook, HP Pavilion dv6700,
|-
| <!--Description-->Conexant CX20582 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX2059x CX20590 CX20594-21Z codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX20585 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* working Lenovo Thinkpad T410,
|-
| <!--Description-->Conexant CX20672 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX20671 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX20751-21Z codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes| }}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| <!--Description-->Conexant CX11852 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX11880 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant after 2015 up to 2018 CX7501 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{no|no driver codec}}
| <!--Recording-->{{no|no driver codec}}
| <!--Comments-->Conexant bought by synaptics 2019
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->C-Media CMI9880 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->Gigabyte GA-8GPNXP
|-
| <!--Description-->Silicon Labs 3054
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| VIA 1708A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| untested,
|-
| VIA VT1708B
| <!--Vendor ID-->
| <!--Product ID-->
| 0x0010
| <!--Playback-->{{No|VIA PicoITX}}
| <!--Recording-->{{Unk}}
|
|-
| VIA 1708S
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
|
|-
| <!--Description-->VT2021 10ch
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->Gigabyte Z77MX-D3H, GA-H61M-S2H S2P,
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Creative CA0110-IBG
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->SigmaTel STAC 9220 9221 9223 8ch (7+1)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| <!--Comments-->ECS 945GCT/M-1333 (version 3.0),
|-
| IDT SigmaTec [http://explorer.cekli.com/articles/pdf/hd-audio STAC9227] /28/29/30 codec
| <!--Vendor ID-->0x8384
| <!--Product ID-->0x7626
| <!--Revision-->0x0002
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Unk}}
|
* works HP Compaq mini 110
* untested HP Pavilion HDX9000 CTO Notebook, Intel DG33TL mobo, Dell E520, Intel DP35DP mobo, Dell E6410 Laptop,
|-
| IDT (formerly SigmaTel) IDC STAC 9271/71D
| <!--Vendor ID-->0x8384
| <!--Product ID-->0x7626
| <!--Revision-->0x0002
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
|
|-
| <!--Description-->IDC STAC 9272 9273 9274
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->Intel D5400XS,
|-
| <!--Description-->IDT 92HD73C
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes}}
| <!--Recording-->
| <!--Comments-->headphones only Asus AT4NM10 mobo
|-
| <!--Description-->IDT 92HD75B
| <!--Vendor ID-->0x111d
| <!--Product ID-->0x7608
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* working [http://koti.kapsi.fi/jvaltane/aros/hdaudio/ HP Compaq Mini 700 Netbook - feedback required]
* untested HP Mini 5103 and 5102, HP Compaq 610, HP ProBook Laptop 4520s 4525s 6450b 6550b 6555b, HP EliteBook 2540p 2740p 8440p, Mobile Workstation 8540w 8740w, Pavilion NoteBook DV8,
|-
| <!--Description-->IDC 92HD81XX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC 92HD83XX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC STAC 92HD89XX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Wolfson (now Cirrus Logic) WM8850
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Wolfson WM8860
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->Intel High Definition Audio Revision 1.0. - 4-Channel DAC, 4-channel ADC. - DAC sampling
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
Using Prefs/AHI ensure you set the music unit and at least Units 0 (where most audio comes from) in top left drop down menu to HDaudio - HIFI in the section below. Set Units 1 or 2 to microphone or other outputs. Plus allow more than one channel for multiple audio streams and set frequency up to 44 kHz or higher on the right hand side of the ahi prefs. If sound beeps when you press the test button then all should be OK.
Output <- Codec <- Audio Controller (HDA) <-> Computer
codecs and exact hardware identifier. As mentioned above, HDA is only part of the work here, it gets the audio out of the main chipset in digital format (on a bus called I2S). This is not enough, there is another step needed which is routing that I2S signal to the output, converting it to actual audio, amplifying it, etc. This is handled by a separate chip called a "codec". Sometimes it is initialized by the BIOS, but this is not always the case.
Most audio drivers are made up of two parts a [http://www.kernel.org/doc/Documentation/sound/alsa/HD-Audio.txt Controller + a Codec]. The ProductID and VendorID are for the audio controller only - the important additional codec is '''NOT''' so easily identified.
Some newer versions of codecs are missing at the moment.
Things to try if sound not working
* try to connect something to the audio jack, maybe it is not playing on internal speakers or vice versa
* make sure you try and select all music units e.g. unit0, unit1....
* even if PCI ID's are in Prefs/Env-Archive/HDaudio.config, this doesn't mean it is working, it is the codec that matters
* it might be internally muted
<pre>
add debug=memory to grub boot line - continue booting with F10
Open a shell
Tools/Debug/Bifteck > RAM:audio.txt
</pre>
or
<pre>
Open a shell
Tools/Debug/Sashimi > RAM:audio.txt
Run ahi prefs
Click test tone button
Stop sashimi with Ctrl-C
</pre>
If the boot sound is enabled, you have to use Bifteck to capture AHI debug output. In the GRUB menu, press E on your selected entry, then add "debug=memory" to the options (alongside ATA=, vesa= etc.). Then F10 or Ctrl-X to boot. Once booted, run Tools/Debug/Bifteck again.
or
* try adding QUERYD to the start of ENVARC:hdaudio.config file (also known as Prefs/Env-Archive/) ie. on the first line
* '''OR''' try removing QUERY and QUERYD from the start of the hdaudio.config file
* Reboot
* open a shell
* type: sys:tools/debug/sashimi > ram:debug.txt
* open ahi prefs
* select one of the audio modes - HIFI or otherwise
* press the 'test sound' button
* press ctrl-c in the shell
* post the results to Aros-World
The HD Audio standard was designed to be hardware pinout interchangeable so that the sound support could change easily and quickly. HDA is a standard around particular chips. Each kind of chip has a certain number of DACs and pins, and even the same chip could be hooked up in different ways on different motherboards. The chips are programmable and the operating system can adjust how things are routed. Some pins aren’t even hooked up, so it makes no sense to route sound to them. Also some pins have sensors that can tell when something is plugged in, so that for example the speakers in a laptop can be muted when headphones are plugged in. Pins are also grouped, so for example all the outputs for a 5.1 sound system are grouped. Generally the HDA driver in the operating system is supposed to read the pin set up and figure out a reasonable way to set things up, and disconnected pins should be ignored, etc.
HDAudio standard has headphones on a separate DAC, and it's up to the driver.. it can even send different audio to the headphones without interrupting the main (green) outputs
====Envy24 series ====
A little history. VIA bought the ICE created Envy chipsets [http://www.via.com.tw/en/products/audio/controllers/comparison_controller.jsp VT1712] first. A few years later, they created several cheaper variants VT1724 (mixer missing), VT1721 (low end cut down), VT1720 (embedded on motherboard) and lastly the VT1723 (no support apart from Windows Envy24DT like SYBA SD-PEX63034).
There are PCI Express versions appearing.
The Envy24 is the base product that was originally designed by ICEnsemble, and it supports multi-channel hardware mixing, which is great for professional use. The HT version removes the hardware mixer (unimportant for non-professional uses). The [http://www.avsforum.com/t/364771/envy24ht-s-the-definitive-source HT-S] version is almost exactly the same as the HT, it just uses cheaper DACs. The PT version is exactly the same as the HT-S version, it is just the edition used for on-board audio on motherboards.
N.B. [http://www.soundonsound.com/sos/dec04/articles/pcnotes.htm PCI slot identification] and [http://hsi.web.cern.ch/HSI/s-link/devices/s32pci64/slottypes.html 3.3v PCI].
=====[http://www.opensound.com/readme/README.Envy24.html envy24.audio] - [http://www.anime.net/~goemon/alsa/ VT1712] =====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Playback
! Recording
! Comments
|-
| M-Audio Delta 66 - Rev B 1999
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested AK4524VF CS8404A-CS - needs Delta Series break out box with D-sub lead -
|-
| [http://ixbtlabs.com/articles/maudioaudiophile/index.html Audiophile 2496] Rev A 2000
| 0x14
| 0x
|
| <!--Playback-->{{unk| }}
| <!--Recording-->{{unk| }}
| works audio out on - I2S stereo codec AKM AK4528VF with the 24bit/96kHz DAC and ADC; CS8427 digital transceiver
|-
| [http://ixbtlabs.com/articles/maudioaudiophile/index.html Audiophile 2496] Rev B 2003
| 0x14
| 0x
|
| <!--Playback-->{{Yes }}
| <!--Recording-->
| works well - I2S stereo codec AKM AK4528VF with the 24bit/96kHz DAC and ADC; CS8427 digital transceiver
|-
| M-Audio Delta 410 - 2001 2001 REV-B
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested for D-A AK4529VQ converters with CS8427-CS 5532 1158B or Event Echo Gina 20-Bit Multitrack Interface Breakout Box -
|-
| M-Audio Delta 1010
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested AK5383 and AK4393 - 25 pin dsub -
|-
| M-Audio Delta 1010LT 1010E
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested for D-A AK4529 converters with 2 XLR Microphone inputs with pre amps
* be aware of redesign in 2007 - possible issues
|-
| M Audio Delta 44 - Rev A 2002 - Rev B 2003 - Rev D 2003
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested ICE1712G AK4524VF needs breakout box with 15 pin D-sub lead -
|-
| M-Audio Delta 66 Rev E 2006 - Omni Studio
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested needs break out box with 15 pin D-sub lead -
|-
| <!--Description-->M-Audio Delta DiO 2496
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| Terratec EWX24/96
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| [http://ixbtlabs.com/articles2/terratecdmx6fire/index.html TerraTec 6fire DMX 24/96]
| <!--Vendor ID-->0x1412
| <!--Product ID-->0x1712
| <!--Revision-->0x02
| <!--Playback-->{{No|tried line 1-2 3-4 5-6 7-8 }}
| <!--Recording-->{{No| }}
| untested - AKM and codec
|-
| <!--Description-->Terratec EWSA88MT
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| [http://lists.freebsd.org/pipermail/freebsd-multimedia/2007-March/006087.html Audiotrak Prodigy HD2] 24/96
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Audiotrak (ESI) Maya 1010 1010L
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| EMU 1212M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| EMU 1616M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| <!--Description-->Terratec EWS 88MT EWS 88D
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Hoontech Soundtrack DSP 24
Soundtrack DSP 24 Value
Soundtrack DSP 24 Media 7.1
Event Electronics EZ8
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Digigram VX442
Lionstracs
Mediastation
Terrasoniq TS 88
Roland/Edirol DA-2496
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
=====envy24ht.audio - VIA VT1724=====
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| ESI Juli@
| 0x3031
| 0x4553
| 0x0
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Yes}}
| reported working years ago [http://envy24.svobodno.com/ Envy24HT-S] - AKM 4358 DAC - AKM 4114/4112 DIT
|-
| ESI Juli@ Ego Igo rev K
| 0x3031
| 0x
| 0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| AK4358? DAC - AK4114 AK4112 DIT
|-
| [http://ixbtlabs.com/articles2/multimedia/m-audio-revolution51.html M-Audio Revolution 5.1]
| 0x1412
| 0x3631
| 0x0
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| reported working years ago but discontinued - (Envy24GT) - 3ch AKM 4358 DAC - ADC AKM 5365 -
|-
| [http://ixbtlabs.com/articles2/m-audio-revolution71/index.html M-Audio Revolution 7.1] 24/192
| 0x1412
| 0x3630 0x1724
| 0x0
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| not working - illegal semaphore - 6ch ADC AKM AK4355 24-bit 192 kHz - 2ch DAC AKM AK4381 24-bit 192 kHz - ADC AKM AK5380
|-
| Terratec Aureon Sky 5.1
| 0x153b
| 0x1147
| 0x
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - discontinued
|-
| [http://ixbtlabs.com/articles2/terratec-aureon71/index.html Terratec Aureon Space 7.1]
| 0x153b
| 0x1145
| 0x0
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - Wolfson WM8770 DAC, AC'97 codec SigmaTel STAC9744
|-
| Terratec Aureon Universe 7.1
| 0x153b
| 0x1153 (rev x) 0x1724 (rev3)
| 0x0
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| not working - semaphore error on rev 3 - DAC ADC
|-
| Terratec Phase 22
| 0x153b
| 0x1150
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - Envy24HT-S - AK4524
|-
| Terratec Phase 28
| 0x153b
| 0x1149
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - Envy24HT-S - AK4524
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Playback
| Recording
| Revision
| Comments
|-
| Audiotrak (ESI) Prodigy 7.1
| 0x4933
| 0x4553
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - Wolfson WM8770 and AC'97 SigmaTel STAC9744 codec
|-
| Audiotrak (ESI) Prodigy 7.1 LT
| 0x3132
| 0x4154
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver -
|-
| [http://ixbtlabs.com/articles2/sound/audiotrak-prodigy192.html Audiotrak (ESI) Prodigy 192] 24/96
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - STAC9460S codec
|-
| <!--Description-->Echo Layla 24/96
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
| [http://www.bit-tech.net/custompc/labs/80752/hercules-gamesurround-fortissimo-4.html Hercules Gamesurround Fortissimo 4]
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - Wolfson WM8776 Codec and WM8766 DAC
|-
| [http://ixbtlabs.com/articles2/multimedia/m-audio-audiophile192.html M-Audio Audiophile Delta AP 192k]
| 0x1412
| 0x3632
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - Stereo ADC AKM AK5385A 24-bit 192 kHZ - 8-channel DAC AKM AK4358 24-bit 192 kHz - AKM 4114/4112 DIT
|-
| ONKYO SE-150PCI
| 0x160b
| 0x0001
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver
|-
| <!--Description-->ESI Waveterminal 192x
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
| <!--Description-->Quartet
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments--> - AKM 4114/4112 DIT
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
|}
====hdmiaudio.audio - hdmi no support====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->ATI R6xx HDMI Audio codec support output
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x9840
| <!--Revision-->
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->Not detected
|-
| <!--Description-->NVidia HDMI
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Intel Series 6 CougarPoint HDMI codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Intel HDMI
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|}
[[#top|...to the top]]
===Graphic GFX Chipsets===
[https://gallium.readthedocs.io/en/latest/systems.html PCIe based] graphic chipset is defacto on 64bit AROS and recommended on 32bit.
AGP works on 32bit but faster transfers through the AGP slot are only available on a few supported motherboard chipsets
* Faster AGP Working = SIS 650 board, Intel 865pe AGP slot on MSI 6788-050,
* Not Supported = NForce2 chipsets, most Intel 815/820 chipsets, VIA chipsets, ALi chipsets,
The fallback for all graphics modes is vesa if any native support does not work. There is a choice of very low resolution vga as the last resort
2D tests performed with [http://download.aros3d.org/software/gfxbench.zip gfxbench] in the shell type gfxbench > out.txt (40 seconds blank screen is part of the test), via FreeDoom via limit-removing engine like odamex, chocolate or vanilla doom -timedemo demo1 or doom2 -timedemo demo1, doom.exe -iwad doom2 -file mymap.wad, Duke DNRATE 640x480 windowed
3D tests performed with Demos/Mesa/ , Cube 1080p, Cube 2 windowed not fullscreen 1920 x 1025, Quake3 ~ cl_drawFPS 1, Xonotic , [http://shinh.skr.jp/sdlbench/showtestgl.cgi test gl],
HDMI, DVI and DisplayPort monitors have a native resolution of 480p, 720p, 1080i, 1080p and up
<pre>
HDMI (licensing fee)
1.2 720p res.
1.3 1080 resolution
1.4 4K @ 30Hz
2.0 4K @ 60Hz
2.1 48Gbs for 4K @ 120Hz, 8K @ , VRR, etc
2.2 ultra96
</pre>
<pre>
DisplayPort (VESA introduced)
1.4 4K @ 60Hz
2.1 96Gbs for 4K @ 240Hz, 8K @ 120Hz. MST daisy chain multiple monitors,
</pre>
<pre>
GPMI chinese standard
2.0
</pre>
Might be supported on AROS
*OpenGL4 GPU must have 64-bit floating point FP64 math support, which is a hard requirement for GL 4.0. The max last revision opengl 4.6 (2017) on [https://wiki.gentoo.org/wiki/AMDGPU AMDGPU] RX 5000's / 6000s ([https://forum.batocera.org/d/7491-enable-opengl-46-and-vulkan-for-an-old-radeon-video-card RDNA] and Nvidia RTX might come to AROS) but Intel UHD, Iris Plus or Xe or Arc (will not unless a developer wants the challenge)
*OpenGL3 last revision 3.3 (2011)
Already supported on AROS
*OpenGL2 nvidia-nouveau,
*OpenGL1 intel gma950,
====vga.hidd====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Comments
|-
|
| 0x
| 0x
| 0x0
| Generic VGA Driver, limited to 640x480 in 16 colours - no 3D support
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Comments-->
|-
|}
====vesa.hidd====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Comments
|-
|
| 0x
| 0x
| 0x0
| 2D support for VBE1, VBE2 and VBE3 (most cards) - various resolutions and 24bit colour - no 3D support
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Comments-->
|-
|}
[[#top|...to the top]]
====[[w:en:Intel GMA|Intel GMA]]====
DVI output is not supported at the moment.
If having problems:
* Ensure the latest version is being used.
* Set GMA_MEM to 128 or 256 to test
* Try the FORCEGMA ToolType for 2D, and try the FORCEGALLIUM ToolType for 3D acceleration after 2D is verified to work. ToolTypes should be applied to the Devs/Monitors/IntelGMA monitor icon.
If still having problems:
* At GRUB boot screen edit boot line and add option: debug=memory
* Boot.
* Use shell command: tools/debug/bifteck > RAM:debug.txt
* And post [GMA MONITOR DETECTION] and other related debug lines
{| class="wikitable sortable" width="90%"
! width="5%" |Description
! width="5%" |Vendor ID
! width="5%" |Product ID
! width="3%" |Rev
! width="5%" |2D
! width="5%" |3D
! width="5%" |Analog Output
! width="5%" |Digital Output
! width="5%" |Laptop LCD
! width="30%" |Comments
|-
| 910GL 82910GL GMCH + ICH6
| 0x8086
| 0x2582 0x2592
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| 910GML 82910 GML GMCH + ICH6 Mobile
| 0x8086
| 0x2582 0x2592
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| may need to add forceGMA to grub boot line to work
|-
| 915G 82915G GMCH + ICH6-M
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
|
|-
| 915GL 82915GL GMCH
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
|
|-
| 915GV 82915GV GMCH
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Yes|}}
| <!--3D-->{{No|}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{N/A}}
| HP DC5100 small form factor
|-
| 915GM GMA900
| 0x8086
| 0x
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| tunnel gearbox }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes}}
| asus eee pc 900
|-
| 915GMS
| 0x8086
| 0x
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| tunnel }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes| }}
|
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| [http://www.notebookcheck.net/Intel-Graphics-Media-Accelerator-950.2177.0.html 945GU] - 133 MHz (Lake port for Intel A100 and A110)
| 0x8086
| 0x2772
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| Fujitsu LifeBook U1010,
|-
| 945GMS - 166 MHz / 250 MHz (1.05V)
| 0x8086
| 0x27a2
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes}}
| Dell D430
|-
| 945GSE - 166 MHz (for Atom)
| 0x8086
| 0x27ae
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Yes|[http://www.x.org/wiki/GalliumStatus]}}
| {{Yes}}
| {{No|dvi port}}
| {{Yes| }}
| for atom motherboards and most 2008/2009 netbooks
* 3D Works - AOA110 AOA150, Dell Mini 9, Samsung NC10, Toshiba NB100,
|-
| 945G 82945G GMCH + ICH7
| 0x8086
| 0x27a6
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| untested 2D and 3D
|-
| 945GC 82945GC MCH
| 0x8086
| 0x27a6
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| untested 2D and 3D
|-
| 945PM
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| Dell D420, Compaq nc6400,
|-
| 945GMS - 250 MHz Calistoga
| 0x8086
| 0x
| 0x0
| <!--2D--> {{Yes}}
| <!--3D--> {{Yes|most models}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes}}
|
* 3D Works Dell Latitude 2100, HP Compaq nc6320, Lenovo 3000, Lenovo T60, Samsung Q35, Dell D620, Dell D820,
* 3D untested Toshiba Satellite L100-120, Toshiba Portege M400,
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
|
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GMA 3100 G31
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works 2D but no 3D
|-
| GMA 3100 G33
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works 2D but no 3D
|-
| [http://en.wikipedia.org/wiki/Intel_GMA GMA 3150] netbooks and nettops
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works 2D but no 3D. no vga, dvi or hdmi output for nettops
|-
| <!--Description--> G965
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments-->
|-
| <!--Description--> Q965
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x2992
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{No}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments--> Only tested with VGA output.
|-
| 965GM X3100 (500 MHz)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| some support 2D but no hardware 3D - could not get it to work with VGA or dvi output
* untested Apple MacBook Air, Lenovo Thinkpad X300, Dell Inspiron 1525, Toshiba M9,
|-
| 960GM X3100 (400 MHz)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
|
|-
| 965M X3100 (400 MHz)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| Dell D830,
|-
| 965PM ??
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| Toshiba A9 works with limited 2D acceleration but no hardware 3D
|-
| GL965
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works with limited 2D acceleration but no hardware 3D
|-
| GM965
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works with limited 2D acceleration but no hardware 3D
|-
| GMA X3500 G35
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->X4500M G41 G43 G45 (400Mhz) Mobile 4 Series
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x2a42 0x2a43
| <!--Revision-->0x07
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue--> {{No|}}
| <!--Digital--> {{No|}}
| <!--Laptop LCD--> {{Yes| VESA}}
| <!--Comments-->works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->GMA 4500M HD (533 MHz)
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments-->works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->GMA 4700M HD (640MHZ)
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x2a42
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments-->works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
====[http://nouveau.freedesktop.org/wiki/FeatureMatrix nouveau].hidd (nvidia pci, agp, pci-e desktop)====
PCIe based nvidia graphics (gfx 8xxx) are the base level for 64bit AROS but earlier models still has some support on 32bit AROS
*Desktop, more likely hit rather than miss on early nvidia on Aros 32bit but on Aros 64bit ...
*Laptop, limited support for '''very''' early non-optimus (i.e. just Nvidia gfx only so no Intel and nvidia gfx combinations on 32bit but on 64bit ...)
Please note that the nouveau project is reverse engineering a nvidia graphics driver but takes time because of [https://nouveau.freedesktop.org/ nVidia's closed firmwares], etc
* 2026-06 - DEVS Nouveau.hidd Gallium.hidd Softpipe - LIBS Gallium GLU 20.0 Mesa OpenCL
* 2011-10 - DEVS 6.11 Nouveau.hidd 7.4 Gallium.hidd 9.4 Softpipe - LIBS 2.3 Gallium 1.3 GLU 19.0 Mesa OpenCL 1.x
* 2011-04 - DEVS 5.31 Nouveau.hidd 7.3 Gallium.hidd 9.3 Softpipe - LIBS 2.2 Gallium 1.1 GLU 18.0 Mesa OpenCL n/a
Nouveau support for AROS is limited to OpenGL 2.1 compliance on 32bit even for modern GL4 capable GPUs but on 64bit ...
On Aros 32bit OpenCL supports the NV50 (8000 9000) cards, less support in NVC0 fermi cards (300 upwards)
On Aros 64bit
ADoom3 graphic details ultra, benchmark while playing press the "`" key and type "Timedemo demo1" in the console
{| class="wikitable sortable" width="90%"
! width="5%" | Graphic Card
! width="5%" | Aros 32bit 1024 x 768
! width="5%" | Aros 32bit 800 x 600
! width="5%" | Aros 32bit 640 x 480
! width="5%" | Aros 64bit 1024 x 768
! width="5%" | Aros 64bit 800 x 600
! width="5%" | Aros 64bit 640 x 480
|-
| NV50 Asus EN8400GS SILENT/P/512M PCIe (G98) || || || || || ||
|-
| Gigabyte 8500GT 256M || 42,6 || 57,2 || 68,6 || || ||
|-
| NV96 (G96) Geforce 9500GT 512M || 43 || 53 || 57 || || ||
|-
| NV96 (G96) 9600GT || || || || || ||
|-
| NVA3 (GT215) GT240 || || || || || ||
|-
| NVA5 (GT216) Palit GT220 Sonic 512M || 39,7 || 55,8 || 63,7 || || ||
|-
| NVA8 (GT218) gt210 || || || || || ||
|-
| NVA8 (GT218) ION2 || || || || || ||
|-
| NVC3 (GF106) GT440 GTS 450 || || || || || ||
|-
| NVCF (GF116) NVC0 Fermi GTX 550Ti or GTS 450 v2 || || || || || ||
|-
| NVC8 (GF110) 580GTX || N/A || N/A || N/A || || ||
|-
| NVE0 Kepler GT630 || N/A || N/A || N/A || || ||
|-
| NVE6 (GK106) Kepler GTX660 || N/A || N/A || N/A || || ||
|-
| NVE7 (GK107) GTX 650 || N/A || N/A || N/A || || ||
|-
| NV110 Maxwell GTX 750 || N/A || N/A || N/A || || ||
|-
| NV126 (GM206) GTX950 upwards no reclocking || N/A || N/A || N/A || poor || poor || poor
|-
| NV160 family (Turing) GTX 1650 and RTX 2000 upwards with GSP firmware || N/A || N/A || N/A || unknown || unknown || unknown
|-
| HostGL Ryzen 5 4600H - Nvidia 1650 - Linux mint 21.1 || N/A || N/A || N/A || 150fps || 154fps || 155fps
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| width="5%" | Graphic Card
| width="5%" | Aros 32bit 1024 x 768
| width="5%" | Aros 32bit 800 x 600
| width="5%" | Aros 32bit 640 x 480
| width="5%" | Aros 64bit 1024 x 768
| width="5%" | Aros 64bit 800 x 600
| width="5%" | Aros 64bit 640 x 480
|}
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|-
| <!--Description-->tnt1 (nv04) tnt2 (nv05) m64 value (1998)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|very slow}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| NV04 Riva TNT TNT2 Fahrenheit freezes on via motherboard chipset so rename agp.hidd in SYS:Devs/Drivers or Monitors
|-
| <!--Description-->tnt vanta lt (nv06) 1998 /9
| 0x10de
| 0x002c
| 0x15
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|slow}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| <!--Description-->Geforce 256 (nv10) (2000)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|slow }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| untested Geforce256
|-
| <!--Description-->Geforce 2 Geforce 3 Geforce 4 (nv20) 2000 / 2
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|slow }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| works for some PCI and AGP Geforce2 Geforce3 Geforce4
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| Geforce FX5200 nv34 (2003)
| 0x10DE
| 0x0322 0x
| 0xA1
| <!--2D-->{{Maybe| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->{{Maybe|VGA15 }}
| <!--Digital-->{{Maybe|DVI}}
| <!--Laptop LCD-->{{N/A}}
| NV30 GeForce 5 FX Rankine Hardware OpenGL 1.5 - slower than GF MX 4000 for 2D - max 1024 x768
* not working [https://eab.abime.net/showthread.php?t=92328&page=8 mobos with VIA chipsets 2018]
* working (MSI 0x9174) the previous nouveau 5.x driver
* Others work with 6.x series XFX PV-T34K-NA, ASUS V9520-X/TD
|-
| Geforce FX5500 (nv34) (2003)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{Maybe| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| works
|-
| Geforce 5100 (NV34)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce FX 5200LE (NV34)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5200 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce FX5600 (nv31) (2004)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Maybe| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| works
|-
| GeForce FX 5600 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5600SE
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5600XT
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce FX5700 (nv36) (2004)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes|some}}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{Maybe| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5700VE
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5700 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5700LE
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5800 (NV30)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5800 Ultra (NV30)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900 (NV35)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900XT
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900ZT
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5950 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce 5xxx
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
|
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| Geforce 6200 (nv44) (2005)
| 0x
| 0x00F3 0x014F
| 0x0
| <!--2D-->{{Yes|5.28 Pixel Text}}
| <!--3D-->{{Maybe| use 5.28}}
| <!--Analogue-->{{Yes|VGA15 and s-video - plain 4pin cable lead will work with 7pin}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| NV40 GeForce 6 GeForce 7 Curie AGP Hardware OpenGL 2.1 needing previous 5.x version as regression arose 2011-10
|-
| Geforce 6200 (nv44a) (2006)
| 0x
| 0x0221
| 0x0
| <!--2D-->{{Yes|5.28 Pixel Text }}
| <!--3D-->{{Yes|}}
| <!--Analogue-->{{Yes|VGA15}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| Hardware OpenGL 2.1, PCI version tested OK in 2014-01-02 - Icaros 1.5.2
* not working
*working
|-
| GeForce 6200 with Turbo Cache (NV43)
| 0x
| 0x0161
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce 6200SE with Turbo Cache (NV44)
| 0x
| 0x0162
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce 6200 LE
| 0x10de
| 0x0163
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| PCI-E
|-
| GeForce 6600 LE
| 0x
| 0x00F4 0x0142
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6600
| 0x
| 0x00F2 0x0141
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| 2006 PureVideo HD 1 or VP1 re-used the MPEG-1/MPEG-2 decoding pipeline from FX
|-
| Geforce 6600gt (nv4x) (2005)
| 0x
| 0x00F1 0x0140
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Yes| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| OpenGL tests -
|-
| Geforce 6800 (nv40) (2005)
| 0x
| 0x0041 0x00C1 0x00F0 0x0211
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Yes| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 XE (NV4x)
| 0x
| 0x0043
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 LE
| 0x
| 0x0042 0x00C2 0x0212
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 GT (quadro fx 1400)
| 0x
| 0x0045 0x0046 0x0215
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 6800 GS
| 0x
| 0x0047 0x00C0 0x00F6
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 GTS NV40
| 0x
| 0x0040 0x0F9
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 6800XT
| 0x
| 0x0044 0x0048 0x00C3 0x0218
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6600 VE
| 0x
| 0x0143
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6500 NV44
| 0x
| 0x0160
| 0x0
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6250
| 0x
| 0x0169
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 6xxx
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GeForce 7800 GTX
| 0x
| 0x0090 0x0091
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| tunnel gearbox cube cube2 25}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> 256MB DDR3 - 1 6pin psu connector -
* not working asus en7800gtx/2dhtv/256m/osp/a -
* Works XFX PV-T70F-UDD7 Works in steve jones' scrap pc aros build 2010 2 DVI-I ports
* Untested
|-
| GeForce 7800 GT
| 0x
| 0x0092
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7600gt (G8 ) (nv4 ) (2006)
| 0x
| 0x02E0 0x0391
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL 2.1
* not working
* working
|-
| GeForce 7800 SLI
| 0x
| 0x0095
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GTX
| 0x
| 0x0290
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GT GTO
| 0x
| 0x0291
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GS
| 0x10de
| 0x0292
| 0x0a1
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working
* Works with a few glitches with XFX Pine 0x2218
|-
| GeForce 7950 GX2
| 0x10de
| 0x0293 0x0294
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| GeForce 7950 GT
| 0x
| 0x0295 0x02E4
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GS
| 0x
| 0x02E3
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7600 GS
| 0x
| 0x02E1 0x0392
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7650 GS
| 0x
| 0x0390
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7600 LE
| 0x
| 0x0394
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7800GS (G8 ) (nv4 ) (2006)
| 0x
| 0x0093 0x00F5
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working
* works if AGP motherboard chipset is supported - Hardware OpenGL 2.1
|-
| GeForce 7100 GS
| 0x
| 0x016A
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7350 LE
| 0x
| 0x01D0
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7300le (G8 ) (nv4 ) (2006)
| 0x
| 0x01D1
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7300SE 7200GSGF-7200GS-N-B1 variant (G72)
| 0x10de
| 0x01D3
| 0x0a1
| <!--2D-->
| <!--3D-->
| <!--Analogue-->{{Unk|1x DVI, 1x VGA, 1x S-Video}}
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2007 40W pci-e 1.0 VP1 no unified shaders -
* not working Asus on via chipset (2015),
* works Asus on intel chipset (2015),
|-
| Geforce 7300gt (G8 ) (nv4 ) (2006)
| 0x
| 0x0395 0x0393
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working
* works
|-
| GeForce 7300 GS
| 0x
| 0x01DF
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7500 LE
| 0x
| 0x01DD
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7xxx
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GeForce 8800 Ultra (NV50 family)
| 0x
| 0x0194
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NV50 GeForce 8 to GeForce 200s opengl 3.x - max res - 80nm technology - PureVideo HD 2 or VP2 Nvidia VDPAU Feature Set A (absent from ultra and some 8800gt?) added a dedicated bitstream processor (BSP) and enhanced video processor for H.264, VC-1 acceleration
|-
| Geforce 8800gts (nv50) (G8x) (2007)
| 0x
| 0x0400 0x0600 0x0193
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2007 200w openGL3 openCL - 2x6pin psu
* not working 0x0193 models (2015) on via chipsets,
* works
|-
| Geforce 8800gtx (nv5 ) (G8x) (2007)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2008 200W 1x 6pin connector,
* not working
* working
* untested XFX PV-T88P-YDF4, Alpha Dog Edition runs extremely hot - Gigabyte GV-NX88T512H,
|-
| GeForce 8800 GT
| 0x
| 0x0602 0x0611 0x0193
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->DVI up to 2500 x 1600
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - 6pin psu power connector required
* not working
* untested Asus EN8800GT/HTDP/256M EN8800GT/HTDP/512M EN8800GT/G/HTDP/512M
* works
|-
| GeForce 8800 GT (G92)
| 0x10de
| 0x0611
| 0x0a2
| <!--2D-->{{Yes|6.11 Pixel Text}}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{N/A}}
| <!--Digital-->{{Yes}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3 pci-e 2.0 8800GT 512MB on Icaros 2.0.3 [[File:8800GT aros heads.png|thumb|8800GT]] [[File:8800GT aros tails.png|thumb|8800GT detail]]
|-
| Geforce 8600gt (nv5 ) (G8x) (2007)
| 0x
| 0x0401 0x0402
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res
* not working
* works
|-
| GeForce 8500 GT
| 0x
| 0x0421
| 0x0
| <!--2D-->{{Yes| some color }}
| <!--3D-->{{yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL tests - max opengl 3.x but 2.1 offered - max res
* not working
* works Gigabyte 8500 GT,
|-
| GeForce 8800 GS
| 0x
| 0x0606 0x060D
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res
|-
| GeForce 8600GS
| 0x
| 0x0403
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 3.x VP3 offers complete hardware-decoding for all 3 video codecs of the Blu-ray Disc format: MPEG-2, VC-1, and H.264 - Nvidia VDPAU Feature Set B
|-
| GeForce 8300 GS
| 0x
| 0x0423
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res
|-
| Geforce 8400gs G98GS (end 2007) GT218 (2009)
* Rev2 with 8/16 cores and 128-512MB of DDR2 or GDDR3 memory.
* Rev3 with 8 cores and 512MB-1GB of DDR3 memory (based on Tesla 2.0)
| 0x
| 0x0424 0x0422
| 0x0
| <!--2D-->{{Yes|Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 490 gearbox 505 Cube 135 Cube2 55 quake3 }}
| <!--Analogue-->{{Yes|works digital part of DVI but nothing from any display port}}
| <!--Digital-->{{Yes|output on digital 24 pin array of DDWG's DVI and hdmi}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 50W openGL 3.1 openCL - case single slot - one single-link DVI digital output, supporting up to one 1920x1080 resolution display - analog resolution 640 x 480 to 1024 x 768 16 and 24 bit color - [http://www.phoronix.com/scan.php?page=article&item=nouveau_comp_2011&num=19 runs a little hotter than expected] - G98 VP3 pci-e 2.0 512MB DDR2 -
* not working
* works Asus EN8400GS SILENT/P/512M PCIe (G98),
|-
| Geforce 8400gs (nv50) (G86) (mid-2007)
* Rev1 with 16 cores / 256MB of DDR2 memory.
| 0x
| 0x0404
| 0x0
| <!--2D-->{{Yes|Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 490 gearbox 505 Cube 135 Cube2 55 quake3 }}
| <!--Analogue-->{{Yes|works but not tested thru 4 pins of analog signal of DVI plug}}
| <!--Digital-->{{Yes|output on digital 24 pin array of DDWG's DVI and hdmi}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2008 50W openGL 3.1 openCL - case single slot - one single-link DVI digital output up to 1920x1080 resolution display - analog resolution 640 x 480 to 1024 x 768 16 and 24 bit color - [http://www.phoronix.com/scan.php?page=article&item=nouveau_comp_2011&num=19 runs a little hotter than expected] - G86 VP2 128MB -
* not working XFX PV-T86S-YAJG NVIDIA GeForce 8400 GS 512MB DDR2, Sparkle 8400GS 512MB SX84GS512D2L-DPP,
* works Asus EN8400GS SILENT/HTP/256M SILENT/HTP/512M/A,
|-
| GeForce 8400 SE
| 0x
| 0x0420
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 2.x openCL
|-
| NVidia Quadro NVS290 DMS-59
| 0x
| 0x0403
| 0x0
| <!--2D-->{{no| }}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk|DMS-59 socket}}
| <!--Digital-->{{unk|DMS-59 }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2008 21W - G86S (G86-827-A2) - 16 shading units, 8 texture mapping units, and 4 ROPs. NVIDIA has paired 256 MB DDR2 - PCIe 1.0 x16 Low Profile -
|-
| Geforce Quadro FX 4600 (SDI), 5600
| 0x
| 0x
| 0x0
| <!--2D-->{{Partial|VESA 2d}}
| <!--3D-->{{no| }}
| <!--Analogue-->{{partial| }}
| <!--Digital-->{{partial| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GeForce 9800 GX2 (NV50 family)
| 0x
| 0x0604
| 0x0
| <!--2D-->{{Partial|VESA }}
| <!--3D-->{{no| }}
| <!--Analogue-->{{Partial| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 150w - 65nm technology
|-
| GeForce 9800 GTX
| 0x10de
| 0x0612
| 0x0a2
| <!--2D-->{{Yes| }}
| <!--3D-->{{Maybe|6.11 }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 2x6pin psu -
* not working xfx on via chipset (2015),
* works xfx on chipset intel ,
|-
| GeForce 9800 GTX+
| 0x10de
| 0x0613
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res 2560 x 1920 - case dual slot - 26amp 12v rail on computer psu if 2x6pin connectors needed - 55nm version of the G92 chip - will not work with PCI-e 1.0a slots -
* not working
* works on a few models
|-
| Geforce 9800gt (nv50) (G92a) (2008)
| 0x10de
| 0x0614
| 0x0xa2
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel 495 gearbox 513 Cube 156 Cube2 120 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{partial| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL 3.1 openCL 1.x - case dual slot - 600w 26amp on both 12v rails for 2x6pin psu on gfx card - no fan control - some come with 1x6pin - renamed version of the venerable GeForce 8800 GT - randomly works
* not working Gainward 512M untested
* working Gainward CardExpert (0x0401) Green Edition NE39800TFHD02-PM8D92 1024MB (no 6pin)
|-
| Geforce gf9600 9600gt (nv5 ) (G9x) (2008)
| 0x10de
| 0x0622
| 0x0a1
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel 493 gearbox 675 Cube Cube2 100 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL 3.2 openCL but no fan control - case dual slot - 1 6pin pcie psu connector - 500 Watt or greater power supply with a minimum of 26 Amp on the +12 volt rail - Max Analog: 2048x1536 and Max Digital: 2560x1600 (Dual Link DVI Only) - PCI Express® 2.0 / 1.1 Support - g96 gpu randomly works -
* not working bfg tech ocx,
* works gigabyte gv-n96tsl-512i -
|-
| Geforce gf9500 9500gt (nv5 ) (G9x) (2008)
| 0x10de
| 0x0640
| 0x0a1
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel 480 gearbox 500 Cube Cube2 64 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.2 - case single slot - 350 Watt/400 Watt or greater power supply with a minimum of 18 Amp/22 Amp on the +12 volt rail - Max Analog: 2048x1536 and Max Digital: 2560x1600 (Dual Link DVI Only) - PCI Express® 2.0 / 1.1 Support -
* not working zotac zone fanless, Gainward USA NE29500THHD01-PM8796, PNY G9500GN2E50X+0TE,
* works xfx xne-9500t-td01-pm8596 1024mb ddr2,
|-
| GeForce 9600 GS
| 0x
| 0x0623
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res - will not work with PCI-e 1.0a slots -
* not working
* works
|-
| GeForce 9600 GSO
| 0x
| 0x0610
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res - G92 chopped down - 9600GSO is re-badged 8800GS both very power hungry cards -
|-
| GeForce 9300 GS
| 0x
| 0x06E1
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 opengl 3.x - max res
|-
| Geforce 9400 GT (nv5 ) (G86S) (2008)
| 0x
| 0x
| 0x0
| <!--2D-->{{partial|}}
| <!--3D-->{{unk|}}
| <!--Analogue-->{{unk|1x DVI, 1x VGA, 1x S-Video}}
| <!--Digital-->{{unk|1x DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 50W opengl 3.x - max res
|-
| Geforce 9xxx (nv5 ) (G9x) (2008)
| 0x
| 0x
| 0x0
| <!--2D-->{{unk|}}
| <!--3D-->{{unk|}}
| <!--Analogue-->{{unk|}}
| <!--Digital-->{{unk|}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 opengl 3.x - max res
|-
| <!--Description-->Quadro FX 580 G96 chipset
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2009
|-
| <!--Description-->
NV84 (G84) GeForce 8600 (GT, GTS, M GT, M GS), 8700M GT,
NV92 (G92) GeForce 8800 (GT, GS, GTS 512, M GTS, M GTX)
GeForce 9600 GSO, 9800 (GT, GTX, GTX+, GX2, M GT, M GTX)
NV96 (G96) GeForce 9400 GT, 9500 (GT, M G), 9600 (M GS, M GT),
NV86 (G86) GeForce 8300 GS, 8400 (GS, M G, M GS, M GT), 8500 GT
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NVA0 (GT200) Tesla GeForce GTX (260, 275, 280, 285, 295)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->GeForce GTX 280 (NV50 family)
| <!--Vendor ID-->
| <!--Product ID-->0x05E1
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res PureVideo HD 4 (Nvidia Feature Set C or "VDPAU Feature Set C), VP4 added hardware to offload MPEG-4 Advanced Simple Profile (original DivX and Xvid)
|-
| <!--Description-->GeForce GTX 260
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x05E2
| <!--Revision-->
| <!--2D-->{{partial|Vesa}}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> 2 6pin - psu pci express 2.1 -
|-
| Geforce GTS250 250GTS (g92b) (2009)
| 0x10de
| 0x0615
| 0x0a2
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 486 gearbox 508-642 Cube Cube2 80 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> 2x6pin psu VP2 - pci-e 2.x - case dual slots - 738m 1gb ddr3 -
* not working Zotac branded version GDDR3 -
* works PNY gs-250x-zdfl and Gigabyte ??, BFG Tech RGTS2501024OCE, palit ne3ts250fhd52-pm8a92 with 2x6pin on top and hdmi output port,
|-
| <!--Description-->GeForce GT 240 (GT215 family)
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0ca3
| <!--Revision-->0xa2
| <!--2D-->{{Maybe|use VESA}}
| <!--3D-->{{No|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->late 2009 openGl 3.2 - case dual slots - no 6pin psu required with VP4 - All are pcie 2.1 cards and may not work in 1.0a slots -
* not working
* DDR3 with 512MB or 1GB -
* DDR5 -Asus ENGT240 - XFX Pine GT240XYHFC 0x3001 - Gigabyte GV-N240D5-512I rev 1.0 - Zotac AMP! with HDMI 1.3a with DisplayPort 1.1, Dual Link DVI -
* works
|-
| <!--Description-->GT220 (GT216) G220
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0a20
| <!--Revision-->0xa2
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Yes}}
| <!--Digital-->{{Yes|DVI }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> Icaros 2.0.3 GeForce GT220 1GB[[File:GT220 aros heads.png|thumb|GT220]][[File:GT220 aros tails.png|thumb|GT220]]
* untested NVIDIA Quadro® 400 512MB DDR3 GT216 DP DVI, AFox AF220 1Gb DDR3,
|-
| Geforce GT220 220GT G94 Tesla (g92b)
| 0x10de
| 0x0a20
| 0xa2
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 490 gearbox 505 cube 150 cube2 50 Quake3 }}
| <!--Analogue-->{{Unk|1x DVI, 1x VGA}}
| <!--Digital-->{{Yes|DVI but not 1x HDMI }}
| <!--Laptop LCD-->{{N/A}}
| 58W pci express 2.0 cards DDR3 - case single slot -
* not working ASUS ENGT220/DI/1GD2(LP)/V2 -
* works - gainward card expert 0x0401 GDDr3 512MB -
|-
| <!--Description-->GT210 GT 210 210GT G210 based on Tesla 2.0 GT218S GT218-300-A2 variant, GT218-300-B1
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0a65
| <!--Revision-->0xa2
| <!--2D-->{{Yes|6.11 Pixel Text}}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{Unk|1x DVI, 1x VGA}}
| <!--Digital-->{{Maybe|DVI out works but not hdmi or 1x DisplayPort}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 31W OpenGL 3.3 pci-e 2.0 cards - single slot -
* working GT218 based Asus EN210 based silent low profile large passively cooled -
* untested MSI GeForce 210 1GB DDR3 PCIe N210-MD1GD3H/LP,
* not working
|-
| <!--Description-->Nvidia ION2 (GT218) Tesla
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2012
|-
| <!--Description-->Quadro NVS 295 (256 MB GDDR3), NVS 450 (256M/512 MB DDR3)
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x
| <!--Revision-->
| <!--2D-->{{yes| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->
| <!--Digital-->{{partial|2 or 4 dp ports}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 25w low performance - G98s with 8 shading units, 4 texture mapping units, and 4 ROPs on PCI-Express 1.0 x16 -
*not working some NVIDIA Quadro NVS 295 2 dp ports (DELL, HP),
*working
|-
| <!--Description-->GT310 Tesla 310, 315, GT 320, GT 330 GT 340
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{Maybe|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2010 50w OpenGL 3.3 openCL all similar in performance to GT2xx except gt31x (poor)
|-
| <!--Description-->Quadro NVS310 NVIDIA NVS 310
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital--> 2 dp
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 25w GF119S (GF119-825-A1) 48 shading units, 8 texture mapping units, and 4 ROPs on PCI-Express 2.0 x16 - 512 MB DDR3 - PureVideo VP5 VDPAU Feature Set D -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description--> GTX 470, GTX 480 GF10 GF10* core (NVC0 family)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{Maybe| tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2010 215w 2x6 plugs - NVC0 family (Fermi) GF100 (GF100-275-A3) Fermi 448 shading units, 56 texture mapping units, and 40 ROPs with 1,280 MB GDDR5 - OpenGL4.5 OpenCL1.1 Tessellation - case dual slots -
|-
| Geforce GTX460 460GTX (G104) 256bit, 1GB v2 192bit and GTX 465
| 0x10de
| 0x0e22
| 0xa1
| <!--2D-->{{Maybe|VESA }}
| <!--3D-->{{Maybe| tunnel gearbox cube 055-111 cube2 50}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVC0 family (Fermi) OpenGL 4.x but - 2x6pin psu - case dual slots -
* not working evga 768MB GDDR5 192bit 01G-P3-1373-ER or 01G-P3-1372-TR
* works 1GB GDDR5 256bit 01G-P3-1371-ER
|-
| <!--Description-->Geforce GTX 460SE 192bit
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0e23
| <!--Revision-->0x91 or 0xa1
| <!--2D-->{{Yes| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->{{Yes| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> nouveau 6.11 - 2 6pin psu needed - case dual slots -
* not working
* works EVGA 01g-p3-1366-b6 et 1024MB p1041 -
|-
| Geforce GT450 GTS450 450GTS GF106
| 0x10de
| 0x0dc4
| 0x0a1
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel gearbox cube cube2 50 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes|DVI }}
| <!--Laptop LCD-->{{N/A}}
| 2010 Hardware OpenGL 4.2 but nouveau at 3.3 - most need 1x 6pin psu - case dual slots -
* not working
* DDR3 1 or 2GB - Palit NEAS450NHD41F,
* GDDR5 512Mb or 1GB - MSI MPN N450GTSM2D1GD5OC, Asus MPN ENGTS450DI1GD5,
* works Gainward Card Expert NE5S4500FHd51,
|-
| <!--Description-->GT 440 GF108 chipset or better OEM GF106
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 6.11 Pixel Text}}
| <!--3D-->{{Maybe| tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGl 4.1 opencl 1.x - no 6 pin psu - 96 cuda cores 128bit - case dual slots -
* not working
* OEM
* GDDR5 512MB to 1GB ASUSTeK ENGT440/DI/1GD5
* GDDR3 Asus 1gb to 2gb,
* works
|-
| <!--Description-->GT430 430GT (GF108)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|6.11 Pixel Text}}
| <!--3D-->{{Maybe|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->ddr3 memory 64bit or 128bit - buggy await new revision of driver
* not working
* works
|-
| <!--Description-->nVidia Quadro FX1800 768MB GDDR3 Full Height Graphics Card Workstation
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 6.11 Pixel Text}}
| <!--3D-->{{no|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->{{Maybe|DVI-I 2xDP}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->59W 768 MB GDDR3 memory using a 192-bit memory interface - OpenGL 3.3 -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GTX 590 Fermi
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->OpenGL4.4 OpenCL 1.1 - GDDR5 - 6pin and 8pin psu connectors - 512 cuda - case dual slots -
* not working
* works
|-
| <!--Description-->GTX 580,
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->PureVideo HD 5" or "VP5" (Nvidia Feature Set D or VDPAU Feature Set D) 4k UHD 3840 × 2160 H.264 decode -
|-
| <!--Description-->GTX 570,
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{Maybe|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working Zotac GTX 570, Gainward GTX560TI/570 Phantom,
* works gigabyte, evga
|-
| <!--Description-->Geforce 5xx 560gtx Fermi GTX 560,
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->opengl 4.x - 2 6pin psu - 384 cuda cores - case dual slots - will not work with PCI-e 1.0a slots -
* not working Asus ENGTX560 DC/2DI/1GD5,
* Ti LE 448 cuda GDDR5 320bit
* Ti 256bit
* works
|-
| <!--Description-->GTX 560 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working evga GTX 560Ti 01GP31560KR - Gainward GTX560TI/570 Phantom,
* works
|-
| <!--Description-->GTX 550 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x1201
| <!--Revision-->
| <!--2D-->{{Maybe|VESA Doom Doom2 Duke }}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->can hang on boot up on I2C Init or suffer random lockups on OpenGL apps - most need 1 6pin min 400W 24A on the +12V1 / +12V2 dual 12V rails of the computers' power supply unit - 192 cuda cores - case dual slots used - will not work with PCI-e 1.0a slots -
* not working eVGA GeForce GTX 550 Ti (1024 MB) (01GP31556KR) -
* untested asus Extreme, eVGA GeForce GTX 550 Ti (1024 MB) (01GP31557KR) - -
* works
|-
| <!--Description-->GT 545 and OEM GF116
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 4.2 opencl 1.x - GDDR5 with OEM only -
|-
| <!--Description-->GT530 OEM
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 6.11 Pixel Text}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->96 cuda cores - 1GB or 2GB DDR3 128bit
|-
| <!--Description-->GT520 520GT
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->untested 48 cuda cores - DDR3 64bit
|-
| <!--Description-->510, GT 530
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D 6.11 Pixel Text}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> ddr 3 - 50w max -
|-
| <!--Description-->GT610 Fermi GF119
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVS 315 300 GF119S
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{No|VESA}} needs special dms-59 cable
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 fermi 315 PNY VCNVS315-T 1Gb DDR3 but needs special dms-59 cable -
|-
| <!--Description-->GT630 GF108 Fermi
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->not accelerated 2015 - like the GT730 below - 96 cuda cores whilst kepler version has 384 - 128bit to keplers' 64bit bandwidth - kepler has 2GB DDR3
* not working Gigabyte
* DDR3
* GDDR5
* works
|-
| <!--Description-->Geforce GT 730 (two versions)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe| use VESA 6.11 Pixel Text}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> fermi version has 96 cuda cores 128bit GF108
* not working Asus
* works
|-
| <!--Description-->nVIDIA Quadro 4000
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}} 2 dp ports
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->142W 2Gb GDDR5 - PCI Express 2.0 x16 ; full Height card with 1x 6-Pin PCIe power need - CUDA Cores 256 - OpenGL 4.5
|-
| <!--Description-->nVIDIA Quadro 5000
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2011 200W 2.5Gb GDDR5 320 bit - PCI Express 2.0 x16 full Height card with 2x 6-Pin PCIe power need -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce GTX Titan GeForce GTX Titan Black GeForce GTX Titan Z
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVE0 family (Kepler) GeForce 600 GeForce 700 GeForce GTX Titan Kepler
|-
| <!--Description-->GeForce GTX 780 GeForce GTX 780 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->PureVideo HD 6" or "VP6" (Nvidia Feature Set E or VDPAU Feature Set E) significantly improved performance when decoding H.264 and MPEG-2
|-
| <!--Description-->GeForce GTX 770
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->opengl 4.4 opencl 1.1
|-
| <!--Description-->GeForce GTX 760 GeForce GTX 760 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce GT 740
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce GT 730 Kepler (two versions) f
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> kepler 384 cores 64bit GK208
|-
| <!--Description-->680gtx GK104 core gtx680 680m
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVE0 family (Kepler)
|-
| <!--Description-->GTX 690 Kepler NVE0
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->pci-e 3.0, OpenGL 4.4 OpenCL 1.1
|-
| <!--Description-->GTX 670
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GTX 660 GTX 660 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GTX 650 GTX 650 Ti GTX 650 Ti Boost
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVE0 family (Kepler) most need 1 6pin psu
* not working asus ENGTX560 DC/2DI/1GD5
* works
|-
| <!--Description-->Geforce GT 640
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* 128bit DDR3
* 192bit DDR3 1.5 to 3GB 50W
* 128bit GDDR5 75W
|-
| <!--Description-->GT 620 GT 640
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->Quadro K2200 (GK1) Kepler
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 - 65w single slot pcie 2.0 -
|-
| <!--Description-->Quadro K2000 NVE7 (GK107) Kepler
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 - 50w single slot pcie 2.0 -
|-
| <!--Description-->NVIDIA® Quadro® K4200 GK107 Kepler
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2014 4Gb GDDR5 - 105W 1 6pin -
|-
| <!--Description-->NVIDIA® Quadro® K420 1GB DDR3 Kepler
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2014 41W -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce 750ti, GeForce 900
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->[https://nouveau.freedesktop.org/FeatureMatrix.html NV110] Maxwell -
|-
| <!--Description-->Nvidia GTX 750
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x1381
| <!--Revision-->0xa2
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2026 nvidia test
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->GM206 2nd gen maxwell PureVideo HD 7" or "VP7" (Nvidia Feature Set F or VDPAU Feature Set F) adds full hardware-decode of H.265 HEVC Version 1 (Main and Main 10 profiles and full fixed function VP9 (video codec) hardware decoding
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV132 (GP102) NVIDIA Titan (X, Xp), GeForce GTX 1080 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV134 (GP104) GeForce GTX (1070, 1080)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV136 (GP106) GeForce GTX 1060
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->Quadro K620 Maxwell
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2014 50w slim low profile 2gb ddr3 -
|-
| <!--Description-->quadro p620 2gb gddr5 128bit and quadro p1000 4gb gt1030 30w
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 50w slim low profile -
|-
| <!--Description-->GeForce gtx 1060, GeForce 1070
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NV130 Pascal
|-
| <!--Description-->NV137 (GP107) GeForce GTX (1050, 1050 Ti)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV138 (GP108) GeForce GT 1030
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->NV130 family (Pascal)
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV162 (TU102) NVIDIA Titan RTX, GeForce RTX 2080 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV164 (TU104) GeForce RTX (2070 Super, 2080, 2080 Super)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2020 NV160 family (Turing) unified gsp-rm firmware - best starting point for Vulkan support
|-
| <!--Description-->NV166 (TU106) GeForce RTX (2060, 2060 Super, 2070)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV168 (TU116) GeForce GTX (1650 Super, 1660, 1660 Ti, 1660 Super)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV167 (TU117) GeForce GTX 1650
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->gtx 1650ti super
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2018 old style
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV172 (GA102) GeForce RTX (3080, 3090)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 av1 decoding ampere
|-
| <!--Description-->NV174 (GA104) GeForce RTX (3060 Ti, 3070, 3080 Mobile)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->NV170 family (Ampere)
|-
| <!--Description-->NV176 (GA106) GeForce RTX (3050, 3060)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV177 (GA107) GeForce RTX 3050
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV192 (AD102) GeForce RTX 4090
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV193 (AD103) GeForce RTX 4080
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->NV190 family (Ada Lovelace)
|-
| <!--Description-->NV194 (AD104) GeForce RTX (4070, 4070 Ti)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV196 (AD106) GeForce RTX 4060 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV197 (AD107) GeForce RTX 4060
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
|}
==== nouveau mobile integrated ====
If you purchased a notebook with an NVidia sticker on it, most of the time you have a optimus based one, ie Intel CPU+GPU melded with Nvidia GPU, Optimus was slated at one point to go into desktop PCs but the industry ended up rejecting that concept
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|-
| GeForce 6100 nForce 405
| 0x
| 0x03D1 0x0242
| 0x0
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
|
|-
| <!--Description-->GeForce 6100 nForce 400
| <!--Vendor ID-->
| <!--Product ID-->0x03D2
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce 6100 nForce 420
| <!--Vendor ID-->
| <!--Product ID-->0x03D5
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce 6150 LE
| <!--Vendor ID-->
| <!--Product ID-->0x0241
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6150SE nForce 430
| 0x
| 0x03D0
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| working
|-
| <!--Description-->GeForce 6150
| <!--Vendor ID-->
| <!--Product ID-->0x0240
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7150M / nForce 630M
| <!--Vendor ID-->
| <!--Product ID-->0x0531
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7000M / nForce 610M
| <!--Vendor ID-->
| <!--Product ID-->0x0533
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7050 PV / NVIDIA nForce 630a
| <!--Vendor ID-->
| <!--Product ID-->0x053A 0x053B
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Geforce IGP 7025 nForce 630a
| 0x
| 0x053E
| 0x0
| <!--2D-->{{Yes|some}}
| <!--3D-->{{Yes|some}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No| }}
| some support on some chipsets
|-
| GeForce 7100 / nForce 630i (C73)
| 0x10de
| 0x07e1
| 0x0a2
| <!--2D-->{{Maybe}}
| <!--3D-->{{Maybe}}
| <!--Analogue-->{{Maybe}}
| <!--Digital-->{{Maybe}}
| <!--Laptop LCD-->{{N/A}}
| Icaros 2.0.3 and Gigabyte 73-pvm-s2h rev. 1.0 but will not boot on [https://ae.amigalife.org/index.php?topic=806.msg8765#new Acer x270 with Icaros 2.3]
|-
| <!--Description-->GeForce 7150 / NVIDIA nForce 630i
| <!--Vendor ID-->
| <!--Product ID-->0x07E0
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7050 / NVIDIA nForce 610i
| <!--Vendor ID-->
| <!--Product ID-->0x07E3
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Geforce IGP 8100 (nForce 720a)
| 0x
| 0x084F
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
|
|-
| GeForce 8100P
| 0x
| 0x0847
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
|
|-
| <!--Description-->Geforce 8200 8300 nForce 730a
| <!--Vendor ID-->
| <!--Product ID-->0x084A 0x0848 (GeForce 8300) 0x0849 (GeForce 8200) 0x084B (GeForce 8200)
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->working on some 8300's with Icaros 1.5 but others untested
|-
| <!--Description-->nForce 780a SLI
| <!--Vendor ID-->
| <!--Product ID-->0x084C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->nForce 750a SLI
| <!--Vendor ID-->
| <!--Product ID-->0x084D
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Nvidia Geforce IGP 9300 (nForce MCP7a)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->works
|
|-
| <!--Description-->9400 (ION)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->If AROS detects GPU chipset, works well
|-
| <!--Description-->9700M ()
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Geforce ION 2
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->works well
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce Go 6150
| <!--Vendor ID-->
| <!--Product ID-->0x0244
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6100
| <!--Vendor ID-->
| <!--Product ID-->0x0247
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6200
| <!--Vendor ID-->
| <!--Product ID-->0x0164 0x0167
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6400
| <!--Vendor ID-->
| <!--Product ID-->0x0166 0x0168
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->Sony Laptop
|-
| <!--Description-->GeForce Go 6800
| <!--Vendor ID-->
| <!--Product ID-->0x00C8
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6800 Ultra
| <!--Vendor ID-->
| <!--Product ID-->0x00C9
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600
| <!--Vendor ID-->
| <!--Product ID-->0x0144
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600 TE/6200 TE
| <!--Vendor ID-->
| <!--Product ID-->0x0146
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600
| <!--Vendor ID-->
| <!--Product ID-->0x0148
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600 GT
| <!--Vendor ID-->
| <!--Product ID-->0x0149
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7200
| <!--Vendor ID-->
| <!--Product ID-->0x01D6
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7300
| <!--Vendor ID-->
| <!--Product ID-->0x01D7
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->untested
|-
| <!--Description-->GeForce Go 7400
| <!--Vendor ID-->
| <!--Product ID-->0x01D8
| <!--Revision-->
| <!--2D-->
| <!--3D-->works 2D and 3d issues though
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7800
| <!--Vendor ID-->
| <!--Product ID-->0x098
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7800 GTX
| <!--Vendor ID-->
| <!--Product ID-->0x0099
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7950 GTX
| <!--Vendor ID-->
| <!--Product ID-->0x0297
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7900 GS
| <!--Vendor ID-->
| <!--Product ID-->0x0298
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7900 GTX
| <!--Vendor ID-->
| <!--Product ID-->0x0299
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7600
| <!--Vendor ID-->
| <!--Product ID-->0x0398
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7600 GT
| <!--Vendor ID-->
| <!--Product ID-->0x0399
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 6610 XL
| <!--Vendor ID-->
| <!--Product ID-->0x0145
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 6700 XL
| <!--Vendor ID-->
| <!--Product ID-->0x0147
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce 8700M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0409
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8600M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0425
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8400M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0426
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8400M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0427
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8400M G
| <!--Vendor ID-->
| <!--Product ID-->0x0428
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8800M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x0609
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8800M GTX
| <!--Vendor ID-->
| <!--Product ID-->0x060C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9500M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0405
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8600M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0407
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9650M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0408
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9400M GT
| <!--Vendor ID-->
| <!--Product ID-->0x042C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9300M G
| <!--Vendor ID-->
| <!--Product ID-->0x042E
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9100M G
| <!--Vendor ID-->
| <!--Product ID-->0x0844
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9800M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x0628
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9700M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x062A
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9800M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x062C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9600M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0647
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9600M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0648
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9600M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0649
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9500M G
| <!--Vendor ID-->
| <!--Product ID-->0x064B
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9300M GS
| <!--Vendor ID-->
| <!--Product ID-->0x06E5
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9200M GS
| <!--Vendor ID-->
| <!--Product ID-->0x06E8
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9300M GS
| <!--Vendor ID-->
| <!--Product ID-->0x06E8
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->NV50 (G80) Quadro FX (4600 (SDI), 5600)
Quadro FX (2800M, 3600M, 3700, 3700M, 3800M, 4700 X2), VX 200
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV94 (G94) 9700M GTS, 9800M GTS, GeForce G 110M, GT 130(M), GT 140, Quadro FX (1800, 2700M)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV84 (G84) Tesla 8700M GT, GeForce 9500M GS, 9650M GS
Quadro FX (370, 570, 570M, 1600M, 1700), NVS 320M
NV86 (G86) GeForce 8300 GS, 8400 (GS, M G, M GS, M GT), 8500 GT, GeForce 9300M G
Quadro FX 360M, NVS (130M, 135M, 140M, 290)
GeForce GTS 150(M), GTS 160M, GTS 240, GTS 250, GTX (260M, 280M, 285M), GT (330, 340)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV96 (G96) 9650M GT, 9700M GT
GeForce G 102M, GT 120
Quadro FX (380, 580, 770M, 1700M)
NV98 (G98) GeForce 8400 GS, GeForce 9200M GS, 9300 (GE, GS, M GS)
GeForce G 100, G 105M
Quadro FX (370 LP, 370M), NVS (150M, 160M, 295, 420, 450)
Quadro CX, FX (3800, 4800, 5800)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVA3 (GT215) GeForce GT (240, 320, 335M), GTS (250M, 260M, 350M, 360M) Quadro FX 1800M
NVA5 (GT216) GeForce GT (220, 230M, 240M, 325M, 330M), 315
Quadro 400, FX 880M, NVS 5100M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVA8 (GT218) Tesla GeForce 8400 GS, GeForce 210M, 305M, 310M, Quadro FX 380M, NVS 2100M, 3100M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVAA (MCP77/MCP78) GeForce 8100, 8200, 8300 mGPU / nForce 700a series, 8200M G
NVAC (MCP79/MCP7A) ION, GeForce 9300, 9400 mGPU / nForce 700i series, 8200M G, 9100M, 9400M (G)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVAF (MCP89) GeForce 320M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NVC0 (GF100) Fermi GeForce GTX 480M, Quadro 5000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVC1 (GF108) GeForce GT 415M, 420M, 425M, 435M, 520M, 525M, 540M, 550M, 555M, 630M, 635M, 640M LE, Quadro 1000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVC3 (GF106) Fermi GeForce GT 445M, 555M, 630M, 635M), GTX 460M, Quadro 2000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVC4 (GF104) GeForce GTX 470M, 485M, Quadro 5000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVCE (GF114) GeForce GTX 570M, 580M, 670M, 675M,
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVD7 (GF117) Fermi Geforce GT 620M, 625M, (some) 630M, 710M, 720M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVD9 (GF119) Fermi GeForce 410M, GT 520M, 520MX, 610M, Quadro NVS 4200M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NVE4 (GK104) GeForce GTX 670M, 680M, 775M, 780M, 860M, Quadro K3000M, K3100M, K4000M, K4100M, K5000M, K5100M,
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVE7 (GK107) GeForce GT640M, 645M, 650M, 710M, 720M, 730M, 740M, 745M, 750M, 755M, GTX 660M, K500M, K1000M, K1100M, K2000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GTX 1650 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2019 turing architecture - last old skool support pre Vulkan
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rtx 2050 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 ampere architecture best starting point for vulkan support
|-
| <!--Description-->rtx 2060 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rtx 4060 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
|}
====radeon.hidd====
Michel Shultz ''2D'' graphics driver (standard on most distributions but only for very old GPUs) and bearsofts updated 2013 around Icaros 1.3.1
3D is not implemented by AROS yet but could cover these AMD chipsets
<pre>
2014 SI AMD HD 7xxx
2016 GCN3rd AMD R5E R7E
2019 GCN5th AMD Vega 8
2022 RDNA1 AMD RX5500 desktop only
2023 RDNA2 AMD 680M 780M
2024 RDNA3 AMD 880M 890M
2025 RDNA3.5 AMD 8060S strix halo and AI
2027 RDNA4 AMD
</pre>
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! 2D
! 3D
! Analogue Output
! Digital Output
! Laptop LCD
! Comments
|-
| 7000 (r100)
| 0x1002
| 0x5159
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->{{Maybe|vga15 pin connection but not s-video}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.3
|-
| 7500 (rv200 but still r100 based)
| 0x1002
| 0x5157
| 0x
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->{{Yes|vga15}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.3
|-
| 8000 8500 (r200)
| 0x1002
| 0x514c (8500LE)
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.4
|-
| 9000 9100 9250 (r200)
| 0x1002
| 0x5964 (9000) 0x514d (9100)
| 0x0001
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->{{Maybe|VGA15 but not s-video}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.4
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| 9600 9800 (r300)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1
|-
| x300 x600 (r300)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1
|-
| x700, x800 ([http://en.wikipedia.org/wiki/Radeon_R600 r420])
| 0x
| 0x554d (R430 x800xl)
| 0x0
| <!--2D-->{{Yes|new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1 - x800 XL PCIE (problem with mouse-pointer, some part of the pointer is not transparent)
|-
| x1300 x1550 x1600 x1800 x1900 x1950 ([http://en.wikipedia.org/wiki/Radeon_R520 r520])
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes|new driver}}
| <!--3D-->{{no}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| HD2400 HD2600 HD2900 ([http://en.wikipedia.org/wiki/Radeon_R600 r600])
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|some features with new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 3.3 open CL 1.2 TeraScale architecture
|-
| HD3400 HD3600 HD3800 (r600)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|some features with new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->pci-e 2.0, openGL 3.3
|-
| HD4300 HD4500 HD4600 HD4700 HD4800 ([http://en.wikipedia.org/wiki/Radeon_R600 r700])
| 0x1002
| 0x
| 0x0
| <!--2D-->{{Maybe|but some later cards need 3D engine for faster and more flexible 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 3.3 - DDR3 - GDDR5 was one of AMD's aces for the 4800 series - 4670 liked -
|-
| HD6900 cayman series
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|some features with new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 3.3 open CL not mature (2014) -
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| HD5400 Series HD5430 HD5450 HD5470
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2010 openGL 3.3 openCL - GDDR3 -
|-
| HD5500 Series HD5550 HD5570 HD5600 Series HD5650 HD5670 HD5700 Series HD5750 HD5770
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 3.3 openCL - GDDR5
|-
| HD 5800 Series HD5850 HD5870 HD5900 Series HD5950 HD5970 - HD6xxx not NI chipset ([http://en.wikipedia.org/wiki/Evergreen_(GPU_family) r800 evergreen])
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 openGL 3.3 openCL - DDR5 pci-e 2.1 best avoided for all pci-e 1.0 mobos - Ati TeraScale2 architecture -
|-
| HD6450 [http://en.wikipedia.org/wiki/Northern_Islands_(GPU_family) Northern Islands chipset]
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> - DDR3 -
|-
| HD6600 Series HD6650 HD6570 HD6600 Series HD6650 HD6670
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2011 - DDR5 -
Radeon HD 8470 11 TeraScale 2
Radeon HD 8350 11 TeraScale 2
Radeon HD 7510 11 TeraScale 2
Radeon HD 6550D 11 TeraScale 2
Radeon HD 6530D 11 TeraScale 2
Radeon HD 6410D 11 TeraScale 2
Radeon HD 6370D 11 TeraScale 2
Radeon HD 6320 11 TeraScale 2
Radeon HD 6310 11 TeraScale 2
Radeon HD 6290 11 TeraScale 2
Radeon HD 6250 11 TeraScale 2
|-
| HD6800 Series HD6850 HD6870 HD6700 Series HD6790 to HD6990
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2011 - DDR5 - AMD TeraScale3 -
|-
| <!--Description-->HD7450-HD7670
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 OpenGL but not Vulkan
Radeon HD 7660D 11 TeraScale 3
Radeon HD 7560D 11 TeraScale 3
Radeon HD 7540D 11 TeraScale 3
Radeon HD 7480D 11 TeraScale 3
Radeon HD 6930 11 TeraScale 3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->HD7750 HD 7770 / R7 250X HD7850 HD7870 / R9 270X HD 7950 / R9 280 HD 7970 / R9 280X [http://en.wikipedia.org/wiki/Southern_Islands_(GPU_family) Southern Islands]
*AMD Radeon R7 250XE Cape Verde XT
*AMD Radeon R7 M465X Cape Verde
*AMD Radeon R9 255 Cape Verde PRX
*AMD Radeon HD 7750 Cape Verde PRO
*AMD Radeon R7 250E Cape Verde PRO
*AMD Radeon HD 8740 Cape Verde PRO
*AMD Radeon HD 7730 Cape Verde LE
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 pci-e 3.0 1st Gen GCN architecture -
|-
| <!--Description-->R5 430, FirePro W2100,
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 50W+ openGL openCL 1/3 speed of gtx750ti 1st gen gcn1
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->HD7790 [ Sea Islands ]
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 openGL 4.1 open CL - GCN2.0 Vulkan 1.0 introduced a Shader Engine (SE) comprising one geometry processor, up to 44 CUs (Hawaii chip), rasterizers, ROPs, and L1 cache and Graphics Command Processor for faster audio/video - suits Vulkan 1.1
|-
| <!--Description-->r5 240 240x (slow) R7 250 250x (faster) HD 7790 / R7 260 260X / R7 360 to R5 350 (fast) and last one R5 430 OEM Plus (slow again)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 50W+ GCN 1st gen - openGL 4.x openCL 1.x Vulkan 1.0
|-
| <!--Description-->R9 290 / R9 390 R9 290X / R9 390X
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2014 GCN 1.1 2nd Gen architecture - openGL 4.x openCL 1.x Vulkan 1.1 -
|-
| <!--Description-->R9 Fury Nano
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 GCN 1.2 3rd Gen - openGL openCL vulkan
|-
| <!--Description-->r-200 series r8 275 285 295 375 [Volcanic Islands]
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 GCN1.2 - openGL 4.x openCL 1.x Vulkan 1.2
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 [https://gpuopen.com/download/AMD_GCN3_Instruction_Set_Architecture_rev1.1.pdf GCN3]
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Radeon™ RX 5700/5600/5500 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 GCN 4 - OpenGL 4, Vulkan 1.3 -
|-
| <!--Description-->Radeon™ RX 400/500 Series like rx vega 580
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->Radeon™ Pro WX 9100, x200 Series and Radeon™ Pro W5700/W5500 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Radeon™ RX 7900/7600 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->Radeon™ RX 6900/6800/6700/6600/6500 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|}
==== amd radeon mobile integrated ====
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|-
| <!--Description-->ATI RC410 [Radeon Xpress 200M]
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x5a62 0x5955 0x5974 (200m)
| <!--Revision-->0x00
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->
|-
| <!--Description-->Mobility Radeon 7500
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x4c57 (7500)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->
|-
| <!--Description-->Mobility Radeon 9000
| 0x1002
| 0x4966 (9000)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->
|-
| <!--Description-->Mobility Radeon 9500 9550 (rv360) 9600 (rv350)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon 9800 (rv420)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon X300 (RV370) X600 (RV380)
| 0x1002
| 0x (RV370) 0x5657 (RV380)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon X700 (RV410) X800 (RV423)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon X1200 (RS69M0)
| 0x1002
| 0x791f
| 0x0
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->X1200 IGP (RS690)
|-
| <!--Description-->Mobility Radeon X1300 X1350 X1400(rv515) X1600 (rv530) X1650 (RV535) X1800 (rv520) x1900 (rv570)
| 0x1002
| 0x71c7 (X1650)
| 0x009e
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon 2100
| 0x1002
| 0x796e (2100)
| 0x0
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{No|}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 2400 (rv610) HD2600 (rv630)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 3100 HD3200 HD3450 3470 (RS780MC RV620) 3670 (M86-XT RV635) HD3870 (M88-LXT RV670)
| 0x1002
| 0x9610 and 0x9612 (HD3200) 0x9614 (HD3300)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 4200 4250 (RV620)
| 0x1002
| 0x (HD4200) 0x9715 (HD4250)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 4330 4530 4550 (M92 RV710) 4650 (M96-XT RV730) 4670 RV730XT 4830 (M97 RV740) 4850 (M98 RV770)
| 0x1002
| 0x (HD4350) 0x9442 (RV770) 0x9490 (HD4670)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 530v (M92 RV710) HD 550v (M96 RV730)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->no support yet
|-
| <!--Description-->Mobility Radeon HD 5430 HD5650 (cedar Park LP)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->no support yet
|-
| <!--Description-->Radeon HD 6250 6290 6310 6320 6350M (Redwood Capilano PRO)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->no support yet
|-
| <!--Description-->AMD 7640G, 8450G, 8550G, 8650G Northern Islands
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 Last real support for old graphics standard before Vulkan takeover
|-
| <!--Description-->R5 M230 M240 M255 - R7 M260 M265 (Kaveri Crystal series with Mantle and HSA)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->2015 Maybe better with Vulkan
|-
| <!--Description-->R5E R7E
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->2016 bristol ridge GCN 3.0 IGP (Carrizo Mobile)
|-
| <!--Description-->AMD Vega 3, 6, 8, 11 iGP
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2018 raven ridge GCN 5th Gen
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->5500m 5600m 5800m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA1 NaviX1 Zen 2
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rx680m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA2 NaviX2 Zen 3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->phoenix apu 1103
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 RDNA3 NaviX3 zen 4
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
==== AMDGPU Vulkan desktop ====
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Kaveri 290 290X, 260 260X
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 AMDGPU Vulkan
|-
| <!--Description-->R9 285 / R9 380 R9 380X Fury / Fury X
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->opengl 4 opencl 1 3rd Gen GCN architecture
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX470 RX460 RX480 RX580 polaris10
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 opengl 4 opencl 2 4th Gen GCN architecture vulkan 1.3
|-
| <!--Description-->RX460 RX560D polaris11
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 opengl 4 opencl 2 4th Gen GCN architecture vulkan 1.3
|-
| <!--Description-->RX580 polaris20
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 opengl 4 opencl 2 4th Gen GCN architecture vulkan 1.3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX 5000 5500 Navi 1x
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RNDA 1
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX 6000 Navi 2x
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RNDA 2 Mesa 21.3 decode av1
|-
| <!--Description-->RX6000
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX 7000
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 RNDA 3 navi
|-
| <!--Description-->RX7000
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->RX9070 rx 9060 XT
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2025 rdna4 navi
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2026 udna (aka rdna5)
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
|}
==== AMDGPU Vulkan mobile ====
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->R5E R7E
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->2016 bristol ridge GCN 3.0 IGP (Carrizo Mobile)
|-
| <!--Description-->Vega 8
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> GCN 5
|-
| <!--Description-->Vega iGP 3, 6, 8, 11
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2018 raven ridge - Graphics Core Next (GCN) 5th gen -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->5500m 5600m 5800m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA1 NaviX1 Zen 2
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rx680m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA2 NaviX2 Zen 3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->phoenix apu 1103
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA3 NaviX3 zen 4
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
fyi if a notebooks with two graphic cards, the integrated Intel card (id 0x7d) for low power usage and a discrete Radeon card (id 0x56) which should be used for GPU-intensive applications. By default the Intel card is always used
[https://wiki.archlinux.org/title/ATI Gallium Radeon HD] is not ported yet but is [https://www.phoronix.com/scan.php?page=news_item&px=Linux-5.9-AMDGPU-Stats really big] and complex so another solution may have to be [https://discuss.haiku-os.org/t/the-graphics-acceleration-can-of-worms/10515/5 found] like [https://discuss.haiku-os.org/t/vulkan-lavapipe-software-rendering-is-working-on-haiku/11363/10 vulkan] where support starts from very recent ISA GCN islands HD7000s cards only
*Vulkan
*Gallium
Vulkan software renderer allows to prepares the infrastructure for hardware rendering. Primary difference between software and hardware renderer is output to regular RAM vs GPU RAM, the rest is almost the same. It is possible to render to GPU RAM offscreen.
bare bones basics data flow
application,>>> api/opengl/vulkan>>>>, jit compiler, >>>>memory manger, >>>>gpu hardware
so you need to have a compiler that takes your api call/program/shaders/drawing commands and turns them into a program the gpu can render.
the vulkan to amd gpu compiler for shaders and textures is nearly os agnostic iirc as long as you have solid posix compliance
Unlike OpenGL, Vulkan does not depend on windowing system and it have driver add-on system with standardized API (Mesa also have OpenGL driver add-ons, but it have non-standard Mesa-specific API). OpenGL may need more work for windowing system related code at this point but developing Vulkan on real hardware is more strategic than developing OpenGL, since now Zink 3 running on Vulkan compensates for the lack of OpenGL support by giving performance similar to native accelerated OpenGL
RadeonGfx use client-server model with client-server thread pairs. For each client thread that calls 3D acceleration API, server side thread is created. If client thread terminates, server side thread also exit.
==Rough gfx comparison==
<pre>
Group 1
GeForce RTX 5090 5070 5060 5050
GeForce RTX 4090 4070 4060 4050
Group 2
GeForce RTX 2070
Radeon RX 7600
Quadro RTX 5000
Radeon PRO W6600
GeForce RTX 2060 12GB
Radeon PRO W7500
Quadro GP100
Radeon RX 6800S
GeForce RTX 3070 Laptop GPU
GeForce GTX 1080
GeForce RTX 3060 8GB
Quadro RTX 4000
Radeon Pro W5700
Radeon RX 6600
GeForce RTX 2080 (Mobile)
Radeon RX 7700S
Radeon RX 6700S
Radeon RX 6600S
Quadro RTX 5000 (Mobile)
GeForce GTX 1070 Ti
GeForce RTX 4050 Laptop GPU
Radeon Pro Vega 64X
Radeon RX 5700
Radeon RX Vega 64
GeForce RTX 2060
GeForce RTX 2070 Super with Max-Q Design
Group 3
Radeon RX 6600M
GeForce GTX 1070
Radeon RX 6650M
GeForce RTX 3060 Laptop GPU
Radeon RX Vega 56
Radeon RX 6700M
GeForce RTX 2080 with Max-Q Design
Radeon RX 6800M
GeForce GTX 980 Ti
Radeon R9 Fury
GeForce GTX 980
Quadro M5500
Radeon R9 390X
Radeon RX 580
Radeon RX 5500
Radeon RX 6550M
GeForce GTX 1660 Ti with Max-Q Design
GeForce GTX 780 Ti
GeForce GTX 970
Radeon R9 290X
Radeon RX 480
Radeon RX 5600M
Quadro RTX 3000 with Max-Q Design
Radeon R9 290X / 390X
Ryzen 5 4600HS with Radeon Graphics
Radeon R9 290
Radeon Pro 5500 XT
Radeon R9 M490 *
GeForce GTX 780
Radeon RX 6500M
Quadro M5500
GeForce GTX 1060 with Max-Q Design
Radeon RX 6500
Radeon RX 5300
Intel Arc A770M
GeForce GTX 1650 Ti
Radeon Pro 580X
Radeon RX 6400
GeForce RTX 2050
Ryzen 9 4900HS with Radeon Graphics
Radeon Ryzen 9 6900HS
GeForce GTX 980M
Quadro M5000M
Radeon RX 6300
GeForce GTX 1650 Ti with Max-Q Design
Radeon Pro 570
Ryzen 9 6900HS with Radeon Graphics
GeForce GTX 1050 Ti
Quadro M4000M
Radeon R9 280X 380X
GeForce GTX 1650 with Max-Q Design
GeForce MX570
Radeon R9 280X
Radeon R9 380
Radeon 780M
GeForce GTX 960
GeForce GTX 970M
Quadro M4000M *
GeForce GTX 680
Group 4
Radeon RX 6500M
Quadro M5500
Radeon Pro WX 7100
GeForce GTX 1060 with Max-Q Design
GeForce GTX 1650
Intel Arc A730M
Radeon HD 7970
Radeon R9 M395X
Radeon R9 M485X
Radeon R9 M480 *
Radeon R9 M295X
Radeon R9 M390X *
FirePro W7170M *
Radeon R9 M395
Radeon R7 370
Radeon RX 5500M
GeForce GTX 590
GeForce GTX 880M
GeForce GTX 950
Radeon R9 270X
GeForce GTX 660 Ti
GeForce GTX 760
GeForce GTX 780M
Quadro K5100M
GeForce GTX 680MX
Radeon HD 7870
GeForce GTX 965M
Quadro M3000M *
GeForce GTX 870M
Radeon R9 M290X
Radeon HD 8970M
Radeon Ryzen 7 7735U (680M), Radeon Ryzen 7 7735HS (680M 12C)
GeForce GTX 580
Radeon HD 6970
GeForce GTX 1050
GeForce GTX 680M
GeForce GTX 775M
GeForce GTX 1630
FirePro M6100
Radeon HD 7970M
Radeon R9 M390 *
GeForce GTX 750 Ti
Group 5
GeForce GTX 570
GeForce GTX 480
GeForce GTX 960M
Quadro M2000M *
Quadro K5000M
Quadro K4100M
GeForce GTX 770M
GeForce GTX 860M
GeForce GTX 675MX
GeForce GTX 950M
GeForce GTX 850M
Quadro M1000M
Radeon R9 M280X
Radeon HD 7950M *
GeForce GTX 560 Ti
Radeon HD 6870
GeForce GTX 470
GeForce GT 1030
GeForce MX330
Ryzen 5 PRO 5650GE with Radeon Graphics
Ryzen 7 5800HS
FirePro 3D V8800
GeForce MX250
Group 6
Radeon Pro WX 3200
Ryzen 7 PRO 5750G with Radeon Graphics
Radeon Ryzen 5 5600H
Ryzen 5 Pro 4650G with Radeon Graphics
Radeon Ryzen 7 5800U
Ryzen 7 7730U with Radeon Graphics
Radeon Ryzen 7 5825U
Radeon Pro WX 4150
Radeon Ryzen 5 PRO 4655G
Ryzen 5 4600G with Radeon Graphics
Radeon Ryzen 5 PRO 4655GE
GeForce GTX 485M
FirePro W6150M
Ryzen 7 5800U with Radeon Graphics
Ryzen 5 7530U with Radeon Graphics
Ryzen 7 4800U with Radeon Graphics
Radeon R9 M470
Ryzen 3 PRO 5350G with Radeon Graphics
Radeon RX Vega Ryzen 3 5300U
Ryzen 7 5825U with Radeon Graphics
Ryzen 5 PRO 4400G with Radeon Graphics
Radeon Ryzen 7 PRO 4750GE
Radeon Ryzen 7 4800U
FirePro V7900
Radeon HD 5970
Radeon Ryzen 7 7700X 8-Core
Radeon Ryzen 5 PRO 5650G
Radeon Ryzen 5 4400G
Radeon Ryzen 5 PRO 5650GE
Radeon RX 550X
FirePro V8800
Radeon RX Vega Ryzen 5 5500U
GeForce MX150
Quadro K3100M
Ryzen 7 PRO 5850U with Radeon Graphics
Radeon HD 6970M
Radeon R7 250X
Intel HD 5600
Ryzen 3 4300GE with Radeon Graphics
GeForce GTX 460
Ryzen 7 5700U with Radeon Graphics
Radeon Ryzen 5 7530U
Quadro K620
Ryzen 3 PRO 5350GE with Radeon Graphics
Intel Iris Pro P580
Intel UHD Graphics P630
Ryzen 5 4600H with Radeon Graphics
Ryzen 5 PRO 7530U with Radeon Graphics
Radeon HD 5870
Radeon HD 6870
Ryzen 7 4700G with Radeon Graphics
Ryzen 5 5600U with Radeon Graphics
Radeon HD 7770
Ryzen 3 Pro 4350G with Radeon Graphics
Radeon Ryzen 5 5625U
GeForce GTX 745
Radeon Ryzen 7 4850U Mobile
Radeon Ryzen 3 PRO 7330U
Quadro M600M
Radeon Ryzen 5 5500U
Ryzen 5 5560U with Radeon Graphics
Ryzen 7 4800H with Radeon Graphics
Group 7
GeForce 945M
Ryzen 5 PRO 4650GE with Radeon Graphics
FirePro M5100
Radeon Ryzen 5 5600U
Radeon Ryzen 5 PRO 4500U
GeForce GTX 580M
Ryzen 7 PRO 5875U with Radeon Graphics
Ryzen 3 5300GE with Radeon Graphics
Radeon R9 M385
Quadro 5000M
Radeon Ryzen 7 4700U
Ryzen 5 PRO 5650U with Radeon Graphics
Radeon Ryzen 7 PRO 4750U
Ryzen 7 4700U with Radeon Graphics
Ryzen 7 PRO 4750U with Radeon Graphics
FirePro V7800
Radeon R9 350
Ryzen 3 4300G with Radeon Graphics
Radeon Vega 11 Ryzen 5 PRO 3350G
Radeon Ryzen 5 5560U
GeForce GTX 460 SE
Radeon Pro W5500M
Radeon Vega 11 Ryzen 5 PRO 3400G
Ryzen 5 5500U with Radeon Graphics
Ryzen 5 PRO 4500U with Radeon Graphics
GeForce GT 645
GeForce GTX 765M
Radeon R9 M385X
Ryzen 5 5625U with Radeon Graphics
Ryzen 3 PRO 7330U with Radeon Graphics
Radeon HD 5850
Radeon Vega 11 Ryzen 5 PRO 2400G
Intel Iris Pro 580
Radeon HD 6850
Intel Iris Xe MAX
Radeon Ryzen 7 PRO 5875U
Radeon Ryzen 5 7600 6-Core
GeForce GTX 470M
Ryzen 3 5300G with Radeon Graphics
GeForce GTX 670MX
Radeon RX 640
Qualcomm Adreno Gen 3
Radeon R7 450
GeForce GTX 675M
Radeon Pro WX 4130
Intel Iris Xe MAX 100
Quadro 5000
Radeon RX 570X
Radeon HD 7700-serie
Ryzen 5 4600U with Radeon Graphics
Ryzen 3 PRO 4350GE with Radeon Graphics
Radeon Vega 8
Group 8
GeForce MX230
GeForce GTX 765M
Quadro K4000M
Iris Pro Graphics P580 *
Iris Pro Graphics 580 *
GeForce GTX 645
Quadro M520
GeForce GTX 570M
GeForce MX130
Radeon RX 540
Radeon Ryzen 5 PRO 5675U
Intel UHD Graphics 770
Radeon RX Vega 11 Ryzen 7 3750H
Radeon Vega 11 Ryzen 5 PRO 3400GE
Radeon HD 5850
GeForce GTX 675M
GeForce GTX 580M
Radeon HD 6990M
Radeon R9 M385X *
Radeon R9 M470X *
Radeon R9 M470 *
Radeon R9 M385 *
Radeon R9 M380 *
Radeon R9 M370X
Radeon R9 M275
Radeon HD 7770
GeForce GTX 485M
GeForce GTX 460 768MB
Radeon HD 6790
GeForce GTX 285M SLI
Quadro K3100M
FirePro W5170M *
GeForce GTX 670MX
Quadro 5010M
GeForce GTX 760M
GeForce GTX 670M
Group 9
GeForce 940MX *
Maxwell GPU (940M, GDDR5)
FirePro M8900
Radeon HD 6970M
Radeon R9 M270
Radeon HD 8870M
Radeon HD 7870M
Quadro K3000M
GeForce GTX 570M
FirePro M6000
FirePro M5100
Quadro K2100M
Radeon HD 5770
GeForce GTX 550 Ti
GeForce GTX 280M SLI
Radeon HD 6950M
Radeon R7 250
GeForce GT 755M
GeForce GTX 660M
GeForce 845M
Radeon HD 8850M
Radeon R9 M365X
Radeon R9 M265X
Ryzen 5 PRO 4400GE with Radeon Graphics
FirePro W5130M *
Radeon Vega 8 Ryzen 5 3500U
Radeon HD 7850M
Radeon HD 8790M
FirePro W4170M
FirePro W4190M
FirePro W4100
Radeon Vega 6 Ryzen 3 3300U
Quadro 4000M
GeForce GTX 470M
GeForce GTX 480M
GeForce GT 750M
Iris Pro Graphics 6200
Quadro K1100M
GeForce 940M
Radeon R9 M375
GeForce 930MX *
Radeon R7 M380 *
Radeon R7 M370
Quadro M600M *
GeForce GT 650M
Quadro K620M
GeForce 840M
Radeon R7 M275DX
GeForce GT 745M
Radeon HD 7770M
GeForce GTX 560M
Radeon R7
Iris Pro Graphics 5200
GeForce GT 740M
GeForce 930M
Radeon HD 4850
Group 10
Iris Graphics 550 *
GeForce 830M
Iris Graphics 540
Quadro M500M *
Quadro K2000M
GeForce GTS 450
GeForce GTX 260M SLI
GeForce GT 735M
Mobility Radeon HD 5870
GeForce 825M
Quadro 5000M
FirePro M4000
FirePro M7820
Radeon HD 6870M
GeForce 9800M GTX SLI
Radeon HD 8830M *
Radeon HD 8770M
Radeon R7 M260X
GeForce GTX 460M
GeForce 920MX *
GeForce GT 730M
Radeon HD 7750M
GeForce GT 645M *
FirePro M4100
Radeon HD 8750M
Radeon R6 A10-9600P 4C+6G
Quadro 3000M
Radeon R7 M270
Radeon R7 M265
Quadro FX 3800M
GeForce GTX 285M
Mobility Radeon HD 4870
GeForce GT 640M
Radeon R7 (Kaveri)
Radeon R8 M365DX
Radeon R7 M460 *
Radeon HD 7730M
Radeon R7 M360
GeForce GTX 280M
Radeon HD 8690M
Quadro FX 3700M
Radeon R7 M340
GeForce 920M
Radeon R6 M340DX
HD Graphics 530
HD Graphics P530
Tegra X1 Maxwell GPU
Radeon R7 M260
Radeon R6
Group 11
Mobility Radeon HD 4860
FirePro M7740
Mobility Radeon HD 4850
GeForce GTX 260M
GeForce 9800M GTX
Quadro FX 2800M
Radeon HD 8670D
Radeon HD 7690M XT
FirePro M5950
GeForce GT 640M LE
Radeon R6 (Kaveri)
Radeon HD 8650M *
Radeon HD 8730M
Radeon HD 6770M
GeForce GT 635M
GeForce GT 555M
Radeon R7 A10 PRO-7800B
Radeon HD 5670
Mobility Radeon HD 5850
Radeon HD 6850M
Quadro 2000M
GeForce 9800M GT
GeForce 8800M GTX
Quadro FX 3600M
GeForce GT 445M
GeForce GTS 360M
Group 12
GeForce GT 240
Radeon R7 PRO A10-9700
Radeon HD 7690M
HD Graphics 5600
Radeon HD 8570D
Radeon HD 8670M
Radeon R6 M255DX
Radeon HD 7660D
Radeon HD 6750M
Quadro K1000M
GeForce GT 550M
Radeon HD 8590M *
GeForce GTS 260M
GeForce GTS 160M
GeForce 9800M GTS
GeForce GT 430
Radeon HD 6830M
Mobility Radeon HD 5830
Radeon HD 6730M *
GeForce 9800M GS
Mobility Radeon HD 4830
Mobility Radeon HD 5770
Radeon HD 6570M
Radeon HD 8650G
Radeon HD 7670M
GeForce GT 630M
Radeon HD 7560D
GeForce GTS 150M *
Radeon R5 M335
Radeon R5 M430 *
Radeon R5 M330
Radeon R5 M255
Radeon Vega 3
Quadro 1000M
GeForce 820M
FirePro W2100
HD Graphics 520 620
Iris Graphics 6100
GeForce GT 720M
GeForce 8800M GTS
Radeon R5 M240
Radeon R5 M320 *
Radeon R5 M230
Radeon R5 M315 *
Mobility Radeon HD 5750 *
Radeon HD 8570M
Radeon R7 PRO A10-8850B
HD Graphics 6000
Quadro K610M
Radeon HD 8550M
Iris Graphics 5100
GeForce GT 540M
Mali-T880 MP12 *
Radeon HD 8610G *
Radeon HD 6650M
HD Graphics 4600
Mobility Radeon HD 5730
HD Graphics 5500
Radeon R5 (Carrizo) *
Radeon R5 (Kaveri)
FirePro M5800
NVS 5400M
GeForce 710M
Radeon HD 7660G
GeForce GT 435M
HD Graphics 5000
Quadro K510M *
Radeon HD 5570
Radeon HD 6550M
Radeon HD 7590M *
GeForce GTS 350M
GeForce GTS 250M
Radeon HD 6630M
Radeon HD 7650M
FirePro M2000
Radeon HD 7570M
Radeon HD 7630M
Quadro FX 1800M
Mobility Radeon HD 5650
Radeon HD 8510G *
Radeon HD 6530M
Radeon HD 8550G
Quadro K500M *
GeForce GT 625M *
GeForce GT 620M
GeForce GT 525M
Radeon HD 6550D *
Radeon HD 7610M
Radeon HD 7620G
Radeon HD 8470D
Radeon HD 7640G
Adreno 530
GeForce ULP K1 (Tegra K1 Kepler GPU)
HD Graphics 4400
HD Graphics 510 515 *
NVS 5200M
Mobility Radeon HD 565v
Radeon HD 7550M
Mobility Radeon HD 4670
GeForce GT 425M
GeForce 9700M GTS
Radeon HD 6645G2 *
Quadro FX 2700M
GeForce GT 335M
Radeon HD 7600G
Mobility Radeon HD 3870
Mobility Radeon HD 4650
GeForce GT 220
GeForce GT 420M
Radeon HD 7530M *
Mobility Radeon HD 3850
GeForce GT 330M
Quadro FX 880M
Quadro NVS 5100M
GeForce GT 240M
Radeon HD 7490M *
HD Graphics 5300
Radeon HD 7510M *
GeForce Go 7950 GTX
Quadro FX 3500M
GeForce 8700M GT SLI
GeForce 9700M GT
GeForce GT 230M
Mobility Radeon HD 550v
Radeon HD 7480D
HD Graphics 4000
Mali-T760 MP8
Radeon HD 6620G
HD Graphics (Broadwell) *
Adreno 430
Radeon R5 (Beema/Carrizo-L)
Radeon R4 (Beema) (Kaveri)
HD Graphics (Skylake) *
Radeon HD 6450 GDDR5
Radeon HD 7500G
Radeon HD 8450G
Radeon HD 7470M
Radeon HD 6490M
Radeon HD 8400
Mali-T880 MP4
GeForce GT 520MX
Radeon HD 7520G
GeForce GT 325M
GeForce Go 7800 GTX SLI
GeForce 8600M GT SLI
GeForce Go 7900 GS SLI
GeForce GT 130M
NVS 4200M
GeForce Go 7900 GTX
Quadro FX 2500M
Radeon HD 8350G
Radeon HD 8330
GeForce 9650M GS
GeForce 9650M GT
Radeon R3 (Mullins/Beema)
GeForce 8700M GT
Quadro FX 1700M
Quadro FX 1600M
GeForce Go 7800 GTX
GeForce Go 7900 GS
Quadro NVS 320M
Quadro FX 1500M
GeForce 9600M GT
GeForce GT 220M
Quadro FX 770M
GeForce GT 120M
Radeon HD 7450M
GeForce 610M
GeForce 705M
Mali-T760 MP6
Radeon HD 6470M
FirePro M3900 *
GeForce GT 520M
Radeon HD 7420G
Mobility Radeon HD 3670
Mobility FireGL V5725
PowerVR GX6450
Adreno 420
HD Graphics (Haswell)
Radeon HD 6520G
Radeon HD 8310G *
GeForce 320M
GeForce GT 320M
Mobility Radeon HD 2600 XT
Mobility Radeon X1900
Mobility Radeon X1800XT
Mobility Radeon X1800
GeForce Go 6800 Ultra
GeForce Go 7800
GeForce 9600M GS
GeForce 9500M GS
Radeon HD 7400G
Radeon HD 6480G *
Mobility Radeon HD 2700
GeForce GT 415M
GeForce 410M
Radeon HD 7370M
Adreno 418
HD Graphics (Cherry Trail)
Radeon HD 6370M
Radeon HD 8280
Mobility Radeon HD 5470
Radeon HD 6450M
Radeon HD 7430M *
Mobility Radeon HD 3650
Mobility FireGL V5700
Mobility Radeon HD 5145
Mobility Radeon HD 545v
Radeon R6 (Mullins) *
Radeon HD 8240
Radeon HD 8250
Mobility Radeon HD 4570
Quadro FX 570M
Mobility Radeon HD 5450 *
Radeon R2 (Mullins/Beema) *
GeForce 8600M GT
Mobility Radeon HD 2600
HD Graphics 3000
Quadro FX 380M
GeForce 310M
GeForce G210M
NVS 3100M
GeForce 405M
GeForce 315M
GeForce Go 7600 GT
GeForce 9500M G
GeForce 8600M GS
NVS 2100M
GeForce Go 7700
GeForce Go 6800
Quadro FX Go 1400
Mobility Radeon X800XT
Radeon HD 6430M *
Radeon HD 6380G *
Mobility Radeon HD 5430
Radeon HD 8210
Mobility Radeon HD 540v
Mobility Radeon HD 4550
HD Graphics 2500
HD Graphics (Ivy Bridge)
Quadro NVS 310
Radeon HD 7350M *
Radeon HD 6350M *
Mobility Radeon HD 4530
Mobility Radeon HD 4350
Radeon HD 4350
GeForce 305M
Mobility Radeon X1700
Mobility FireGL V5250
Mobility Radeon X2500
GeForce Go 7600
Quadro NVS 300M
Mobility Radeon X800
Mobility Radeon X1600
Mobility FireGL V5200
Mobility Radeon 9800
GeForce Go 6600
Mobility Radeon X1450
Mobility Radeon X700
Mobility FireGL V5000
GeForce G 110M
Quadro NVS 295
Radeon HD 6330M *
Mobility Radeon HD 4330
GeForce 8400M GT
Quadro NVS 140M
HD Graphics 2000
GeForce 9500M GE *
GeForce 9400M (G) / ION (LE)
HD Graphics (Sandy Bridge) *
Adreno 330
PowerVR G6430
PowerVR GX6250
PowerVR G6400
HD Graphics (Bay Trail)
Mali-T628 MP6
Mali-T760 MP4
Chrome9HD *
Radeon HD 7340
Radeon HD 6320 *
Radeon HD 7310
Radeon HD 6310 *
Radeon HD 8180
Mobility Radeon HD 3470
GeForce 9300M G
ION 2 *
GeForce 9300M GS
Quadro FX 370M
Quadro NVS 160M
GeForce 9200M GS
Mobility Radeon HD 3450
Mobility Radeon HD 3430
Mobility Radeon HD 3410
Mobility Radeon HD 2400 XT
Radeon HD 4270
Radeon HD 4250
Radeon HD 7290 *
Radeon HD 6290 *
Radeon HD 4200
Graphics Media Accelerator (GMA) HD Graphics
Radeon HD 6250
Quadro NVS 150M
Quadro FX 360M
Mobility Radeon X1350
Mobility Radeon X1400
GeForce 9100M G
GeForce 8400M GS
Quadro NVS 135M
Mobility Radeon HD 2400
Radeon HD 3200
Radeon HD 4225 *
Radeon HD 4100 *
SGX554MP4
Mali-T628 MP4
Mobility Radeon HD 3400 *
Radeon HD 3100
GeForce 8400M G
Mali-T860 MP2
Quadro NVS 130M
GeForce 8200M G
Graphics Media Accelerator (GMA) 4700MHD
Graphics Media Accelerator (GMA) 4500MHD
Graphics Media Accelerator (GMA) 4500M
Mali-T604 MP4
GeForce Go 7400
Quadro FX 350M
Quadro NVS 120M
GeForce Go 7300
GeForce Tegra 4 *
PowerVR G6200
Adreno 405 *
Quadro NVS 110M
Mobility Radeon X600
Mobility FireGL V3200
Mobility FireGL V3100
Mobility Radeon HD X2300
Mobility Radeon 9700
Mobility FireGL T2e
Mobility Radeon X1300
GeForce4 4200 Go
Mobility Radeon 9600
Mobility FireGL T2
Mobility Radeon 9550
GeForce Go 7200
GeForce Go 6400
Mobility Radeon X300
GeForce Go 6250
GeForce Go 6200
GeForce FX Go 5700
Quadro FX Go 1000
GeForce FX Go 5600 / 5650
Radeon Xpress X1270
Radeon Xpress X1250
Radeon Xpress X1200
Graphics Media Accelerator (GMA) X3100
Mali-T624
Adreno 320 *
Mali-T760 MP2
Mali-T720 MP4
Mali-450 MP4
Graphics Media Accelerator (GMA) 3650 *
GeForce 7190M *
GeForce 7150M
Radeon Xpress 1150
GeForce Go 6150
GeForce Go 6100
GeForce 7000M
Graphics Media Accelerator (GMA) 3600 *
Mobility Radeon 9200
Mobility FireGL 9000
GeForce FX Go 5200
Mobility Radeon 9000
GeForce 4 488 Go
GeForce 4 460 Go
GeForce 4 440 Go
GeForce 4 420 Go
Graphics Media Accelerator (GMA) 3150
Graphics Media Accelerator (GMA) 950
SGX545 SGX544MP2 SGX543MP2 *
Mali-T720 MP2
Mali-T720
Adreno 302 304 305 306
Mobility Radeon 7500
Mobility FireGL 7800
Graphics Media Accelerator (GMA) 900
Radeon Xpress 200M
Radeon Xpress 1100
Mirage 3+ 672MX
Mirage 3 671MX
Mali-400 MP4 *
GeForce ULP (Tegra 3) *
VideoCore-IV *
Adreno 220 225*
Vivante GC1000+ Dual-Core
Mali-400 MP2 *
GeForce ULP (Tegra 2) *
Graphics Media Accelerator (GMA) 600 *
SGX540 *
Graphics Media Accelerator (GMA) 500
Adreno 205 *
Adreno 203 *
GC800 *
SGX535
SGX531
SGX530
Adreno 200 *
Mali-200 *
GeForce 3 Go *
GeForce 2 Go 200 / 100
Mobility Radeon 9100 IGP
Mobility Radeon 9000 IGP
Mobility Radeon M7
Mobility Radeon M6
Chrome9 HC
Extreme Graphics 2
Mobility Radeon 7000 IGP
Radeon IGP 340M
Radeon IGP 320M
S3G UniChrome Pro II
S3G UniChrome Pro
Castle Rock
Mirage 2 M760
Mirage M661FX
S3 Graphics ProSavage8
Mobility 128 M3
SM502 *
</pre>
Kernel-space drivers like '''radeon''' (older AMD driver for older GPUs), '''amdgpu''' (newer driver for newer GPUs, allows using a few new features), i915, nouveau and a few others. They are what handles the gory details of talking to the GPU itself (writing to proper registers, handling its memory directly, configuring outputs, and so on). Unfortunately most of what they're exposing can be only consumed by a single user of that GPU, which is why we need...
DRM and DRI (Direct Rendering Manager/Infrastructure) controls access to the GPUs, provides interfaces for talking to the GPU concurrently by multiple apps at once (without them breaking each other) and lets the system perform the most basic tasks like setting proper resolution and such if no userspace apps understand how to talk to the GPU exposed. DRI and DRM expose the GPU interfaces mostly as-is, not in a "vendor-neutral" portable way - if you don't have an application developed specifically for a GPU you have, it won't work.
"let's create a vendor-neutral interface for graphics so that apps can ignore the GPU-specific bits and get right to the drawing!" - which is what OpenGL is. User-space drivers implement the OpenGL specification and expose it as an OpenGL library to apps (like games, browsers, etc) instead of the GPU. Mesa is the most popular collection of open-source user-space drivers and contains a few user-space drivers for different GPU families: '''radeonsi''' for most modern AMD GPUs (and '''r600g''', r300g and others for older ones), '''i915/i965''' for old/new Intel GPUs and '''nouveau''' for Nvidia GPUs.
There's also Gallium, which is a bunch of utilities and common code shared among these drivers - if certain things can be done once and work everywhere, they'll land in Gallium and benefit all the drivers. Most Mesa drivers use Gallium (radeonsi, nouveau, software renderers), some don't (intel after gma950).
Displaying 2D windows supports device-specific 2D drivers as well, but nowadays most of these are no longer needed as the modesetting can handle most hardware on its own. As the DRM/DRI got some additional interfaces for what used to be hardware-specific (setting resolutions, refresh rates, etc) and software requiring accelerated 2D drawing was optimized OpenGL-based renderers, dedicated 2D acceleration is slowly going away. Since around 2012, the 3D part of the graphics card deals with 2D operations.
Modern GPUs can also decode video!? There's VDPAU (NVIDIA & AMD GPUs) and VA-API (AMD & Intel GPUs) that can also talk to the GPU exposed via DRM/DRI and issue proper commands to decode/encode a given video stream. Those drivers are GPU-specific too.
So let's say you have some example GPUs, here's how example stacks could look like:
* AMD Radeon HD8750: amdgpu -> DRM/DRI -> Mesa (radeonsi)
* AMD Radeon HD4850: radeon kernel driver -> DRM/DRI -> Mesa (r600g) -> games/apps/etc.
* NVIDIA GeForce 460: nouveau kernel driver -> DRM/DRI -> Mesa (nouveau) -> games/apps.
* Intel GMA950: i915 kernel driver -> DRM/DRI -> Mesa (i945) -> games/apps.
{| class="wikitable sortable" width="90%"
! width="15%" | Description
! width="15%" | Analog Output
! width="15%" | Digital Output
! width="15%" | Laptop LCD
! width=30%" | Comments
|-
| <!--Description-->Fudomi GC888A
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->1080p 100in throw projector
|-
| <!--Description-->Vamvo VF320 (720P)
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->720p 90in
|-
| <!--Description-->Happrun H1
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->1080p 90in
|-
| <!--Description-->Umbolite Magcubic HIPPUS HY320 Mini
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->720p 100in
|-
| <!--Description-->Zentality A10 Plus
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->720p 110in
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->nexigo nova mini
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->nebula mars 3
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->epson lifestudio flex plus portable projector
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->dangbei freedo
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->benq gv50
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
Unless your computer uses a Firewire chipset manufactured by Texas Instruments, FireWire interfaces are likely to act buggy.
AROS is unlikely to ever support FireWire.
Bluetooth is similarly unlikely to be ever supported due to huge cost to be certified.
No, x86 PCMCIA card.resource at the moment. Writing card.resource would be a similar amount of work to writing a typical driver. However, it might be complicated by having to support a variety of PCMCIA-controller chipsets like TI PCI1225, PCI1410, PCI1420, 1450, PCIxx12 and O2, etc. m68k card.resource does not really have many higher level functions, most functions are really simple or poke Gayle registers directly. only exception is CopyTuple(). Amiga card.resource has one significant flaw: it's single-unit. would need card.resource and pccard.library. There was talk in the past of designing a new API for PCMCIA because card.resource only supports one slot, but since most modern laptops only have one slot anyway, I think it might be worthwhile to implement card.resource as-is (at least as a first step). pccard.library would be trivial to port. So, a new API is needed.
hy4drxjq8s187b17ba9jhxp2e7br8jl
4641143
4641142
2026-06-25T16:52:32Z
Jeff1138
301139
4641143
wikitext
text/x-wiki
Google translation into [http://translate.google.com/translate?hl=en&sl=auto&tl=de&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support German], [http://translate.google.com/translate?hl=en&sl=auto&tl=fr&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support French], [http://translate.google.com/translate?hl=en&sl=auto&tl=nl&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Dutch], [http://translate.google.com/translate?hl=en&sl=auto&tl=it&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Italian], [http://translate.google.com/translate?hl=en&sl=auto&tl=es&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Spanish], [http://translate.google.com/translate?hl=en&sl=auto&tl=hi&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Hindi],
[http://translate.google.com/translate?hl=en&sl=auto&tl=zh-CN&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Chinese Simplified],
[http://translate.google.com/translate?hl=en&sl=auto&tl=pl&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Polish],
[http://translate.google.com/translate?hl=en&sl=auto&tl=ru&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Russian],
{{ArosNav}}
[[#Audio Chipsets]]
[[#Graphic GFX Chipsets]]
[[#Rough gfx comparison]]
[[#]]
==x86 Native Environment==
AROS should run on almost any i386 PC hardware so long as the CPU is newer than an i486, and has a "Floating Point Unit (FPU)". Ideally around 700Mhz and above with at least 256MB of memory is recommended for desktops and around 1GHz and at least 256MB for laptops/notebooks/netbooks. For web browsing, etc above 1GB is usually needed and offers the option to run web browsers, media players and other hard disk heavy usage from RAM: disk.
Motherboards supported
* Most Intel mobos are supported (Skt 775 is ok but newer is better) - additional pci / pci-e cards may be needed for networking, audio, etc
* AMD based socket 939 am2 am2+ am3+, fusion and am4 ryzen based systems work but additional pci / pci-e cards may be needed
Supported graphics cards (gfx)
* Nvidia 2D and 3D 2005-2017.
64bit AROS Nouveau covers '''2D''' 8xxxgs and higher to GTX 900s and '''3D''' from .
32bit AROS supports '''2D''' from TNT through to fermi gtx5xx and '''3D''' acceleration fx5xxx to gtx4xx.
* Intel GMA 2D and 3D 2006-2009.
'''2D''' for many old netbooks and motherboards. '''3D''' for many early netbooks and motherboards
* AMD/ATI 2D only and '''no 3D'''. 1999-2005.
Desktop ie external monitor support only (no laptop internal support) for very early Radeon 7000 through to x600. Experimental 2D version for up to HD3xxx came later
* VESA 2D fallback modes for all graphic cards (GPUs) and with [http://www.youtube.com/watch?v=HKCHZFYj9Kk screen dragging].
It's worth noting however that support isn't guaranteed. Nor will potential power of a card reflect its performance under AROS.
Sound wise there are
* HDaudio support for onboard intel and AMD netbooks, ultrabooks, notebooks and motherboards (2005 to 2020)
* some AC97 codec support for very old motherboards and laptops (ie pre 2004)
* PCI and some PCI-E C-Media CMI8738 for desktop plugin cards
* PCI Creative Soundblaster EMU10K1 cards [http://amigaworld.net/modules/news/article.php?storyid=2512 SBLive]
* PCI semi professional some early VIA Envy24 desktop sound cards
* PCI Sound Blaster 128 aka SB16
Supported [http://en.wikibooks.org/wiki/Aros/Platforms/x86_Network_support network] which could be desktop, laptop, etc
* PCI-E Realtek rtl8169 which also includes the rtl8111 and rtl8110
* PCI Realtek rtl8139 and includes rtl8101 and rtl8100
* PCI intel pro100
* Broadcom 44xx 10/100 integrated in laptops around 2005
* VIA 10/100
* 3com Etherlink 10/100
* Realtek rtl8029 10mbit
Wireless wifi
* atheros 5000 wireless
*realtek 8187 usb
It is very hard to recommend a completely supported motherboard because as soon as newer motherboards arrive so their features change subtly, often introducing non supported parts like ethernet and audio. It is a moving target.
* mini-itx motherboard will only get you 1 pci or pci-e slot
* micro mATX or uATX will have more, typically 2 pci-e or pci slots which helps if any onboard features are not supported.
* full atx will have more slots available
'''N.B''' It is frustrating when a piece of hardware is not supported. Hardware documentation can run to over 100 pages and a lot of hardware do not have any public documentation anyway. Chips from different manufacturers for sound, graphics, SATA, etc. vary just as much, unless they follow a standard such as [https://github.com/acidanthera/AppleALC/wiki/Supported-codecs HDAudio codecs], AHCI etc.
Coding drivers is a far cry from Hello World programs or even a port of existing software. If you do actually want to try then get a hold of documentation on the relevant hardware and start there. Alternatively you could try to find some '''BSD''', MIT or MPL licence drivers as a point of reference. Please , do not think you can just adapt strings in a driver for different strings, it does not work that way. You will '''need''' to start from scratch for each new bit of hardware. Device driver programming require '''embedded''' skills, like manipulation of bits within registers, good debugging skills, dealing with interrupts, lots of patience, etc.
The following specific chipsets and drivers are also available - use Tools/PCITool to confirm Vendor and Product IDs - Please let us know any mistakes or any information to be added, to this General Chat list on [https://arosworld.org/ AROS World]
: Brief Timeline
: 2000-12-06 HIDD first mouse.hidd completed ([http://msaros.blogspot.com/ Michal Schulz])
: 2001-03-31 BOOT first boot from floppy disk with IDE device
: 2001-10-30 BOOT first cd bootable version
: 2002-01-27 HIDD first pci.hidd added (Michal Schulz)
: 2002-04-13 BOOT software HDToolBox added ()
: 2003-04-03 HIDD vesa2.hidd graphic modes added ()
: 2004-03-08 HIDD new pci and ata (pata) devices worked on (Michal Schulz)
: 2004-03-17 HIDD nVidia 2D driver appears (Michal Schulz)
: 2005-01-05 AHI AHI v6 audio system ported (Martin Blom)
: 2005-01-06 AHI SBLive SoundBlaster Live driver ported (Georg Steger)
: 2005-02-04 AHI AC97 playback only driver added (Michal Schulz)
: 2005-06-27 NIC amiTCP stack ported with 3com, NE2000, prism2 drivers (Neil Cafferkey)
: 2005-08-25 NIC nForce2 support added (Michal Schulz)
: 2005-12-24 NIC Intel Pro100 network driver added (Neil Cafferkey)
: 2006-03-25 HIDD ATI radeon 2D driver added (Michal Schulz)
: 2007-03-06 HIDD vesa 1.0 video driver added (Pavel Fedin)
: 2007-03-08 HIDD dospackets and FAT filesystem (Rob Norris)
: 2007-03-21 HIDD usb initial commit (Michal Schulz)
: 2007-10-01 BOOT Installer added (Neil Cafferkey)
: 2007-11-29 PORT 64bit x86 added (Michal Schulz)
: 2008-04-12 BOOT GRUB2 added (Alain Greppin and Nick Andrews)
: 2008-08-26 NIC RTL8139 added ([http://kalamatee.blogspot.com/ Nick Andrews])
: 2008-10-22 PORT to SAM440ep (ppc) (Michal Schulz)
: 2009-02-25 PORT to efika (ppc) (Michal Schulz)
: 2009-05-18 HIDD poseidon usb2.0 stack ported to AROS (Chris Hodges)
: 2009-11-18 NIC RTL8169 network driver arrived (Nick Andrews and [http://pagesperso-orange.fr/franck.charlet/oldnews.html Franck Charlet])
: 2009-12-23 AHI HDAudio based Atom CPU and netbook audio driver arrived (Davy Wentzler)
: 2010-03-09 BOOT USB pendrive stick booting available (Neil Cafferkey)
: 2010-05-26 HIDD Intel GMA900 2D graphics card support (Michal Schulz)
: 2010-09-03 NIC Wireless PCI based NIC arrived (Neil Cafferkey)
: 2011-04-30 HIDD Nvidia 2D and 3D nouveau graphics card support (Deadwood)
: 2011-08-30 HIDD Radeon 2D enhanced AMD driver arrives (Bearsoft)
: 2011-09-17 NIC Wireless USB realtek arrives (Neil Cafferkey)
: 2011-12-09 HIDD Intel 945G 3D Gallium graphics support (Sami)
: 2013-02-25 AHI AC97 VIA 686 audio support (Davy Wentzler and Neil Cafferkey)
: 2013-03-31 PORT early Raspberry PI native support (Nik Andrews)
: 2014-01-16 AHI Envy24 audio chipset support (Davy Wentzler and Neil Cafferkey)
: 2017-02-17 PORT Symmetric MultiProcessing smp added for x86 64bit (Michal Schulz)
: 2018-10-20 PORT Big Endian ARM
: 2021-11-26 NIC Broadcom 44xx ethernet (Neil Cafferkey)
: 2023-01-12 NIC Nvidia MCP61 ethernet (Neil Cafferkey)
: 2025-11 HIDD xHCI USB3 and isoc (Nik Andrews)
[[#top|...to the top]]
===Audio Chipsets===
'''If sound beeps in AHI prefs after Music set then some support is there. Select more than one channel for multiple audio streams, set frequency up to 44 kHz or higher and set the volume if not already set. Ensure you set the music unit 0 to 3 which allows the extra features of the audio card like microphone, line-out, etc).'''
====1996-2000 sb128.audio aka SB16 PCI====
*2021 5.27
as per CREATIVE's website, the model number is the first two digits on the front and first two digits on the back. my card says CT4810 and 161TK110B 995; this translates to CT4816 as the model.
The original AudioPCI 3000 card with the ES1370 had a master clock crystal for 44.1 kHz (22.5792 MHz), used an AKM codec (AK4531, non-AC97) and had 4 channel output; Creative later modified the design with a crystal for 48 kHz (24.576 MHz) and Sigmatel AC97 codec (a CT4700 SB128 with a CT5507 chip, AK4531, 22.5792 MHz crystal and TDA7360 speaker power amp). The issue with these cards involved never quite eliminate the effects of resampling on the 64V, it also shows signs of undersized coupling caps. These Ensoniq cards automatically engaged headphone amplifier (with a 4565 opamp).
Porting involved [http://repo.or.cz/w/AROS.git/commit/b60abd12967144a844980c422ea9e99c056eabca 40897], [http://repo.or.cz/w/AROS.git/commit/b7d6511fca6430a63fbaaa390b4f51bf0203a460 40898 configure], [http://repo.or.cz/w/AROS.git/commit/f51034cd22759a4ec3a2547bddb3a7169d956eaa 40900 bugs], [http://repo.or.cz/w/AROS.git/commit/4f43fc38e3489ea45d12b7b5ba6fff50b69c5746 40901 further bugs], [http://repo.or.cz/w/AROS.git/commit/d23c78aec75f049484b6916d27b6804ce858bb2c 40913 memory IO fixes], [http://repo.or.cz/w/AROS.git/commit/d256860fe3035016952e88d143c6f2611997f2f3 40914 irq fix].
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| Ensoniq AudioPCI 1000
| 0x1274
| 0x5000
|
| {{unk}}
| {{unk}}
| untested - es1370 (u?) AK4531 (u?)
|-
| Ensoniq AudioPCI
| 0x1274
| 0x5000
| 0x00
| {{yes}}
| {{maybe}}
|
|-
| CT4700 Sound Blaster PCI 64 (audioPCI 3000)
| 0x1274
| 0x5000
| 0x7c
| {{yes}}
| {{maybe}}
| works - opamp JRC4565(u?) [http://en.wikipedia.org/wiki/Ensoniq_ES1370 es1370] (u?)
|-
| CT4750 Sound Blaster 64/PCI
|
|
|
| {{unk}}
| {{unk}}
| untested - 4565-1056W (u1) stac9708t(u2) [http://arstechnica.com/civis/viewtopic.php?f=6&t=916891 ct5880-dcq] (u3) 24wc012 (u4)
|-
| CT4751 (SB128PCI)
| 0x1274
| 0x8001
|
| {{unk}}
| {{unk}}
| untested - [http://en.wikipedia.org/wiki/Sound_Blaster#Ensoniq_AudioPCI-based_cards es1371] (u?)
|-
| CT4810 Creative AudioPCI64V
| 0x1274
| 0x1371
| 0x06
| {{yes}}
| {{maybe}}
| works
|-
| CT4811 (SB Vibra 128)
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4812 (Vibra 128)
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4813
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4815
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4816 es1373 (vibra 128)
|
|
|
| {{unk}}
| {{unk}}
| untested but this card has creative's ES1373 as the main chip(U1). it is also different from the other CT4810 (vibra128) in that it does not have a second chip in U2 position. Also there is only one jumper JP1 (2X3).
|-
| CT5801 HP
|
|
|
| {{unk}}
| {{unk}}
| untested - es1373 (u3)
|-
| CT5803 Gateway
| 0x1274
| 0x1371
| 0x08
| {{yes}}
| {{maybe}}
| works 4565-0005b jrc (u1) 4297a-jq ztae0c0002 (u2) es1373 (u3)
|-
| CT4740
| 0x1274
| 0x1371
| 0x08
| {{yes}}
| {{yes}}
|
|-
| CT5805 Compaq OEM Premier Sound Presario 7
|
|
|
| {{unk}}
| {{unk}}
| untested - es1373 (u3)
|-
| CT5806 (Sound Blaster AudioPCI 128D)
|
|
|
| {{unk}}
| {{unk}}
| untested - 4297A-JO EP (u?) ZTAPWC9933 (u2) es1373 (u3)
|-
| CT5807 Dell OEM Dimension 8100
|
|
|
| {{unk}}
| {{unk}}
| untested - es1373 (u?)
|-
| CT5808
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4730 Sound Blaster AudioPCI 64V Ectiva EV1938
| 0x1102
| 0x8938
|
| {{unk}}
| {{unk}}
| untested
|-
| CT5880 on various motherboards
| 0x1274
| 0x5880
|
| {{unk}}
| {{unk}}
| untested [http://www.xbitlabs.com/articles/mainboards/display/ga-6rx.html Gigabyte GA-6RX] (VIA ApolloPro 266 2001], Gigabyte GA-6VM7-4E mobo, [http://active-hardware.com/english/reviews/mainboard/ga-7vtx.htm Gigabyte GA-7VTX] (KT266 2001), Gigabyte [http://www.amdboard.com/gigabytega7vtxh.html GA-7VTXH] (KT266A 2001), [http://www.amdboard.com/gigabytega7vrxp.html Gigabyte 7VRXP] mobo (KT333 2002), MSI MS-6309, MS-6318, MS-6337 (815E Pro), MS-6339 (850Pro) and MS-6340, PCChips Motherboard M571 TXPRO, Soltek SL-65ME+,
|-
| VMware Virtual Workstation(TM)
| 0x1274
| 0x1371
| 0x02
| {{Yes|but not Hi-Fi modes}}
| {{maybe}}
| works
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
<pre>
Revision 0x04 = ES1371 REV_ES1373_A
Revision 0x06 = ES1371 REV_ES1373_B
Revision 0x07 = ES1371 REV_CT5880_A
Revision 0x02 = CT5880 REV_CT5880_C
Revision 0x03 = CT5880 REV_CT5880_D
Revision 0x04 = CT5880 REV_CT5880_E
Revision 0x09 = ES1371 REV_ES1371_B
Revision 0x00 = EV1938 REV_EV1938_A
Revision 0x08 = ES1371 REV_ES1373_8
</pre>
====1999-2001 via-ac97.audio====
*2021 5.10
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| <!--Description-->694X with 686A KT133 PM133 or 693A with VT8231
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3058
| <!--Revision-->
| <!--Playback-->{{Yes| }} redirects earphones correctly
| <!--Recording-->{{Yes| }}
| <!--Comments-->audio controller works but depends on the underlying invisible codec used see AC97 section
|-
| <!--Description-->686B KT133A with VT8231
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3058
| <!--Revision-->0x50
| <!--Playback-->{{Yes|}} reroutes ear pieces right
| <!--Recording-->{{Yes|}}
| <!--Comments-->audio controller works but depends on the underlying codec used see AC97 section below
|-
| <!--Description-->686C
| <!--Vendor ID-->0x1106
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->untested
|-
| <!--Description-->KM266 or KT266 with VT8233, KT266A with VT8233A, VT8233C
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3059
| <!--Revision-->0x10
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->KM333 KT333 with VT8235
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3059
| <!--Revision-->0x30
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
| <!--Description-->KM400 KT400 with VT8237, KT600 with VT8237R,
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3059
| <!--Revision-->0x40 0x50 0x60
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
|}
====1998-2003 emu10kx.audio - Creative Labs SoundBlaster Live! and Audigy====
*2021 6.5
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| PCI512 CT4790 (emu10k1)
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested (1st Gen)
|-
| Live CT4620
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Live CT4760
| 0x1102
| 0x0002
| 0x07
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| playback works
|-
| Live Value CT4670
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| works plays stereo (2nd Gen)
|-
| Live Value DELL CT4780
| 0x1102
| 0x0002
| 0x06
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| plays/records stereo - untested 4.1mode
|-
| Live Value Compaq CT4830
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{Maybe}}
| <!--Recording--> {{unk}}
| not working
|-
| Live Value CT4831
| 0x1102
| 0x0002
| 0x00
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Live Value CT4832
| 0x1102
| 0x0002
| 0x07
| <!--Playback--> {{yes}}
| <!--Recording--> {{partial|Line-In only}}
| works
|-
| Live Value CT4832
| 0x1102
| 0x0002
| 0x08
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| works
|-
| Live Value HP CT4870
| 0x1102
| 0x0002
|
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| Works
|-
| Live Value Gateway CT4871
| 0x1102
| 0x0002
|
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Live! Platinum 5.1 SB0060
| 0x1102
| 0x0002
| 0x00
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
| plays audio/records, untested 5.1 (3rd Gen)
|-
| Live 5.1 SB0100 -SFF
| 0x1102
| 0x0002
| 0x00
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| works
|-
| Live 5.1 Player SB0220
| 0x1102
| 0x0002
| 0x0a
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
| plays audio/records stereo, untested 5.1
|-
| Live 5.1 Digital SB0228
| 0x1102
| 0x0002
| 0x0a
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
| working
|-
| Audigy SB0090 (emu10k2)
| 0x1102
| 0x0004
|
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| <!--Description-->Audigy SB0230
| <!--Vendor ID-->0x1102
| <!--Product ID-->0x0004
| <!--Revision-->0x03
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Yes|Mic only}}
| <!--Comments-->5th Dec 2012 - untested optical tos link. contains also IEEE1394/Firewire (untested)
|-
| Audigy 2 Platinum 6.1 SB0240 SB0250 EMU10K2.5
| 0x1102
| 0x0004
| 0x04
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| works
|-
| Audigy 2 PRO SB0280 EMU10K2.5
| 0x1102
| 0x0004
|
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Audigy 2 ZS SB0350
| 0x1102
| 0x0004
| 0x04
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
|
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| Live 5.1 DELL SB0200 SB0203 emu10kx
| 0x1102
| 0x0006
| 0x0
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
|
|-
| Live 24bit SB0410
| 0x1102
| 0x0007
| 0x
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Live 24bit DELL SB0413
| 0x1102
| 0x0007
| 0x
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy LS SB0310
| 0x1102
| 0x0007
| 0x0
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy SE 7.1 SB0570
| 0x1102
| 0x0007
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 2 ZS SB0320 SB0360 (PRO)
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 2 VALUE SB0400
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 4 VALUE SB0610
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 4 PRO SB0380
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| EMU E-MU 0404 PCI (not USB) EM8852
| 0x1102
| 0x000
| 0x0
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver but linux support needs firmware
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
the green jack is for the main speaker pair AND headphones, so manual switching will be required
If your card is wired for the "AC97" standard, then it's up to your headphone jack to switch the green speaker output in and out
the headphone jack has Normally-closed contacts that will open on insertion, which breaks the signal path back to the sound card (FP_RETURN)
====2000-2010 cmi8738.audio - C-Media====
*2021 5.20
;Read [http://amigaworld.net/modules/news/article.php?storyid=2512 more] and imported on [http://repo.or.cz/w/AROS.git/commit/aff741d60160c6a9d7d39c9e004a25ea3aa13847 20th July 2011] and [http://alsa.opensrc.org/Cmipci alsa docs].
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| Audiotrak MAYA EX5
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| cmi8738-sx 4ch
| 0x13f6
| 0x0111
| 0x10
| <!--Playback-->
| <!--Recording-->
| untested
|-
| e3dx hsp56 CMedia 8738-sx 4ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| EDio SC3000D 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Genius SoundMaker Value PCI C3DX
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Guillemot Maxi Sound Muse
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Hercules Gamesurround Muse LT
| 0x13f6
| 0x0111
| 0x10
| <!--Playback--> {{yes}}
| <!--Recording--> {{no}}
|
|-
| Hercules Gamesurround Muse XL LT 5.1
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Inno audio extreme 5.1 cmi8738/lx pci 6ch
| 0x13f6
| 0x0111
| 0x
| <!--Playback-->
| <!--Recording-->
| untested
|-
| M-Audio (Midiman) DiO 2448
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Sabrent SBT-SP6C 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| StarTech PCISOUND4CH 8738sx 4ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Sweex SC012 CMI8738-lx 4ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Terratec 5.1 PCI
| 0x13f6
| 0x0111
| 0x10
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Terratec Aureon Fun 5.1
|
|
|
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| Has SPDIF
|-
| Trust Sound Expert Digital Surround 5.1 (cm8738-mx 6ch)
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Turtle Beach Riviera CMI8738-MX 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| XSonic CMI 8738 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->CMI8738 6ch PCI-E PCI Express version
| <!--Vendor ID-->0x13f6
| <!--Product ID-->0x0111
| <!--Revision-->0x10
| <!--Playback-->{{Yes|}}
| <!--Recording-->{{Maybe|}}
| <!--Comments-->Chinese based card with playback tested so far
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
====2001-2005 ac97.audio====
*6.4 27-12-2008
The AC97 chips were designed to be pinout interchangeable so that the sound support could change easily and quickly without motherboard redesigns
the green jack is for the main speaker pair AND headphones, so manual switching will be required
If your card is wired for the "AC97" standard, then it's up to your headphone jack to switch the green speaker output in and out, the headphone jack has Normally-closed contacts that will open on insertion, which breaks the signal path back to the sound card (FP_RETURN)
The ProductID and VendorID are for the audio controller only - the important additional codec is '''NOT''' so easily identified.
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| <!--Description-->Avance Logic (now Realtek) ALC100 and ALC101 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->ALC200 and ALC201 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->ALC201A and ALC202 and ALC202A codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->ALC650
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| <!--Comments-->most Nforce2 boards plays audio only - Abit NF7, Asus A7N8X, MSI K7N2, Epox 8RDA+, DFI
|-
| <!--Description-->ALC850 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{No}}
| <!--Comments-->no support for via P4P800 chipset on ASUS A8V-E SE Deluxe mobo - ICaros 1.3
|-
| <!--Description-->Realtek ALC653 codec and ALC655 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested Acorp 7NFU400
|-
| <!--Description-->Realtek ALC658 codec ALC658D
| <!--Vendor ID-->0x8080
| <!--Product ID-->0x24c5
| <!--Revision-->0x0
| <!--Playback-->{{Yes|Prefs Music and Units 0-3 set volume control - playback}}
| <!--Recording-->{{No}}
| <!--Comments-->MSI Motherboard on NB 22-09-2012
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->AD1881 SoundMAX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->Analog Devices first AC97
|-
| <!--Description-->AD1881A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Yes}}
| <!--Revision-->
| <!--Comments-->works with VIA Controller - untested Intel etc
|-
| <!--Description-->AD1881B
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1885 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{No}}
| <!--Comments-->Playback only with issues on D845HV but not working on MS-6367 because Units 0-3 have masked volume control
|-
| <!--Description-->AD1886
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1887
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->ADI AD1888 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{no}}
| <!--Recording-->{{No}}
| <!--Comments--> Icaros 1.51
|-
| <!--Description-->AD1980 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->AD1981A codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested IBM X30
|-
| <!--Description-->Analog Devices SoundMax(TM) AD1981B codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| <!--Comments-->plays back only on IBM T41 Thinkpad
|-
| <!--Description-->AD1985 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{No}}
| <!--Comments-->not working ahi prefs freezes on D865GLC mobo ([http://www.xbitlabs.com/articles/multimedia/display/int-sound2_3.html ]
|-
| <!--Description-->AD1986 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{No}}
| <!--Comments-->untested [http://uk.ts.fujitsu.com/rl/servicesupport/techsupport/Boards/Motherboards/Fujitsu/D1931/D1931.htm D1931] but works (Acer Aspire 3610 laptop)
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->Crystal Semiconductors CS4205, CS4202 codecs
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Cirrus Logic CrystalWare 4236
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->Cirrus Logic CrystalClear SoundFusion CS4297 CS4299 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested IBM T23
|-
| <!--Description-->conexant Cx20468-31 codec (id 30)
| <!--Vendor ID-->0x103c
| <!--Product ID-->0x3085
| <!--Revision-->
| <!--Playback-->{{No|AC97 appears in AHI Prefs}}
| <!--Recording-->{{No}}
| <!--Comments-->Tested AspireOS 1.8 on Gateway W322
|-
| <!--Description-->ESS Technology ES1921 AC'97 2.1
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->CMI 6501 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested on ASROCK SKT-AM2 AM2NF3-VSTA
|-
| <!--Description-->codec CMI9738
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->codec CMI9739
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->C-Media CMI 9739A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments--> untested on EPoX 8RDA3+
|-
| <!--Description-->CMedia CMI 9761A codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested ASRocK K7NF2-RAID
|-
| <!--Description-->C-Media CMI9880
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->National Semi conductor (now TI) LM4540, LM4543, LM4545, LM4546, LM4548, LM4549, LM4550 LM4560
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->STAC9708T codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->SigmaTel (now IDT) C-Major STAC 9460 (D/A only), 9461, 9462, 9463, 9200, 9202, 9250, 9251, 9220, 9221, 9223, 9750
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AKM (Asahi Kasei Microsystems) AK 4540, 4543, 4544A, 4545
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->codec VT1616 (VIA Six-TRAC Vinyl Audio)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->VIA VT1612, VT82C686
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->ESStech ESS ES1968 maestro-2
| <!--Vendor ID-->0x125d
| <!--Product ID-->0x1968
| <!--Revision-->0x
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->ESStech ESS ES1978 maestro2e
| <!--Vendor ID-->0x125d
| <!--Product ID-->0x1978
| <!--Revision-->0x
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->ESStech ESS ES1988 maestro3 allegro-1 codec
| <!--Vendor ID-->0x125d
| <!--Product ID-->0x1988
| <!--Revision-->0x12
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->Yamaha AC97 ymf-743 YMF752 YMF753 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->{{No}}
| <!--Comments-->untested ymf-753
|-
| <!--Description-->YMF724 YMF744 YMF-754 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| SIS 7018 / Trident 4dwave DX/NX / ALi 5451
| 0x1039 (0x1023 Trident)
| 0x7018 (0x2000 Trident DX) (0x2001 Trident NX)
| 0x02
| <!--Playback-->{{No}}
| <!--Recording-->{{No}}
| no support - introduced early 2000s
|-
| SIS 7012
| 0x1039
| 0x7012
|
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| working through 1 speaker only took over from SIS7018 (2002 onwards)
|-
| <!--Description-->Wolfson (now Cirrus Logic) WM9701, WM9701A (AC'97 1.03 spec), WM9703, WM9704 (AC'97 2.1), WM9705, WM9706, WM9707, WM9708
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->WM9709, WM9710, WM9711, WM9712, WM971
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->first Microsoft(TM) Xbox DAC sound chip (AC Link compliant D/A converter)
|-
| <!--Description-->Wolfson WM9717
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| Parallels
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested
|-
| VirtualBox
|
|
|
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| working
|-
| VirtualPC
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested
|-
| <!--Description-->Intel 82801AA Proxmox
| <!--Vendor ID-->0x8086
| <!--Product ID-->0x
| <!--Revision-->
| <!--Playback-->{{unk| }}
| <!--Recording-->{{unk| }}
| <!--Comments-->
|-
|}
====2005-20xx HDAUDIO.audio====
*6.36 2025 [https://github.com/aros-development-team/AROS/commit/43b33a9280b10963ca659de2cc3d1cf289b43a87 reset handler]
*6.35 202 []
*6.34 2019 AROS One 1.5 upwards
*6.29 2018
*6.27 2017 update
*6.25 2014 used for most Icaros 2.x
*6.20 July 2012
*6.17 Nov 2011
*6.15 Jun 2011
*[http://www.clusteruk.com/SitePortalPage.aspx?siteid=1&did=109 6.13] Sep 2010
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="5%" |Vendor ID
! width="5%" |Product ID
! width="5%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| <!--Description-->ALC260
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| <!--Description-->ALC262
* ALC262-VD2-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->LQFP-48
|-
| ALC268 codec
| 0x
| 0x
| 0x
| <!--Playback-->{{Yes|Version 6.17 Acer AOA110 and AOA150 netbooks), works (Dell Mini Inspiron 9 and 10v, }}
| <!--Recording-->{{Yes|Version 6.17 remove QUERY and select 'Mic 1' as input. Tested with 6.15 as well using QuickRecord and AE 4.0.23 under Icaros 1.4.}}
| <!--Comments-->AHI UNITS and Music are set to: hdaudio:HiFi 16 bit stereo++ / Frequency 48000 Hz, Volume +0.0 dB. The hdaudio.config in SYS:Prefs/Env-Archive is WITHOUT the QUERY-line. After changing and saving the config-file turn off and start again the computer. Switch from internal loudspeaker to headphone you must turn off the music before plug in the headphone-cable, otherwise there is no output on the socket. Back from line-out to internal speakers it is the same.
|-
| [http://blog.foool.net/wp-content/uploads/linuxdocs/sound.pdf Linux docs ALC269]
* ALC269Q-GR
* ALC269QSRS-GR
* ALC269W-GR
| 0x
| 0x
| 0x
| <!--Playback-->{{Maybe| }}
| <!--Recording-->{{Unk| }}
| <!--Comments-->TQFP 48 pin Power IC Chip From [https://patchwork.kernel.org/project/alsa-devel/patch/1408118123-15849-1-git-send-email-tiwai@suse.de/ ALC269 & co have many vendor-specific setups with COEF verbs, result in the codec stalling]
|-
| [http://www.alsa-project.org/db/?f=0321f8479fd670cd510f9912b1120fe7edcf2e07 ALC269VB]
* ALC269Q-VB5-GR
* ALC269Q-VB6-CG
* ALC269Q-VB6-GR
| 0x10ec
| 0x0269
| 0x100004, 0x100100, 0x100202
| <!--Playback-->{{Maybe|some versions work}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* v1 works Asus eee PC netbook 901/1000HA 1005HA/1008HA, 1001P,
* v2 maybe working Lenovo S9 S10 S10-2 S10-3 under HDAudio version 6.13
* v3 maybe dell wyse 7010
|-
| [http://alsa-project.org/db/?f=9c1746c5957b0ce72ff9cfffa312e97d14baf785 ALC269VC aka ALC3202]
* ALC269Q-VC2-GR
* ALC269Q-VC3-GR
| 0x10ec
| 0x0269
| 0x100203,
| <!--Playback-->{{Maybe|some versions work}}
| <!--Recording-->{{Unk}}
| <!--Comments-->SMT SMD QFN-48 -
* v1 unknown
* v2 unknown
* v3 x230, dell wyse,
|-
| ALC272
* ALC272-VA4-GR
| 0x10ec
| 0x0272
| 0x0
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Unk}}
|
* works Acer AOD150 and Acer AOD250 works [http://amigaworld.net/modules/newbb/viewtopic.php?topic_id=33755&forum=28#616910 Samsung NP-NC10], works Samsung NF210-A02] netbooks,
|-
| <!--Description-->ALC273
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| <!--Description-->ALC270
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC282
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x
| <!--Revision-->
| <!--Playback-->{{No|Version 6.17}}
| <!--Recording-->{{No|Version 6.17}}
| <!--Comments-->needs retest
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC660 ALC660-VD
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes| }}
| <!--Recording-->
| <!--Comments-->
* works asus F9s, F9e
* untested asus w7j, M51SN, A6Tc, A8Sr,
|-
| <!--Description-->ALC661-GR (2011)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| ALC662
| 0x1043
| 0x82a1
| 0x0
| <!--Playback-->{{Yes|Version 6.17 if QUERY added to top of hdaudio.config}}
| <!--Recording-->{{No|Version 6.17 not working for eee pc 900}}
|
* works Asus eee PC netbook 700/701/900, Atom 270 and 330 mobos, odd clicks (D410 NM10 PineTrail),
|-
| <!--Description-->[http://outpost.fr/rmaa/ALC663.htm ALC663]
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0861
| <!--Revision-->
| <!--Playback-->{{No|Version 6.13}}
| <!--Recording-->{{Unk}}
| <!--Comments-->not bad output like headphone amp part of the codec actually works well but messed up by undersized coupling capacitors to actually support such a low impedance
* not working Asus n50vn x71vn,
|-
| <!--Description-->ALC665
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC666
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC667
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC668
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC670
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->ALC880
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->some 915 and 925 chipset mobos
|-
| <!--Description-->ALC882M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| Realtek ALC883 ALC883-GR ALC883D-GR ALC883DTS-GR ALC883DD-GR codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe|some early versions work }}
| <!--Recording-->{{Unk| }}
| 2005 to 2007 HD Audio codec untested (Asus ),
|-
| Codec ALC885
| 0x10ec
| 0x0885
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
|-
| ALC888
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
|
|-
| ALC888s
* ALC888S-VD2-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}} MSI Wind U90/U100,
| <!--Recording-->{{Unk}}
| LQFP-48
|-
| ALC888b
| 0x8086
| 0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| untested (D510 NM10 Dual Core PineTrail mobo),
|-
| ALC888-VD
| 0x8086
| 0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| untested
|-
| ALC889A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes|works if QUERY added to the top of hdaudio.config in Prefs drawer/directory}}
| <!--Recording-->{{Unk}}
|
|-
| ALC889 Gr
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}} with crackles
| <!--Recording-->{{Unk}}
|
|-
| ALC889
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
| Tested with MSI H55 board
|-
| ALC887 ALC887-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
|
* working on ASUS P5KPL/EPU and Gigabyte GA-E350N-Win8 Rev1.0
|-
| ALC887-VD-CG
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0887
| <!--Revision-->0x100302
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}} Subsystem Id: 0x1458a002
|
|-
| ALC887-VD
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0887 0x1458
| <!--Revision-->0xa002
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{Unk}} index = 2
| ALC887 does not have any volume control ability on the mixer NIDs, so put the volume controls on the dac NIDs instead
* working with intermittent corrupting pop popping skipping stuttering sound issues MSI 760GM-P23 (FX),
* not working Gigabyte H61MA-D3V, AT3IONT-I Deluxe,
|-
| ALC887-VD2
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
| 3jacks
|-
| ALC887-VD2-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
|-
| ALC887-
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
|
|-
| ALC892-CG rev
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| 2011 48-pin LQFP Green package -
|-
| ALC892 ALC892-DTS-CG rev
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
| 2009 introduced
* works
* not working
* untested
|-
| ALC892 rev
| <!--Vendor ID-->0x0x10ec
| <!--Product ID-->0x0892
| <!--Revision-->0x100302
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| 2014
|-
| Realtek ALC886-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| LQFP-48
|-
| Codec ALC861 ALC861-VD
| 0x10ec
| <!--Product ID-->0x0663
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
|
* not working Toshiba Tecra A7
|-
| <!--Description-->ALC1200
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| ALC898
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
| not working
|-
| <!--Description-->ALC1500
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC3232 (aka ALC292)
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0292
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC3234 aka ALC255
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0255
| <!--Revision-->003
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC3287 aka ALC257
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes| }}
| <!--Recording-->{{no| }}
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->AD1882
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1883 HD Codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1884
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| Analog Devices SoundMAX AD1981
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| IBM Thinkpad T60,
|-
| AD1984 hp-m4 codec
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
* audio not working on Lenovo X61, Thinkpad T61,
|-
| AD1986
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
|
|-
| AD1988
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
|-
| <!--Description-->AD1988A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->Cirrus Logic CS4207
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->
| <!--Recording-->
|
|-
| <!--Description-->Cirrus Logic CS4208
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->
| <!--Recording-->
|
|-
| <!--Description-->Conexant CX20549 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe|very very very low volume}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested Fujitsu Amilo SI 1510 1520 no datasheet for the general public
|-
| <!--Description-->Conexant CX20549-12Z codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested HP 530
|-
| <!--Description-->Conexant CX20561 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* working lenovo x200s
* untested Lenovo Essential G555 Notebook, HP Pavilion dv6700,
|-
| <!--Description-->Conexant CX20582 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX2059x CX20590 CX20594-21Z codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX20585 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* working Lenovo Thinkpad T410,
|-
| <!--Description-->Conexant CX20672 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX20671 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX20751-21Z codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes| }}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| <!--Description-->Conexant CX11852 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX11880 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant after 2015 up to 2018 CX7501 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{no|no driver codec}}
| <!--Recording-->{{no|no driver codec}}
| <!--Comments-->Conexant bought by synaptics 2019
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->C-Media CMI9880 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->Gigabyte GA-8GPNXP
|-
| <!--Description-->Silicon Labs 3054
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| VIA 1708A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| untested,
|-
| VIA VT1708B
| <!--Vendor ID-->
| <!--Product ID-->
| 0x0010
| <!--Playback-->{{No|VIA PicoITX}}
| <!--Recording-->{{Unk}}
|
|-
| VIA 1708S
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
|
|-
| <!--Description-->VT2021 10ch
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->Gigabyte Z77MX-D3H, GA-H61M-S2H S2P,
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Creative CA0110-IBG
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->SigmaTel STAC 9220 9221 9223 8ch (7+1)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| <!--Comments-->ECS 945GCT/M-1333 (version 3.0),
|-
| IDT SigmaTec [http://explorer.cekli.com/articles/pdf/hd-audio STAC9227] /28/29/30 codec
| <!--Vendor ID-->0x8384
| <!--Product ID-->0x7626
| <!--Revision-->0x0002
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Unk}}
|
* works HP Compaq mini 110
* untested HP Pavilion HDX9000 CTO Notebook, Intel DG33TL mobo, Dell E520, Intel DP35DP mobo, Dell E6410 Laptop,
|-
| IDT (formerly SigmaTel) IDC STAC 9271/71D
| <!--Vendor ID-->0x8384
| <!--Product ID-->0x7626
| <!--Revision-->0x0002
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
|
|-
| <!--Description-->IDC STAC 9272 9273 9274
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->Intel D5400XS,
|-
| <!--Description-->IDT 92HD73C
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes}}
| <!--Recording-->
| <!--Comments-->headphones only Asus AT4NM10 mobo
|-
| <!--Description-->IDT 92HD75B
| <!--Vendor ID-->0x111d
| <!--Product ID-->0x7608
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* working [http://koti.kapsi.fi/jvaltane/aros/hdaudio/ HP Compaq Mini 700 Netbook - feedback required]
* untested HP Mini 5103 and 5102, HP Compaq 610, HP ProBook Laptop 4520s 4525s 6450b 6550b 6555b, HP EliteBook 2540p 2740p 8440p, Mobile Workstation 8540w 8740w, Pavilion NoteBook DV8,
|-
| <!--Description-->IDC 92HD81XX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC 92HD83XX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC STAC 92HD89XX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Wolfson (now Cirrus Logic) WM8850
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Wolfson WM8860
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->Intel High Definition Audio Revision 1.0. - 4-Channel DAC, 4-channel ADC. - DAC sampling
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
Using Prefs/AHI ensure you set the music unit and at least Units 0 (where most audio comes from) in top left drop down menu to HDaudio - HIFI in the section below. Set Units 1 or 2 to microphone or other outputs. Plus allow more than one channel for multiple audio streams and set frequency up to 44 kHz or higher on the right hand side of the ahi prefs. If sound beeps when you press the test button then all should be OK.
Output <- Codec <- Audio Controller (HDA) <-> Computer
codecs and exact hardware identifier. As mentioned above, HDA is only part of the work here, it gets the audio out of the main chipset in digital format (on a bus called I2S). This is not enough, there is another step needed which is routing that I2S signal to the output, converting it to actual audio, amplifying it, etc. This is handled by a separate chip called a "codec". Sometimes it is initialized by the BIOS, but this is not always the case.
Most audio drivers are made up of two parts a [http://www.kernel.org/doc/Documentation/sound/alsa/HD-Audio.txt Controller + a Codec]. The ProductID and VendorID are for the audio controller only - the important additional codec is '''NOT''' so easily identified.
Some newer versions of codecs are missing at the moment.
Things to try if sound not working
* try to connect something to the audio jack, maybe it is not playing on internal speakers or vice versa
* make sure you try and select all music units e.g. unit0, unit1....
* even if PCI ID's are in Prefs/Env-Archive/HDaudio.config, this doesn't mean it is working, it is the codec that matters
* it might be internally muted
<pre>
add debug=memory to grub boot line - continue booting with F10
Open a shell
Tools/Debug/Bifteck > RAM:audio.txt
</pre>
or
<pre>
Open a shell
Tools/Debug/Sashimi > RAM:audio.txt
Run ahi prefs
Click test tone button
Stop sashimi with Ctrl-C
</pre>
If the boot sound is enabled, you have to use Bifteck to capture AHI debug output. In the GRUB menu, press E on your selected entry, then add "debug=memory" to the options (alongside ATA=, vesa= etc.). Then F10 or Ctrl-X to boot. Once booted, run Tools/Debug/Bifteck again.
or
* try adding QUERYD to the start of ENVARC:hdaudio.config file (also known as Prefs/Env-Archive/) ie. on the first line
* '''OR''' try removing QUERY and QUERYD from the start of the hdaudio.config file
* Reboot
* open a shell
* type: sys:tools/debug/sashimi > ram:debug.txt
* open ahi prefs
* select one of the audio modes - HIFI or otherwise
* press the 'test sound' button
* press ctrl-c in the shell
* post the results to Aros-World
The HD Audio standard was designed to be hardware pinout interchangeable so that the sound support could change easily and quickly. HDA is a standard around particular chips. Each kind of chip has a certain number of DACs and pins, and even the same chip could be hooked up in different ways on different motherboards. The chips are programmable and the operating system can adjust how things are routed. Some pins aren’t even hooked up, so it makes no sense to route sound to them. Also some pins have sensors that can tell when something is plugged in, so that for example the speakers in a laptop can be muted when headphones are plugged in. Pins are also grouped, so for example all the outputs for a 5.1 sound system are grouped. Generally the HDA driver in the operating system is supposed to read the pin set up and figure out a reasonable way to set things up, and disconnected pins should be ignored, etc.
HDAudio standard has headphones on a separate DAC, and it's up to the driver.. it can even send different audio to the headphones without interrupting the main (green) outputs
====Envy24 series ====
A little history. VIA bought the ICE created Envy chipsets [http://www.via.com.tw/en/products/audio/controllers/comparison_controller.jsp VT1712] first. A few years later, they created several cheaper variants VT1724 (mixer missing), VT1721 (low end cut down), VT1720 (embedded on motherboard) and lastly the VT1723 (no support apart from Windows Envy24DT like SYBA SD-PEX63034).
There are PCI Express versions appearing.
The Envy24 is the base product that was originally designed by ICEnsemble, and it supports multi-channel hardware mixing, which is great for professional use. The HT version removes the hardware mixer (unimportant for non-professional uses). The [http://www.avsforum.com/t/364771/envy24ht-s-the-definitive-source HT-S] version is almost exactly the same as the HT, it just uses cheaper DACs. The PT version is exactly the same as the HT-S version, it is just the edition used for on-board audio on motherboards.
N.B. [http://www.soundonsound.com/sos/dec04/articles/pcnotes.htm PCI slot identification] and [http://hsi.web.cern.ch/HSI/s-link/devices/s32pci64/slottypes.html 3.3v PCI].
=====[http://www.opensound.com/readme/README.Envy24.html envy24.audio] - [http://www.anime.net/~goemon/alsa/ VT1712] =====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Playback
! Recording
! Comments
|-
| M-Audio Delta 66 - Rev B 1999
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested AK4524VF CS8404A-CS - needs Delta Series break out box with D-sub lead -
|-
| [http://ixbtlabs.com/articles/maudioaudiophile/index.html Audiophile 2496] Rev A 2000
| 0x14
| 0x
|
| <!--Playback-->{{unk| }}
| <!--Recording-->{{unk| }}
| works audio out on - I2S stereo codec AKM AK4528VF with the 24bit/96kHz DAC and ADC; CS8427 digital transceiver
|-
| [http://ixbtlabs.com/articles/maudioaudiophile/index.html Audiophile 2496] Rev B 2003
| 0x14
| 0x
|
| <!--Playback-->{{Yes }}
| <!--Recording-->
| works well - I2S stereo codec AKM AK4528VF with the 24bit/96kHz DAC and ADC; CS8427 digital transceiver
|-
| M-Audio Delta 410 - 2001 2001 REV-B
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested for D-A AK4529VQ converters with CS8427-CS 5532 1158B or Event Echo Gina 20-Bit Multitrack Interface Breakout Box -
|-
| M-Audio Delta 1010
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested AK5383 and AK4393 - 25 pin dsub -
|-
| M-Audio Delta 1010LT 1010E
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested for D-A AK4529 converters with 2 XLR Microphone inputs with pre amps
* be aware of redesign in 2007 - possible issues
|-
| M Audio Delta 44 - Rev A 2002 - Rev B 2003 - Rev D 2003
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested ICE1712G AK4524VF needs breakout box with 15 pin D-sub lead -
|-
| M-Audio Delta 66 Rev E 2006 - Omni Studio
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested needs break out box with 15 pin D-sub lead -
|-
| <!--Description-->M-Audio Delta DiO 2496
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| Terratec EWX24/96
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| [http://ixbtlabs.com/articles2/terratecdmx6fire/index.html TerraTec 6fire DMX 24/96]
| <!--Vendor ID-->0x1412
| <!--Product ID-->0x1712
| <!--Revision-->0x02
| <!--Playback-->{{No|tried line 1-2 3-4 5-6 7-8 }}
| <!--Recording-->{{No| }}
| untested - AKM and codec
|-
| <!--Description-->Terratec EWSA88MT
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| [http://lists.freebsd.org/pipermail/freebsd-multimedia/2007-March/006087.html Audiotrak Prodigy HD2] 24/96
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Audiotrak (ESI) Maya 1010 1010L
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| EMU 1212M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| EMU 1616M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| <!--Description-->Terratec EWS 88MT EWS 88D
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Hoontech Soundtrack DSP 24
Soundtrack DSP 24 Value
Soundtrack DSP 24 Media 7.1
Event Electronics EZ8
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Digigram VX442
Lionstracs
Mediastation
Terrasoniq TS 88
Roland/Edirol DA-2496
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
=====envy24ht.audio - VIA VT1724=====
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| ESI Juli@
| 0x3031
| 0x4553
| 0x0
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Yes}}
| reported working years ago [http://envy24.svobodno.com/ Envy24HT-S] - AKM 4358 DAC - AKM 4114/4112 DIT
|-
| ESI Juli@ Ego Igo rev K
| 0x3031
| 0x
| 0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| AK4358? DAC - AK4114 AK4112 DIT
|-
| [http://ixbtlabs.com/articles2/multimedia/m-audio-revolution51.html M-Audio Revolution 5.1]
| 0x1412
| 0x3631
| 0x0
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| reported working years ago but discontinued - (Envy24GT) - 3ch AKM 4358 DAC - ADC AKM 5365 -
|-
| [http://ixbtlabs.com/articles2/m-audio-revolution71/index.html M-Audio Revolution 7.1] 24/192
| 0x1412
| 0x3630 0x1724
| 0x0
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| not working - illegal semaphore - 6ch ADC AKM AK4355 24-bit 192 kHz - 2ch DAC AKM AK4381 24-bit 192 kHz - ADC AKM AK5380
|-
| Terratec Aureon Sky 5.1
| 0x153b
| 0x1147
| 0x
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - discontinued
|-
| [http://ixbtlabs.com/articles2/terratec-aureon71/index.html Terratec Aureon Space 7.1]
| 0x153b
| 0x1145
| 0x0
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - Wolfson WM8770 DAC, AC'97 codec SigmaTel STAC9744
|-
| Terratec Aureon Universe 7.1
| 0x153b
| 0x1153 (rev x) 0x1724 (rev3)
| 0x0
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| not working - semaphore error on rev 3 - DAC ADC
|-
| Terratec Phase 22
| 0x153b
| 0x1150
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - Envy24HT-S - AK4524
|-
| Terratec Phase 28
| 0x153b
| 0x1149
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - Envy24HT-S - AK4524
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Playback
| Recording
| Revision
| Comments
|-
| Audiotrak (ESI) Prodigy 7.1
| 0x4933
| 0x4553
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - Wolfson WM8770 and AC'97 SigmaTel STAC9744 codec
|-
| Audiotrak (ESI) Prodigy 7.1 LT
| 0x3132
| 0x4154
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver -
|-
| [http://ixbtlabs.com/articles2/sound/audiotrak-prodigy192.html Audiotrak (ESI) Prodigy 192] 24/96
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - STAC9460S codec
|-
| <!--Description-->Echo Layla 24/96
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
| [http://www.bit-tech.net/custompc/labs/80752/hercules-gamesurround-fortissimo-4.html Hercules Gamesurround Fortissimo 4]
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - Wolfson WM8776 Codec and WM8766 DAC
|-
| [http://ixbtlabs.com/articles2/multimedia/m-audio-audiophile192.html M-Audio Audiophile Delta AP 192k]
| 0x1412
| 0x3632
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - Stereo ADC AKM AK5385A 24-bit 192 kHZ - 8-channel DAC AKM AK4358 24-bit 192 kHz - AKM 4114/4112 DIT
|-
| ONKYO SE-150PCI
| 0x160b
| 0x0001
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver
|-
| <!--Description-->ESI Waveterminal 192x
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
| <!--Description-->Quartet
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments--> - AKM 4114/4112 DIT
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
|}
====hdmiaudio.audio - hdmi no support====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->ATI R6xx HDMI Audio codec support output
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x9840
| <!--Revision-->
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->Not detected
|-
| <!--Description-->NVidia HDMI
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Intel Series 6 CougarPoint HDMI codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Intel HDMI
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|}
[[#top|...to the top]]
===Graphic GFX Chipsets===
[https://gallium.readthedocs.io/en/latest/systems.html PCIe based] graphic chipset is defacto on 64bit AROS and recommended on 32bit.
AGP works on 32bit but faster transfers through the AGP slot are only available on a few supported motherboard chipsets
* Faster AGP Working = SIS 650 board, Intel 865pe AGP slot on MSI 6788-050,
* Not Supported = NForce2 chipsets, most Intel 815/820 chipsets, VIA chipsets, ALi chipsets,
The fallback for all graphics modes is vesa if any native support does not work. There is a choice of very low resolution vga as the last resort
2D tests performed with [http://download.aros3d.org/software/gfxbench.zip gfxbench] in the shell type gfxbench > out.txt (40 seconds blank screen is part of the test), via FreeDoom via limit-removing engine like odamex, chocolate or vanilla doom -timedemo demo1 or doom2 -timedemo demo1, doom.exe -iwad doom2 -file mymap.wad, Duke DNRATE 640x480 windowed
3D tests performed with Demos/Mesa/ , Cube 1080p, Cube 2 windowed not fullscreen 1920 x 1025, Quake3 ~ cl_drawFPS 1, Xonotic , [http://shinh.skr.jp/sdlbench/showtestgl.cgi test gl],
HDMI, DVI and DisplayPort monitors have a native resolution of 480p, 720p, 1080i, 1080p and up
<pre>
HDMI (licensing fee)
1.2 720p res.
1.3 1080 resolution
1.4 4K @ 30Hz
2.0 4K @ 60Hz
2.1 48Gbs for 4K @ 120Hz, 8K @ , VRR, etc
2.2 ultra96
</pre>
<pre>
DisplayPort (VESA introduced)
1.4 4K @ 60Hz
2.1 96Gbs for 4K @ 240Hz, 8K @ 120Hz. MST daisy chain multiple monitors,
</pre>
<pre>
GPMI chinese standard
2.0
</pre>
Might be supported on AROS
*OpenGL4 GPU must have 64-bit floating point FP64 math support, which is a hard requirement for GL 4.0. The max last revision opengl 4.6 (2017) on [https://wiki.gentoo.org/wiki/AMDGPU AMDGPU] RX 5000's / 6000s ([https://forum.batocera.org/d/7491-enable-opengl-46-and-vulkan-for-an-old-radeon-video-card RDNA] and Nvidia RTX might come to AROS) but Intel UHD, Iris Plus or Xe or Arc (will not unless a developer wants the challenge)
*OpenGL3 last revision 3.3 (2011)
Already supported on AROS
*OpenGL2 nvidia-nouveau,
*OpenGL1 intel gma950,
====vga.hidd====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Comments
|-
|
| 0x
| 0x
| 0x0
| Generic VGA Driver, limited to 640x480 in 16 colours - no 3D support
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Comments-->
|-
|}
====vesa.hidd====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Comments
|-
|
| 0x
| 0x
| 0x0
| 2D support for VBE1, VBE2 and VBE3 (most cards) - various resolutions and 24bit colour - no 3D support
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Comments-->
|-
|}
[[#top|...to the top]]
====[[w:en:Intel GMA|Intel GMA]]====
DVI output is not supported at the moment.
If having problems:
* Ensure the latest version is being used.
* Set GMA_MEM to 128 or 256 to test
* Try the FORCEGMA ToolType for 2D, and try the FORCEGALLIUM ToolType for 3D acceleration after 2D is verified to work. ToolTypes should be applied to the Devs/Monitors/IntelGMA monitor icon.
If still having problems:
* At GRUB boot screen edit boot line and add option: debug=memory
* Boot.
* Use shell command: tools/debug/bifteck > RAM:debug.txt
* And post [GMA MONITOR DETECTION] and other related debug lines
{| class="wikitable sortable" width="90%"
! width="5%" |Description
! width="5%" |Vendor ID
! width="5%" |Product ID
! width="3%" |Rev
! width="5%" |2D
! width="5%" |3D
! width="5%" |Analog Output
! width="5%" |Digital Output
! width="5%" |Laptop LCD
! width="30%" |Comments
|-
| 910GL 82910GL GMCH + ICH6
| 0x8086
| 0x2582 0x2592
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| 910GML 82910 GML GMCH + ICH6 Mobile
| 0x8086
| 0x2582 0x2592
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| may need to add forceGMA to grub boot line to work
|-
| 915G 82915G GMCH + ICH6-M
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
|
|-
| 915GL 82915GL GMCH
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
|
|-
| 915GV 82915GV GMCH
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Yes|}}
| <!--3D-->{{No|}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{N/A}}
| HP DC5100 small form factor
|-
| 915GM GMA900
| 0x8086
| 0x
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| tunnel gearbox }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes}}
| asus eee pc 900
|-
| 915GMS
| 0x8086
| 0x
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| tunnel }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes| }}
|
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| [http://www.notebookcheck.net/Intel-Graphics-Media-Accelerator-950.2177.0.html 945GU] - 133 MHz (Lake port for Intel A100 and A110)
| 0x8086
| 0x2772
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| Fujitsu LifeBook U1010,
|-
| 945GMS - 166 MHz / 250 MHz (1.05V)
| 0x8086
| 0x27a2
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes}}
| Dell D430
|-
| 945GSE - 166 MHz (for Atom)
| 0x8086
| 0x27ae
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Yes|[http://www.x.org/wiki/GalliumStatus]}}
| {{Yes}}
| {{No|dvi port}}
| {{Yes| }}
| for atom motherboards and most 2008/2009 netbooks
* 3D Works - AOA110 AOA150, Dell Mini 9, Samsung NC10, Toshiba NB100,
|-
| 945G 82945G GMCH + ICH7
| 0x8086
| 0x27a6
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| untested 2D and 3D
|-
| 945GC 82945GC MCH
| 0x8086
| 0x27a6
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| untested 2D and 3D
|-
| 945PM
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| Dell D420, Compaq nc6400,
|-
| 945GMS - 250 MHz Calistoga
| 0x8086
| 0x
| 0x0
| <!--2D--> {{Yes}}
| <!--3D--> {{Yes|most models}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes}}
|
* 3D Works Dell Latitude 2100, HP Compaq nc6320, Lenovo 3000, Lenovo T60, Samsung Q35, Dell D620, Dell D820,
* 3D untested Toshiba Satellite L100-120, Toshiba Portege M400,
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
|
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GMA 3100 G31
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works 2D but no 3D
|-
| GMA 3100 G33
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works 2D but no 3D
|-
| [http://en.wikipedia.org/wiki/Intel_GMA GMA 3150] netbooks and nettops
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works 2D but no 3D. no vga, dvi or hdmi output for nettops
|-
| <!--Description--> G965
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments-->
|-
| <!--Description--> Q965
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x2992
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{No}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments--> Only tested with VGA output.
|-
| 965GM X3100 (500 MHz)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| some support 2D but no hardware 3D - could not get it to work with VGA or dvi output
* untested Apple MacBook Air, Lenovo Thinkpad X300, Dell Inspiron 1525, Toshiba M9,
|-
| 960GM X3100 (400 MHz)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
|
|-
| 965M X3100 (400 MHz)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| Dell D830,
|-
| 965PM ??
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| Toshiba A9 works with limited 2D acceleration but no hardware 3D
|-
| GL965
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works with limited 2D acceleration but no hardware 3D
|-
| GM965
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works with limited 2D acceleration but no hardware 3D
|-
| GMA X3500 G35
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->X4500M G41 G43 G45 (400Mhz) Mobile 4 Series
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x2a42 0x2a43
| <!--Revision-->0x07
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue--> {{No|}}
| <!--Digital--> {{No|}}
| <!--Laptop LCD--> {{Yes| VESA}}
| <!--Comments-->works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->GMA 4500M HD (533 MHz)
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments-->works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->GMA 4700M HD (640MHZ)
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x2a42
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments-->works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
====[http://nouveau.freedesktop.org/wiki/FeatureMatrix nouveau].hidd (nvidia pci, agp, pci-e desktop)====
PCIe based nvidia graphics (gfx 8xxx) are the base level for 64bit AROS but earlier models still has some support on 32bit AROS
*Desktop, more likely hit rather than miss on early nvidia on Aros 32bit but on Aros 64bit ...
*Laptop, limited support for '''very''' early non-optimus (i.e. just Nvidia gfx only so no Intel and nvidia gfx combinations on 32bit but on 64bit ...)
Please note that the nouveau project is reverse engineering a nvidia graphics driver but takes time because of [https://nouveau.freedesktop.org/ nVidia's closed firmwares], etc
* 2026-06 - DEVS Nouveau.hidd Gallium.hidd Softpipe - LIBS Gallium GLU 20.0 Mesa OpenCL
* 2011-10 - DEVS 6.11 Nouveau.hidd 7.4 Gallium.hidd 9.4 Softpipe - LIBS 2.3 Gallium 1.3 GLU 19.0 Mesa OpenCL 1.x
* 2011-04 - DEVS 5.31 Nouveau.hidd 7.3 Gallium.hidd 9.3 Softpipe - LIBS 2.2 Gallium 1.1 GLU 18.0 Mesa OpenCL n/a
Nouveau support for AROS is limited to OpenGL 2.1 compliance on 32bit even for modern GL4 capable GPUs but on 64bit ...
On Aros 32bit OpenCL supports the NV50 (8000 9000) cards, less support in NVC0 fermi cards (300 upwards)
On Aros 64bit
ADoom3 graphic details ultra, benchmark while playing press the "`" key and type "Timedemo demo1" in the console
{| class="wikitable sortable" width="90%"
! width="5%" | Graphic Card
! width="5%" | Aros 32bit 1024 x 768
! width="5%" | Aros 32bit 800 x 600
! width="5%" | Aros 32bit 640 x 480
! width="5%" | Aros 64bit 1024 x 768
! width="5%" | Aros 64bit 800 x 600
! width="5%" | Aros 64bit 640 x 480
|-
| NV50 Asus EN8400GS SILENT/P/512M PCIe (G98) || || || || || ||
|-
| Gigabyte 8500GT 256M || 42,6 || 57,2 || 68,6 || || ||
|-
| NV96 (G96) Geforce 9500GT 512M || 43 || 53 || 57 || || ||
|-
| NV96 (G96) 9600GT || || || || || ||
|-
| NVA3 (GT215) GT240 || || || || || ||
|-
| NVA5 (GT216) Palit GT220 Sonic 512M || 39,7 || 55,8 || 63,7 || || ||
|-
| NVA8 (GT218) gt210 || || || || || ||
|-
| NVA8 (GT218) ION2 || || || || || ||
|-
| NVC3 (GF106) GT440 GTS 450 || || || || || ||
|-
| NVCF (GF116) NVC0 Fermi GTX 550Ti or GTS 450 v2 || || || || || ||
|-
| NVC8 (GF110) 580GTX || N/A || N/A || N/A || || ||
|-
| NVE0 Kepler GT630 || N/A || N/A || N/A || || ||
|-
| NVE6 (GK106) Kepler GTX660 || N/A || N/A || N/A || || ||
|-
| NVE7 (GK107) GTX 650 || N/A || N/A || N/A || || ||
|-
| NV110 Maxwell GTX 750 || N/A || N/A || N/A || || ||
|-
| NV126 (GM206) GTX950 upwards no reclocking || N/A || N/A || N/A || poor || poor || poor
|-
| NV160 family (Turing) GTX 1650 and RTX 2000 upwards with GSP firmware || N/A || N/A || N/A || unknown || unknown || unknown
|-
| HostGL Ryzen 5 4600H - Nvidia 1650 - Linux mint 21.1 || N/A || N/A || N/A || 150fps || 154fps || 155fps
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| width="5%" | Graphic Card
| width="5%" | Aros 32bit 1024 x 768
| width="5%" | Aros 32bit 800 x 600
| width="5%" | Aros 32bit 640 x 480
| width="5%" | Aros 64bit 1024 x 768
| width="5%" | Aros 64bit 800 x 600
| width="5%" | Aros 64bit 640 x 480
|}
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|-
| <!--Description-->tnt1 (nv04) tnt2 (nv05) m64 value (1998)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|very slow}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| NV04 Riva TNT TNT2 Fahrenheit freezes on via motherboard chipset so rename agp.hidd in SYS:Devs/Drivers or Monitors
|-
| <!--Description-->tnt vanta lt (nv06) 1998 /9
| 0x10de
| 0x002c
| 0x15
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|slow}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| <!--Description-->Geforce 256 (nv10) (2000)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|slow }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| untested Geforce256
|-
| <!--Description-->Geforce 2 Geforce 3 Geforce 4 (nv20) 2000 / 2
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|slow }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| works for some PCI and AGP Geforce2 Geforce3 Geforce4
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| Geforce FX5200 nv34 (2003)
| 0x10DE
| 0x0322 0x
| 0xA1
| <!--2D-->{{Maybe| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->{{Maybe|VGA15 }}
| <!--Digital-->{{Maybe|DVI}}
| <!--Laptop LCD-->{{N/A}}
| NV30 GeForce 5 FX Rankine Hardware OpenGL 1.5 - slower than GF MX 4000 for 2D - max 1024 x768
* not working [https://eab.abime.net/showthread.php?t=92328&page=8 mobos with VIA chipsets 2018]
* working (MSI 0x9174) the previous nouveau 5.x driver
* Others work with 6.x series XFX PV-T34K-NA, ASUS V9520-X/TD
|-
| Geforce FX5500 (nv34) (2003)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{Maybe| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| works
|-
| Geforce 5100 (NV34)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce FX 5200LE (NV34)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5200 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce FX5600 (nv31) (2004)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Maybe| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| works
|-
| GeForce FX 5600 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5600SE
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5600XT
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce FX5700 (nv36) (2004)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes|some}}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{Maybe| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5700VE
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5700 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5700LE
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5800 (NV30)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5800 Ultra (NV30)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900 (NV35)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900XT
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900ZT
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5950 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce 5xxx
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
|
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| Geforce 6200 (nv44) (2005)
| 0x
| 0x00F3 0x014F
| 0x0
| <!--2D-->{{Yes|5.28 Pixel Text}}
| <!--3D-->{{Maybe| use 5.28}}
| <!--Analogue-->{{Yes|VGA15 and s-video - plain 4pin cable lead will work with 7pin}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| NV40 GeForce 6 GeForce 7 Curie AGP Hardware OpenGL 2.1 needing previous 5.x version as regression arose 2011-10
|-
| Geforce 6200 (nv44a) (2006)
| 0x
| 0x0221
| 0x0
| <!--2D-->{{Yes|5.28 Pixel Text }}
| <!--3D-->{{Yes|}}
| <!--Analogue-->{{Yes|VGA15}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| Hardware OpenGL 2.1, PCI version tested OK in 2014-01-02 - Icaros 1.5.2
* not working
*working
|-
| GeForce 6200 with Turbo Cache (NV43)
| 0x
| 0x0161
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce 6200SE with Turbo Cache (NV44)
| 0x
| 0x0162
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce 6200 LE
| 0x10de
| 0x0163
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| PCI-E
|-
| GeForce 6600 LE
| 0x
| 0x00F4 0x0142
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6600
| 0x
| 0x00F2 0x0141
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| 2006 PureVideo HD 1 or VP1 re-used the MPEG-1/MPEG-2 decoding pipeline from FX
|-
| Geforce 6600gt (nv4x) (2005)
| 0x
| 0x00F1 0x0140
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Yes| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| OpenGL tests -
|-
| Geforce 6800 (nv40) (2005)
| 0x
| 0x0041 0x00C1 0x00F0 0x0211
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Yes| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 XE (NV4x)
| 0x
| 0x0043
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 LE
| 0x
| 0x0042 0x00C2 0x0212
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 GT (quadro fx 1400)
| 0x
| 0x0045 0x0046 0x0215
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 6800 GS
| 0x
| 0x0047 0x00C0 0x00F6
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 GTS NV40
| 0x
| 0x0040 0x0F9
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 6800XT
| 0x
| 0x0044 0x0048 0x00C3 0x0218
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6600 VE
| 0x
| 0x0143
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6500 NV44
| 0x
| 0x0160
| 0x0
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6250
| 0x
| 0x0169
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 6xxx
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GeForce 7800 GTX
| 0x
| 0x0090 0x0091
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| tunnel gearbox cube cube2 25}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> 256MB DDR3 - 1 6pin psu connector -
* not working asus en7800gtx/2dhtv/256m/osp/a -
* Works XFX PV-T70F-UDD7 Works in steve jones' scrap pc aros build 2010 2 DVI-I ports
* Untested
|-
| GeForce 7800 GT
| 0x
| 0x0092
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7600gt (G8 ) (nv4 ) (2006)
| 0x
| 0x02E0 0x0391
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL 2.1
* not working
* working
|-
| GeForce 7800 SLI
| 0x
| 0x0095
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GTX
| 0x
| 0x0290
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GT GTO
| 0x
| 0x0291
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GS
| 0x10de
| 0x0292
| 0x0a1
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working
* Works with a few glitches with XFX Pine 0x2218
|-
| GeForce 7950 GX2
| 0x10de
| 0x0293 0x0294
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| GeForce 7950 GT
| 0x
| 0x0295 0x02E4
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GS
| 0x
| 0x02E3
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7600 GS
| 0x
| 0x02E1 0x0392
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7650 GS
| 0x
| 0x0390
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7600 LE
| 0x
| 0x0394
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7800GS (G8 ) (nv4 ) (2006)
| 0x
| 0x0093 0x00F5
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working
* works if AGP motherboard chipset is supported - Hardware OpenGL 2.1
|-
| GeForce 7100 GS
| 0x
| 0x016A
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7350 LE
| 0x
| 0x01D0
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7300le (G8 ) (nv4 ) (2006)
| 0x
| 0x01D1
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7300SE 7200GSGF-7200GS-N-B1 variant (G72)
| 0x10de
| 0x01D3
| 0x0a1
| <!--2D-->
| <!--3D-->
| <!--Analogue-->{{Unk|1x DVI, 1x VGA, 1x S-Video}}
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2007 40W pci-e 1.0 VP1 no unified shaders -
* not working Asus on via chipset (2015),
* works Asus on intel chipset (2015),
|-
| Geforce 7300gt (G8 ) (nv4 ) (2006)
| 0x
| 0x0395 0x0393
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working
* works
|-
| GeForce 7300 GS
| 0x
| 0x01DF
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7500 LE
| 0x
| 0x01DD
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7xxx
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GeForce 8800 Ultra (NV50 family)
| 0x
| 0x0194
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NV50 GeForce 8 to GeForce 200s opengl 3.x - max res - 80nm technology - PureVideo HD 2 or VP2 Nvidia VDPAU Feature Set A (absent from ultra and some 8800gt?) added a dedicated bitstream processor (BSP) and enhanced video processor for H.264, VC-1 acceleration
|-
| Geforce 8800gts (nv50) (G8x) (2007)
| 0x
| 0x0400 0x0600 0x0193
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2007 200w openGL3 openCL - 2x6pin psu
* not working 0x0193 models (2015) on via chipsets,
* works
|-
| Geforce 8800gtx (nv5 ) (G8x) (2007)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2008 200W 1x 6pin connector,
* not working
* working
* untested XFX PV-T88P-YDF4, Alpha Dog Edition runs extremely hot - Gigabyte GV-NX88T512H,
|-
| GeForce 8800 GT
| 0x
| 0x0602 0x0611 0x0193
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->DVI up to 2500 x 1600
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - 6pin psu power connector required
* not working
* untested Asus EN8800GT/HTDP/256M EN8800GT/HTDP/512M EN8800GT/G/HTDP/512M
* works
|-
| GeForce 8800 GT (G92)
| 0x10de
| 0x0611
| 0x0a2
| <!--2D-->{{Yes|6.11 Pixel Text}}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{N/A}}
| <!--Digital-->{{Yes}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3 pci-e 2.0 8800GT 512MB on Icaros 2.0.3 [[File:8800GT aros heads.png|thumb|8800GT]] [[File:8800GT aros tails.png|thumb|8800GT detail]]
|-
| Geforce 8600gt (nv5 ) (G8x) (2007)
| 0x
| 0x0401 0x0402
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res
* not working
* works
|-
| GeForce 8500 GT
| 0x
| 0x0421
| 0x0
| <!--2D-->{{Yes| some color }}
| <!--3D-->{{yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL tests - max opengl 3.x but 2.1 offered - max res
* not working
* works Gigabyte 8500 GT,
|-
| GeForce 8800 GS
| 0x
| 0x0606 0x060D
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res
|-
| GeForce 8600GS
| 0x
| 0x0403
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 3.x VP3 offers complete hardware-decoding for all 3 video codecs of the Blu-ray Disc format: MPEG-2, VC-1, and H.264 - Nvidia VDPAU Feature Set B
|-
| GeForce 8300 GS
| 0x
| 0x0423
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res
|-
| Geforce 8400gs G98GS (end 2007) GT218 (2009)
* Rev2 with 8/16 cores and 128-512MB of DDR2 or GDDR3 memory.
* Rev3 with 8 cores and 512MB-1GB of DDR3 memory (based on Tesla 2.0)
| 0x
| 0x0424 0x0422
| 0x0
| <!--2D-->{{Yes|Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 490 gearbox 505 Cube 135 Cube2 55 quake3 }}
| <!--Analogue-->{{Yes|works digital part of DVI but nothing from any display port}}
| <!--Digital-->{{Yes|output on digital 24 pin array of DDWG's DVI and hdmi}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 50W openGL 3.1 openCL - case single slot - one single-link DVI digital output, supporting up to one 1920x1080 resolution display - analog resolution 640 x 480 to 1024 x 768 16 and 24 bit color - [http://www.phoronix.com/scan.php?page=article&item=nouveau_comp_2011&num=19 runs a little hotter than expected] - G98 VP3 pci-e 2.0 512MB DDR2 -
* not working
* works Asus EN8400GS SILENT/P/512M PCIe (G98),
|-
| Geforce 8400gs (nv50) (G86) (mid-2007)
* Rev1 with 16 cores / 256MB of DDR2 memory.
| 0x
| 0x0404
| 0x0
| <!--2D-->{{Yes|Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 490 gearbox 505 Cube 135 Cube2 55 quake3 }}
| <!--Analogue-->{{Yes|works but not tested thru 4 pins of analog signal of DVI plug}}
| <!--Digital-->{{Yes|output on digital 24 pin array of DDWG's DVI and hdmi}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2008 50W openGL 3.1 openCL - case single slot - one single-link DVI digital output up to 1920x1080 resolution display - analog resolution 640 x 480 to 1024 x 768 16 and 24 bit color - [http://www.phoronix.com/scan.php?page=article&item=nouveau_comp_2011&num=19 runs a little hotter than expected] - G86 VP2 128MB -
* not working XFX PV-T86S-YAJG NVIDIA GeForce 8400 GS 512MB DDR2, Sparkle 8400GS 512MB SX84GS512D2L-DPP,
* works Asus EN8400GS SILENT/HTP/256M SILENT/HTP/512M/A,
|-
| GeForce 8400 SE
| 0x
| 0x0420
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 2.x openCL
|-
| NVidia Quadro NVS290 DMS-59
| 0x
| 0x0403
| 0x0
| <!--2D-->{{no| }}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk|DMS-59 socket}}
| <!--Digital-->{{unk|DMS-59 }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2008 21W - G86S (G86-827-A2) - 16 shading units, 8 texture mapping units, and 4 ROPs. NVIDIA has paired 256 MB DDR2 - PCIe 1.0 x16 Low Profile -
|-
| Geforce Quadro FX 4600 (SDI), 5600
| 0x
| 0x
| 0x0
| <!--2D-->{{Partial|VESA 2d}}
| <!--3D-->{{no| }}
| <!--Analogue-->{{partial| }}
| <!--Digital-->{{partial| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GeForce 9800 GX2 (NV50 family)
| 0x
| 0x0604
| 0x0
| <!--2D-->{{Partial|VESA }}
| <!--3D-->{{no| }}
| <!--Analogue-->{{Partial| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 150w - 65nm technology
|-
| GeForce 9800 GTX
| 0x10de
| 0x0612
| 0x0a2
| <!--2D-->{{Yes| }}
| <!--3D-->{{Maybe|6.11 }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 2x6pin psu -
* not working xfx on via chipset (2015),
* works xfx on chipset intel ,
|-
| GeForce 9800 GTX+
| 0x10de
| 0x0613
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res 2560 x 1920 - case dual slot - 26amp 12v rail on computer psu if 2x6pin connectors needed - 55nm version of the G92 chip - will not work with PCI-e 1.0a slots -
* not working
* works on a few models
|-
| Geforce 9800gt (nv50) (G92a) (2008)
| 0x10de
| 0x0614
| 0x0xa2
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel 495 gearbox 513 Cube 156 Cube2 120 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{partial| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL 3.1 openCL 1.x - case dual slot - 600w 26amp on both 12v rails for 2x6pin psu on gfx card - no fan control - some come with 1x6pin - renamed version of the venerable GeForce 8800 GT - randomly works
* not working Gainward 512M untested
* working Gainward CardExpert (0x0401) Green Edition NE39800TFHD02-PM8D92 1024MB (no 6pin)
|-
| Geforce gf9600 9600gt (nv5 ) (G9x) (2008)
| 0x10de
| 0x0622
| 0x0a1
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel 493 gearbox 675 Cube Cube2 100 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL 3.2 openCL but no fan control - case dual slot - 1 6pin pcie psu connector - 500 Watt or greater power supply with a minimum of 26 Amp on the +12 volt rail - Max Analog: 2048x1536 and Max Digital: 2560x1600 (Dual Link DVI Only) - PCI Express® 2.0 / 1.1 Support - g96 gpu randomly works -
* not working bfg tech ocx,
* works gigabyte gv-n96tsl-512i -
|-
| Geforce gf9500 9500gt (nv5 ) (G9x) (2008)
| 0x10de
| 0x0640
| 0x0a1
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel 480 gearbox 500 Cube Cube2 64 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.2 - case single slot - 350 Watt/400 Watt or greater power supply with a minimum of 18 Amp/22 Amp on the +12 volt rail - Max Analog: 2048x1536 and Max Digital: 2560x1600 (Dual Link DVI Only) - PCI Express® 2.0 / 1.1 Support -
* not working zotac zone fanless, Gainward USA NE29500THHD01-PM8796, PNY G9500GN2E50X+0TE,
* works xfx xne-9500t-td01-pm8596 1024mb ddr2,
|-
| GeForce 9600 GS
| 0x
| 0x0623
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res - will not work with PCI-e 1.0a slots -
* not working
* works
|-
| GeForce 9600 GSO
| 0x
| 0x0610
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res - G92 chopped down - 9600GSO is re-badged 8800GS both very power hungry cards -
|-
| GeForce 9300 GS
| 0x
| 0x06E1
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 opengl 3.x - max res
|-
| Geforce 9400 GT (nv5 ) (G86S) (2008)
| 0x
| 0x
| 0x0
| <!--2D-->{{partial|}}
| <!--3D-->{{unk|}}
| <!--Analogue-->{{unk|1x DVI, 1x VGA, 1x S-Video}}
| <!--Digital-->{{unk|1x DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 50W opengl 3.x - max res
|-
| Geforce 9xxx (nv5 ) (G9x) (2008)
| 0x
| 0x
| 0x0
| <!--2D-->{{unk|}}
| <!--3D-->{{unk|}}
| <!--Analogue-->{{unk|}}
| <!--Digital-->{{unk|}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 opengl 3.x - max res
|-
| <!--Description-->Quadro FX 580 G96 chipset
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2009
|-
| <!--Description-->
NV84 (G84) GeForce 8600 (GT, GTS, M GT, M GS), 8700M GT,
NV92 (G92) GeForce 8800 (GT, GS, GTS 512, M GTS, M GTX)
GeForce 9600 GSO, 9800 (GT, GTX, GTX+, GX2, M GT, M GTX)
NV96 (G96) GeForce 9400 GT, 9500 (GT, M G), 9600 (M GS, M GT),
NV86 (G86) GeForce 8300 GS, 8400 (GS, M G, M GS, M GT), 8500 GT
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NVA0 (GT200) Tesla GeForce GTX (260, 275, 280, 285, 295)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->GeForce GTX 280 (NV50 family)
| <!--Vendor ID-->
| <!--Product ID-->0x05E1
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res PureVideo HD 4 (Nvidia Feature Set C or "VDPAU Feature Set C), VP4 added hardware to offload MPEG-4 Advanced Simple Profile (original DivX and Xvid)
|-
| <!--Description-->GeForce GTX 260
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x05E2
| <!--Revision-->
| <!--2D-->{{partial|Vesa}}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> 2 6pin - psu pci express 2.1 -
|-
| Geforce GTS250 250GTS (g92b) (2009)
| 0x10de
| 0x0615
| 0x0a2
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 486 gearbox 508-642 Cube Cube2 80 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> 2x6pin psu VP2 - pci-e 2.x - case dual slots - 738m 1gb ddr3 -
* not working Zotac branded version GDDR3 -
* works PNY gs-250x-zdfl and Gigabyte ??, BFG Tech RGTS2501024OCE, palit ne3ts250fhd52-pm8a92 with 2x6pin on top and hdmi output port,
|-
| <!--Description-->GeForce GT 240 (GT215 family)
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0ca3
| <!--Revision-->0xa2
| <!--2D-->{{Maybe|use VESA}}
| <!--3D-->{{No|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->late 2009 openGl 3.2 - case dual slots - no 6pin psu required with VP4 - All are pcie 2.1 cards and may not work in 1.0a slots -
* not working
* DDR3 with 512MB or 1GB -
* DDR5 -Asus ENGT240 - XFX Pine GT240XYHFC 0x3001 - Gigabyte GV-N240D5-512I rev 1.0 - Zotac AMP! with HDMI 1.3a with DisplayPort 1.1, Dual Link DVI -
* works
|-
| <!--Description-->GT220 (GT216) G220
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0a20
| <!--Revision-->0xa2
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Yes}}
| <!--Digital-->{{Yes|DVI }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> Icaros 2.0.3 GeForce GT220 1GB[[File:GT220 aros heads.png|thumb|GT220]][[File:GT220 aros tails.png|thumb|GT220]]
* untested NVIDIA Quadro® 400 512MB DDR3 GT216 DP DVI, AFox AF220 1Gb DDR3,
|-
| Geforce GT220 220GT G94 Tesla (g92b)
| 0x10de
| 0x0a20
| 0xa2
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 490 gearbox 505 cube 150 cube2 50 Quake3 }}
| <!--Analogue-->{{Unk|1x DVI, 1x VGA}}
| <!--Digital-->{{Yes|DVI but not 1x HDMI }}
| <!--Laptop LCD-->{{N/A}}
| 58W pci express 2.0 cards DDR3 - case single slot -
* not working ASUS ENGT220/DI/1GD2(LP)/V2 -
* works - gainward card expert 0x0401 GDDr3 512MB -
|-
| <!--Description-->GT210 GT 210 210GT G210 based on Tesla 2.0 GT218S GT218-300-A2 variant, GT218-300-B1
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0a65
| <!--Revision-->0xa2
| <!--2D-->{{Yes|6.11 Pixel Text}}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{Unk|1x DVI, 1x VGA}}
| <!--Digital-->{{Maybe|DVI out works but not hdmi or 1x DisplayPort}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 31W OpenGL 3.3 pci-e 2.0 cards - single slot -
* working GT218 based Asus EN210 based silent low profile large passively cooled -
* untested MSI GeForce 210 1GB DDR3 PCIe N210-MD1GD3H/LP,
* not working
|-
| <!--Description-->Nvidia ION2 (GT218) Tesla
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2012
|-
| <!--Description-->Quadro NVS 295 (256 MB GDDR3), NVS 450 (256M/512 MB DDR3)
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x
| <!--Revision-->
| <!--2D-->{{yes| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->
| <!--Digital-->{{partial|2 or 4 dp ports}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 25w low performance - G98s with 8 shading units, 4 texture mapping units, and 4 ROPs on PCI-Express 1.0 x16 -
*not working some NVIDIA Quadro NVS 295 2 dp ports (DELL, HP),
*working
|-
| <!--Description-->GT310 Tesla 310, 315, GT 320, GT 330 GT 340
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{Maybe|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2010 50w OpenGL 3.3 openCL all similar in performance to GT2xx except gt31x (poor)
|-
| <!--Description-->Quadro NVS310 NVIDIA NVS 310
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital--> 2 dp
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 25w GF119S (GF119-825-A1) 48 shading units, 8 texture mapping units, and 4 ROPs on PCI-Express 2.0 x16 - 512 MB DDR3 - PureVideo VP5 VDPAU Feature Set D -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description--> GTX 470, GTX 480 GF10 GF10* core (NVC0 family)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{Maybe| tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2010 215w 2x6 plugs - NVC0 family (Fermi) GF100 (GF100-275-A3) Fermi 448 shading units, 56 texture mapping units, and 40 ROPs with 1,280 MB GDDR5 - OpenGL4.5 OpenCL1.1 Tessellation - case dual slots -
|-
| Geforce GTX460 460GTX (G104) 256bit, 1GB v2 192bit and GTX 465
| 0x10de
| 0x0e22
| 0xa1
| <!--2D-->{{Maybe|VESA }}
| <!--3D-->{{Maybe| tunnel gearbox cube 055-111 cube2 50}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVC0 family (Fermi) OpenGL 4.x but - 2x6pin psu - case dual slots -
* not working evga 768MB GDDR5 192bit 01G-P3-1373-ER or 01G-P3-1372-TR
* works 1GB GDDR5 256bit 01G-P3-1371-ER
|-
| <!--Description-->Geforce GTX 460SE 192bit
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0e23
| <!--Revision-->0x91 or 0xa1
| <!--2D-->{{Yes| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->{{Yes| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> nouveau 6.11 - 2 6pin psu needed - case dual slots -
* not working
* works EVGA 01g-p3-1366-b6 et 1024MB p1041 -
|-
| Geforce GT450 GTS450 450GTS GF106
| 0x10de
| 0x0dc4
| 0x0a1
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel gearbox cube cube2 50 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes|DVI }}
| <!--Laptop LCD-->{{N/A}}
| 2010 Hardware OpenGL 4.2 but nouveau at 3.3 - most need 1x 6pin psu - case dual slots -
* not working
* DDR3 1 or 2GB - Palit NEAS450NHD41F,
* GDDR5 512Mb or 1GB - MSI MPN N450GTSM2D1GD5OC, Asus MPN ENGTS450DI1GD5,
* works Gainward Card Expert NE5S4500FHd51,
|-
| <!--Description-->GT 440 GF108 chipset or better OEM GF106
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 6.11 Pixel Text}}
| <!--3D-->{{Maybe| tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGl 4.1 opencl 1.x - no 6 pin psu - 96 cuda cores 128bit - case dual slots -
* not working
* OEM
* GDDR5 512MB to 1GB ASUSTeK ENGT440/DI/1GD5
* GDDR3 Asus 1gb to 2gb,
* works
|-
| <!--Description-->GT430 430GT (GF108)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|6.11 Pixel Text}}
| <!--3D-->{{Maybe|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->ddr3 memory 64bit or 128bit - buggy await new revision of driver
* not working
* works
|-
| <!--Description-->nVidia Quadro FX1800 768MB GDDR3 Full Height Graphics Card Workstation
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 6.11 Pixel Text}}
| <!--3D-->{{no|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->{{Maybe|DVI-I 2xDP}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->59W 768 MB GDDR3 memory using a 192-bit memory interface - OpenGL 3.3 -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GTX 590 Fermi
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->OpenGL4.4 OpenCL 1.1 - GDDR5 - 6pin and 8pin psu connectors - 512 cuda - case dual slots -
* not working
* works
|-
| <!--Description-->GTX 580,
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->PureVideo HD 5" or "VP5" (Nvidia Feature Set D or VDPAU Feature Set D) 4k UHD 3840 × 2160 H.264 decode -
|-
| <!--Description-->GTX 570,
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{Maybe|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working Zotac GTX 570, Gainward GTX560TI/570 Phantom,
* works gigabyte, evga
|-
| <!--Description-->Geforce 5xx 560gtx Fermi GTX 560,
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->opengl 4.x - 2 6pin psu - 384 cuda cores - case dual slots - will not work with PCI-e 1.0a slots -
* not working Asus ENGTX560 DC/2DI/1GD5,
* Ti LE 448 cuda GDDR5 320bit
* Ti 256bit
* works
|-
| <!--Description-->GTX 560 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working evga GTX 560Ti 01GP31560KR - Gainward GTX560TI/570 Phantom,
* works
|-
| <!--Description-->GTX 550 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x1201
| <!--Revision-->
| <!--2D-->{{Maybe|VESA Doom Doom2 Duke }}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->can hang on boot up on I2C Init or suffer random lockups on OpenGL apps - most need 1 6pin min 400W 24A on the +12V1 / +12V2 dual 12V rails of the computers' power supply unit - 192 cuda cores - case dual slots used - will not work with PCI-e 1.0a slots -
* not working eVGA GeForce GTX 550 Ti (1024 MB) (01GP31556KR) -
* untested asus Extreme, eVGA GeForce GTX 550 Ti (1024 MB) (01GP31557KR) - -
* works
|-
| <!--Description-->GT 545 and OEM GF116
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 4.2 opencl 1.x - GDDR5 with OEM only -
|-
| <!--Description-->GT530 OEM
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 6.11 Pixel Text}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->96 cuda cores - 1GB or 2GB DDR3 128bit
|-
| <!--Description-->GT520 520GT
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->untested 48 cuda cores - DDR3 64bit
|-
| <!--Description-->510, GT 530
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D 6.11 Pixel Text}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> ddr 3 - 50w max -
|-
| <!--Description-->GT610 Fermi GF119
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVS 315 300 GF119S
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{No|VESA}} needs special dms-59 cable
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 fermi 315 PNY VCNVS315-T 1Gb DDR3 but needs special dms-59 cable -
|-
| <!--Description-->GT630 GF108 Fermi
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->not accelerated 2015 - like the GT730 below - 96 cuda cores whilst kepler version has 384 - 128bit to keplers' 64bit bandwidth - kepler has 2GB DDR3
* not working Gigabyte
* DDR3
* GDDR5
* works
|-
| <!--Description-->Geforce GT 730 (two versions)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe| use VESA 6.11 Pixel Text}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> fermi version has 96 cuda cores 128bit GF108
* not working Asus
* works
|-
| <!--Description-->nVIDIA Quadro 4000
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}} 2 dp ports
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->142W 2Gb GDDR5 - PCI Express 2.0 x16 ; full Height card with 1x 6-Pin PCIe power need - CUDA Cores 256 - OpenGL 4.5
|-
| <!--Description-->nVIDIA Quadro 5000
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2011 200W 2.5Gb GDDR5 320 bit - PCI Express 2.0 x16 full Height card with 2x 6-Pin PCIe power need -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce GTX Titan GeForce GTX Titan Black GeForce GTX Titan Z
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVE0 family (Kepler) GeForce 600 GeForce 700 GeForce GTX Titan Kepler
|-
| <!--Description-->GeForce GTX 780 GeForce GTX 780 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->PureVideo HD 6" or "VP6" (Nvidia Feature Set E or VDPAU Feature Set E) significantly improved performance when decoding H.264 and MPEG-2
|-
| <!--Description-->GeForce GTX 770
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->opengl 4.4 opencl 1.1
|-
| <!--Description-->GeForce GTX 760 GeForce GTX 760 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce GT 740
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce GT 730 Kepler (two versions) f
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> kepler 384 cores 64bit GK208
|-
| <!--Description-->680gtx GK104 core gtx680 680m
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVE0 family (Kepler)
|-
| <!--Description-->GTX 690 Kepler NVE0
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->pci-e 3.0, OpenGL 4.4 OpenCL 1.1
|-
| <!--Description-->GTX 670
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GTX 660 GTX 660 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GTX 650 GTX 650 Ti GTX 650 Ti Boost
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVE0 family (Kepler) most need 1 6pin psu
* not working asus ENGTX560 DC/2DI/1GD5
* works
|-
| <!--Description-->Geforce GT 640
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* 128bit DDR3
* 192bit DDR3 1.5 to 3GB 50W
* 128bit GDDR5 75W
|-
| <!--Description-->GT 620 GT 640
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->Quadro K2000 NVE7 (GK107) Kepler
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 - 50w single slot pcie 2.0 -
|-
| <!--Description-->NVIDIA® Quadro® K4200 GK107 Kepler
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2014 4Gb GDDR5 - 105W 1 6pin -
|-
| <!--Description-->NVIDIA® Quadro® K420 1GB DDR3 Kepler
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2014 41W -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce 750ti, GeForce 900
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->[https://nouveau.freedesktop.org/FeatureMatrix.html NV110] Maxwell -
|-
| <!--Description-->Nvidia GTX 750
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x1381
| <!--Revision-->0xa2
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2026 nvidia test
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->GM206 2nd gen maxwell PureVideo HD 7" or "VP7" (Nvidia Feature Set F or VDPAU Feature Set F) adds full hardware-decode of H.265 HEVC Version 1 (Main and Main 10 profiles and full fixed function VP9 (video codec) hardware decoding
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->Quadro K2200 (GM107) Maxwell
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 - 68w single slot pcie 2.0 -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV132 (GP102) NVIDIA Titan (X, Xp), GeForce GTX 1080 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV134 (GP104) GeForce GTX (1070, 1080)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV136 (GP106) GeForce GTX 1060
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->Quadro K620 Maxwell
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2014 50w slim low profile 2gb ddr3 -
|-
| <!--Description-->quadro p620 2gb gddr5 128bit and quadro p1000 4gb gt1030 30w
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 50w slim low profile -
|-
| <!--Description-->GeForce gtx 1060, GeForce 1070
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NV130 Pascal
|-
| <!--Description-->NV137 (GP107) GeForce GTX (1050, 1050 Ti)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV138 (GP108) GeForce GT 1030
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->NV130 family (Pascal)
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV162 (TU102) NVIDIA Titan RTX, GeForce RTX 2080 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV164 (TU104) GeForce RTX (2070 Super, 2080, 2080 Super)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2020 NV160 family (Turing) unified gsp-rm firmware - best starting point for Vulkan support
|-
| <!--Description-->NV166 (TU106) GeForce RTX (2060, 2060 Super, 2070)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV168 (TU116) GeForce GTX (1650 Super, 1660, 1660 Ti, 1660 Super)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV167 (TU117) GeForce GTX 1650
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->gtx 1650ti super
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2018 old style
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV172 (GA102) GeForce RTX (3080, 3090)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 av1 decoding ampere
|-
| <!--Description-->NV174 (GA104) GeForce RTX (3060 Ti, 3070, 3080 Mobile)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->NV170 family (Ampere)
|-
| <!--Description-->NV176 (GA106) GeForce RTX (3050, 3060)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV177 (GA107) GeForce RTX 3050
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV192 (AD102) GeForce RTX 4090
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV193 (AD103) GeForce RTX 4080
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->NV190 family (Ada Lovelace)
|-
| <!--Description-->NV194 (AD104) GeForce RTX (4070, 4070 Ti)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV196 (AD106) GeForce RTX 4060 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV197 (AD107) GeForce RTX 4060
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
|}
==== nouveau mobile integrated ====
If you purchased a notebook with an NVidia sticker on it, most of the time you have a optimus based one, ie Intel CPU+GPU melded with Nvidia GPU, Optimus was slated at one point to go into desktop PCs but the industry ended up rejecting that concept
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|-
| GeForce 6100 nForce 405
| 0x
| 0x03D1 0x0242
| 0x0
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
|
|-
| <!--Description-->GeForce 6100 nForce 400
| <!--Vendor ID-->
| <!--Product ID-->0x03D2
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce 6100 nForce 420
| <!--Vendor ID-->
| <!--Product ID-->0x03D5
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce 6150 LE
| <!--Vendor ID-->
| <!--Product ID-->0x0241
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6150SE nForce 430
| 0x
| 0x03D0
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| working
|-
| <!--Description-->GeForce 6150
| <!--Vendor ID-->
| <!--Product ID-->0x0240
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7150M / nForce 630M
| <!--Vendor ID-->
| <!--Product ID-->0x0531
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7000M / nForce 610M
| <!--Vendor ID-->
| <!--Product ID-->0x0533
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7050 PV / NVIDIA nForce 630a
| <!--Vendor ID-->
| <!--Product ID-->0x053A 0x053B
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Geforce IGP 7025 nForce 630a
| 0x
| 0x053E
| 0x0
| <!--2D-->{{Yes|some}}
| <!--3D-->{{Yes|some}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No| }}
| some support on some chipsets
|-
| GeForce 7100 / nForce 630i (C73)
| 0x10de
| 0x07e1
| 0x0a2
| <!--2D-->{{Maybe}}
| <!--3D-->{{Maybe}}
| <!--Analogue-->{{Maybe}}
| <!--Digital-->{{Maybe}}
| <!--Laptop LCD-->{{N/A}}
| Icaros 2.0.3 and Gigabyte 73-pvm-s2h rev. 1.0 but will not boot on [https://ae.amigalife.org/index.php?topic=806.msg8765#new Acer x270 with Icaros 2.3]
|-
| <!--Description-->GeForce 7150 / NVIDIA nForce 630i
| <!--Vendor ID-->
| <!--Product ID-->0x07E0
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7050 / NVIDIA nForce 610i
| <!--Vendor ID-->
| <!--Product ID-->0x07E3
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Geforce IGP 8100 (nForce 720a)
| 0x
| 0x084F
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
|
|-
| GeForce 8100P
| 0x
| 0x0847
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
|
|-
| <!--Description-->Geforce 8200 8300 nForce 730a
| <!--Vendor ID-->
| <!--Product ID-->0x084A 0x0848 (GeForce 8300) 0x0849 (GeForce 8200) 0x084B (GeForce 8200)
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->working on some 8300's with Icaros 1.5 but others untested
|-
| <!--Description-->nForce 780a SLI
| <!--Vendor ID-->
| <!--Product ID-->0x084C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->nForce 750a SLI
| <!--Vendor ID-->
| <!--Product ID-->0x084D
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Nvidia Geforce IGP 9300 (nForce MCP7a)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->works
|
|-
| <!--Description-->9400 (ION)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->If AROS detects GPU chipset, works well
|-
| <!--Description-->9700M ()
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Geforce ION 2
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->works well
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce Go 6150
| <!--Vendor ID-->
| <!--Product ID-->0x0244
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6100
| <!--Vendor ID-->
| <!--Product ID-->0x0247
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6200
| <!--Vendor ID-->
| <!--Product ID-->0x0164 0x0167
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6400
| <!--Vendor ID-->
| <!--Product ID-->0x0166 0x0168
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->Sony Laptop
|-
| <!--Description-->GeForce Go 6800
| <!--Vendor ID-->
| <!--Product ID-->0x00C8
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6800 Ultra
| <!--Vendor ID-->
| <!--Product ID-->0x00C9
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600
| <!--Vendor ID-->
| <!--Product ID-->0x0144
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600 TE/6200 TE
| <!--Vendor ID-->
| <!--Product ID-->0x0146
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600
| <!--Vendor ID-->
| <!--Product ID-->0x0148
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600 GT
| <!--Vendor ID-->
| <!--Product ID-->0x0149
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7200
| <!--Vendor ID-->
| <!--Product ID-->0x01D6
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7300
| <!--Vendor ID-->
| <!--Product ID-->0x01D7
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->untested
|-
| <!--Description-->GeForce Go 7400
| <!--Vendor ID-->
| <!--Product ID-->0x01D8
| <!--Revision-->
| <!--2D-->
| <!--3D-->works 2D and 3d issues though
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7800
| <!--Vendor ID-->
| <!--Product ID-->0x098
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7800 GTX
| <!--Vendor ID-->
| <!--Product ID-->0x0099
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7950 GTX
| <!--Vendor ID-->
| <!--Product ID-->0x0297
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7900 GS
| <!--Vendor ID-->
| <!--Product ID-->0x0298
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7900 GTX
| <!--Vendor ID-->
| <!--Product ID-->0x0299
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7600
| <!--Vendor ID-->
| <!--Product ID-->0x0398
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7600 GT
| <!--Vendor ID-->
| <!--Product ID-->0x0399
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 6610 XL
| <!--Vendor ID-->
| <!--Product ID-->0x0145
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 6700 XL
| <!--Vendor ID-->
| <!--Product ID-->0x0147
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce 8700M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0409
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8600M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0425
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8400M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0426
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8400M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0427
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8400M G
| <!--Vendor ID-->
| <!--Product ID-->0x0428
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8800M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x0609
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8800M GTX
| <!--Vendor ID-->
| <!--Product ID-->0x060C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9500M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0405
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8600M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0407
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9650M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0408
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9400M GT
| <!--Vendor ID-->
| <!--Product ID-->0x042C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9300M G
| <!--Vendor ID-->
| <!--Product ID-->0x042E
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9100M G
| <!--Vendor ID-->
| <!--Product ID-->0x0844
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9800M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x0628
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9700M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x062A
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9800M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x062C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9600M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0647
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9600M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0648
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9600M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0649
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9500M G
| <!--Vendor ID-->
| <!--Product ID-->0x064B
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9300M GS
| <!--Vendor ID-->
| <!--Product ID-->0x06E5
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9200M GS
| <!--Vendor ID-->
| <!--Product ID-->0x06E8
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9300M GS
| <!--Vendor ID-->
| <!--Product ID-->0x06E8
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->NV50 (G80) Quadro FX (4600 (SDI), 5600)
Quadro FX (2800M, 3600M, 3700, 3700M, 3800M, 4700 X2), VX 200
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV94 (G94) 9700M GTS, 9800M GTS, GeForce G 110M, GT 130(M), GT 140, Quadro FX (1800, 2700M)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV84 (G84) Tesla 8700M GT, GeForce 9500M GS, 9650M GS
Quadro FX (370, 570, 570M, 1600M, 1700), NVS 320M
NV86 (G86) GeForce 8300 GS, 8400 (GS, M G, M GS, M GT), 8500 GT, GeForce 9300M G
Quadro FX 360M, NVS (130M, 135M, 140M, 290)
GeForce GTS 150(M), GTS 160M, GTS 240, GTS 250, GTX (260M, 280M, 285M), GT (330, 340)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV96 (G96) 9650M GT, 9700M GT
GeForce G 102M, GT 120
Quadro FX (380, 580, 770M, 1700M)
NV98 (G98) GeForce 8400 GS, GeForce 9200M GS, 9300 (GE, GS, M GS)
GeForce G 100, G 105M
Quadro FX (370 LP, 370M), NVS (150M, 160M, 295, 420, 450)
Quadro CX, FX (3800, 4800, 5800)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVA3 (GT215) GeForce GT (240, 320, 335M), GTS (250M, 260M, 350M, 360M) Quadro FX 1800M
NVA5 (GT216) GeForce GT (220, 230M, 240M, 325M, 330M), 315
Quadro 400, FX 880M, NVS 5100M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVA8 (GT218) Tesla GeForce 8400 GS, GeForce 210M, 305M, 310M, Quadro FX 380M, NVS 2100M, 3100M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVAA (MCP77/MCP78) GeForce 8100, 8200, 8300 mGPU / nForce 700a series, 8200M G
NVAC (MCP79/MCP7A) ION, GeForce 9300, 9400 mGPU / nForce 700i series, 8200M G, 9100M, 9400M (G)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVAF (MCP89) GeForce 320M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NVC0 (GF100) Fermi GeForce GTX 480M, Quadro 5000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVC1 (GF108) GeForce GT 415M, 420M, 425M, 435M, 520M, 525M, 540M, 550M, 555M, 630M, 635M, 640M LE, Quadro 1000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVC3 (GF106) Fermi GeForce GT 445M, 555M, 630M, 635M), GTX 460M, Quadro 2000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVC4 (GF104) GeForce GTX 470M, 485M, Quadro 5000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVCE (GF114) GeForce GTX 570M, 580M, 670M, 675M,
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVD7 (GF117) Fermi Geforce GT 620M, 625M, (some) 630M, 710M, 720M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVD9 (GF119) Fermi GeForce 410M, GT 520M, 520MX, 610M, Quadro NVS 4200M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NVE4 (GK104) GeForce GTX 670M, 680M, 775M, 780M, 860M, Quadro K3000M, K3100M, K4000M, K4100M, K5000M, K5100M,
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVE7 (GK107) GeForce GT640M, 645M, 650M, 710M, 720M, 730M, 740M, 745M, 750M, 755M, GTX 660M, K500M, K1000M, K1100M, K2000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GTX 1650 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2019 turing architecture - last old skool support pre Vulkan
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rtx 2050 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 ampere architecture best starting point for vulkan support
|-
| <!--Description-->rtx 2060 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rtx 4060 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
|}
====radeon.hidd====
Michel Shultz ''2D'' graphics driver (standard on most distributions but only for very old GPUs) and bearsofts updated 2013 around Icaros 1.3.1
3D is not implemented by AROS yet but could cover these AMD chipsets
<pre>
2014 SI AMD HD 7xxx
2016 GCN3rd AMD R5E R7E
2019 GCN5th AMD Vega 8
2022 RDNA1 AMD RX5500 desktop only
2023 RDNA2 AMD 680M 780M
2024 RDNA3 AMD 880M 890M
2025 RDNA3.5 AMD 8060S strix halo and AI
2027 RDNA4 AMD
</pre>
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! 2D
! 3D
! Analogue Output
! Digital Output
! Laptop LCD
! Comments
|-
| 7000 (r100)
| 0x1002
| 0x5159
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->{{Maybe|vga15 pin connection but not s-video}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.3
|-
| 7500 (rv200 but still r100 based)
| 0x1002
| 0x5157
| 0x
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->{{Yes|vga15}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.3
|-
| 8000 8500 (r200)
| 0x1002
| 0x514c (8500LE)
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.4
|-
| 9000 9100 9250 (r200)
| 0x1002
| 0x5964 (9000) 0x514d (9100)
| 0x0001
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->{{Maybe|VGA15 but not s-video}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.4
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| 9600 9800 (r300)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1
|-
| x300 x600 (r300)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1
|-
| x700, x800 ([http://en.wikipedia.org/wiki/Radeon_R600 r420])
| 0x
| 0x554d (R430 x800xl)
| 0x0
| <!--2D-->{{Yes|new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1 - x800 XL PCIE (problem with mouse-pointer, some part of the pointer is not transparent)
|-
| x1300 x1550 x1600 x1800 x1900 x1950 ([http://en.wikipedia.org/wiki/Radeon_R520 r520])
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes|new driver}}
| <!--3D-->{{no}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| HD2400 HD2600 HD2900 ([http://en.wikipedia.org/wiki/Radeon_R600 r600])
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|some features with new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 3.3 open CL 1.2 TeraScale architecture
|-
| HD3400 HD3600 HD3800 (r600)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|some features with new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->pci-e 2.0, openGL 3.3
|-
| HD4300 HD4500 HD4600 HD4700 HD4800 ([http://en.wikipedia.org/wiki/Radeon_R600 r700])
| 0x1002
| 0x
| 0x0
| <!--2D-->{{Maybe|but some later cards need 3D engine for faster and more flexible 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 3.3 - DDR3 - GDDR5 was one of AMD's aces for the 4800 series - 4670 liked -
|-
| HD6900 cayman series
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|some features with new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 3.3 open CL not mature (2014) -
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| HD5400 Series HD5430 HD5450 HD5470
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2010 openGL 3.3 openCL - GDDR3 -
|-
| HD5500 Series HD5550 HD5570 HD5600 Series HD5650 HD5670 HD5700 Series HD5750 HD5770
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 3.3 openCL - GDDR5
|-
| HD 5800 Series HD5850 HD5870 HD5900 Series HD5950 HD5970 - HD6xxx not NI chipset ([http://en.wikipedia.org/wiki/Evergreen_(GPU_family) r800 evergreen])
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 openGL 3.3 openCL - DDR5 pci-e 2.1 best avoided for all pci-e 1.0 mobos - Ati TeraScale2 architecture -
|-
| HD6450 [http://en.wikipedia.org/wiki/Northern_Islands_(GPU_family) Northern Islands chipset]
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> - DDR3 -
|-
| HD6600 Series HD6650 HD6570 HD6600 Series HD6650 HD6670
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2011 - DDR5 -
Radeon HD 8470 11 TeraScale 2
Radeon HD 8350 11 TeraScale 2
Radeon HD 7510 11 TeraScale 2
Radeon HD 6550D 11 TeraScale 2
Radeon HD 6530D 11 TeraScale 2
Radeon HD 6410D 11 TeraScale 2
Radeon HD 6370D 11 TeraScale 2
Radeon HD 6320 11 TeraScale 2
Radeon HD 6310 11 TeraScale 2
Radeon HD 6290 11 TeraScale 2
Radeon HD 6250 11 TeraScale 2
|-
| HD6800 Series HD6850 HD6870 HD6700 Series HD6790 to HD6990
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2011 - DDR5 - AMD TeraScale3 -
|-
| <!--Description-->HD7450-HD7670
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 OpenGL but not Vulkan
Radeon HD 7660D 11 TeraScale 3
Radeon HD 7560D 11 TeraScale 3
Radeon HD 7540D 11 TeraScale 3
Radeon HD 7480D 11 TeraScale 3
Radeon HD 6930 11 TeraScale 3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->HD7750 HD 7770 / R7 250X HD7850 HD7870 / R9 270X HD 7950 / R9 280 HD 7970 / R9 280X [http://en.wikipedia.org/wiki/Southern_Islands_(GPU_family) Southern Islands]
*AMD Radeon R7 250XE Cape Verde XT
*AMD Radeon R7 M465X Cape Verde
*AMD Radeon R9 255 Cape Verde PRX
*AMD Radeon HD 7750 Cape Verde PRO
*AMD Radeon R7 250E Cape Verde PRO
*AMD Radeon HD 8740 Cape Verde PRO
*AMD Radeon HD 7730 Cape Verde LE
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 pci-e 3.0 1st Gen GCN architecture -
|-
| <!--Description-->R5 430, FirePro W2100,
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 50W+ openGL openCL 1/3 speed of gtx750ti 1st gen gcn1
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->HD7790 [ Sea Islands ]
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 openGL 4.1 open CL - GCN2.0 Vulkan 1.0 introduced a Shader Engine (SE) comprising one geometry processor, up to 44 CUs (Hawaii chip), rasterizers, ROPs, and L1 cache and Graphics Command Processor for faster audio/video - suits Vulkan 1.1
|-
| <!--Description-->r5 240 240x (slow) R7 250 250x (faster) HD 7790 / R7 260 260X / R7 360 to R5 350 (fast) and last one R5 430 OEM Plus (slow again)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 50W+ GCN 1st gen - openGL 4.x openCL 1.x Vulkan 1.0
|-
| <!--Description-->R9 290 / R9 390 R9 290X / R9 390X
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2014 GCN 1.1 2nd Gen architecture - openGL 4.x openCL 1.x Vulkan 1.1 -
|-
| <!--Description-->R9 Fury Nano
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 GCN 1.2 3rd Gen - openGL openCL vulkan
|-
| <!--Description-->r-200 series r8 275 285 295 375 [Volcanic Islands]
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 GCN1.2 - openGL 4.x openCL 1.x Vulkan 1.2
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 [https://gpuopen.com/download/AMD_GCN3_Instruction_Set_Architecture_rev1.1.pdf GCN3]
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Radeon™ RX 5700/5600/5500 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 GCN 4 - OpenGL 4, Vulkan 1.3 -
|-
| <!--Description-->Radeon™ RX 400/500 Series like rx vega 580
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->Radeon™ Pro WX 9100, x200 Series and Radeon™ Pro W5700/W5500 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Radeon™ RX 7900/7600 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->Radeon™ RX 6900/6800/6700/6600/6500 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|}
==== amd radeon mobile integrated ====
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|-
| <!--Description-->ATI RC410 [Radeon Xpress 200M]
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x5a62 0x5955 0x5974 (200m)
| <!--Revision-->0x00
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->
|-
| <!--Description-->Mobility Radeon 7500
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x4c57 (7500)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->
|-
| <!--Description-->Mobility Radeon 9000
| 0x1002
| 0x4966 (9000)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->
|-
| <!--Description-->Mobility Radeon 9500 9550 (rv360) 9600 (rv350)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon 9800 (rv420)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon X300 (RV370) X600 (RV380)
| 0x1002
| 0x (RV370) 0x5657 (RV380)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon X700 (RV410) X800 (RV423)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon X1200 (RS69M0)
| 0x1002
| 0x791f
| 0x0
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->X1200 IGP (RS690)
|-
| <!--Description-->Mobility Radeon X1300 X1350 X1400(rv515) X1600 (rv530) X1650 (RV535) X1800 (rv520) x1900 (rv570)
| 0x1002
| 0x71c7 (X1650)
| 0x009e
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon 2100
| 0x1002
| 0x796e (2100)
| 0x0
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{No|}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 2400 (rv610) HD2600 (rv630)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 3100 HD3200 HD3450 3470 (RS780MC RV620) 3670 (M86-XT RV635) HD3870 (M88-LXT RV670)
| 0x1002
| 0x9610 and 0x9612 (HD3200) 0x9614 (HD3300)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 4200 4250 (RV620)
| 0x1002
| 0x (HD4200) 0x9715 (HD4250)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 4330 4530 4550 (M92 RV710) 4650 (M96-XT RV730) 4670 RV730XT 4830 (M97 RV740) 4850 (M98 RV770)
| 0x1002
| 0x (HD4350) 0x9442 (RV770) 0x9490 (HD4670)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 530v (M92 RV710) HD 550v (M96 RV730)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->no support yet
|-
| <!--Description-->Mobility Radeon HD 5430 HD5650 (cedar Park LP)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->no support yet
|-
| <!--Description-->Radeon HD 6250 6290 6310 6320 6350M (Redwood Capilano PRO)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->no support yet
|-
| <!--Description-->AMD 7640G, 8450G, 8550G, 8650G Northern Islands
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 Last real support for old graphics standard before Vulkan takeover
|-
| <!--Description-->R5 M230 M240 M255 - R7 M260 M265 (Kaveri Crystal series with Mantle and HSA)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->2015 Maybe better with Vulkan
|-
| <!--Description-->R5E R7E
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->2016 bristol ridge GCN 3.0 IGP (Carrizo Mobile)
|-
| <!--Description-->AMD Vega 3, 6, 8, 11 iGP
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2018 raven ridge GCN 5th Gen
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->5500m 5600m 5800m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA1 NaviX1 Zen 2
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rx680m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA2 NaviX2 Zen 3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->phoenix apu 1103
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 RDNA3 NaviX3 zen 4
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
==== AMDGPU Vulkan desktop ====
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Kaveri 290 290X, 260 260X
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 AMDGPU Vulkan
|-
| <!--Description-->R9 285 / R9 380 R9 380X Fury / Fury X
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->opengl 4 opencl 1 3rd Gen GCN architecture
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX470 RX460 RX480 RX580 polaris10
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 opengl 4 opencl 2 4th Gen GCN architecture vulkan 1.3
|-
| <!--Description-->RX460 RX560D polaris11
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 opengl 4 opencl 2 4th Gen GCN architecture vulkan 1.3
|-
| <!--Description-->RX580 polaris20
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 opengl 4 opencl 2 4th Gen GCN architecture vulkan 1.3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX 5000 5500 Navi 1x
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RNDA 1
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX 6000 Navi 2x
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RNDA 2 Mesa 21.3 decode av1
|-
| <!--Description-->RX6000
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX 7000
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 RNDA 3 navi
|-
| <!--Description-->RX7000
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->RX9070 rx 9060 XT
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2025 rdna4 navi
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2026 udna (aka rdna5)
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
|}
==== AMDGPU Vulkan mobile ====
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->R5E R7E
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->2016 bristol ridge GCN 3.0 IGP (Carrizo Mobile)
|-
| <!--Description-->Vega 8
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> GCN 5
|-
| <!--Description-->Vega iGP 3, 6, 8, 11
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2018 raven ridge - Graphics Core Next (GCN) 5th gen -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->5500m 5600m 5800m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA1 NaviX1 Zen 2
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rx680m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA2 NaviX2 Zen 3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->phoenix apu 1103
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA3 NaviX3 zen 4
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
fyi if a notebooks with two graphic cards, the integrated Intel card (id 0x7d) for low power usage and a discrete Radeon card (id 0x56) which should be used for GPU-intensive applications. By default the Intel card is always used
[https://wiki.archlinux.org/title/ATI Gallium Radeon HD] is not ported yet but is [https://www.phoronix.com/scan.php?page=news_item&px=Linux-5.9-AMDGPU-Stats really big] and complex so another solution may have to be [https://discuss.haiku-os.org/t/the-graphics-acceleration-can-of-worms/10515/5 found] like [https://discuss.haiku-os.org/t/vulkan-lavapipe-software-rendering-is-working-on-haiku/11363/10 vulkan] where support starts from very recent ISA GCN islands HD7000s cards only
*Vulkan
*Gallium
Vulkan software renderer allows to prepares the infrastructure for hardware rendering. Primary difference between software and hardware renderer is output to regular RAM vs GPU RAM, the rest is almost the same. It is possible to render to GPU RAM offscreen.
bare bones basics data flow
application,>>> api/opengl/vulkan>>>>, jit compiler, >>>>memory manger, >>>>gpu hardware
so you need to have a compiler that takes your api call/program/shaders/drawing commands and turns them into a program the gpu can render.
the vulkan to amd gpu compiler for shaders and textures is nearly os agnostic iirc as long as you have solid posix compliance
Unlike OpenGL, Vulkan does not depend on windowing system and it have driver add-on system with standardized API (Mesa also have OpenGL driver add-ons, but it have non-standard Mesa-specific API). OpenGL may need more work for windowing system related code at this point but developing Vulkan on real hardware is more strategic than developing OpenGL, since now Zink 3 running on Vulkan compensates for the lack of OpenGL support by giving performance similar to native accelerated OpenGL
RadeonGfx use client-server model with client-server thread pairs. For each client thread that calls 3D acceleration API, server side thread is created. If client thread terminates, server side thread also exit.
==Rough gfx comparison==
<pre>
Group 1
GeForce RTX 5090 5070 5060 5050
GeForce RTX 4090 4070 4060 4050
Group 2
GeForce RTX 2070
Radeon RX 7600
Quadro RTX 5000
Radeon PRO W6600
GeForce RTX 2060 12GB
Radeon PRO W7500
Quadro GP100
Radeon RX 6800S
GeForce RTX 3070 Laptop GPU
GeForce GTX 1080
GeForce RTX 3060 8GB
Quadro RTX 4000
Radeon Pro W5700
Radeon RX 6600
GeForce RTX 2080 (Mobile)
Radeon RX 7700S
Radeon RX 6700S
Radeon RX 6600S
Quadro RTX 5000 (Mobile)
GeForce GTX 1070 Ti
GeForce RTX 4050 Laptop GPU
Radeon Pro Vega 64X
Radeon RX 5700
Radeon RX Vega 64
GeForce RTX 2060
GeForce RTX 2070 Super with Max-Q Design
Group 3
Radeon RX 6600M
GeForce GTX 1070
Radeon RX 6650M
GeForce RTX 3060 Laptop GPU
Radeon RX Vega 56
Radeon RX 6700M
GeForce RTX 2080 with Max-Q Design
Radeon RX 6800M
GeForce GTX 980 Ti
Radeon R9 Fury
GeForce GTX 980
Quadro M5500
Radeon R9 390X
Radeon RX 580
Radeon RX 5500
Radeon RX 6550M
GeForce GTX 1660 Ti with Max-Q Design
GeForce GTX 780 Ti
GeForce GTX 970
Radeon R9 290X
Radeon RX 480
Radeon RX 5600M
Quadro RTX 3000 with Max-Q Design
Radeon R9 290X / 390X
Ryzen 5 4600HS with Radeon Graphics
Radeon R9 290
Radeon Pro 5500 XT
Radeon R9 M490 *
GeForce GTX 780
Radeon RX 6500M
Quadro M5500
GeForce GTX 1060 with Max-Q Design
Radeon RX 6500
Radeon RX 5300
Intel Arc A770M
GeForce GTX 1650 Ti
Radeon Pro 580X
Radeon RX 6400
GeForce RTX 2050
Ryzen 9 4900HS with Radeon Graphics
Radeon Ryzen 9 6900HS
GeForce GTX 980M
Quadro M5000M
Radeon RX 6300
GeForce GTX 1650 Ti with Max-Q Design
Radeon Pro 570
Ryzen 9 6900HS with Radeon Graphics
GeForce GTX 1050 Ti
Quadro M4000M
Radeon R9 280X 380X
GeForce GTX 1650 with Max-Q Design
GeForce MX570
Radeon R9 280X
Radeon R9 380
Radeon 780M
GeForce GTX 960
GeForce GTX 970M
Quadro M4000M *
GeForce GTX 680
Group 4
Radeon RX 6500M
Quadro M5500
Radeon Pro WX 7100
GeForce GTX 1060 with Max-Q Design
GeForce GTX 1650
Intel Arc A730M
Radeon HD 7970
Radeon R9 M395X
Radeon R9 M485X
Radeon R9 M480 *
Radeon R9 M295X
Radeon R9 M390X *
FirePro W7170M *
Radeon R9 M395
Radeon R7 370
Radeon RX 5500M
GeForce GTX 590
GeForce GTX 880M
GeForce GTX 950
Radeon R9 270X
GeForce GTX 660 Ti
GeForce GTX 760
GeForce GTX 780M
Quadro K5100M
GeForce GTX 680MX
Radeon HD 7870
GeForce GTX 965M
Quadro M3000M *
GeForce GTX 870M
Radeon R9 M290X
Radeon HD 8970M
Radeon Ryzen 7 7735U (680M), Radeon Ryzen 7 7735HS (680M 12C)
GeForce GTX 580
Radeon HD 6970
GeForce GTX 1050
GeForce GTX 680M
GeForce GTX 775M
GeForce GTX 1630
FirePro M6100
Radeon HD 7970M
Radeon R9 M390 *
GeForce GTX 750 Ti
Group 5
GeForce GTX 570
GeForce GTX 480
GeForce GTX 960M
Quadro M2000M *
Quadro K5000M
Quadro K4100M
GeForce GTX 770M
GeForce GTX 860M
GeForce GTX 675MX
GeForce GTX 950M
GeForce GTX 850M
Quadro M1000M
Radeon R9 M280X
Radeon HD 7950M *
GeForce GTX 560 Ti
Radeon HD 6870
GeForce GTX 470
GeForce GT 1030
GeForce MX330
Ryzen 5 PRO 5650GE with Radeon Graphics
Ryzen 7 5800HS
FirePro 3D V8800
GeForce MX250
Group 6
Radeon Pro WX 3200
Ryzen 7 PRO 5750G with Radeon Graphics
Radeon Ryzen 5 5600H
Ryzen 5 Pro 4650G with Radeon Graphics
Radeon Ryzen 7 5800U
Ryzen 7 7730U with Radeon Graphics
Radeon Ryzen 7 5825U
Radeon Pro WX 4150
Radeon Ryzen 5 PRO 4655G
Ryzen 5 4600G with Radeon Graphics
Radeon Ryzen 5 PRO 4655GE
GeForce GTX 485M
FirePro W6150M
Ryzen 7 5800U with Radeon Graphics
Ryzen 5 7530U with Radeon Graphics
Ryzen 7 4800U with Radeon Graphics
Radeon R9 M470
Ryzen 3 PRO 5350G with Radeon Graphics
Radeon RX Vega Ryzen 3 5300U
Ryzen 7 5825U with Radeon Graphics
Ryzen 5 PRO 4400G with Radeon Graphics
Radeon Ryzen 7 PRO 4750GE
Radeon Ryzen 7 4800U
FirePro V7900
Radeon HD 5970
Radeon Ryzen 7 7700X 8-Core
Radeon Ryzen 5 PRO 5650G
Radeon Ryzen 5 4400G
Radeon Ryzen 5 PRO 5650GE
Radeon RX 550X
FirePro V8800
Radeon RX Vega Ryzen 5 5500U
GeForce MX150
Quadro K3100M
Ryzen 7 PRO 5850U with Radeon Graphics
Radeon HD 6970M
Radeon R7 250X
Intel HD 5600
Ryzen 3 4300GE with Radeon Graphics
GeForce GTX 460
Ryzen 7 5700U with Radeon Graphics
Radeon Ryzen 5 7530U
Quadro K620
Ryzen 3 PRO 5350GE with Radeon Graphics
Intel Iris Pro P580
Intel UHD Graphics P630
Ryzen 5 4600H with Radeon Graphics
Ryzen 5 PRO 7530U with Radeon Graphics
Radeon HD 5870
Radeon HD 6870
Ryzen 7 4700G with Radeon Graphics
Ryzen 5 5600U with Radeon Graphics
Radeon HD 7770
Ryzen 3 Pro 4350G with Radeon Graphics
Radeon Ryzen 5 5625U
GeForce GTX 745
Radeon Ryzen 7 4850U Mobile
Radeon Ryzen 3 PRO 7330U
Quadro M600M
Radeon Ryzen 5 5500U
Ryzen 5 5560U with Radeon Graphics
Ryzen 7 4800H with Radeon Graphics
Group 7
GeForce 945M
Ryzen 5 PRO 4650GE with Radeon Graphics
FirePro M5100
Radeon Ryzen 5 5600U
Radeon Ryzen 5 PRO 4500U
GeForce GTX 580M
Ryzen 7 PRO 5875U with Radeon Graphics
Ryzen 3 5300GE with Radeon Graphics
Radeon R9 M385
Quadro 5000M
Radeon Ryzen 7 4700U
Ryzen 5 PRO 5650U with Radeon Graphics
Radeon Ryzen 7 PRO 4750U
Ryzen 7 4700U with Radeon Graphics
Ryzen 7 PRO 4750U with Radeon Graphics
FirePro V7800
Radeon R9 350
Ryzen 3 4300G with Radeon Graphics
Radeon Vega 11 Ryzen 5 PRO 3350G
Radeon Ryzen 5 5560U
GeForce GTX 460 SE
Radeon Pro W5500M
Radeon Vega 11 Ryzen 5 PRO 3400G
Ryzen 5 5500U with Radeon Graphics
Ryzen 5 PRO 4500U with Radeon Graphics
GeForce GT 645
GeForce GTX 765M
Radeon R9 M385X
Ryzen 5 5625U with Radeon Graphics
Ryzen 3 PRO 7330U with Radeon Graphics
Radeon HD 5850
Radeon Vega 11 Ryzen 5 PRO 2400G
Intel Iris Pro 580
Radeon HD 6850
Intel Iris Xe MAX
Radeon Ryzen 7 PRO 5875U
Radeon Ryzen 5 7600 6-Core
GeForce GTX 470M
Ryzen 3 5300G with Radeon Graphics
GeForce GTX 670MX
Radeon RX 640
Qualcomm Adreno Gen 3
Radeon R7 450
GeForce GTX 675M
Radeon Pro WX 4130
Intel Iris Xe MAX 100
Quadro 5000
Radeon RX 570X
Radeon HD 7700-serie
Ryzen 5 4600U with Radeon Graphics
Ryzen 3 PRO 4350GE with Radeon Graphics
Radeon Vega 8
Group 8
GeForce MX230
GeForce GTX 765M
Quadro K4000M
Iris Pro Graphics P580 *
Iris Pro Graphics 580 *
GeForce GTX 645
Quadro M520
GeForce GTX 570M
GeForce MX130
Radeon RX 540
Radeon Ryzen 5 PRO 5675U
Intel UHD Graphics 770
Radeon RX Vega 11 Ryzen 7 3750H
Radeon Vega 11 Ryzen 5 PRO 3400GE
Radeon HD 5850
GeForce GTX 675M
GeForce GTX 580M
Radeon HD 6990M
Radeon R9 M385X *
Radeon R9 M470X *
Radeon R9 M470 *
Radeon R9 M385 *
Radeon R9 M380 *
Radeon R9 M370X
Radeon R9 M275
Radeon HD 7770
GeForce GTX 485M
GeForce GTX 460 768MB
Radeon HD 6790
GeForce GTX 285M SLI
Quadro K3100M
FirePro W5170M *
GeForce GTX 670MX
Quadro 5010M
GeForce GTX 760M
GeForce GTX 670M
Group 9
GeForce 940MX *
Maxwell GPU (940M, GDDR5)
FirePro M8900
Radeon HD 6970M
Radeon R9 M270
Radeon HD 8870M
Radeon HD 7870M
Quadro K3000M
GeForce GTX 570M
FirePro M6000
FirePro M5100
Quadro K2100M
Radeon HD 5770
GeForce GTX 550 Ti
GeForce GTX 280M SLI
Radeon HD 6950M
Radeon R7 250
GeForce GT 755M
GeForce GTX 660M
GeForce 845M
Radeon HD 8850M
Radeon R9 M365X
Radeon R9 M265X
Ryzen 5 PRO 4400GE with Radeon Graphics
FirePro W5130M *
Radeon Vega 8 Ryzen 5 3500U
Radeon HD 7850M
Radeon HD 8790M
FirePro W4170M
FirePro W4190M
FirePro W4100
Radeon Vega 6 Ryzen 3 3300U
Quadro 4000M
GeForce GTX 470M
GeForce GTX 480M
GeForce GT 750M
Iris Pro Graphics 6200
Quadro K1100M
GeForce 940M
Radeon R9 M375
GeForce 930MX *
Radeon R7 M380 *
Radeon R7 M370
Quadro M600M *
GeForce GT 650M
Quadro K620M
GeForce 840M
Radeon R7 M275DX
GeForce GT 745M
Radeon HD 7770M
GeForce GTX 560M
Radeon R7
Iris Pro Graphics 5200
GeForce GT 740M
GeForce 930M
Radeon HD 4850
Group 10
Iris Graphics 550 *
GeForce 830M
Iris Graphics 540
Quadro M500M *
Quadro K2000M
GeForce GTS 450
GeForce GTX 260M SLI
GeForce GT 735M
Mobility Radeon HD 5870
GeForce 825M
Quadro 5000M
FirePro M4000
FirePro M7820
Radeon HD 6870M
GeForce 9800M GTX SLI
Radeon HD 8830M *
Radeon HD 8770M
Radeon R7 M260X
GeForce GTX 460M
GeForce 920MX *
GeForce GT 730M
Radeon HD 7750M
GeForce GT 645M *
FirePro M4100
Radeon HD 8750M
Radeon R6 A10-9600P 4C+6G
Quadro 3000M
Radeon R7 M270
Radeon R7 M265
Quadro FX 3800M
GeForce GTX 285M
Mobility Radeon HD 4870
GeForce GT 640M
Radeon R7 (Kaveri)
Radeon R8 M365DX
Radeon R7 M460 *
Radeon HD 7730M
Radeon R7 M360
GeForce GTX 280M
Radeon HD 8690M
Quadro FX 3700M
Radeon R7 M340
GeForce 920M
Radeon R6 M340DX
HD Graphics 530
HD Graphics P530
Tegra X1 Maxwell GPU
Radeon R7 M260
Radeon R6
Group 11
Mobility Radeon HD 4860
FirePro M7740
Mobility Radeon HD 4850
GeForce GTX 260M
GeForce 9800M GTX
Quadro FX 2800M
Radeon HD 8670D
Radeon HD 7690M XT
FirePro M5950
GeForce GT 640M LE
Radeon R6 (Kaveri)
Radeon HD 8650M *
Radeon HD 8730M
Radeon HD 6770M
GeForce GT 635M
GeForce GT 555M
Radeon R7 A10 PRO-7800B
Radeon HD 5670
Mobility Radeon HD 5850
Radeon HD 6850M
Quadro 2000M
GeForce 9800M GT
GeForce 8800M GTX
Quadro FX 3600M
GeForce GT 445M
GeForce GTS 360M
Group 12
GeForce GT 240
Radeon R7 PRO A10-9700
Radeon HD 7690M
HD Graphics 5600
Radeon HD 8570D
Radeon HD 8670M
Radeon R6 M255DX
Radeon HD 7660D
Radeon HD 6750M
Quadro K1000M
GeForce GT 550M
Radeon HD 8590M *
GeForce GTS 260M
GeForce GTS 160M
GeForce 9800M GTS
GeForce GT 430
Radeon HD 6830M
Mobility Radeon HD 5830
Radeon HD 6730M *
GeForce 9800M GS
Mobility Radeon HD 4830
Mobility Radeon HD 5770
Radeon HD 6570M
Radeon HD 8650G
Radeon HD 7670M
GeForce GT 630M
Radeon HD 7560D
GeForce GTS 150M *
Radeon R5 M335
Radeon R5 M430 *
Radeon R5 M330
Radeon R5 M255
Radeon Vega 3
Quadro 1000M
GeForce 820M
FirePro W2100
HD Graphics 520 620
Iris Graphics 6100
GeForce GT 720M
GeForce 8800M GTS
Radeon R5 M240
Radeon R5 M320 *
Radeon R5 M230
Radeon R5 M315 *
Mobility Radeon HD 5750 *
Radeon HD 8570M
Radeon R7 PRO A10-8850B
HD Graphics 6000
Quadro K610M
Radeon HD 8550M
Iris Graphics 5100
GeForce GT 540M
Mali-T880 MP12 *
Radeon HD 8610G *
Radeon HD 6650M
HD Graphics 4600
Mobility Radeon HD 5730
HD Graphics 5500
Radeon R5 (Carrizo) *
Radeon R5 (Kaveri)
FirePro M5800
NVS 5400M
GeForce 710M
Radeon HD 7660G
GeForce GT 435M
HD Graphics 5000
Quadro K510M *
Radeon HD 5570
Radeon HD 6550M
Radeon HD 7590M *
GeForce GTS 350M
GeForce GTS 250M
Radeon HD 6630M
Radeon HD 7650M
FirePro M2000
Radeon HD 7570M
Radeon HD 7630M
Quadro FX 1800M
Mobility Radeon HD 5650
Radeon HD 8510G *
Radeon HD 6530M
Radeon HD 8550G
Quadro K500M *
GeForce GT 625M *
GeForce GT 620M
GeForce GT 525M
Radeon HD 6550D *
Radeon HD 7610M
Radeon HD 7620G
Radeon HD 8470D
Radeon HD 7640G
Adreno 530
GeForce ULP K1 (Tegra K1 Kepler GPU)
HD Graphics 4400
HD Graphics 510 515 *
NVS 5200M
Mobility Radeon HD 565v
Radeon HD 7550M
Mobility Radeon HD 4670
GeForce GT 425M
GeForce 9700M GTS
Radeon HD 6645G2 *
Quadro FX 2700M
GeForce GT 335M
Radeon HD 7600G
Mobility Radeon HD 3870
Mobility Radeon HD 4650
GeForce GT 220
GeForce GT 420M
Radeon HD 7530M *
Mobility Radeon HD 3850
GeForce GT 330M
Quadro FX 880M
Quadro NVS 5100M
GeForce GT 240M
Radeon HD 7490M *
HD Graphics 5300
Radeon HD 7510M *
GeForce Go 7950 GTX
Quadro FX 3500M
GeForce 8700M GT SLI
GeForce 9700M GT
GeForce GT 230M
Mobility Radeon HD 550v
Radeon HD 7480D
HD Graphics 4000
Mali-T760 MP8
Radeon HD 6620G
HD Graphics (Broadwell) *
Adreno 430
Radeon R5 (Beema/Carrizo-L)
Radeon R4 (Beema) (Kaveri)
HD Graphics (Skylake) *
Radeon HD 6450 GDDR5
Radeon HD 7500G
Radeon HD 8450G
Radeon HD 7470M
Radeon HD 6490M
Radeon HD 8400
Mali-T880 MP4
GeForce GT 520MX
Radeon HD 7520G
GeForce GT 325M
GeForce Go 7800 GTX SLI
GeForce 8600M GT SLI
GeForce Go 7900 GS SLI
GeForce GT 130M
NVS 4200M
GeForce Go 7900 GTX
Quadro FX 2500M
Radeon HD 8350G
Radeon HD 8330
GeForce 9650M GS
GeForce 9650M GT
Radeon R3 (Mullins/Beema)
GeForce 8700M GT
Quadro FX 1700M
Quadro FX 1600M
GeForce Go 7800 GTX
GeForce Go 7900 GS
Quadro NVS 320M
Quadro FX 1500M
GeForce 9600M GT
GeForce GT 220M
Quadro FX 770M
GeForce GT 120M
Radeon HD 7450M
GeForce 610M
GeForce 705M
Mali-T760 MP6
Radeon HD 6470M
FirePro M3900 *
GeForce GT 520M
Radeon HD 7420G
Mobility Radeon HD 3670
Mobility FireGL V5725
PowerVR GX6450
Adreno 420
HD Graphics (Haswell)
Radeon HD 6520G
Radeon HD 8310G *
GeForce 320M
GeForce GT 320M
Mobility Radeon HD 2600 XT
Mobility Radeon X1900
Mobility Radeon X1800XT
Mobility Radeon X1800
GeForce Go 6800 Ultra
GeForce Go 7800
GeForce 9600M GS
GeForce 9500M GS
Radeon HD 7400G
Radeon HD 6480G *
Mobility Radeon HD 2700
GeForce GT 415M
GeForce 410M
Radeon HD 7370M
Adreno 418
HD Graphics (Cherry Trail)
Radeon HD 6370M
Radeon HD 8280
Mobility Radeon HD 5470
Radeon HD 6450M
Radeon HD 7430M *
Mobility Radeon HD 3650
Mobility FireGL V5700
Mobility Radeon HD 5145
Mobility Radeon HD 545v
Radeon R6 (Mullins) *
Radeon HD 8240
Radeon HD 8250
Mobility Radeon HD 4570
Quadro FX 570M
Mobility Radeon HD 5450 *
Radeon R2 (Mullins/Beema) *
GeForce 8600M GT
Mobility Radeon HD 2600
HD Graphics 3000
Quadro FX 380M
GeForce 310M
GeForce G210M
NVS 3100M
GeForce 405M
GeForce 315M
GeForce Go 7600 GT
GeForce 9500M G
GeForce 8600M GS
NVS 2100M
GeForce Go 7700
GeForce Go 6800
Quadro FX Go 1400
Mobility Radeon X800XT
Radeon HD 6430M *
Radeon HD 6380G *
Mobility Radeon HD 5430
Radeon HD 8210
Mobility Radeon HD 540v
Mobility Radeon HD 4550
HD Graphics 2500
HD Graphics (Ivy Bridge)
Quadro NVS 310
Radeon HD 7350M *
Radeon HD 6350M *
Mobility Radeon HD 4530
Mobility Radeon HD 4350
Radeon HD 4350
GeForce 305M
Mobility Radeon X1700
Mobility FireGL V5250
Mobility Radeon X2500
GeForce Go 7600
Quadro NVS 300M
Mobility Radeon X800
Mobility Radeon X1600
Mobility FireGL V5200
Mobility Radeon 9800
GeForce Go 6600
Mobility Radeon X1450
Mobility Radeon X700
Mobility FireGL V5000
GeForce G 110M
Quadro NVS 295
Radeon HD 6330M *
Mobility Radeon HD 4330
GeForce 8400M GT
Quadro NVS 140M
HD Graphics 2000
GeForce 9500M GE *
GeForce 9400M (G) / ION (LE)
HD Graphics (Sandy Bridge) *
Adreno 330
PowerVR G6430
PowerVR GX6250
PowerVR G6400
HD Graphics (Bay Trail)
Mali-T628 MP6
Mali-T760 MP4
Chrome9HD *
Radeon HD 7340
Radeon HD 6320 *
Radeon HD 7310
Radeon HD 6310 *
Radeon HD 8180
Mobility Radeon HD 3470
GeForce 9300M G
ION 2 *
GeForce 9300M GS
Quadro FX 370M
Quadro NVS 160M
GeForce 9200M GS
Mobility Radeon HD 3450
Mobility Radeon HD 3430
Mobility Radeon HD 3410
Mobility Radeon HD 2400 XT
Radeon HD 4270
Radeon HD 4250
Radeon HD 7290 *
Radeon HD 6290 *
Radeon HD 4200
Graphics Media Accelerator (GMA) HD Graphics
Radeon HD 6250
Quadro NVS 150M
Quadro FX 360M
Mobility Radeon X1350
Mobility Radeon X1400
GeForce 9100M G
GeForce 8400M GS
Quadro NVS 135M
Mobility Radeon HD 2400
Radeon HD 3200
Radeon HD 4225 *
Radeon HD 4100 *
SGX554MP4
Mali-T628 MP4
Mobility Radeon HD 3400 *
Radeon HD 3100
GeForce 8400M G
Mali-T860 MP2
Quadro NVS 130M
GeForce 8200M G
Graphics Media Accelerator (GMA) 4700MHD
Graphics Media Accelerator (GMA) 4500MHD
Graphics Media Accelerator (GMA) 4500M
Mali-T604 MP4
GeForce Go 7400
Quadro FX 350M
Quadro NVS 120M
GeForce Go 7300
GeForce Tegra 4 *
PowerVR G6200
Adreno 405 *
Quadro NVS 110M
Mobility Radeon X600
Mobility FireGL V3200
Mobility FireGL V3100
Mobility Radeon HD X2300
Mobility Radeon 9700
Mobility FireGL T2e
Mobility Radeon X1300
GeForce4 4200 Go
Mobility Radeon 9600
Mobility FireGL T2
Mobility Radeon 9550
GeForce Go 7200
GeForce Go 6400
Mobility Radeon X300
GeForce Go 6250
GeForce Go 6200
GeForce FX Go 5700
Quadro FX Go 1000
GeForce FX Go 5600 / 5650
Radeon Xpress X1270
Radeon Xpress X1250
Radeon Xpress X1200
Graphics Media Accelerator (GMA) X3100
Mali-T624
Adreno 320 *
Mali-T760 MP2
Mali-T720 MP4
Mali-450 MP4
Graphics Media Accelerator (GMA) 3650 *
GeForce 7190M *
GeForce 7150M
Radeon Xpress 1150
GeForce Go 6150
GeForce Go 6100
GeForce 7000M
Graphics Media Accelerator (GMA) 3600 *
Mobility Radeon 9200
Mobility FireGL 9000
GeForce FX Go 5200
Mobility Radeon 9000
GeForce 4 488 Go
GeForce 4 460 Go
GeForce 4 440 Go
GeForce 4 420 Go
Graphics Media Accelerator (GMA) 3150
Graphics Media Accelerator (GMA) 950
SGX545 SGX544MP2 SGX543MP2 *
Mali-T720 MP2
Mali-T720
Adreno 302 304 305 306
Mobility Radeon 7500
Mobility FireGL 7800
Graphics Media Accelerator (GMA) 900
Radeon Xpress 200M
Radeon Xpress 1100
Mirage 3+ 672MX
Mirage 3 671MX
Mali-400 MP4 *
GeForce ULP (Tegra 3) *
VideoCore-IV *
Adreno 220 225*
Vivante GC1000+ Dual-Core
Mali-400 MP2 *
GeForce ULP (Tegra 2) *
Graphics Media Accelerator (GMA) 600 *
SGX540 *
Graphics Media Accelerator (GMA) 500
Adreno 205 *
Adreno 203 *
GC800 *
SGX535
SGX531
SGX530
Adreno 200 *
Mali-200 *
GeForce 3 Go *
GeForce 2 Go 200 / 100
Mobility Radeon 9100 IGP
Mobility Radeon 9000 IGP
Mobility Radeon M7
Mobility Radeon M6
Chrome9 HC
Extreme Graphics 2
Mobility Radeon 7000 IGP
Radeon IGP 340M
Radeon IGP 320M
S3G UniChrome Pro II
S3G UniChrome Pro
Castle Rock
Mirage 2 M760
Mirage M661FX
S3 Graphics ProSavage8
Mobility 128 M3
SM502 *
</pre>
Kernel-space drivers like '''radeon''' (older AMD driver for older GPUs), '''amdgpu''' (newer driver for newer GPUs, allows using a few new features), i915, nouveau and a few others. They are what handles the gory details of talking to the GPU itself (writing to proper registers, handling its memory directly, configuring outputs, and so on). Unfortunately most of what they're exposing can be only consumed by a single user of that GPU, which is why we need...
DRM and DRI (Direct Rendering Manager/Infrastructure) controls access to the GPUs, provides interfaces for talking to the GPU concurrently by multiple apps at once (without them breaking each other) and lets the system perform the most basic tasks like setting proper resolution and such if no userspace apps understand how to talk to the GPU exposed. DRI and DRM expose the GPU interfaces mostly as-is, not in a "vendor-neutral" portable way - if you don't have an application developed specifically for a GPU you have, it won't work.
"let's create a vendor-neutral interface for graphics so that apps can ignore the GPU-specific bits and get right to the drawing!" - which is what OpenGL is. User-space drivers implement the OpenGL specification and expose it as an OpenGL library to apps (like games, browsers, etc) instead of the GPU. Mesa is the most popular collection of open-source user-space drivers and contains a few user-space drivers for different GPU families: '''radeonsi''' for most modern AMD GPUs (and '''r600g''', r300g and others for older ones), '''i915/i965''' for old/new Intel GPUs and '''nouveau''' for Nvidia GPUs.
There's also Gallium, which is a bunch of utilities and common code shared among these drivers - if certain things can be done once and work everywhere, they'll land in Gallium and benefit all the drivers. Most Mesa drivers use Gallium (radeonsi, nouveau, software renderers), some don't (intel after gma950).
Displaying 2D windows supports device-specific 2D drivers as well, but nowadays most of these are no longer needed as the modesetting can handle most hardware on its own. As the DRM/DRI got some additional interfaces for what used to be hardware-specific (setting resolutions, refresh rates, etc) and software requiring accelerated 2D drawing was optimized OpenGL-based renderers, dedicated 2D acceleration is slowly going away. Since around 2012, the 3D part of the graphics card deals with 2D operations.
Modern GPUs can also decode video!? There's VDPAU (NVIDIA & AMD GPUs) and VA-API (AMD & Intel GPUs) that can also talk to the GPU exposed via DRM/DRI and issue proper commands to decode/encode a given video stream. Those drivers are GPU-specific too.
So let's say you have some example GPUs, here's how example stacks could look like:
* AMD Radeon HD8750: amdgpu -> DRM/DRI -> Mesa (radeonsi)
* AMD Radeon HD4850: radeon kernel driver -> DRM/DRI -> Mesa (r600g) -> games/apps/etc.
* NVIDIA GeForce 460: nouveau kernel driver -> DRM/DRI -> Mesa (nouveau) -> games/apps.
* Intel GMA950: i915 kernel driver -> DRM/DRI -> Mesa (i945) -> games/apps.
{| class="wikitable sortable" width="90%"
! width="15%" | Description
! width="15%" | Analog Output
! width="15%" | Digital Output
! width="15%" | Laptop LCD
! width=30%" | Comments
|-
| <!--Description-->Fudomi GC888A
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->1080p 100in throw projector
|-
| <!--Description-->Vamvo VF320 (720P)
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->720p 90in
|-
| <!--Description-->Happrun H1
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->1080p 90in
|-
| <!--Description-->Umbolite Magcubic HIPPUS HY320 Mini
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->720p 100in
|-
| <!--Description-->Zentality A10 Plus
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->720p 110in
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->nexigo nova mini
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->nebula mars 3
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->epson lifestudio flex plus portable projector
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->dangbei freedo
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->benq gv50
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
Unless your computer uses a Firewire chipset manufactured by Texas Instruments, FireWire interfaces are likely to act buggy.
AROS is unlikely to ever support FireWire.
Bluetooth is similarly unlikely to be ever supported due to huge cost to be certified.
No, x86 PCMCIA card.resource at the moment. Writing card.resource would be a similar amount of work to writing a typical driver. However, it might be complicated by having to support a variety of PCMCIA-controller chipsets like TI PCI1225, PCI1410, PCI1420, 1450, PCIxx12 and O2, etc. m68k card.resource does not really have many higher level functions, most functions are really simple or poke Gayle registers directly. only exception is CopyTuple(). Amiga card.resource has one significant flaw: it's single-unit. would need card.resource and pccard.library. There was talk in the past of designing a new API for PCMCIA because card.resource only supports one slot, but since most modern laptops only have one slot anyway, I think it might be worthwhile to implement card.resource as-is (at least as a first step). pccard.library would be trivial to port. So, a new API is needed.
lq7yr37i3lom858cy7u6b90c1d51i82
4641144
4641143
2026-06-25T16:56:13Z
Jeff1138
301139
4641144
wikitext
text/x-wiki
Google translation into [http://translate.google.com/translate?hl=en&sl=auto&tl=de&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support German], [http://translate.google.com/translate?hl=en&sl=auto&tl=fr&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support French], [http://translate.google.com/translate?hl=en&sl=auto&tl=nl&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Dutch], [http://translate.google.com/translate?hl=en&sl=auto&tl=it&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Italian], [http://translate.google.com/translate?hl=en&sl=auto&tl=es&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Spanish], [http://translate.google.com/translate?hl=en&sl=auto&tl=hi&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Hindi],
[http://translate.google.com/translate?hl=en&sl=auto&tl=zh-CN&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Chinese Simplified],
[http://translate.google.com/translate?hl=en&sl=auto&tl=pl&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Polish],
[http://translate.google.com/translate?hl=en&sl=auto&tl=ru&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Russian],
{{ArosNav}}
[[#Audio Chipsets]]
[[#Graphic GFX Chipsets]]
[[#Rough gfx comparison]]
[[#]]
==x86 Native Environment==
AROS should run on almost any i386 PC hardware so long as the CPU is newer than an i486, and has a "Floating Point Unit (FPU)". Ideally around 700Mhz and above with at least 256MB of memory is recommended for desktops and around 1GHz and at least 256MB for laptops/notebooks/netbooks. For web browsing, etc above 1GB is usually needed and offers the option to run web browsers, media players and other hard disk heavy usage from RAM: disk.
Motherboards supported
* Most Intel mobos are supported (Skt 775 is ok but newer is better) - additional pci / pci-e cards may be needed for networking, audio, etc
* AMD based socket 939 am2 am2+ am3+, fusion and am4 ryzen based systems work but additional pci / pci-e cards may be needed
Supported graphics cards (gfx)
* Nvidia 2D and 3D 2005-2017.
64bit AROS Nouveau covers '''2D''' 8xxxgs and higher to GTX 900s and '''3D''' from .
32bit AROS supports '''2D''' from TNT through to fermi gtx5xx and '''3D''' acceleration fx5xxx to gtx4xx.
* Intel GMA 2D and 3D 2006-2009.
'''2D''' for many old netbooks and motherboards. '''3D''' for many early netbooks and motherboards
* AMD/ATI 2D only and '''no 3D'''. 1999-2005.
Desktop ie external monitor support only (no laptop internal support) for very early Radeon 7000 through to x600. Experimental 2D version for up to HD3xxx came later
* VESA 2D fallback modes for all graphic cards (GPUs) and with [http://www.youtube.com/watch?v=HKCHZFYj9Kk screen dragging].
It's worth noting however that support isn't guaranteed. Nor will potential power of a card reflect its performance under AROS.
Sound wise there are
* HDaudio support for onboard intel and AMD netbooks, ultrabooks, notebooks and motherboards (2005 to 2020)
* some AC97 codec support for very old motherboards and laptops (ie pre 2004)
* PCI and some PCI-E C-Media CMI8738 for desktop plugin cards
* PCI Creative Soundblaster EMU10K1 cards [http://amigaworld.net/modules/news/article.php?storyid=2512 SBLive]
* PCI semi professional some early VIA Envy24 desktop sound cards
* PCI Sound Blaster 128 aka SB16
Supported [http://en.wikibooks.org/wiki/Aros/Platforms/x86_Network_support network] which could be desktop, laptop, etc
* PCI-E Realtek rtl8169 which also includes the rtl8111 and rtl8110
* PCI Realtek rtl8139 and includes rtl8101 and rtl8100
* PCI intel pro100
* Broadcom 44xx 10/100 integrated in laptops around 2005
* VIA 10/100
* 3com Etherlink 10/100
* Realtek rtl8029 10mbit
Wireless wifi
* atheros 5000 wireless
*realtek 8187 usb
It is very hard to recommend a completely supported motherboard because as soon as newer motherboards arrive so their features change subtly, often introducing non supported parts like ethernet and audio. It is a moving target.
* mini-itx motherboard will only get you 1 pci or pci-e slot
* micro mATX or uATX will have more, typically 2 pci-e or pci slots which helps if any onboard features are not supported.
* full atx will have more slots available
'''N.B''' It is frustrating when a piece of hardware is not supported. Hardware documentation can run to over 100 pages and a lot of hardware do not have any public documentation anyway. Chips from different manufacturers for sound, graphics, SATA, etc. vary just as much, unless they follow a standard such as [https://github.com/acidanthera/AppleALC/wiki/Supported-codecs HDAudio codecs], AHCI etc.
Coding drivers is a far cry from Hello World programs or even a port of existing software. If you do actually want to try then get a hold of documentation on the relevant hardware and start there. Alternatively you could try to find some '''BSD''', MIT or MPL licence drivers as a point of reference. Please , do not think you can just adapt strings in a driver for different strings, it does not work that way. You will '''need''' to start from scratch for each new bit of hardware. Device driver programming require '''embedded''' skills, like manipulation of bits within registers, good debugging skills, dealing with interrupts, lots of patience, etc.
The following specific chipsets and drivers are also available - use Tools/PCITool to confirm Vendor and Product IDs - Please let us know any mistakes or any information to be added, to this General Chat list on [https://arosworld.org/ AROS World]
: Brief Timeline
: 2000-12-06 HIDD first mouse.hidd completed ([http://msaros.blogspot.com/ Michal Schulz])
: 2001-03-31 BOOT first boot from floppy disk with IDE device
: 2001-10-30 BOOT first cd bootable version
: 2002-01-27 HIDD first pci.hidd added (Michal Schulz)
: 2002-04-13 BOOT software HDToolBox added ()
: 2003-04-03 HIDD vesa2.hidd graphic modes added ()
: 2004-03-08 HIDD new pci and ata (pata) devices worked on (Michal Schulz)
: 2004-03-17 HIDD nVidia 2D driver appears (Michal Schulz)
: 2005-01-05 AHI AHI v6 audio system ported (Martin Blom)
: 2005-01-06 AHI SBLive SoundBlaster Live driver ported (Georg Steger)
: 2005-02-04 AHI AC97 playback only driver added (Michal Schulz)
: 2005-06-27 NIC amiTCP stack ported with 3com, NE2000, prism2 drivers (Neil Cafferkey)
: 2005-08-25 NIC nForce2 support added (Michal Schulz)
: 2005-12-24 NIC Intel Pro100 network driver added (Neil Cafferkey)
: 2006-03-25 HIDD ATI radeon 2D driver added (Michal Schulz)
: 2007-03-06 HIDD vesa 1.0 video driver added (Pavel Fedin)
: 2007-03-08 HIDD dospackets and FAT filesystem (Rob Norris)
: 2007-03-21 HIDD usb initial commit (Michal Schulz)
: 2007-10-01 BOOT Installer added (Neil Cafferkey)
: 2007-11-29 PORT 64bit x86 added (Michal Schulz)
: 2008-04-12 BOOT GRUB2 added (Alain Greppin and Nick Andrews)
: 2008-08-26 NIC RTL8139 added ([http://kalamatee.blogspot.com/ Nick Andrews])
: 2008-10-22 PORT to SAM440ep (ppc) (Michal Schulz)
: 2009-02-25 PORT to efika (ppc) (Michal Schulz)
: 2009-05-18 HIDD poseidon usb2.0 stack ported to AROS (Chris Hodges)
: 2009-11-18 NIC RTL8169 network driver arrived (Nick Andrews and [http://pagesperso-orange.fr/franck.charlet/oldnews.html Franck Charlet])
: 2009-12-23 AHI HDAudio based Atom CPU and netbook audio driver arrived (Davy Wentzler)
: 2010-03-09 BOOT USB pendrive stick booting available (Neil Cafferkey)
: 2010-05-26 HIDD Intel GMA900 2D graphics card support (Michal Schulz)
: 2010-09-03 NIC Wireless PCI based NIC arrived (Neil Cafferkey)
: 2011-04-30 HIDD Nvidia 2D and 3D nouveau graphics card support (Deadwood)
: 2011-08-30 HIDD Radeon 2D enhanced AMD driver arrives (Bearsoft)
: 2011-09-17 NIC Wireless USB realtek arrives (Neil Cafferkey)
: 2011-12-09 HIDD Intel 945G 3D Gallium graphics support (Sami)
: 2013-02-25 AHI AC97 VIA 686 audio support (Davy Wentzler and Neil Cafferkey)
: 2013-03-31 PORT early Raspberry PI native support (Nik Andrews)
: 2014-01-16 AHI Envy24 audio chipset support (Davy Wentzler and Neil Cafferkey)
: 2017-02-17 PORT Symmetric MultiProcessing smp added for x86 64bit (Michal Schulz)
: 2018-10-20 PORT Big Endian ARM
: 2021-11-26 NIC Broadcom 44xx ethernet (Neil Cafferkey)
: 2023-01-12 NIC Nvidia MCP61 ethernet (Neil Cafferkey)
: 2025-11 HIDD xHCI USB3 and isoc (Nik Andrews)
[[#top|...to the top]]
===Audio Chipsets===
'''If sound beeps in AHI prefs after Music set then some support is there. Select more than one channel for multiple audio streams, set frequency up to 44 kHz or higher and set the volume if not already set. Ensure you set the music unit 0 to 3 which allows the extra features of the audio card like microphone, line-out, etc).'''
====1996-2000 sb128.audio aka SB16 PCI====
*2021 5.27
as per CREATIVE's website, the model number is the first two digits on the front and first two digits on the back. my card says CT4810 and 161TK110B 995; this translates to CT4816 as the model.
The original AudioPCI 3000 card with the ES1370 had a master clock crystal for 44.1 kHz (22.5792 MHz), used an AKM codec (AK4531, non-AC97) and had 4 channel output; Creative later modified the design with a crystal for 48 kHz (24.576 MHz) and Sigmatel AC97 codec (a CT4700 SB128 with a CT5507 chip, AK4531, 22.5792 MHz crystal and TDA7360 speaker power amp). The issue with these cards involved never quite eliminate the effects of resampling on the 64V, it also shows signs of undersized coupling caps. These Ensoniq cards automatically engaged headphone amplifier (with a 4565 opamp).
Porting involved [http://repo.or.cz/w/AROS.git/commit/b60abd12967144a844980c422ea9e99c056eabca 40897], [http://repo.or.cz/w/AROS.git/commit/b7d6511fca6430a63fbaaa390b4f51bf0203a460 40898 configure], [http://repo.or.cz/w/AROS.git/commit/f51034cd22759a4ec3a2547bddb3a7169d956eaa 40900 bugs], [http://repo.or.cz/w/AROS.git/commit/4f43fc38e3489ea45d12b7b5ba6fff50b69c5746 40901 further bugs], [http://repo.or.cz/w/AROS.git/commit/d23c78aec75f049484b6916d27b6804ce858bb2c 40913 memory IO fixes], [http://repo.or.cz/w/AROS.git/commit/d256860fe3035016952e88d143c6f2611997f2f3 40914 irq fix].
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| Ensoniq AudioPCI 1000
| 0x1274
| 0x5000
|
| {{unk}}
| {{unk}}
| untested - es1370 (u?) AK4531 (u?)
|-
| Ensoniq AudioPCI
| 0x1274
| 0x5000
| 0x00
| {{yes}}
| {{maybe}}
|
|-
| CT4700 Sound Blaster PCI 64 (audioPCI 3000)
| 0x1274
| 0x5000
| 0x7c
| {{yes}}
| {{maybe}}
| works - opamp JRC4565(u?) [http://en.wikipedia.org/wiki/Ensoniq_ES1370 es1370] (u?)
|-
| CT4750 Sound Blaster 64/PCI
|
|
|
| {{unk}}
| {{unk}}
| untested - 4565-1056W (u1) stac9708t(u2) [http://arstechnica.com/civis/viewtopic.php?f=6&t=916891 ct5880-dcq] (u3) 24wc012 (u4)
|-
| CT4751 (SB128PCI)
| 0x1274
| 0x8001
|
| {{unk}}
| {{unk}}
| untested - [http://en.wikipedia.org/wiki/Sound_Blaster#Ensoniq_AudioPCI-based_cards es1371] (u?)
|-
| CT4810 Creative AudioPCI64V
| 0x1274
| 0x1371
| 0x06
| {{yes}}
| {{maybe}}
| works
|-
| CT4811 (SB Vibra 128)
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4812 (Vibra 128)
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4813
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4815
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4816 es1373 (vibra 128)
|
|
|
| {{unk}}
| {{unk}}
| untested but this card has creative's ES1373 as the main chip(U1). it is also different from the other CT4810 (vibra128) in that it does not have a second chip in U2 position. Also there is only one jumper JP1 (2X3).
|-
| CT5801 HP
|
|
|
| {{unk}}
| {{unk}}
| untested - es1373 (u3)
|-
| CT5803 Gateway
| 0x1274
| 0x1371
| 0x08
| {{yes}}
| {{maybe}}
| works 4565-0005b jrc (u1) 4297a-jq ztae0c0002 (u2) es1373 (u3)
|-
| CT4740
| 0x1274
| 0x1371
| 0x08
| {{yes}}
| {{yes}}
|
|-
| CT5805 Compaq OEM Premier Sound Presario 7
|
|
|
| {{unk}}
| {{unk}}
| untested - es1373 (u3)
|-
| CT5806 (Sound Blaster AudioPCI 128D)
|
|
|
| {{unk}}
| {{unk}}
| untested - 4297A-JO EP (u?) ZTAPWC9933 (u2) es1373 (u3)
|-
| CT5807 Dell OEM Dimension 8100
|
|
|
| {{unk}}
| {{unk}}
| untested - es1373 (u?)
|-
| CT5808
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4730 Sound Blaster AudioPCI 64V Ectiva EV1938
| 0x1102
| 0x8938
|
| {{unk}}
| {{unk}}
| untested
|-
| CT5880 on various motherboards
| 0x1274
| 0x5880
|
| {{unk}}
| {{unk}}
| untested [http://www.xbitlabs.com/articles/mainboards/display/ga-6rx.html Gigabyte GA-6RX] (VIA ApolloPro 266 2001], Gigabyte GA-6VM7-4E mobo, [http://active-hardware.com/english/reviews/mainboard/ga-7vtx.htm Gigabyte GA-7VTX] (KT266 2001), Gigabyte [http://www.amdboard.com/gigabytega7vtxh.html GA-7VTXH] (KT266A 2001), [http://www.amdboard.com/gigabytega7vrxp.html Gigabyte 7VRXP] mobo (KT333 2002), MSI MS-6309, MS-6318, MS-6337 (815E Pro), MS-6339 (850Pro) and MS-6340, PCChips Motherboard M571 TXPRO, Soltek SL-65ME+,
|-
| VMware Virtual Workstation(TM)
| 0x1274
| 0x1371
| 0x02
| {{Yes|but not Hi-Fi modes}}
| {{maybe}}
| works
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
<pre>
Revision 0x04 = ES1371 REV_ES1373_A
Revision 0x06 = ES1371 REV_ES1373_B
Revision 0x07 = ES1371 REV_CT5880_A
Revision 0x02 = CT5880 REV_CT5880_C
Revision 0x03 = CT5880 REV_CT5880_D
Revision 0x04 = CT5880 REV_CT5880_E
Revision 0x09 = ES1371 REV_ES1371_B
Revision 0x00 = EV1938 REV_EV1938_A
Revision 0x08 = ES1371 REV_ES1373_8
</pre>
====1999-2001 via-ac97.audio====
*2021 5.10
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| <!--Description-->694X with 686A KT133 PM133 or 693A with VT8231
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3058
| <!--Revision-->
| <!--Playback-->{{Yes| }} redirects earphones correctly
| <!--Recording-->{{Yes| }}
| <!--Comments-->audio controller works but depends on the underlying invisible codec used see AC97 section
|-
| <!--Description-->686B KT133A with VT8231
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3058
| <!--Revision-->0x50
| <!--Playback-->{{Yes|}} reroutes ear pieces right
| <!--Recording-->{{Yes|}}
| <!--Comments-->audio controller works but depends on the underlying codec used see AC97 section below
|-
| <!--Description-->686C
| <!--Vendor ID-->0x1106
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->untested
|-
| <!--Description-->KM266 or KT266 with VT8233, KT266A with VT8233A, VT8233C
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3059
| <!--Revision-->0x10
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->KM333 KT333 with VT8235
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3059
| <!--Revision-->0x30
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
| <!--Description-->KM400 KT400 with VT8237, KT600 with VT8237R,
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3059
| <!--Revision-->0x40 0x50 0x60
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
|}
====1998-2003 emu10kx.audio - Creative Labs SoundBlaster Live! and Audigy====
*2021 6.5
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| PCI512 CT4790 (emu10k1)
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested (1st Gen)
|-
| Live CT4620
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Live CT4760
| 0x1102
| 0x0002
| 0x07
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| playback works
|-
| Live Value CT4670
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| works plays stereo (2nd Gen)
|-
| Live Value DELL CT4780
| 0x1102
| 0x0002
| 0x06
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| plays/records stereo - untested 4.1mode
|-
| Live Value Compaq CT4830
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{Maybe}}
| <!--Recording--> {{unk}}
| not working
|-
| Live Value CT4831
| 0x1102
| 0x0002
| 0x00
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Live Value CT4832
| 0x1102
| 0x0002
| 0x07
| <!--Playback--> {{yes}}
| <!--Recording--> {{partial|Line-In only}}
| works
|-
| Live Value CT4832
| 0x1102
| 0x0002
| 0x08
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| works
|-
| Live Value HP CT4870
| 0x1102
| 0x0002
|
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| Works
|-
| Live Value Gateway CT4871
| 0x1102
| 0x0002
|
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Live! Platinum 5.1 SB0060
| 0x1102
| 0x0002
| 0x00
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
| plays audio/records, untested 5.1 (3rd Gen)
|-
| Live 5.1 SB0100 -SFF
| 0x1102
| 0x0002
| 0x00
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| works
|-
| Live 5.1 Player SB0220
| 0x1102
| 0x0002
| 0x0a
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
| plays audio/records stereo, untested 5.1
|-
| Live 5.1 Digital SB0228
| 0x1102
| 0x0002
| 0x0a
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
| working
|-
| Audigy SB0090 (emu10k2)
| 0x1102
| 0x0004
|
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| <!--Description-->Audigy SB0230
| <!--Vendor ID-->0x1102
| <!--Product ID-->0x0004
| <!--Revision-->0x03
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Yes|Mic only}}
| <!--Comments-->5th Dec 2012 - untested optical tos link. contains also IEEE1394/Firewire (untested)
|-
| Audigy 2 Platinum 6.1 SB0240 SB0250 EMU10K2.5
| 0x1102
| 0x0004
| 0x04
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| works
|-
| Audigy 2 PRO SB0280 EMU10K2.5
| 0x1102
| 0x0004
|
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Audigy 2 ZS SB0350
| 0x1102
| 0x0004
| 0x04
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
|
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| Live 5.1 DELL SB0200 SB0203 emu10kx
| 0x1102
| 0x0006
| 0x0
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
|
|-
| Live 24bit SB0410
| 0x1102
| 0x0007
| 0x
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Live 24bit DELL SB0413
| 0x1102
| 0x0007
| 0x
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy LS SB0310
| 0x1102
| 0x0007
| 0x0
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy SE 7.1 SB0570
| 0x1102
| 0x0007
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 2 ZS SB0320 SB0360 (PRO)
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 2 VALUE SB0400
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 4 VALUE SB0610
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 4 PRO SB0380
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| EMU E-MU 0404 PCI (not USB) EM8852
| 0x1102
| 0x000
| 0x0
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver but linux support needs firmware
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
the green jack is for the main speaker pair AND headphones, so manual switching will be required
If your card is wired for the "AC97" standard, then it's up to your headphone jack to switch the green speaker output in and out
the headphone jack has Normally-closed contacts that will open on insertion, which breaks the signal path back to the sound card (FP_RETURN)
====2000-2010 cmi8738.audio - C-Media====
*2021 5.20
;Read [http://amigaworld.net/modules/news/article.php?storyid=2512 more] and imported on [http://repo.or.cz/w/AROS.git/commit/aff741d60160c6a9d7d39c9e004a25ea3aa13847 20th July 2011] and [http://alsa.opensrc.org/Cmipci alsa docs].
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| Audiotrak MAYA EX5
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| cmi8738-sx 4ch
| 0x13f6
| 0x0111
| 0x10
| <!--Playback-->
| <!--Recording-->
| untested
|-
| e3dx hsp56 CMedia 8738-sx 4ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| EDio SC3000D 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Genius SoundMaker Value PCI C3DX
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Guillemot Maxi Sound Muse
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Hercules Gamesurround Muse LT
| 0x13f6
| 0x0111
| 0x10
| <!--Playback--> {{yes}}
| <!--Recording--> {{no}}
|
|-
| Hercules Gamesurround Muse XL LT 5.1
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Inno audio extreme 5.1 cmi8738/lx pci 6ch
| 0x13f6
| 0x0111
| 0x
| <!--Playback-->
| <!--Recording-->
| untested
|-
| M-Audio (Midiman) DiO 2448
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Sabrent SBT-SP6C 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| StarTech PCISOUND4CH 8738sx 4ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Sweex SC012 CMI8738-lx 4ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Terratec 5.1 PCI
| 0x13f6
| 0x0111
| 0x10
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Terratec Aureon Fun 5.1
|
|
|
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| Has SPDIF
|-
| Trust Sound Expert Digital Surround 5.1 (cm8738-mx 6ch)
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Turtle Beach Riviera CMI8738-MX 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| XSonic CMI 8738 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->CMI8738 6ch PCI-E PCI Express version
| <!--Vendor ID-->0x13f6
| <!--Product ID-->0x0111
| <!--Revision-->0x10
| <!--Playback-->{{Yes|}}
| <!--Recording-->{{Maybe|}}
| <!--Comments-->Chinese based card with playback tested so far
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
====2001-2005 ac97.audio====
*6.4 27-12-2008
The AC97 chips were designed to be pinout interchangeable so that the sound support could change easily and quickly without motherboard redesigns
the green jack is for the main speaker pair AND headphones, so manual switching will be required
If your card is wired for the "AC97" standard, then it's up to your headphone jack to switch the green speaker output in and out, the headphone jack has Normally-closed contacts that will open on insertion, which breaks the signal path back to the sound card (FP_RETURN)
The ProductID and VendorID are for the audio controller only - the important additional codec is '''NOT''' so easily identified.
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| <!--Description-->Avance Logic (now Realtek) ALC100 and ALC101 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->ALC200 and ALC201 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->ALC201A and ALC202 and ALC202A codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->ALC650
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| <!--Comments-->most Nforce2 boards plays audio only - Abit NF7, Asus A7N8X, MSI K7N2, Epox 8RDA+, DFI
|-
| <!--Description-->ALC850 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{No}}
| <!--Comments-->no support for via P4P800 chipset on ASUS A8V-E SE Deluxe mobo - ICaros 1.3
|-
| <!--Description-->Realtek ALC653 codec and ALC655 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested Acorp 7NFU400
|-
| <!--Description-->Realtek ALC658 codec ALC658D
| <!--Vendor ID-->0x8080
| <!--Product ID-->0x24c5
| <!--Revision-->0x0
| <!--Playback-->{{Yes|Prefs Music and Units 0-3 set volume control - playback}}
| <!--Recording-->{{No}}
| <!--Comments-->MSI Motherboard on NB 22-09-2012
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->AD1881 SoundMAX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->Analog Devices first AC97
|-
| <!--Description-->AD1881A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Yes}}
| <!--Revision-->
| <!--Comments-->works with VIA Controller - untested Intel etc
|-
| <!--Description-->AD1881B
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1885 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{No}}
| <!--Comments-->Playback only with issues on D845HV but not working on MS-6367 because Units 0-3 have masked volume control
|-
| <!--Description-->AD1886
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1887
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->ADI AD1888 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{no}}
| <!--Recording-->{{No}}
| <!--Comments--> Icaros 1.51
|-
| <!--Description-->AD1980 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->AD1981A codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested IBM X30
|-
| <!--Description-->Analog Devices SoundMax(TM) AD1981B codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| <!--Comments-->plays back only on IBM T41 Thinkpad
|-
| <!--Description-->AD1985 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{No}}
| <!--Comments-->not working ahi prefs freezes on D865GLC mobo ([http://www.xbitlabs.com/articles/multimedia/display/int-sound2_3.html ]
|-
| <!--Description-->AD1986 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{No}}
| <!--Comments-->untested [http://uk.ts.fujitsu.com/rl/servicesupport/techsupport/Boards/Motherboards/Fujitsu/D1931/D1931.htm D1931] but works (Acer Aspire 3610 laptop)
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->Crystal Semiconductors CS4205, CS4202 codecs
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Cirrus Logic CrystalWare 4236
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->Cirrus Logic CrystalClear SoundFusion CS4297 CS4299 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested IBM T23
|-
| <!--Description-->conexant Cx20468-31 codec (id 30)
| <!--Vendor ID-->0x103c
| <!--Product ID-->0x3085
| <!--Revision-->
| <!--Playback-->{{No|AC97 appears in AHI Prefs}}
| <!--Recording-->{{No}}
| <!--Comments-->Tested AspireOS 1.8 on Gateway W322
|-
| <!--Description-->ESS Technology ES1921 AC'97 2.1
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->CMI 6501 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested on ASROCK SKT-AM2 AM2NF3-VSTA
|-
| <!--Description-->codec CMI9738
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->codec CMI9739
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->C-Media CMI 9739A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments--> untested on EPoX 8RDA3+
|-
| <!--Description-->CMedia CMI 9761A codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested ASRocK K7NF2-RAID
|-
| <!--Description-->C-Media CMI9880
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->National Semi conductor (now TI) LM4540, LM4543, LM4545, LM4546, LM4548, LM4549, LM4550 LM4560
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->STAC9708T codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->SigmaTel (now IDT) C-Major STAC 9460 (D/A only), 9461, 9462, 9463, 9200, 9202, 9250, 9251, 9220, 9221, 9223, 9750
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AKM (Asahi Kasei Microsystems) AK 4540, 4543, 4544A, 4545
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->codec VT1616 (VIA Six-TRAC Vinyl Audio)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->VIA VT1612, VT82C686
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->ESStech ESS ES1968 maestro-2
| <!--Vendor ID-->0x125d
| <!--Product ID-->0x1968
| <!--Revision-->0x
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->ESStech ESS ES1978 maestro2e
| <!--Vendor ID-->0x125d
| <!--Product ID-->0x1978
| <!--Revision-->0x
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->ESStech ESS ES1988 maestro3 allegro-1 codec
| <!--Vendor ID-->0x125d
| <!--Product ID-->0x1988
| <!--Revision-->0x12
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->Yamaha AC97 ymf-743 YMF752 YMF753 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->{{No}}
| <!--Comments-->untested ymf-753
|-
| <!--Description-->YMF724 YMF744 YMF-754 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| SIS 7018 / Trident 4dwave DX/NX / ALi 5451
| 0x1039 (0x1023 Trident)
| 0x7018 (0x2000 Trident DX) (0x2001 Trident NX)
| 0x02
| <!--Playback-->{{No}}
| <!--Recording-->{{No}}
| no support - introduced early 2000s
|-
| SIS 7012
| 0x1039
| 0x7012
|
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| working through 1 speaker only took over from SIS7018 (2002 onwards)
|-
| <!--Description-->Wolfson (now Cirrus Logic) WM9701, WM9701A (AC'97 1.03 spec), WM9703, WM9704 (AC'97 2.1), WM9705, WM9706, WM9707, WM9708
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->WM9709, WM9710, WM9711, WM9712, WM971
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->first Microsoft(TM) Xbox DAC sound chip (AC Link compliant D/A converter)
|-
| <!--Description-->Wolfson WM9717
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| Parallels
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested
|-
| VirtualBox
|
|
|
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| working
|-
| VirtualPC
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested
|-
| <!--Description-->Intel 82801AA Proxmox
| <!--Vendor ID-->0x8086
| <!--Product ID-->0x
| <!--Revision-->
| <!--Playback-->{{unk| }}
| <!--Recording-->{{unk| }}
| <!--Comments-->
|-
|}
====2005-20xx HDAUDIO.audio====
*6.36 2025 [https://github.com/aros-development-team/AROS/commit/43b33a9280b10963ca659de2cc3d1cf289b43a87 reset handler]
*6.35 202 []
*6.34 2019 AROS One 1.5 upwards
*6.29 2018
*6.27 2017 update
*6.25 2014 used for most Icaros 2.x
*6.20 July 2012
*6.17 Nov 2011
*6.15 Jun 2011
*[http://www.clusteruk.com/SitePortalPage.aspx?siteid=1&did=109 6.13] Sep 2010
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="5%" |Vendor ID
! width="5%" |Product ID
! width="5%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| <!--Description-->ALC260
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| <!--Description-->ALC262
* ALC262-VD2-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->LQFP-48
|-
| ALC268 codec
| 0x
| 0x
| 0x
| <!--Playback-->{{Yes|Version 6.17 Acer AOA110 and AOA150 netbooks), works (Dell Mini Inspiron 9 and 10v, }}
| <!--Recording-->{{Yes|Version 6.17 remove QUERY and select 'Mic 1' as input. Tested with 6.15 as well using QuickRecord and AE 4.0.23 under Icaros 1.4.}}
| <!--Comments-->AHI UNITS and Music are set to: hdaudio:HiFi 16 bit stereo++ / Frequency 48000 Hz, Volume +0.0 dB. The hdaudio.config in SYS:Prefs/Env-Archive is WITHOUT the QUERY-line. After changing and saving the config-file turn off and start again the computer. Switch from internal loudspeaker to headphone you must turn off the music before plug in the headphone-cable, otherwise there is no output on the socket. Back from line-out to internal speakers it is the same.
|-
| [http://blog.foool.net/wp-content/uploads/linuxdocs/sound.pdf Linux docs ALC269]
* ALC269Q-GR
* ALC269QSRS-GR
* ALC269W-GR
| 0x
| 0x
| 0x
| <!--Playback-->{{Maybe| }}
| <!--Recording-->{{Unk| }}
| <!--Comments-->TQFP 48 pin Power IC Chip From [https://patchwork.kernel.org/project/alsa-devel/patch/1408118123-15849-1-git-send-email-tiwai@suse.de/ ALC269 & co have many vendor-specific setups with COEF verbs, result in the codec stalling]
|-
| [http://www.alsa-project.org/db/?f=0321f8479fd670cd510f9912b1120fe7edcf2e07 ALC269VB]
* ALC269Q-VB5-GR
* ALC269Q-VB6-CG
* ALC269Q-VB6-GR
| 0x10ec
| 0x0269
| 0x100004, 0x100100, 0x100202
| <!--Playback-->{{Maybe|some versions work}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* v1 works Asus eee PC netbook 901/1000HA 1005HA/1008HA, 1001P,
* v2 maybe working Lenovo S9 S10 S10-2 S10-3 under HDAudio version 6.13
* v3 maybe dell wyse 7010
|-
| [http://alsa-project.org/db/?f=9c1746c5957b0ce72ff9cfffa312e97d14baf785 ALC269VC aka ALC3202]
* ALC269Q-VC2-GR
* ALC269Q-VC3-GR
| 0x10ec
| 0x0269
| 0x100203,
| <!--Playback-->{{Maybe|some versions work}}
| <!--Recording-->{{Unk}}
| <!--Comments-->SMT SMD QFN-48 -
* v1 unknown
* v2 unknown
* v3 x230, dell wyse,
|-
| ALC272
* ALC272-VA4-GR
| 0x10ec
| 0x0272
| 0x0
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Unk}}
|
* works Acer AOD150 and Acer AOD250 works [http://amigaworld.net/modules/newbb/viewtopic.php?topic_id=33755&forum=28#616910 Samsung NP-NC10], works Samsung NF210-A02] netbooks,
|-
| <!--Description-->ALC273
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| <!--Description-->ALC270
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC282
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x
| <!--Revision-->
| <!--Playback-->{{No|Version 6.17}}
| <!--Recording-->{{No|Version 6.17}}
| <!--Comments-->needs retest
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC660 ALC660-VD
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes| }}
| <!--Recording-->
| <!--Comments-->
* works asus F9s, F9e
* untested asus w7j, M51SN, A6Tc, A8Sr,
|-
| <!--Description-->ALC661-GR (2011)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| ALC662
| 0x1043
| 0x82a1
| 0x0
| <!--Playback-->{{Yes|Version 6.17 if QUERY added to top of hdaudio.config}}
| <!--Recording-->{{No|Version 6.17 not working for eee pc 900}}
|
* works Asus eee PC netbook 700/701/900, Atom 270 and 330 mobos, odd clicks (D410 NM10 PineTrail),
|-
| <!--Description-->[http://outpost.fr/rmaa/ALC663.htm ALC663]
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0861
| <!--Revision-->
| <!--Playback-->{{No|Version 6.13}}
| <!--Recording-->{{Unk}}
| <!--Comments-->not bad output like headphone amp part of the codec actually works well but messed up by undersized coupling capacitors to actually support such a low impedance
* not working Asus n50vn x71vn,
|-
| <!--Description-->ALC665
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC666
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC667
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC668
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC670
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->ALC880
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->some 915 and 925 chipset mobos
|-
| <!--Description-->ALC882M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| Realtek ALC883 ALC883-GR ALC883D-GR ALC883DTS-GR ALC883DD-GR codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe|some early versions work }}
| <!--Recording-->{{Unk| }}
| 2005 to 2007 HD Audio codec untested (Asus ),
|-
| Codec ALC885
| 0x10ec
| 0x0885
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
|-
| ALC888
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
|
|-
| ALC888s
* ALC888S-VD2-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}} MSI Wind U90/U100,
| <!--Recording-->{{Unk}}
| LQFP-48
|-
| ALC888b
| 0x8086
| 0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| untested (D510 NM10 Dual Core PineTrail mobo),
|-
| ALC888-VD
| 0x8086
| 0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| untested
|-
| ALC889A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes|works if QUERY added to the top of hdaudio.config in Prefs drawer/directory}}
| <!--Recording-->{{Unk}}
|
|-
| ALC889 Gr
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}} with crackles
| <!--Recording-->{{Unk}}
|
|-
| ALC889
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
| Tested with MSI H55 board
|-
| ALC887 ALC887-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
|
* working on ASUS P5KPL/EPU and Gigabyte GA-E350N-Win8 Rev1.0
|-
| ALC887-VD-CG
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0887
| <!--Revision-->0x100302
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}} Subsystem Id: 0x1458a002
|
|-
| ALC887-VD
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0887 0x1458
| <!--Revision-->0xa002
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{Unk}} index = 2
| ALC887 does not have any volume control ability on the mixer NIDs, so put the volume controls on the dac NIDs instead
* working with intermittent corrupting pop popping skipping stuttering sound issues MSI 760GM-P23 (FX),
* not working Gigabyte H61MA-D3V, AT3IONT-I Deluxe,
|-
| ALC887-VD2
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
| 3jacks
|-
| ALC887-VD2-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
|-
| ALC887-
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
|
|-
| ALC892-CG rev
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| 2011 48-pin LQFP Green package -
|-
| ALC892 ALC892-DTS-CG rev
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
| 2009 introduced
* works
* not working
* untested
|-
| ALC892 rev
| <!--Vendor ID-->0x0x10ec
| <!--Product ID-->0x0892
| <!--Revision-->0x100302
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| 2014
|-
| Realtek ALC886-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| LQFP-48
|-
| Codec ALC861 ALC861-VD
| 0x10ec
| <!--Product ID-->0x0663
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
|
* not working Toshiba Tecra A7
|-
| <!--Description-->ALC1200
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| ALC898
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
| not working
|-
| <!--Description-->ALC1500
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC3232 (aka ALC292)
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0292
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC3234 aka ALC255
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0255
| <!--Revision-->003
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC3287 aka ALC257
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes| }}
| <!--Recording-->{{no| }}
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->AD1882
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1883 HD Codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1884
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| Analog Devices SoundMAX AD1981
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| IBM Thinkpad T60,
|-
| AD1984 hp-m4 codec
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
* audio not working on Lenovo X61, Thinkpad T61,
|-
| AD1986
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
|
|-
| AD1988
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
|-
| <!--Description-->AD1988A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->Cirrus Logic CS4207
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->
| <!--Recording-->
|
|-
| <!--Description-->Cirrus Logic CS4208
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->
| <!--Recording-->
|
|-
| <!--Description-->Conexant CX20549 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe|very very very low volume}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested Fujitsu Amilo SI 1510 1520 no datasheet for the general public
|-
| <!--Description-->Conexant CX20549-12Z codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested HP 530
|-
| <!--Description-->Conexant CX20561 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* working lenovo x200s
* untested Lenovo Essential G555 Notebook, HP Pavilion dv6700,
|-
| <!--Description-->Conexant CX20582 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX2059x CX20590 CX20594-21Z codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX20585 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* working Lenovo Thinkpad T410,
|-
| <!--Description-->Conexant CX20672 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX20671 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX20751-21Z codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes| }}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| <!--Description-->Conexant CX11852 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX11880 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant after 2015 up to 2018 CX7501 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{no|no driver codec}}
| <!--Recording-->{{no|no driver codec}}
| <!--Comments-->Conexant bought by synaptics 2019
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->C-Media CMI9880 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->Gigabyte GA-8GPNXP
|-
| <!--Description-->Silicon Labs 3054
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| VIA 1708A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| untested,
|-
| VIA VT1708B
| <!--Vendor ID-->
| <!--Product ID-->
| 0x0010
| <!--Playback-->{{No|VIA PicoITX}}
| <!--Recording-->{{Unk}}
|
|-
| VIA 1708S
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
|
|-
| <!--Description-->VT2021 10ch
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->Gigabyte Z77MX-D3H, GA-H61M-S2H S2P,
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Creative CA0110-IBG
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->SigmaTel STAC 9220 9221 9223 8ch (7+1)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| <!--Comments-->ECS 945GCT/M-1333 (version 3.0),
|-
| IDT SigmaTec [http://explorer.cekli.com/articles/pdf/hd-audio STAC9227] /28/29/30 codec
| <!--Vendor ID-->0x8384
| <!--Product ID-->0x7626
| <!--Revision-->0x0002
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Unk}}
|
* works HP Compaq mini 110
* untested HP Pavilion HDX9000 CTO Notebook, Intel DG33TL mobo, Dell E520, Intel DP35DP mobo, Dell E6410 Laptop,
|-
| IDT (formerly SigmaTel) IDC STAC 9271/71D
| <!--Vendor ID-->0x8384
| <!--Product ID-->0x7626
| <!--Revision-->0x0002
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
|
|-
| <!--Description-->IDC STAC 9272 9273 9274
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->Intel D5400XS,
|-
| <!--Description-->IDT 92HD73C
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes}}
| <!--Recording-->
| <!--Comments-->headphones only Asus AT4NM10 mobo
|-
| <!--Description-->IDT 92HD75B
| <!--Vendor ID-->0x111d
| <!--Product ID-->0x7608
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* working [http://koti.kapsi.fi/jvaltane/aros/hdaudio/ HP Compaq Mini 700 Netbook - feedback required]
* untested HP Mini 5103 and 5102, HP Compaq 610, HP ProBook Laptop 4520s 4525s 6450b 6550b 6555b, HP EliteBook 2540p 2740p 8440p, Mobile Workstation 8540w 8740w, Pavilion NoteBook DV8,
|-
| <!--Description-->IDC 92HD81XX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC 92HD83XX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC STAC 92HD89XX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Wolfson (now Cirrus Logic) WM8850
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Wolfson WM8860
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->Intel High Definition Audio Revision 1.0. - 4-Channel DAC, 4-channel ADC. - DAC sampling
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
Using Prefs/AHI ensure you set the music unit and at least Units 0 (where most audio comes from) in top left drop down menu to HDaudio - HIFI in the section below. Set Units 1 or 2 to microphone or other outputs. Plus allow more than one channel for multiple audio streams and set frequency up to 44 kHz or higher on the right hand side of the ahi prefs. If sound beeps when you press the test button then all should be OK.
Output <- Codec <- Audio Controller (HDA) <-> Computer
codecs and exact hardware identifier. As mentioned above, HDA is only part of the work here, it gets the audio out of the main chipset in digital format (on a bus called I2S). This is not enough, there is another step needed which is routing that I2S signal to the output, converting it to actual audio, amplifying it, etc. This is handled by a separate chip called a "codec". Sometimes it is initialized by the BIOS, but this is not always the case.
Most audio drivers are made up of two parts a [http://www.kernel.org/doc/Documentation/sound/alsa/HD-Audio.txt Controller + a Codec]. The ProductID and VendorID are for the audio controller only - the important additional codec is '''NOT''' so easily identified.
Some newer versions of codecs are missing at the moment.
Things to try if sound not working
* try to connect something to the audio jack, maybe it is not playing on internal speakers or vice versa
* make sure you try and select all music units e.g. unit0, unit1....
* even if PCI ID's are in Prefs/Env-Archive/HDaudio.config, this doesn't mean it is working, it is the codec that matters
* it might be internally muted
<pre>
add debug=memory to grub boot line - continue booting with F10
Open a shell
Tools/Debug/Bifteck > RAM:audio.txt
</pre>
or
<pre>
Open a shell
Tools/Debug/Sashimi > RAM:audio.txt
Run ahi prefs
Click test tone button
Stop sashimi with Ctrl-C
</pre>
If the boot sound is enabled, you have to use Bifteck to capture AHI debug output. In the GRUB menu, press E on your selected entry, then add "debug=memory" to the options (alongside ATA=, vesa= etc.). Then F10 or Ctrl-X to boot. Once booted, run Tools/Debug/Bifteck again.
or
* try adding QUERYD to the start of ENVARC:hdaudio.config file (also known as Prefs/Env-Archive/) ie. on the first line
* '''OR''' try removing QUERY and QUERYD from the start of the hdaudio.config file
* Reboot
* open a shell
* type: sys:tools/debug/sashimi > ram:debug.txt
* open ahi prefs
* select one of the audio modes - HIFI or otherwise
* press the 'test sound' button
* press ctrl-c in the shell
* post the results to Aros-World
The HD Audio standard was designed to be hardware pinout interchangeable so that the sound support could change easily and quickly. HDA is a standard around particular chips. Each kind of chip has a certain number of DACs and pins, and even the same chip could be hooked up in different ways on different motherboards. The chips are programmable and the operating system can adjust how things are routed. Some pins aren’t even hooked up, so it makes no sense to route sound to them. Also some pins have sensors that can tell when something is plugged in, so that for example the speakers in a laptop can be muted when headphones are plugged in. Pins are also grouped, so for example all the outputs for a 5.1 sound system are grouped. Generally the HDA driver in the operating system is supposed to read the pin set up and figure out a reasonable way to set things up, and disconnected pins should be ignored, etc.
HDAudio standard has headphones on a separate DAC, and it's up to the driver.. it can even send different audio to the headphones without interrupting the main (green) outputs
====Envy24 series ====
A little history. VIA bought the ICE created Envy chipsets [http://www.via.com.tw/en/products/audio/controllers/comparison_controller.jsp VT1712] first. A few years later, they created several cheaper variants VT1724 (mixer missing), VT1721 (low end cut down), VT1720 (embedded on motherboard) and lastly the VT1723 (no support apart from Windows Envy24DT like SYBA SD-PEX63034).
There are PCI Express versions appearing.
The Envy24 is the base product that was originally designed by ICEnsemble, and it supports multi-channel hardware mixing, which is great for professional use. The HT version removes the hardware mixer (unimportant for non-professional uses). The [http://www.avsforum.com/t/364771/envy24ht-s-the-definitive-source HT-S] version is almost exactly the same as the HT, it just uses cheaper DACs. The PT version is exactly the same as the HT-S version, it is just the edition used for on-board audio on motherboards.
N.B. [http://www.soundonsound.com/sos/dec04/articles/pcnotes.htm PCI slot identification] and [http://hsi.web.cern.ch/HSI/s-link/devices/s32pci64/slottypes.html 3.3v PCI].
=====[http://www.opensound.com/readme/README.Envy24.html envy24.audio] - [http://www.anime.net/~goemon/alsa/ VT1712] =====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Playback
! Recording
! Comments
|-
| M-Audio Delta 66 - Rev B 1999
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested AK4524VF CS8404A-CS - needs Delta Series break out box with D-sub lead -
|-
| [http://ixbtlabs.com/articles/maudioaudiophile/index.html Audiophile 2496] Rev A 2000
| 0x14
| 0x
|
| <!--Playback-->{{unk| }}
| <!--Recording-->{{unk| }}
| works audio out on - I2S stereo codec AKM AK4528VF with the 24bit/96kHz DAC and ADC; CS8427 digital transceiver
|-
| [http://ixbtlabs.com/articles/maudioaudiophile/index.html Audiophile 2496] Rev B 2003
| 0x14
| 0x
|
| <!--Playback-->{{Yes }}
| <!--Recording-->
| works well - I2S stereo codec AKM AK4528VF with the 24bit/96kHz DAC and ADC; CS8427 digital transceiver
|-
| M-Audio Delta 410 - 2001 2001 REV-B
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested for D-A AK4529VQ converters with CS8427-CS 5532 1158B or Event Echo Gina 20-Bit Multitrack Interface Breakout Box -
|-
| M-Audio Delta 1010
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested AK5383 and AK4393 - 25 pin dsub -
|-
| M-Audio Delta 1010LT 1010E
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested for D-A AK4529 converters with 2 XLR Microphone inputs with pre amps
* be aware of redesign in 2007 - possible issues
|-
| M Audio Delta 44 - Rev A 2002 - Rev B 2003 - Rev D 2003
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested ICE1712G AK4524VF needs breakout box with 15 pin D-sub lead -
|-
| M-Audio Delta 66 Rev E 2006 - Omni Studio
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested needs break out box with 15 pin D-sub lead -
|-
| <!--Description-->M-Audio Delta DiO 2496
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| Terratec EWX24/96
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| [http://ixbtlabs.com/articles2/terratecdmx6fire/index.html TerraTec 6fire DMX 24/96]
| <!--Vendor ID-->0x1412
| <!--Product ID-->0x1712
| <!--Revision-->0x02
| <!--Playback-->{{No|tried line 1-2 3-4 5-6 7-8 }}
| <!--Recording-->{{No| }}
| untested - AKM and codec
|-
| <!--Description-->Terratec EWSA88MT
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| [http://lists.freebsd.org/pipermail/freebsd-multimedia/2007-March/006087.html Audiotrak Prodigy HD2] 24/96
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Audiotrak (ESI) Maya 1010 1010L
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| EMU 1212M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| EMU 1616M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| <!--Description-->Terratec EWS 88MT EWS 88D
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Hoontech Soundtrack DSP 24
Soundtrack DSP 24 Value
Soundtrack DSP 24 Media 7.1
Event Electronics EZ8
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Digigram VX442
Lionstracs
Mediastation
Terrasoniq TS 88
Roland/Edirol DA-2496
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
=====envy24ht.audio - VIA VT1724=====
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| ESI Juli@
| 0x3031
| 0x4553
| 0x0
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Yes}}
| reported working years ago [http://envy24.svobodno.com/ Envy24HT-S] - AKM 4358 DAC - AKM 4114/4112 DIT
|-
| ESI Juli@ Ego Igo rev K
| 0x3031
| 0x
| 0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| AK4358? DAC - AK4114 AK4112 DIT
|-
| [http://ixbtlabs.com/articles2/multimedia/m-audio-revolution51.html M-Audio Revolution 5.1]
| 0x1412
| 0x3631
| 0x0
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| reported working years ago but discontinued - (Envy24GT) - 3ch AKM 4358 DAC - ADC AKM 5365 -
|-
| [http://ixbtlabs.com/articles2/m-audio-revolution71/index.html M-Audio Revolution 7.1] 24/192
| 0x1412
| 0x3630 0x1724
| 0x0
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| not working - illegal semaphore - 6ch ADC AKM AK4355 24-bit 192 kHz - 2ch DAC AKM AK4381 24-bit 192 kHz - ADC AKM AK5380
|-
| Terratec Aureon Sky 5.1
| 0x153b
| 0x1147
| 0x
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - discontinued
|-
| [http://ixbtlabs.com/articles2/terratec-aureon71/index.html Terratec Aureon Space 7.1]
| 0x153b
| 0x1145
| 0x0
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - Wolfson WM8770 DAC, AC'97 codec SigmaTel STAC9744
|-
| Terratec Aureon Universe 7.1
| 0x153b
| 0x1153 (rev x) 0x1724 (rev3)
| 0x0
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| not working - semaphore error on rev 3 - DAC ADC
|-
| Terratec Phase 22
| 0x153b
| 0x1150
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - Envy24HT-S - AK4524
|-
| Terratec Phase 28
| 0x153b
| 0x1149
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - Envy24HT-S - AK4524
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Playback
| Recording
| Revision
| Comments
|-
| Audiotrak (ESI) Prodigy 7.1
| 0x4933
| 0x4553
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - Wolfson WM8770 and AC'97 SigmaTel STAC9744 codec
|-
| Audiotrak (ESI) Prodigy 7.1 LT
| 0x3132
| 0x4154
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver -
|-
| [http://ixbtlabs.com/articles2/sound/audiotrak-prodigy192.html Audiotrak (ESI) Prodigy 192] 24/96
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - STAC9460S codec
|-
| <!--Description-->Echo Layla 24/96
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
| [http://www.bit-tech.net/custompc/labs/80752/hercules-gamesurround-fortissimo-4.html Hercules Gamesurround Fortissimo 4]
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - Wolfson WM8776 Codec and WM8766 DAC
|-
| [http://ixbtlabs.com/articles2/multimedia/m-audio-audiophile192.html M-Audio Audiophile Delta AP 192k]
| 0x1412
| 0x3632
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - Stereo ADC AKM AK5385A 24-bit 192 kHZ - 8-channel DAC AKM AK4358 24-bit 192 kHz - AKM 4114/4112 DIT
|-
| ONKYO SE-150PCI
| 0x160b
| 0x0001
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver
|-
| <!--Description-->ESI Waveterminal 192x
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
| <!--Description-->Quartet
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments--> - AKM 4114/4112 DIT
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
|}
====hdmiaudio.audio - hdmi no support====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->ATI R6xx HDMI Audio codec support output
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x9840
| <!--Revision-->
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->Not detected
|-
| <!--Description-->NVidia HDMI
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Intel Series 6 CougarPoint HDMI codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Intel HDMI
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|}
[[#top|...to the top]]
===Graphic GFX Chipsets===
[https://gallium.readthedocs.io/en/latest/systems.html PCIe based] graphic chipset is defacto on 64bit AROS and recommended on 32bit.
AGP works on 32bit but faster transfers through the AGP slot are only available on a few supported motherboard chipsets
* Faster AGP Working = SIS 650 board, Intel 865pe AGP slot on MSI 6788-050,
* Not Supported = NForce2 chipsets, most Intel 815/820 chipsets, VIA chipsets, ALi chipsets,
The fallback for all graphics modes is vesa if any native support does not work. There is a choice of very low resolution vga as the last resort
2D tests performed with [http://download.aros3d.org/software/gfxbench.zip gfxbench] in the shell type gfxbench > out.txt (40 seconds blank screen is part of the test), via FreeDoom via limit-removing engine like odamex, chocolate or vanilla doom -timedemo demo1 or doom2 -timedemo demo1, doom.exe -iwad doom2 -file mymap.wad, Duke DNRATE 640x480 windowed
3D tests performed with Demos/Mesa/ , Cube 1080p, Cube 2 windowed not fullscreen 1920 x 1025, Quake3 ~ cl_drawFPS 1, Xonotic , [http://shinh.skr.jp/sdlbench/showtestgl.cgi test gl],
HDMI, DVI and DisplayPort monitors have a native resolution of 480p, 720p, 1080i, 1080p and up
<pre>
HDMI (licensing fee)
1.2 720p res.
1.3 1080 resolution
1.4 4K @ 30Hz
2.0 4K @ 60Hz
2.1 48Gbs for 4K @ 120Hz, 8K @ , VRR, etc
2.2 ultra96
</pre>
<pre>
DisplayPort (VESA introduced)
1.4 4K @ 60Hz
2.1 96Gbs for 4K @ 240Hz, 8K @ 120Hz. MST daisy chain multiple monitors,
</pre>
<pre>
GPMI chinese standard
2.0
</pre>
Might be supported on AROS
*OpenGL4 GPU must have 64-bit floating point FP64 math support, which is a hard requirement for GL 4.0. The max last revision opengl 4.6 (2017) on [https://wiki.gentoo.org/wiki/AMDGPU AMDGPU] RX 5000's / 6000s ([https://forum.batocera.org/d/7491-enable-opengl-46-and-vulkan-for-an-old-radeon-video-card RDNA] and Nvidia RTX might come to AROS) but Intel UHD, Iris Plus or Xe or Arc (will not unless a developer wants the challenge)
*OpenGL3 last revision 3.3 (2011)
Already supported on AROS
*OpenGL2 nvidia-nouveau,
*OpenGL1 intel gma950,
====vga.hidd====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Comments
|-
|
| 0x
| 0x
| 0x0
| Generic VGA Driver, limited to 640x480 in 16 colours - no 3D support
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Comments-->
|-
|}
====vesa.hidd====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Comments
|-
|
| 0x
| 0x
| 0x0
| 2D support for VBE1, VBE2 and VBE3 (most cards) - various resolutions and 24bit colour - no 3D support
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Comments-->
|-
|}
[[#top|...to the top]]
====[[w:en:Intel GMA|Intel GMA]]====
DVI output is not supported at the moment.
If having problems:
* Ensure the latest version is being used.
* Set GMA_MEM to 128 or 256 to test
* Try the FORCEGMA ToolType for 2D, and try the FORCEGALLIUM ToolType for 3D acceleration after 2D is verified to work. ToolTypes should be applied to the Devs/Monitors/IntelGMA monitor icon.
If still having problems:
* At GRUB boot screen edit boot line and add option: debug=memory
* Boot.
* Use shell command: tools/debug/bifteck > RAM:debug.txt
* And post [GMA MONITOR DETECTION] and other related debug lines
{| class="wikitable sortable" width="90%"
! width="5%" |Description
! width="5%" |Vendor ID
! width="5%" |Product ID
! width="3%" |Rev
! width="5%" |2D
! width="5%" |3D
! width="5%" |Analog Output
! width="5%" |Digital Output
! width="5%" |Laptop LCD
! width="30%" |Comments
|-
| 910GL 82910GL GMCH + ICH6
| 0x8086
| 0x2582 0x2592
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| 910GML 82910 GML GMCH + ICH6 Mobile
| 0x8086
| 0x2582 0x2592
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| may need to add forceGMA to grub boot line to work
|-
| 915G 82915G GMCH + ICH6-M
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
|
|-
| 915GL 82915GL GMCH
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
|
|-
| 915GV 82915GV GMCH
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Yes|}}
| <!--3D-->{{No|}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{N/A}}
| HP DC5100 small form factor
|-
| 915GM GMA900
| 0x8086
| 0x
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| tunnel gearbox }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes}}
| asus eee pc 900
|-
| 915GMS
| 0x8086
| 0x
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| tunnel }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes| }}
|
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| [http://www.notebookcheck.net/Intel-Graphics-Media-Accelerator-950.2177.0.html 945GU] - 133 MHz (Lake port for Intel A100 and A110)
| 0x8086
| 0x2772
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| Fujitsu LifeBook U1010,
|-
| 945GMS - 166 MHz / 250 MHz (1.05V)
| 0x8086
| 0x27a2
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes}}
| Dell D430
|-
| 945GSE - 166 MHz (for Atom)
| 0x8086
| 0x27ae
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Yes|[http://www.x.org/wiki/GalliumStatus]}}
| {{Yes}}
| {{No|dvi port}}
| {{Yes| }}
| for atom motherboards and most 2008/2009 netbooks
* 3D Works - AOA110 AOA150, Dell Mini 9, Samsung NC10, Toshiba NB100,
|-
| 945G 82945G GMCH + ICH7
| 0x8086
| 0x27a6
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| untested 2D and 3D
|-
| 945GC 82945GC MCH
| 0x8086
| 0x27a6
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| untested 2D and 3D
|-
| 945PM
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| Dell D420, Compaq nc6400,
|-
| 945GMS - 250 MHz Calistoga
| 0x8086
| 0x
| 0x0
| <!--2D--> {{Yes}}
| <!--3D--> {{Yes|most models}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes}}
|
* 3D Works Dell Latitude 2100, HP Compaq nc6320, Lenovo 3000, Lenovo T60, Samsung Q35, Dell D620, Dell D820,
* 3D untested Toshiba Satellite L100-120, Toshiba Portege M400,
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
|
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GMA 3100 G31
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works 2D but no 3D
|-
| GMA 3100 G33
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works 2D but no 3D
|-
| [http://en.wikipedia.org/wiki/Intel_GMA GMA 3150] netbooks and nettops
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works 2D but no 3D. no vga, dvi or hdmi output for nettops
|-
| <!--Description--> G965
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments-->
|-
| <!--Description--> Q965
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x2992
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{No}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments--> Only tested with VGA output.
|-
| 965GM X3100 (500 MHz)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| some support 2D but no hardware 3D - could not get it to work with VGA or dvi output
* untested Apple MacBook Air, Lenovo Thinkpad X300, Dell Inspiron 1525, Toshiba M9,
|-
| 960GM X3100 (400 MHz)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
|
|-
| 965M X3100 (400 MHz)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| Dell D830,
|-
| 965PM ??
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| Toshiba A9 works with limited 2D acceleration but no hardware 3D
|-
| GL965
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works with limited 2D acceleration but no hardware 3D
|-
| GM965
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works with limited 2D acceleration but no hardware 3D
|-
| GMA X3500 G35
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->X4500M G41 G43 G45 (400Mhz) Mobile 4 Series
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x2a42 0x2a43
| <!--Revision-->0x07
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue--> {{No|}}
| <!--Digital--> {{No|}}
| <!--Laptop LCD--> {{Yes| VESA}}
| <!--Comments-->works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->GMA 4500M HD (533 MHz)
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments-->works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->GMA 4700M HD (640MHZ)
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x2a42
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments-->works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
====[http://nouveau.freedesktop.org/wiki/FeatureMatrix nouveau].hidd (nvidia pci, agp, pci-e desktop)====
PCIe based nvidia graphics (gfx 8xxx) are the base level for 64bit AROS but earlier models still has some support on 32bit AROS
*Desktop, more likely hit rather than miss on early nvidia on Aros 32bit but on Aros 64bit ...
*Laptop, limited support for '''very''' early non-optimus (i.e. just Nvidia gfx only so no Intel and nvidia gfx combinations on 32bit but on 64bit ...)
Please note that the nouveau project is reverse engineering a nvidia graphics driver but takes time because of [https://nouveau.freedesktop.org/ nVidia's closed firmwares], etc
* 2026-06 - DEVS Nouveau.hidd Gallium.hidd Softpipe - LIBS Gallium GLU 20.0 Mesa OpenCL
* 2011-10 - DEVS 6.11 Nouveau.hidd 7.4 Gallium.hidd 9.4 Softpipe - LIBS 2.3 Gallium 1.3 GLU 19.0 Mesa OpenCL 1.x
* 2011-04 - DEVS 5.31 Nouveau.hidd 7.3 Gallium.hidd 9.3 Softpipe - LIBS 2.2 Gallium 1.1 GLU 18.0 Mesa OpenCL n/a
Nouveau support for AROS is limited to OpenGL 2.1 compliance on 32bit even for modern GL4 capable GPUs but on 64bit ...
On Aros 32bit OpenCL supports the NV50 (8000 9000) cards, less support in NVC0 fermi cards (300 upwards)
On Aros 64bit
ADoom3 graphic details ultra, benchmark while playing press the "`" key and type "Timedemo demo1" in the console
{| class="wikitable sortable" width="90%"
! width="5%" | Graphic Card
! width="5%" | Aros 32bit 1024 x 768
! width="5%" | Aros 32bit 800 x 600
! width="5%" | Aros 32bit 640 x 480
! width="5%" | Aros 64bit 1024 x 768
! width="5%" | Aros 64bit 800 x 600
! width="5%" | Aros 64bit 640 x 480
|-
| NV50 Asus EN8400GS SILENT/P/512M PCIe (G98) || || || || || ||
|-
| Gigabyte 8500GT 256M || 42,6 || 57,2 || 68,6 || || ||
|-
| NV96 (G96) Geforce 9500GT 512M || 43 || 53 || 57 || || ||
|-
| NV96 (G96) 9600GT || || || || || ||
|-
| NVA3 (GT215) GT240 || || || || || ||
|-
| NVA5 (GT216) Palit GT220 Sonic 512M || 39,7 || 55,8 || 63,7 || || ||
|-
| NVA8 (GT218) gt210 || || || || || ||
|-
| NVA8 (GT218) ION2 || || || || || ||
|-
| NVC3 (GF106) GT440 GTS 450 || || || || || ||
|-
| NVCF (GF116) NVC0 Fermi GTX 550Ti or GTS 450 v2 || || || || || ||
|-
| NVC8 (GF110) 580GTX || N/A || N/A || N/A || || ||
|-
| NVE0 Kepler GT630 || N/A || N/A || N/A || || ||
|-
| NVE6 (GK106) Kepler GTX660 || N/A || N/A || N/A || || ||
|-
| NVE7 (GK107) GTX 650 || N/A || N/A || N/A || || ||
|-
| NV110 Maxwell GTX 750 || N/A || N/A || N/A || || ||
|-
| NV126 (GM206) GTX950 upwards no reclocking || N/A || N/A || N/A || poor || poor || poor
|-
| NV160 family (Turing) GTX 1650 and RTX 2000 upwards with GSP firmware || N/A || N/A || N/A || unknown || unknown || unknown
|-
| HostGL Ryzen 5 4600H - Nvidia 1650 - Linux mint 21.1 || N/A || N/A || N/A || 150fps || 154fps || 155fps
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| width="5%" | Graphic Card
| width="5%" | Aros 32bit 1024 x 768
| width="5%" | Aros 32bit 800 x 600
| width="5%" | Aros 32bit 640 x 480
| width="5%" | Aros 64bit 1024 x 768
| width="5%" | Aros 64bit 800 x 600
| width="5%" | Aros 64bit 640 x 480
|}
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|-
| <!--Description-->tnt1 (nv04) tnt2 (nv05) m64 value (1998)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|very slow}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| NV04 Riva TNT TNT2 Fahrenheit freezes on via motherboard chipset so rename agp.hidd in SYS:Devs/Drivers or Monitors
|-
| <!--Description-->tnt vanta lt (nv06) 1998 /9
| 0x10de
| 0x002c
| 0x15
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|slow}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| <!--Description-->Geforce 256 (nv10) (2000)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|slow }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| untested Geforce256
|-
| <!--Description-->Geforce 2 Geforce 3 Geforce 4 (nv20) 2000 / 2
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|slow }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| works for some PCI and AGP Geforce2 Geforce3 Geforce4
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| Geforce FX5200 nv34 (2003)
| 0x10DE
| 0x0322 0x
| 0xA1
| <!--2D-->{{Maybe| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->{{Maybe|VGA15 }}
| <!--Digital-->{{Maybe|DVI}}
| <!--Laptop LCD-->{{N/A}}
| NV30 GeForce 5 FX Rankine Hardware OpenGL 1.5 - slower than GF MX 4000 for 2D - max 1024 x768
* not working [https://eab.abime.net/showthread.php?t=92328&page=8 mobos with VIA chipsets 2018]
* working (MSI 0x9174) the previous nouveau 5.x driver
* Others work with 6.x series XFX PV-T34K-NA, ASUS V9520-X/TD
|-
| Geforce FX5500 (nv34) (2003)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{Maybe| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| works
|-
| Geforce 5100 (NV34)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce FX 5200LE (NV34)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5200 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce FX5600 (nv31) (2004)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Maybe| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| works
|-
| GeForce FX 5600 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5600SE
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5600XT
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce FX5700 (nv36) (2004)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes|some}}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{Maybe| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5700VE
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5700 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5700LE
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5800 (NV30)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5800 Ultra (NV30)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900 (NV35)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900XT
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900ZT
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5950 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce 5xxx
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
|
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| Geforce 6200 (nv44) (2005)
| 0x
| 0x00F3 0x014F
| 0x0
| <!--2D-->{{Yes|5.28 Pixel Text}}
| <!--3D-->{{Maybe| use 5.28}}
| <!--Analogue-->{{Yes|VGA15 and s-video - plain 4pin cable lead will work with 7pin}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| NV40 GeForce 6 GeForce 7 Curie AGP Hardware OpenGL 2.1 needing previous 5.x version as regression arose 2011-10
|-
| Geforce 6200 (nv44a) (2006)
| 0x
| 0x0221
| 0x0
| <!--2D-->{{Yes|5.28 Pixel Text }}
| <!--3D-->{{Yes|}}
| <!--Analogue-->{{Yes|VGA15}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| Hardware OpenGL 2.1, PCI version tested OK in 2014-01-02 - Icaros 1.5.2
* not working
*working
|-
| GeForce 6200 with Turbo Cache (NV43)
| 0x
| 0x0161
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce 6200SE with Turbo Cache (NV44)
| 0x
| 0x0162
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce 6200 LE
| 0x10de
| 0x0163
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| PCI-E
|-
| GeForce 6600 LE
| 0x
| 0x00F4 0x0142
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6600
| 0x
| 0x00F2 0x0141
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| 2006 PureVideo HD 1 or VP1 re-used the MPEG-1/MPEG-2 decoding pipeline from FX
|-
| Geforce 6600gt (nv4x) (2005)
| 0x
| 0x00F1 0x0140
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Yes| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| OpenGL tests -
|-
| Geforce 6800 (nv40) (2005)
| 0x
| 0x0041 0x00C1 0x00F0 0x0211
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Yes| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 XE (NV4x)
| 0x
| 0x0043
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 LE
| 0x
| 0x0042 0x00C2 0x0212
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 GT (quadro fx 1400)
| 0x
| 0x0045 0x0046 0x0215
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 6800 GS
| 0x
| 0x0047 0x00C0 0x00F6
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 GTS NV40
| 0x
| 0x0040 0x0F9
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 6800XT
| 0x
| 0x0044 0x0048 0x00C3 0x0218
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6600 VE
| 0x
| 0x0143
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6500 NV44
| 0x
| 0x0160
| 0x0
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6250
| 0x
| 0x0169
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 6xxx
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GeForce 7800 GTX
| 0x
| 0x0090 0x0091
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| tunnel gearbox cube cube2 25}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> 256MB DDR3 - 1 6pin psu connector -
* not working asus en7800gtx/2dhtv/256m/osp/a -
* Works XFX PV-T70F-UDD7 Works in steve jones' scrap pc aros build 2010 2 DVI-I ports
* Untested
|-
| GeForce 7800 GT
| 0x
| 0x0092
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7600gt (G8 ) (nv4 ) (2006)
| 0x
| 0x02E0 0x0391
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL 2.1
* not working
* working
|-
| GeForce 7800 SLI
| 0x
| 0x0095
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GTX
| 0x
| 0x0290
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GT GTO
| 0x
| 0x0291
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GS
| 0x10de
| 0x0292
| 0x0a1
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working
* Works with a few glitches with XFX Pine 0x2218
|-
| GeForce 7950 GX2
| 0x10de
| 0x0293 0x0294
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| GeForce 7950 GT
| 0x
| 0x0295 0x02E4
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GS
| 0x
| 0x02E3
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7600 GS
| 0x
| 0x02E1 0x0392
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7650 GS
| 0x
| 0x0390
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7600 LE
| 0x
| 0x0394
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7800GS (G8 ) (nv4 ) (2006)
| 0x
| 0x0093 0x00F5
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working
* works if AGP motherboard chipset is supported - Hardware OpenGL 2.1
|-
| GeForce 7100 GS
| 0x
| 0x016A
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7350 LE
| 0x
| 0x01D0
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7300le (G8 ) (nv4 ) (2006)
| 0x
| 0x01D1
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7300SE 7200GSGF-7200GS-N-B1 variant (G72)
| 0x10de
| 0x01D3
| 0x0a1
| <!--2D-->
| <!--3D-->
| <!--Analogue-->{{Unk|1x DVI, 1x VGA, 1x S-Video}}
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2007 40W pci-e 1.0 VP1 no unified shaders -
* not working Asus on via chipset (2015),
* works Asus on intel chipset (2015),
|-
| Geforce 7300gt (G8 ) (nv4 ) (2006)
| 0x
| 0x0395 0x0393
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working
* works
|-
| GeForce 7300 GS
| 0x
| 0x01DF
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7500 LE
| 0x
| 0x01DD
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7xxx
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GeForce 8800 Ultra (NV50 family)
| 0x
| 0x0194
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NV50 GeForce 8 to GeForce 200s opengl 3.x - max res - 80nm technology - PureVideo HD 2 or VP2 Nvidia VDPAU Feature Set A (absent from ultra and some 8800gt?) added a dedicated bitstream processor (BSP) and enhanced video processor for H.264, VC-1 acceleration
|-
| Geforce 8800gts (nv50) (G8x) (2007)
| 0x
| 0x0400 0x0600 0x0193
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2007 200w openGL3 openCL - 2x6pin psu
* not working 0x0193 models (2015) on via chipsets,
* works
|-
| Geforce 8800gtx (nv5 ) (G8x) (2007)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2008 200W 1x 6pin connector,
* not working
* working
* untested XFX PV-T88P-YDF4, Alpha Dog Edition runs extremely hot - Gigabyte GV-NX88T512H,
|-
| GeForce 8800 GT
| 0x
| 0x0602 0x0611 0x0193
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->DVI up to 2500 x 1600
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - 6pin psu power connector required
* not working
* untested Asus EN8800GT/HTDP/256M EN8800GT/HTDP/512M EN8800GT/G/HTDP/512M
* works
|-
| GeForce 8800 GT (G92)
| 0x10de
| 0x0611
| 0x0a2
| <!--2D-->{{Yes|6.11 Pixel Text}}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{N/A}}
| <!--Digital-->{{Yes}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3 pci-e 2.0 8800GT 512MB on Icaros 2.0.3 [[File:8800GT aros heads.png|thumb|8800GT]] [[File:8800GT aros tails.png|thumb|8800GT detail]]
|-
| Geforce 8600gt (nv5 ) (G8x) (2007)
| 0x
| 0x0401 0x0402
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res
* not working
* works
|-
| GeForce 8500 GT
| 0x
| 0x0421
| 0x0
| <!--2D-->{{Yes| some color }}
| <!--3D-->{{yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL tests - max opengl 3.x but 2.1 offered - max res
* not working
* works Gigabyte 8500 GT,
|-
| GeForce 8800 GS
| 0x
| 0x0606 0x060D
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res
|-
| GeForce 8600GS
| 0x
| 0x0403
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 3.x VP3 offers complete hardware-decoding for all 3 video codecs of the Blu-ray Disc format: MPEG-2, VC-1, and H.264 - Nvidia VDPAU Feature Set B
|-
| GeForce 8300 GS
| 0x
| 0x0423
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res
|-
| Geforce 8400gs G98GS (end 2007) GT218 (2009)
* Rev2 with 8/16 cores and 128-512MB of DDR2 or GDDR3 memory.
* Rev3 with 8 cores and 512MB-1GB of DDR3 memory (based on Tesla 2.0)
| 0x
| 0x0424 0x0422
| 0x0
| <!--2D-->{{Yes|Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 490 gearbox 505 Cube 135 Cube2 55 quake3 }}
| <!--Analogue-->{{Yes|works digital part of DVI but nothing from any display port}}
| <!--Digital-->{{Yes|output on digital 24 pin array of DDWG's DVI and hdmi}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 50W openGL 3.1 openCL - case single slot - one single-link DVI digital output, supporting up to one 1920x1080 resolution display - analog resolution 640 x 480 to 1024 x 768 16 and 24 bit color - [http://www.phoronix.com/scan.php?page=article&item=nouveau_comp_2011&num=19 runs a little hotter than expected] - G98 VP3 pci-e 2.0 512MB DDR2 -
* not working
* works Asus EN8400GS SILENT/P/512M PCIe (G98),
|-
| Geforce 8400gs (nv50) (G86) (mid-2007)
* Rev1 with 16 cores / 256MB of DDR2 memory.
| 0x
| 0x0404
| 0x0
| <!--2D-->{{Yes|Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 490 gearbox 505 Cube 135 Cube2 55 quake3 }}
| <!--Analogue-->{{Yes|works but not tested thru 4 pins of analog signal of DVI plug}}
| <!--Digital-->{{Yes|output on digital 24 pin array of DDWG's DVI and hdmi}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2008 50W openGL 3.1 openCL - case single slot - one single-link DVI digital output up to 1920x1080 resolution display - analog resolution 640 x 480 to 1024 x 768 16 and 24 bit color - [http://www.phoronix.com/scan.php?page=article&item=nouveau_comp_2011&num=19 runs a little hotter than expected] - G86 VP2 128MB -
* not working XFX PV-T86S-YAJG NVIDIA GeForce 8400 GS 512MB DDR2, Sparkle 8400GS 512MB SX84GS512D2L-DPP,
* works Asus EN8400GS SILENT/HTP/256M SILENT/HTP/512M/A,
|-
| GeForce 8400 SE
| 0x
| 0x0420
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 2.x openCL
|-
| NVidia Quadro NVS290 DMS-59
| 0x
| 0x0403
| 0x0
| <!--2D-->{{no| }}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk|DMS-59 socket}}
| <!--Digital-->{{unk|DMS-59 }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2008 21W - G86S (G86-827-A2) - 16 shading units, 8 texture mapping units, and 4 ROPs. NVIDIA has paired 256 MB DDR2 - PCIe 1.0 x16 Low Profile -
|-
| Geforce Quadro FX 4600 (SDI), 5600
| 0x
| 0x
| 0x0
| <!--2D-->{{Partial|VESA 2d}}
| <!--3D-->{{no| }}
| <!--Analogue-->{{partial| }}
| <!--Digital-->{{partial| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GeForce 9800 GX2 (NV50 family)
| 0x
| 0x0604
| 0x0
| <!--2D-->{{Partial|VESA }}
| <!--3D-->{{no| }}
| <!--Analogue-->{{Partial| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 150w - 65nm technology
|-
| GeForce 9800 GTX
| 0x10de
| 0x0612
| 0x0a2
| <!--2D-->{{Yes| }}
| <!--3D-->{{Maybe|6.11 }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 2x6pin psu -
* not working xfx on via chipset (2015),
* works xfx on chipset intel ,
|-
| GeForce 9800 GTX+
| 0x10de
| 0x0613
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res 2560 x 1920 - case dual slot - 26amp 12v rail on computer psu if 2x6pin connectors needed - 55nm version of the G92 chip - will not work with PCI-e 1.0a slots -
* not working
* works on a few models
|-
| Geforce 9800gt (nv50) (G92a) (2008)
| 0x10de
| 0x0614
| 0x0xa2
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel 495 gearbox 513 Cube 156 Cube2 120 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{partial| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL 3.1 openCL 1.x - case dual slot - 600w 26amp on both 12v rails for 2x6pin psu on gfx card - no fan control - some come with 1x6pin - renamed version of the venerable GeForce 8800 GT - randomly works
* not working Gainward 512M untested
* working Gainward CardExpert (0x0401) Green Edition NE39800TFHD02-PM8D92 1024MB (no 6pin)
|-
| Geforce gf9600 9600gt (nv5 ) (G9x) (2008)
| 0x10de
| 0x0622
| 0x0a1
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel 493 gearbox 675 Cube Cube2 100 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL 3.2 openCL but no fan control - case dual slot - 1 6pin pcie psu connector - 500 Watt or greater power supply with a minimum of 26 Amp on the +12 volt rail - Max Analog: 2048x1536 and Max Digital: 2560x1600 (Dual Link DVI Only) - PCI Express® 2.0 / 1.1 Support - g96 gpu randomly works -
* not working bfg tech ocx,
* works gigabyte gv-n96tsl-512i -
|-
| Geforce gf9500 9500gt (nv5 ) (G9x) (2008)
| 0x10de
| 0x0640
| 0x0a1
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel 480 gearbox 500 Cube Cube2 64 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.2 - case single slot - 350 Watt/400 Watt or greater power supply with a minimum of 18 Amp/22 Amp on the +12 volt rail - Max Analog: 2048x1536 and Max Digital: 2560x1600 (Dual Link DVI Only) - PCI Express® 2.0 / 1.1 Support -
* not working zotac zone fanless, Gainward USA NE29500THHD01-PM8796, PNY G9500GN2E50X+0TE,
* works xfx xne-9500t-td01-pm8596 1024mb ddr2,
|-
| GeForce 9600 GS
| 0x
| 0x0623
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res - will not work with PCI-e 1.0a slots -
* not working
* works
|-
| GeForce 9600 GSO
| 0x
| 0x0610
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res - G92 chopped down - 9600GSO is re-badged 8800GS both very power hungry cards -
|-
| GeForce 9300 GS
| 0x
| 0x06E1
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 opengl 3.x - max res
|-
| Geforce 9400 GT (nv5 ) (G86S) (2008)
| 0x
| 0x
| 0x0
| <!--2D-->{{partial|}}
| <!--3D-->{{unk|}}
| <!--Analogue-->{{unk|1x DVI, 1x VGA, 1x S-Video}}
| <!--Digital-->{{unk|1x DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 50W opengl 3.x - max res
|-
| Geforce 9xxx (nv5 ) (G9x) (2008)
| 0x
| 0x
| 0x0
| <!--2D-->{{unk|}}
| <!--3D-->{{unk|}}
| <!--Analogue-->{{unk|}}
| <!--Digital-->{{unk|}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 opengl 3.x - max res
|-
| <!--Description-->Quadro FX 580 G96 chipset
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2009
|-
| <!--Description-->
NV84 (G84) GeForce 8600 (GT, GTS, M GT, M GS), 8700M GT,
NV92 (G92) GeForce 8800 (GT, GS, GTS 512, M GTS, M GTX)
GeForce 9600 GSO, 9800 (GT, GTX, GTX+, GX2, M GT, M GTX)
NV96 (G96) GeForce 9400 GT, 9500 (GT, M G), 9600 (M GS, M GT),
NV86 (G86) GeForce 8300 GS, 8400 (GS, M G, M GS, M GT), 8500 GT
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NVA0 (GT200) Tesla GeForce GTX (260, 275, 280, 285, 295)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->GeForce GTX 280 (NV50 family)
| <!--Vendor ID-->
| <!--Product ID-->0x05E1
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res PureVideo HD 4 (Nvidia Feature Set C or "VDPAU Feature Set C), VP4 added hardware to offload MPEG-4 Advanced Simple Profile (original DivX and Xvid)
|-
| <!--Description-->GeForce GTX 260
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x05E2
| <!--Revision-->
| <!--2D-->{{partial|Vesa}}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> 2 6pin - psu pci express 2.1 -
|-
| Geforce GTS250 250GTS (g92b) (2009)
| 0x10de
| 0x0615
| 0x0a2
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 486 gearbox 508-642 Cube Cube2 80 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> 2x6pin psu VP2 - pci-e 2.x - case dual slots - 738m 1gb ddr3 -
* not working Zotac branded version GDDR3 -
* works PNY gs-250x-zdfl and Gigabyte ??, BFG Tech RGTS2501024OCE, palit ne3ts250fhd52-pm8a92 with 2x6pin on top and hdmi output port,
|-
| <!--Description-->GeForce GT 240 (GT215 family)
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0ca3
| <!--Revision-->0xa2
| <!--2D-->{{Maybe|use VESA}}
| <!--3D-->{{No|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->late 2009 openGl 3.2 - case dual slots - no 6pin psu required with VP4 - All are pcie 2.1 cards and may not work in 1.0a slots -
* not working
* DDR3 with 512MB or 1GB -
* DDR5 -Asus ENGT240 - XFX Pine GT240XYHFC 0x3001 - Gigabyte GV-N240D5-512I rev 1.0 - Zotac AMP! with HDMI 1.3a with DisplayPort 1.1, Dual Link DVI -
* works
|-
| <!--Description-->GT220 (GT216) G220
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0a20
| <!--Revision-->0xa2
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Yes}}
| <!--Digital-->{{Yes|DVI }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> Icaros 2.0.3 GeForce GT220 1GB[[File:GT220 aros heads.png|thumb|GT220]][[File:GT220 aros tails.png|thumb|GT220]]
* untested NVIDIA Quadro® 400 512MB DDR3 GT216 DP DVI, AFox AF220 1Gb DDR3,
|-
| Geforce GT220 220GT G94 Tesla (g92b)
| 0x10de
| 0x0a20
| 0xa2
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 490 gearbox 505 cube 150 cube2 50 Quake3 }}
| <!--Analogue-->{{Unk|1x DVI, 1x VGA}}
| <!--Digital-->{{Yes|DVI but not 1x HDMI }}
| <!--Laptop LCD-->{{N/A}}
| 58W pci express 2.0 cards DDR3 - case single slot -
* not working ASUS ENGT220/DI/1GD2(LP)/V2 -
* works - gainward card expert 0x0401 GDDr3 512MB -
|-
| <!--Description-->GT210 GT 210 210GT G210 based on Tesla 2.0 GT218S GT218-300-A2 variant, GT218-300-B1
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0a65
| <!--Revision-->0xa2
| <!--2D-->{{Yes|6.11 Pixel Text}}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{Unk|1x DVI, 1x VGA}}
| <!--Digital-->{{Maybe|DVI out works but not hdmi or 1x DisplayPort}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 31W OpenGL 3.3 pci-e 2.0 cards - single slot -
* working GT218 based Asus EN210 based silent low profile large passively cooled -
* untested MSI GeForce 210 1GB DDR3 PCIe N210-MD1GD3H/LP,
* not working
|-
| <!--Description-->Nvidia ION2 (GT218) Tesla
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2012
|-
| <!--Description-->Quadro NVS 295 (256 MB GDDR3), NVS 450 (256M/512 MB DDR3)
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x
| <!--Revision-->
| <!--2D-->{{yes| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->
| <!--Digital-->{{partial|2 or 4 dp ports}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 25w low performance - G98s with 8 shading units, 4 texture mapping units, and 4 ROPs on PCI-Express 1.0 x16 -
*not working some NVIDIA Quadro NVS 295 2 dp ports (DELL, HP),
*working
|-
| <!--Description-->GT310 Tesla 310, 315, GT 320, GT 330 GT 340
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{Maybe|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2010 50w OpenGL 3.3 openCL all similar in performance to GT2xx except gt31x (poor)
|-
| <!--Description-->Quadro NVS310 NVIDIA NVS 310
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital--> 2 dp
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 25w GF119S (GF119-825-A1) 48 shading units, 8 texture mapping units, and 4 ROPs on PCI-Express 2.0 x16 - 512 MB DDR3 - PureVideo VP5 VDPAU Feature Set D -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description--> GTX 470, GTX 480 GF10 GF10* core (NVC0 family)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{Maybe| tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2010 215w 2x6 plugs - NVC0 family (Fermi) GF100 (GF100-275-A3) Fermi 448 shading units, 56 texture mapping units, and 40 ROPs with 1,280 MB GDDR5 - OpenGL4.5 OpenCL1.1 Tessellation - case dual slots -
|-
| Geforce GTX460 460GTX (G104) 256bit, 1GB v2 192bit and GTX 465
| 0x10de
| 0x0e22
| 0xa1
| <!--2D-->{{Maybe|VESA }}
| <!--3D-->{{Maybe| tunnel gearbox cube 055-111 cube2 50}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVC0 family (Fermi) OpenGL 4.x but - 2x6pin psu - case dual slots -
* not working evga 768MB GDDR5 192bit 01G-P3-1373-ER or 01G-P3-1372-TR
* works 1GB GDDR5 256bit 01G-P3-1371-ER
|-
| <!--Description-->Geforce GTX 460SE 192bit
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0e23
| <!--Revision-->0x91 or 0xa1
| <!--2D-->{{Yes| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->{{Yes| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> nouveau 6.11 - 2 6pin psu needed - case dual slots -
* not working
* works EVGA 01g-p3-1366-b6 et 1024MB p1041 -
|-
| Geforce GT450 GTS450 450GTS GF106
| 0x10de
| 0x0dc4
| 0x0a1
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel gearbox cube cube2 50 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes|DVI }}
| <!--Laptop LCD-->{{N/A}}
| 2010 Hardware OpenGL 4.2 but nouveau at 3.3 - most need 1x 6pin psu - case dual slots -
* not working
* DDR3 1 or 2GB - Palit NEAS450NHD41F,
* GDDR5 512Mb or 1GB - MSI MPN N450GTSM2D1GD5OC, Asus MPN ENGTS450DI1GD5,
* works Gainward Card Expert NE5S4500FHd51,
|-
| <!--Description-->GT 440 GF108 chipset or better OEM GF106
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 6.11 Pixel Text}}
| <!--3D-->{{Maybe| tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGl 4.1 opencl 1.x - no 6 pin psu - 96 cuda cores 128bit - case dual slots -
* not working
* OEM
* GDDR5 512MB to 1GB ASUSTeK ENGT440/DI/1GD5
* GDDR3 Asus 1gb to 2gb,
* works
|-
| <!--Description-->GT430 430GT (GF108)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|6.11 Pixel Text}}
| <!--3D-->{{Maybe|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->ddr3 memory 64bit or 128bit - buggy await new revision of driver
* not working
* works
|-
| <!--Description-->nVidia Quadro FX1800 768MB GDDR3 Full Height Graphics Card Workstation
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 6.11 Pixel Text}}
| <!--3D-->{{no|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->{{Maybe|DVI-I 2xDP}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->59W 768 MB GDDR3 memory using a 192-bit memory interface - OpenGL 3.3 -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GTX 590 Fermi
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->OpenGL4.4 OpenCL 1.1 - GDDR5 - 6pin and 8pin psu connectors - 512 cuda - case dual slots -
* not working
* works
|-
| <!--Description-->GTX 580,
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->PureVideo HD 5" or "VP5" (Nvidia Feature Set D or VDPAU Feature Set D) 4k UHD 3840 × 2160 H.264 decode -
|-
| <!--Description-->GTX 570,
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{Maybe|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working Zotac GTX 570, Gainward GTX560TI/570 Phantom,
* works gigabyte, evga
|-
| <!--Description-->Geforce 5xx 560gtx Fermi GTX 560,
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->opengl 4.x - 2 6pin psu - 384 cuda cores - case dual slots - will not work with PCI-e 1.0a slots -
* not working Asus ENGTX560 DC/2DI/1GD5,
* Ti LE 448 cuda GDDR5 320bit
* Ti 256bit
* works
|-
| <!--Description-->GTX 560 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working evga GTX 560Ti 01GP31560KR - Gainward GTX560TI/570 Phantom,
* works
|-
| <!--Description-->GTX 550 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x1201
| <!--Revision-->
| <!--2D-->{{Maybe|VESA Doom Doom2 Duke }}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->can hang on boot up on I2C Init or suffer random lockups on OpenGL apps - most need 1 6pin min 400W 24A on the +12V1 / +12V2 dual 12V rails of the computers' power supply unit - 192 cuda cores - case dual slots used - will not work with PCI-e 1.0a slots -
* not working eVGA GeForce GTX 550 Ti (1024 MB) (01GP31556KR) -
* untested asus Extreme, eVGA GeForce GTX 550 Ti (1024 MB) (01GP31557KR) - -
* works
|-
| <!--Description-->GT 545 and OEM GF116
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 4.2 opencl 1.x - GDDR5 with OEM only -
|-
| <!--Description-->GT530 OEM
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 6.11 Pixel Text}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->96 cuda cores - 1GB or 2GB DDR3 128bit
|-
| <!--Description-->GT520 520GT
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->untested 48 cuda cores - DDR3 64bit
|-
| <!--Description-->510, GT 530
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D 6.11 Pixel Text}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> ddr 3 - 50w max -
|-
| <!--Description-->GT610 Fermi GF119
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVS 315 300 GF119S
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{No|VESA}} needs special dms-59 cable
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 fermi 315 PNY VCNVS315-T 1Gb DDR3 but needs special dms-59 cable -
|-
| <!--Description-->GT630 GF108 Fermi
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->not accelerated 2015 - like the GT730 below - 96 cuda cores whilst kepler version has 384 - 128bit to keplers' 64bit bandwidth - kepler has 2GB DDR3
* not working Gigabyte
* DDR3
* GDDR5
* works
|-
| <!--Description-->Geforce GT 730 (two versions)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe| use VESA 6.11 Pixel Text}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> fermi version has 96 cuda cores 128bit GF108
* not working Asus
* works
|-
| <!--Description-->nVIDIA Quadro 4000
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}} 2 dp ports
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->142W 2Gb GDDR5 - PCI Express 2.0 x16 ; full Height card with 1x 6-Pin PCIe power need - CUDA Cores 256 - OpenGL 4.5
|-
| <!--Description-->nVIDIA Quadro 5000
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2011 200W 2.5Gb GDDR5 320 bit - PCI Express 2.0 x16 full Height card with 2x 6-Pin PCIe power need -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce GTX Titan GeForce GTX Titan Black GeForce GTX Titan Z
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVE0 family (Kepler) GeForce 600 GeForce 700 GeForce GTX Titan Kepler
|-
| <!--Description-->GeForce GTX 780 GeForce GTX 780 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->PureVideo HD 6" or "VP6" (Nvidia Feature Set E or VDPAU Feature Set E) significantly improved performance when decoding H.264 and MPEG-2
|-
| <!--Description-->GeForce GTX 770
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->opengl 4.4 opencl 1.1
|-
| <!--Description-->GeForce GTX 760 GeForce GTX 760 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce GT 740
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce GT 730 Kepler (two versions) f
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> kepler 384 cores 64bit GK208
|-
| <!--Description-->680gtx GK104 core gtx680 680m
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVE0 family (Kepler)
|-
| <!--Description-->GTX 690 Kepler NVE0
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->pci-e 3.0, OpenGL 4.4 OpenCL 1.1
|-
| <!--Description-->GTX 670
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GTX 660 GTX 660 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GTX 650 GTX 650 Ti GTX 650 Ti Boost
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVE0 family (Kepler) most need 1 6pin psu
* not working asus ENGTX560 DC/2DI/1GD5
* works
|-
| <!--Description-->Geforce GT 640
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* 128bit DDR3
* 192bit DDR3 1.5 to 3GB 50W
* 128bit GDDR5 75W
|-
| <!--Description-->GT 620 GT 640
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->Quadro K2000 NVE7 (GK107) Kepler
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 - 50w single slot pcie 2.0 -
|-
| <!--Description-->NVIDIA® Quadro® K4200 GK104 Kepler
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2014 4Gb GDDR5 - 108W 1 6pin -
|-
| <!--Description-->NVIDIA® Quadro® K420 1GB DDR3 Kepler
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2014 41W -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce 750ti, GeForce 900
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->[https://nouveau.freedesktop.org/FeatureMatrix.html NV110] Maxwell -
|-
| <!--Description-->Nvidia GTX 750
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x1381
| <!--Revision-->0xa2
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2026 nvidia test
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->GM206 2nd gen maxwell PureVideo HD 7" or "VP7" (Nvidia Feature Set F or VDPAU Feature Set F) adds full hardware-decode of H.265 HEVC Version 1 (Main and Main 10 profiles and full fixed function VP9 (video codec) hardware decoding
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->Quadro K2200 (GM107) Maxwell
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 - 68w single slot pcie 2.0 -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV132 (GP102) NVIDIA Titan (X, Xp), GeForce GTX 1080 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV134 (GP104) GeForce GTX (1070, 1080)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV136 (GP106) GeForce GTX 1060
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->Quadro K620 Maxwell
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2014 50w slim low profile 2gb ddr3 -
|-
| <!--Description-->quadro p620 2gb gddr5 128bit and quadro p1000 4gb gt1030 30w
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 50w slim low profile -
|-
| <!--Description-->GeForce gtx 1060, GeForce 1070
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NV130 Pascal
|-
| <!--Description-->NV137 (GP107) GeForce GTX (1050, 1050 Ti)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV138 (GP108) GeForce GT 1030
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->NV130 family (Pascal)
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV162 (TU102) NVIDIA Titan RTX, GeForce RTX 2080 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV164 (TU104) GeForce RTX (2070 Super, 2080, 2080 Super)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2020 NV160 family (Turing) unified gsp-rm firmware - best starting point for Vulkan support
|-
| <!--Description-->NV166 (TU106) GeForce RTX (2060, 2060 Super, 2070)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV168 (TU116) GeForce GTX (1650 Super, 1660, 1660 Ti, 1660 Super)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV167 (TU117) GeForce GTX 1650
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->gtx 1650ti super
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2018 old style
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV172 (GA102) GeForce RTX (3080, 3090)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 av1 decoding ampere
|-
| <!--Description-->NV174 (GA104) GeForce RTX (3060 Ti, 3070, 3080 Mobile)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->NV170 family (Ampere)
|-
| <!--Description-->NV176 (GA106) GeForce RTX (3050, 3060)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV177 (GA107) GeForce RTX 3050
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV192 (AD102) GeForce RTX 4090
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV193 (AD103) GeForce RTX 4080
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->NV190 family (Ada Lovelace)
|-
| <!--Description-->NV194 (AD104) GeForce RTX (4070, 4070 Ti)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV196 (AD106) GeForce RTX 4060 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV197 (AD107) GeForce RTX 4060
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
|}
==== nouveau mobile integrated ====
If you purchased a notebook with an NVidia sticker on it, most of the time you have a optimus based one, ie Intel CPU+GPU melded with Nvidia GPU, Optimus was slated at one point to go into desktop PCs but the industry ended up rejecting that concept
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|-
| GeForce 6100 nForce 405
| 0x
| 0x03D1 0x0242
| 0x0
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
|
|-
| <!--Description-->GeForce 6100 nForce 400
| <!--Vendor ID-->
| <!--Product ID-->0x03D2
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce 6100 nForce 420
| <!--Vendor ID-->
| <!--Product ID-->0x03D5
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce 6150 LE
| <!--Vendor ID-->
| <!--Product ID-->0x0241
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6150SE nForce 430
| 0x
| 0x03D0
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| working
|-
| <!--Description-->GeForce 6150
| <!--Vendor ID-->
| <!--Product ID-->0x0240
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7150M / nForce 630M
| <!--Vendor ID-->
| <!--Product ID-->0x0531
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7000M / nForce 610M
| <!--Vendor ID-->
| <!--Product ID-->0x0533
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7050 PV / NVIDIA nForce 630a
| <!--Vendor ID-->
| <!--Product ID-->0x053A 0x053B
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Geforce IGP 7025 nForce 630a
| 0x
| 0x053E
| 0x0
| <!--2D-->{{Yes|some}}
| <!--3D-->{{Yes|some}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No| }}
| some support on some chipsets
|-
| GeForce 7100 / nForce 630i (C73)
| 0x10de
| 0x07e1
| 0x0a2
| <!--2D-->{{Maybe}}
| <!--3D-->{{Maybe}}
| <!--Analogue-->{{Maybe}}
| <!--Digital-->{{Maybe}}
| <!--Laptop LCD-->{{N/A}}
| Icaros 2.0.3 and Gigabyte 73-pvm-s2h rev. 1.0 but will not boot on [https://ae.amigalife.org/index.php?topic=806.msg8765#new Acer x270 with Icaros 2.3]
|-
| <!--Description-->GeForce 7150 / NVIDIA nForce 630i
| <!--Vendor ID-->
| <!--Product ID-->0x07E0
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7050 / NVIDIA nForce 610i
| <!--Vendor ID-->
| <!--Product ID-->0x07E3
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Geforce IGP 8100 (nForce 720a)
| 0x
| 0x084F
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
|
|-
| GeForce 8100P
| 0x
| 0x0847
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
|
|-
| <!--Description-->Geforce 8200 8300 nForce 730a
| <!--Vendor ID-->
| <!--Product ID-->0x084A 0x0848 (GeForce 8300) 0x0849 (GeForce 8200) 0x084B (GeForce 8200)
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->working on some 8300's with Icaros 1.5 but others untested
|-
| <!--Description-->nForce 780a SLI
| <!--Vendor ID-->
| <!--Product ID-->0x084C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->nForce 750a SLI
| <!--Vendor ID-->
| <!--Product ID-->0x084D
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Nvidia Geforce IGP 9300 (nForce MCP7a)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->works
|
|-
| <!--Description-->9400 (ION)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->If AROS detects GPU chipset, works well
|-
| <!--Description-->9700M ()
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Geforce ION 2
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->works well
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce Go 6150
| <!--Vendor ID-->
| <!--Product ID-->0x0244
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6100
| <!--Vendor ID-->
| <!--Product ID-->0x0247
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6200
| <!--Vendor ID-->
| <!--Product ID-->0x0164 0x0167
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6400
| <!--Vendor ID-->
| <!--Product ID-->0x0166 0x0168
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->Sony Laptop
|-
| <!--Description-->GeForce Go 6800
| <!--Vendor ID-->
| <!--Product ID-->0x00C8
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6800 Ultra
| <!--Vendor ID-->
| <!--Product ID-->0x00C9
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600
| <!--Vendor ID-->
| <!--Product ID-->0x0144
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600 TE/6200 TE
| <!--Vendor ID-->
| <!--Product ID-->0x0146
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600
| <!--Vendor ID-->
| <!--Product ID-->0x0148
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600 GT
| <!--Vendor ID-->
| <!--Product ID-->0x0149
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7200
| <!--Vendor ID-->
| <!--Product ID-->0x01D6
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7300
| <!--Vendor ID-->
| <!--Product ID-->0x01D7
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->untested
|-
| <!--Description-->GeForce Go 7400
| <!--Vendor ID-->
| <!--Product ID-->0x01D8
| <!--Revision-->
| <!--2D-->
| <!--3D-->works 2D and 3d issues though
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7800
| <!--Vendor ID-->
| <!--Product ID-->0x098
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7800 GTX
| <!--Vendor ID-->
| <!--Product ID-->0x0099
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7950 GTX
| <!--Vendor ID-->
| <!--Product ID-->0x0297
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7900 GS
| <!--Vendor ID-->
| <!--Product ID-->0x0298
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7900 GTX
| <!--Vendor ID-->
| <!--Product ID-->0x0299
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7600
| <!--Vendor ID-->
| <!--Product ID-->0x0398
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7600 GT
| <!--Vendor ID-->
| <!--Product ID-->0x0399
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 6610 XL
| <!--Vendor ID-->
| <!--Product ID-->0x0145
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 6700 XL
| <!--Vendor ID-->
| <!--Product ID-->0x0147
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce 8700M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0409
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8600M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0425
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8400M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0426
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8400M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0427
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8400M G
| <!--Vendor ID-->
| <!--Product ID-->0x0428
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8800M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x0609
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8800M GTX
| <!--Vendor ID-->
| <!--Product ID-->0x060C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9500M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0405
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8600M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0407
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9650M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0408
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9400M GT
| <!--Vendor ID-->
| <!--Product ID-->0x042C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9300M G
| <!--Vendor ID-->
| <!--Product ID-->0x042E
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9100M G
| <!--Vendor ID-->
| <!--Product ID-->0x0844
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9800M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x0628
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9700M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x062A
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9800M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x062C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9600M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0647
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9600M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0648
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9600M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0649
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9500M G
| <!--Vendor ID-->
| <!--Product ID-->0x064B
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9300M GS
| <!--Vendor ID-->
| <!--Product ID-->0x06E5
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9200M GS
| <!--Vendor ID-->
| <!--Product ID-->0x06E8
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9300M GS
| <!--Vendor ID-->
| <!--Product ID-->0x06E8
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->NV50 (G80) Quadro FX (4600 (SDI), 5600)
Quadro FX (2800M, 3600M, 3700, 3700M, 3800M, 4700 X2), VX 200
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV94 (G94) 9700M GTS, 9800M GTS, GeForce G 110M, GT 130(M), GT 140, Quadro FX (1800, 2700M)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV84 (G84) Tesla 8700M GT, GeForce 9500M GS, 9650M GS
Quadro FX (370, 570, 570M, 1600M, 1700), NVS 320M
NV86 (G86) GeForce 8300 GS, 8400 (GS, M G, M GS, M GT), 8500 GT, GeForce 9300M G
Quadro FX 360M, NVS (130M, 135M, 140M, 290)
GeForce GTS 150(M), GTS 160M, GTS 240, GTS 250, GTX (260M, 280M, 285M), GT (330, 340)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV96 (G96) 9650M GT, 9700M GT
GeForce G 102M, GT 120
Quadro FX (380, 580, 770M, 1700M)
NV98 (G98) GeForce 8400 GS, GeForce 9200M GS, 9300 (GE, GS, M GS)
GeForce G 100, G 105M
Quadro FX (370 LP, 370M), NVS (150M, 160M, 295, 420, 450)
Quadro CX, FX (3800, 4800, 5800)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVA3 (GT215) GeForce GT (240, 320, 335M), GTS (250M, 260M, 350M, 360M) Quadro FX 1800M
NVA5 (GT216) GeForce GT (220, 230M, 240M, 325M, 330M), 315
Quadro 400, FX 880M, NVS 5100M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVA8 (GT218) Tesla GeForce 8400 GS, GeForce 210M, 305M, 310M, Quadro FX 380M, NVS 2100M, 3100M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVAA (MCP77/MCP78) GeForce 8100, 8200, 8300 mGPU / nForce 700a series, 8200M G
NVAC (MCP79/MCP7A) ION, GeForce 9300, 9400 mGPU / nForce 700i series, 8200M G, 9100M, 9400M (G)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVAF (MCP89) GeForce 320M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NVC0 (GF100) Fermi GeForce GTX 480M, Quadro 5000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVC1 (GF108) GeForce GT 415M, 420M, 425M, 435M, 520M, 525M, 540M, 550M, 555M, 630M, 635M, 640M LE, Quadro 1000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVC3 (GF106) Fermi GeForce GT 445M, 555M, 630M, 635M), GTX 460M, Quadro 2000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVC4 (GF104) GeForce GTX 470M, 485M, Quadro 5000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVCE (GF114) GeForce GTX 570M, 580M, 670M, 675M,
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVD7 (GF117) Fermi Geforce GT 620M, 625M, (some) 630M, 710M, 720M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVD9 (GF119) Fermi GeForce 410M, GT 520M, 520MX, 610M, Quadro NVS 4200M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NVE4 (GK104) GeForce GTX 670M, 680M, 775M, 780M, 860M, Quadro K3000M, K3100M, K4000M, K4100M, K5000M, K5100M,
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVE7 (GK107) GeForce GT640M, 645M, 650M, 710M, 720M, 730M, 740M, 745M, 750M, 755M, GTX 660M, K500M, K1000M, K1100M, K2000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GTX 1650 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2019 turing architecture - last old skool support pre Vulkan
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rtx 2050 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 ampere architecture best starting point for vulkan support
|-
| <!--Description-->rtx 2060 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rtx 4060 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
|}
====radeon.hidd====
Michel Shultz ''2D'' graphics driver (standard on most distributions but only for very old GPUs) and bearsofts updated 2013 around Icaros 1.3.1
3D is not implemented by AROS yet but could cover these AMD chipsets
<pre>
2014 SI AMD HD 7xxx
2016 GCN3rd AMD R5E R7E
2019 GCN5th AMD Vega 8
2022 RDNA1 AMD RX5500 desktop only
2023 RDNA2 AMD 680M 780M
2024 RDNA3 AMD 880M 890M
2025 RDNA3.5 AMD 8060S strix halo and AI
2027 RDNA4 AMD
</pre>
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! 2D
! 3D
! Analogue Output
! Digital Output
! Laptop LCD
! Comments
|-
| 7000 (r100)
| 0x1002
| 0x5159
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->{{Maybe|vga15 pin connection but not s-video}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.3
|-
| 7500 (rv200 but still r100 based)
| 0x1002
| 0x5157
| 0x
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->{{Yes|vga15}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.3
|-
| 8000 8500 (r200)
| 0x1002
| 0x514c (8500LE)
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.4
|-
| 9000 9100 9250 (r200)
| 0x1002
| 0x5964 (9000) 0x514d (9100)
| 0x0001
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->{{Maybe|VGA15 but not s-video}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.4
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| 9600 9800 (r300)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1
|-
| x300 x600 (r300)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1
|-
| x700, x800 ([http://en.wikipedia.org/wiki/Radeon_R600 r420])
| 0x
| 0x554d (R430 x800xl)
| 0x0
| <!--2D-->{{Yes|new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1 - x800 XL PCIE (problem with mouse-pointer, some part of the pointer is not transparent)
|-
| x1300 x1550 x1600 x1800 x1900 x1950 ([http://en.wikipedia.org/wiki/Radeon_R520 r520])
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes|new driver}}
| <!--3D-->{{no}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| HD2400 HD2600 HD2900 ([http://en.wikipedia.org/wiki/Radeon_R600 r600])
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|some features with new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 3.3 open CL 1.2 TeraScale architecture
|-
| HD3400 HD3600 HD3800 (r600)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|some features with new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->pci-e 2.0, openGL 3.3
|-
| HD4300 HD4500 HD4600 HD4700 HD4800 ([http://en.wikipedia.org/wiki/Radeon_R600 r700])
| 0x1002
| 0x
| 0x0
| <!--2D-->{{Maybe|but some later cards need 3D engine for faster and more flexible 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 3.3 - DDR3 - GDDR5 was one of AMD's aces for the 4800 series - 4670 liked -
|-
| HD6900 cayman series
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|some features with new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 3.3 open CL not mature (2014) -
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| HD5400 Series HD5430 HD5450 HD5470
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2010 openGL 3.3 openCL - GDDR3 -
|-
| HD5500 Series HD5550 HD5570 HD5600 Series HD5650 HD5670 HD5700 Series HD5750 HD5770
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 3.3 openCL - GDDR5
|-
| HD 5800 Series HD5850 HD5870 HD5900 Series HD5950 HD5970 - HD6xxx not NI chipset ([http://en.wikipedia.org/wiki/Evergreen_(GPU_family) r800 evergreen])
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 openGL 3.3 openCL - DDR5 pci-e 2.1 best avoided for all pci-e 1.0 mobos - Ati TeraScale2 architecture -
|-
| HD6450 [http://en.wikipedia.org/wiki/Northern_Islands_(GPU_family) Northern Islands chipset]
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> - DDR3 -
|-
| HD6600 Series HD6650 HD6570 HD6600 Series HD6650 HD6670
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2011 - DDR5 -
Radeon HD 8470 11 TeraScale 2
Radeon HD 8350 11 TeraScale 2
Radeon HD 7510 11 TeraScale 2
Radeon HD 6550D 11 TeraScale 2
Radeon HD 6530D 11 TeraScale 2
Radeon HD 6410D 11 TeraScale 2
Radeon HD 6370D 11 TeraScale 2
Radeon HD 6320 11 TeraScale 2
Radeon HD 6310 11 TeraScale 2
Radeon HD 6290 11 TeraScale 2
Radeon HD 6250 11 TeraScale 2
|-
| HD6800 Series HD6850 HD6870 HD6700 Series HD6790 to HD6990
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2011 - DDR5 - AMD TeraScale3 -
|-
| <!--Description-->HD7450-HD7670
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 OpenGL but not Vulkan
Radeon HD 7660D 11 TeraScale 3
Radeon HD 7560D 11 TeraScale 3
Radeon HD 7540D 11 TeraScale 3
Radeon HD 7480D 11 TeraScale 3
Radeon HD 6930 11 TeraScale 3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->HD7750 HD 7770 / R7 250X HD7850 HD7870 / R9 270X HD 7950 / R9 280 HD 7970 / R9 280X [http://en.wikipedia.org/wiki/Southern_Islands_(GPU_family) Southern Islands]
*AMD Radeon R7 250XE Cape Verde XT
*AMD Radeon R7 M465X Cape Verde
*AMD Radeon R9 255 Cape Verde PRX
*AMD Radeon HD 7750 Cape Verde PRO
*AMD Radeon R7 250E Cape Verde PRO
*AMD Radeon HD 8740 Cape Verde PRO
*AMD Radeon HD 7730 Cape Verde LE
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 pci-e 3.0 1st Gen GCN architecture -
|-
| <!--Description-->R5 430, FirePro W2100,
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 50W+ openGL openCL 1/3 speed of gtx750ti 1st gen gcn1
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->HD7790 [ Sea Islands ]
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 openGL 4.1 open CL - GCN2.0 Vulkan 1.0 introduced a Shader Engine (SE) comprising one geometry processor, up to 44 CUs (Hawaii chip), rasterizers, ROPs, and L1 cache and Graphics Command Processor for faster audio/video - suits Vulkan 1.1
|-
| <!--Description-->r5 240 240x (slow) R7 250 250x (faster) HD 7790 / R7 260 260X / R7 360 to R5 350 (fast) and last one R5 430 OEM Plus (slow again)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 50W+ GCN 1st gen - openGL 4.x openCL 1.x Vulkan 1.0
|-
| <!--Description-->R9 290 / R9 390 R9 290X / R9 390X
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2014 GCN 1.1 2nd Gen architecture - openGL 4.x openCL 1.x Vulkan 1.1 -
|-
| <!--Description-->R9 Fury Nano
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 GCN 1.2 3rd Gen - openGL openCL vulkan
|-
| <!--Description-->r-200 series r8 275 285 295 375 [Volcanic Islands]
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 GCN1.2 - openGL 4.x openCL 1.x Vulkan 1.2
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 [https://gpuopen.com/download/AMD_GCN3_Instruction_Set_Architecture_rev1.1.pdf GCN3]
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Radeon™ RX 5700/5600/5500 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 GCN 4 - OpenGL 4, Vulkan 1.3 -
|-
| <!--Description-->Radeon™ RX 400/500 Series like rx vega 580
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->Radeon™ Pro WX 9100, x200 Series and Radeon™ Pro W5700/W5500 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Radeon™ RX 7900/7600 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->Radeon™ RX 6900/6800/6700/6600/6500 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|}
==== amd radeon mobile integrated ====
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|-
| <!--Description-->ATI RC410 [Radeon Xpress 200M]
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x5a62 0x5955 0x5974 (200m)
| <!--Revision-->0x00
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->
|-
| <!--Description-->Mobility Radeon 7500
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x4c57 (7500)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->
|-
| <!--Description-->Mobility Radeon 9000
| 0x1002
| 0x4966 (9000)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->
|-
| <!--Description-->Mobility Radeon 9500 9550 (rv360) 9600 (rv350)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon 9800 (rv420)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon X300 (RV370) X600 (RV380)
| 0x1002
| 0x (RV370) 0x5657 (RV380)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon X700 (RV410) X800 (RV423)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon X1200 (RS69M0)
| 0x1002
| 0x791f
| 0x0
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->X1200 IGP (RS690)
|-
| <!--Description-->Mobility Radeon X1300 X1350 X1400(rv515) X1600 (rv530) X1650 (RV535) X1800 (rv520) x1900 (rv570)
| 0x1002
| 0x71c7 (X1650)
| 0x009e
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon 2100
| 0x1002
| 0x796e (2100)
| 0x0
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{No|}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 2400 (rv610) HD2600 (rv630)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 3100 HD3200 HD3450 3470 (RS780MC RV620) 3670 (M86-XT RV635) HD3870 (M88-LXT RV670)
| 0x1002
| 0x9610 and 0x9612 (HD3200) 0x9614 (HD3300)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 4200 4250 (RV620)
| 0x1002
| 0x (HD4200) 0x9715 (HD4250)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 4330 4530 4550 (M92 RV710) 4650 (M96-XT RV730) 4670 RV730XT 4830 (M97 RV740) 4850 (M98 RV770)
| 0x1002
| 0x (HD4350) 0x9442 (RV770) 0x9490 (HD4670)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 530v (M92 RV710) HD 550v (M96 RV730)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->no support yet
|-
| <!--Description-->Mobility Radeon HD 5430 HD5650 (cedar Park LP)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->no support yet
|-
| <!--Description-->Radeon HD 6250 6290 6310 6320 6350M (Redwood Capilano PRO)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->no support yet
|-
| <!--Description-->AMD 7640G, 8450G, 8550G, 8650G Northern Islands
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 Last real support for old graphics standard before Vulkan takeover
|-
| <!--Description-->R5 M230 M240 M255 - R7 M260 M265 (Kaveri Crystal series with Mantle and HSA)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->2015 Maybe better with Vulkan
|-
| <!--Description-->R5E R7E
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->2016 bristol ridge GCN 3.0 IGP (Carrizo Mobile)
|-
| <!--Description-->AMD Vega 3, 6, 8, 11 iGP
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2018 raven ridge GCN 5th Gen
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->5500m 5600m 5800m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA1 NaviX1 Zen 2
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rx680m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA2 NaviX2 Zen 3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->phoenix apu 1103
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 RDNA3 NaviX3 zen 4
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
==== AMDGPU Vulkan desktop ====
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Kaveri 290 290X, 260 260X
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 AMDGPU Vulkan
|-
| <!--Description-->R9 285 / R9 380 R9 380X Fury / Fury X
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->opengl 4 opencl 1 3rd Gen GCN architecture
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX470 RX460 RX480 RX580 polaris10
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 opengl 4 opencl 2 4th Gen GCN architecture vulkan 1.3
|-
| <!--Description-->RX460 RX560D polaris11
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 opengl 4 opencl 2 4th Gen GCN architecture vulkan 1.3
|-
| <!--Description-->RX580 polaris20
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 opengl 4 opencl 2 4th Gen GCN architecture vulkan 1.3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX 5000 5500 Navi 1x
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RNDA 1
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX 6000 Navi 2x
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RNDA 2 Mesa 21.3 decode av1
|-
| <!--Description-->RX6000
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX 7000
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 RNDA 3 navi
|-
| <!--Description-->RX7000
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->RX9070 rx 9060 XT
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2025 rdna4 navi
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2026 udna (aka rdna5)
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
|}
==== AMDGPU Vulkan mobile ====
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->R5E R7E
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->2016 bristol ridge GCN 3.0 IGP (Carrizo Mobile)
|-
| <!--Description-->Vega 8
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> GCN 5
|-
| <!--Description-->Vega iGP 3, 6, 8, 11
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2018 raven ridge - Graphics Core Next (GCN) 5th gen -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->5500m 5600m 5800m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA1 NaviX1 Zen 2
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rx680m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA2 NaviX2 Zen 3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->phoenix apu 1103
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA3 NaviX3 zen 4
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
fyi if a notebooks with two graphic cards, the integrated Intel card (id 0x7d) for low power usage and a discrete Radeon card (id 0x56) which should be used for GPU-intensive applications. By default the Intel card is always used
[https://wiki.archlinux.org/title/ATI Gallium Radeon HD] is not ported yet but is [https://www.phoronix.com/scan.php?page=news_item&px=Linux-5.9-AMDGPU-Stats really big] and complex so another solution may have to be [https://discuss.haiku-os.org/t/the-graphics-acceleration-can-of-worms/10515/5 found] like [https://discuss.haiku-os.org/t/vulkan-lavapipe-software-rendering-is-working-on-haiku/11363/10 vulkan] where support starts from very recent ISA GCN islands HD7000s cards only
*Vulkan
*Gallium
Vulkan software renderer allows to prepares the infrastructure for hardware rendering. Primary difference between software and hardware renderer is output to regular RAM vs GPU RAM, the rest is almost the same. It is possible to render to GPU RAM offscreen.
bare bones basics data flow
application,>>> api/opengl/vulkan>>>>, jit compiler, >>>>memory manger, >>>>gpu hardware
so you need to have a compiler that takes your api call/program/shaders/drawing commands and turns them into a program the gpu can render.
the vulkan to amd gpu compiler for shaders and textures is nearly os agnostic iirc as long as you have solid posix compliance
Unlike OpenGL, Vulkan does not depend on windowing system and it have driver add-on system with standardized API (Mesa also have OpenGL driver add-ons, but it have non-standard Mesa-specific API). OpenGL may need more work for windowing system related code at this point but developing Vulkan on real hardware is more strategic than developing OpenGL, since now Zink 3 running on Vulkan compensates for the lack of OpenGL support by giving performance similar to native accelerated OpenGL
RadeonGfx use client-server model with client-server thread pairs. For each client thread that calls 3D acceleration API, server side thread is created. If client thread terminates, server side thread also exit.
==Rough gfx comparison==
<pre>
Group 1
GeForce RTX 5090 5070 5060 5050
GeForce RTX 4090 4070 4060 4050
Group 2
GeForce RTX 2070
Radeon RX 7600
Quadro RTX 5000
Radeon PRO W6600
GeForce RTX 2060 12GB
Radeon PRO W7500
Quadro GP100
Radeon RX 6800S
GeForce RTX 3070 Laptop GPU
GeForce GTX 1080
GeForce RTX 3060 8GB
Quadro RTX 4000
Radeon Pro W5700
Radeon RX 6600
GeForce RTX 2080 (Mobile)
Radeon RX 7700S
Radeon RX 6700S
Radeon RX 6600S
Quadro RTX 5000 (Mobile)
GeForce GTX 1070 Ti
GeForce RTX 4050 Laptop GPU
Radeon Pro Vega 64X
Radeon RX 5700
Radeon RX Vega 64
GeForce RTX 2060
GeForce RTX 2070 Super with Max-Q Design
Group 3
Radeon RX 6600M
GeForce GTX 1070
Radeon RX 6650M
GeForce RTX 3060 Laptop GPU
Radeon RX Vega 56
Radeon RX 6700M
GeForce RTX 2080 with Max-Q Design
Radeon RX 6800M
GeForce GTX 980 Ti
Radeon R9 Fury
GeForce GTX 980
Quadro M5500
Radeon R9 390X
Radeon RX 580
Radeon RX 5500
Radeon RX 6550M
GeForce GTX 1660 Ti with Max-Q Design
GeForce GTX 780 Ti
GeForce GTX 970
Radeon R9 290X
Radeon RX 480
Radeon RX 5600M
Quadro RTX 3000 with Max-Q Design
Radeon R9 290X / 390X
Ryzen 5 4600HS with Radeon Graphics
Radeon R9 290
Radeon Pro 5500 XT
Radeon R9 M490 *
GeForce GTX 780
Radeon RX 6500M
Quadro M5500
GeForce GTX 1060 with Max-Q Design
Radeon RX 6500
Radeon RX 5300
Intel Arc A770M
GeForce GTX 1650 Ti
Radeon Pro 580X
Radeon RX 6400
GeForce RTX 2050
Ryzen 9 4900HS with Radeon Graphics
Radeon Ryzen 9 6900HS
GeForce GTX 980M
Quadro M5000M
Radeon RX 6300
GeForce GTX 1650 Ti with Max-Q Design
Radeon Pro 570
Ryzen 9 6900HS with Radeon Graphics
GeForce GTX 1050 Ti
Quadro M4000M
Radeon R9 280X 380X
GeForce GTX 1650 with Max-Q Design
GeForce MX570
Radeon R9 280X
Radeon R9 380
Radeon 780M
GeForce GTX 960
GeForce GTX 970M
Quadro M4000M *
GeForce GTX 680
Group 4
Radeon RX 6500M
Quadro M5500
Radeon Pro WX 7100
GeForce GTX 1060 with Max-Q Design
GeForce GTX 1650
Intel Arc A730M
Radeon HD 7970
Radeon R9 M395X
Radeon R9 M485X
Radeon R9 M480 *
Radeon R9 M295X
Radeon R9 M390X *
FirePro W7170M *
Radeon R9 M395
Radeon R7 370
Radeon RX 5500M
GeForce GTX 590
GeForce GTX 880M
GeForce GTX 950
Radeon R9 270X
GeForce GTX 660 Ti
GeForce GTX 760
GeForce GTX 780M
Quadro K5100M
GeForce GTX 680MX
Radeon HD 7870
GeForce GTX 965M
Quadro M3000M *
GeForce GTX 870M
Radeon R9 M290X
Radeon HD 8970M
Radeon Ryzen 7 7735U (680M), Radeon Ryzen 7 7735HS (680M 12C)
GeForce GTX 580
Radeon HD 6970
GeForce GTX 1050
GeForce GTX 680M
GeForce GTX 775M
GeForce GTX 1630
FirePro M6100
Radeon HD 7970M
Radeon R9 M390 *
GeForce GTX 750 Ti
Group 5
GeForce GTX 570
GeForce GTX 480
GeForce GTX 960M
Quadro M2000M *
Quadro K5000M
Quadro K4100M
GeForce GTX 770M
GeForce GTX 860M
GeForce GTX 675MX
GeForce GTX 950M
GeForce GTX 850M
Quadro M1000M
Radeon R9 M280X
Radeon HD 7950M *
GeForce GTX 560 Ti
Radeon HD 6870
GeForce GTX 470
GeForce GT 1030
GeForce MX330
Ryzen 5 PRO 5650GE with Radeon Graphics
Ryzen 7 5800HS
FirePro 3D V8800
GeForce MX250
Group 6
Radeon Pro WX 3200
Ryzen 7 PRO 5750G with Radeon Graphics
Radeon Ryzen 5 5600H
Ryzen 5 Pro 4650G with Radeon Graphics
Radeon Ryzen 7 5800U
Ryzen 7 7730U with Radeon Graphics
Radeon Ryzen 7 5825U
Radeon Pro WX 4150
Radeon Ryzen 5 PRO 4655G
Ryzen 5 4600G with Radeon Graphics
Radeon Ryzen 5 PRO 4655GE
GeForce GTX 485M
FirePro W6150M
Ryzen 7 5800U with Radeon Graphics
Ryzen 5 7530U with Radeon Graphics
Ryzen 7 4800U with Radeon Graphics
Radeon R9 M470
Ryzen 3 PRO 5350G with Radeon Graphics
Radeon RX Vega Ryzen 3 5300U
Ryzen 7 5825U with Radeon Graphics
Ryzen 5 PRO 4400G with Radeon Graphics
Radeon Ryzen 7 PRO 4750GE
Radeon Ryzen 7 4800U
FirePro V7900
Radeon HD 5970
Radeon Ryzen 7 7700X 8-Core
Radeon Ryzen 5 PRO 5650G
Radeon Ryzen 5 4400G
Radeon Ryzen 5 PRO 5650GE
Radeon RX 550X
FirePro V8800
Radeon RX Vega Ryzen 5 5500U
GeForce MX150
Quadro K3100M
Ryzen 7 PRO 5850U with Radeon Graphics
Radeon HD 6970M
Radeon R7 250X
Intel HD 5600
Ryzen 3 4300GE with Radeon Graphics
GeForce GTX 460
Ryzen 7 5700U with Radeon Graphics
Radeon Ryzen 5 7530U
Quadro K620
Ryzen 3 PRO 5350GE with Radeon Graphics
Intel Iris Pro P580
Intel UHD Graphics P630
Ryzen 5 4600H with Radeon Graphics
Ryzen 5 PRO 7530U with Radeon Graphics
Radeon HD 5870
Radeon HD 6870
Ryzen 7 4700G with Radeon Graphics
Ryzen 5 5600U with Radeon Graphics
Radeon HD 7770
Ryzen 3 Pro 4350G with Radeon Graphics
Radeon Ryzen 5 5625U
GeForce GTX 745
Radeon Ryzen 7 4850U Mobile
Radeon Ryzen 3 PRO 7330U
Quadro M600M
Radeon Ryzen 5 5500U
Ryzen 5 5560U with Radeon Graphics
Ryzen 7 4800H with Radeon Graphics
Group 7
GeForce 945M
Ryzen 5 PRO 4650GE with Radeon Graphics
FirePro M5100
Radeon Ryzen 5 5600U
Radeon Ryzen 5 PRO 4500U
GeForce GTX 580M
Ryzen 7 PRO 5875U with Radeon Graphics
Ryzen 3 5300GE with Radeon Graphics
Radeon R9 M385
Quadro 5000M
Radeon Ryzen 7 4700U
Ryzen 5 PRO 5650U with Radeon Graphics
Radeon Ryzen 7 PRO 4750U
Ryzen 7 4700U with Radeon Graphics
Ryzen 7 PRO 4750U with Radeon Graphics
FirePro V7800
Radeon R9 350
Ryzen 3 4300G with Radeon Graphics
Radeon Vega 11 Ryzen 5 PRO 3350G
Radeon Ryzen 5 5560U
GeForce GTX 460 SE
Radeon Pro W5500M
Radeon Vega 11 Ryzen 5 PRO 3400G
Ryzen 5 5500U with Radeon Graphics
Ryzen 5 PRO 4500U with Radeon Graphics
GeForce GT 645
GeForce GTX 765M
Radeon R9 M385X
Ryzen 5 5625U with Radeon Graphics
Ryzen 3 PRO 7330U with Radeon Graphics
Radeon HD 5850
Radeon Vega 11 Ryzen 5 PRO 2400G
Intel Iris Pro 580
Radeon HD 6850
Intel Iris Xe MAX
Radeon Ryzen 7 PRO 5875U
Radeon Ryzen 5 7600 6-Core
GeForce GTX 470M
Ryzen 3 5300G with Radeon Graphics
GeForce GTX 670MX
Radeon RX 640
Qualcomm Adreno Gen 3
Radeon R7 450
GeForce GTX 675M
Radeon Pro WX 4130
Intel Iris Xe MAX 100
Quadro 5000
Radeon RX 570X
Radeon HD 7700-serie
Ryzen 5 4600U with Radeon Graphics
Ryzen 3 PRO 4350GE with Radeon Graphics
Radeon Vega 8
Group 8
GeForce MX230
GeForce GTX 765M
Quadro K4000M
Iris Pro Graphics P580 *
Iris Pro Graphics 580 *
GeForce GTX 645
Quadro M520
GeForce GTX 570M
GeForce MX130
Radeon RX 540
Radeon Ryzen 5 PRO 5675U
Intel UHD Graphics 770
Radeon RX Vega 11 Ryzen 7 3750H
Radeon Vega 11 Ryzen 5 PRO 3400GE
Radeon HD 5850
GeForce GTX 675M
GeForce GTX 580M
Radeon HD 6990M
Radeon R9 M385X *
Radeon R9 M470X *
Radeon R9 M470 *
Radeon R9 M385 *
Radeon R9 M380 *
Radeon R9 M370X
Radeon R9 M275
Radeon HD 7770
GeForce GTX 485M
GeForce GTX 460 768MB
Radeon HD 6790
GeForce GTX 285M SLI
Quadro K3100M
FirePro W5170M *
GeForce GTX 670MX
Quadro 5010M
GeForce GTX 760M
GeForce GTX 670M
Group 9
GeForce 940MX *
Maxwell GPU (940M, GDDR5)
FirePro M8900
Radeon HD 6970M
Radeon R9 M270
Radeon HD 8870M
Radeon HD 7870M
Quadro K3000M
GeForce GTX 570M
FirePro M6000
FirePro M5100
Quadro K2100M
Radeon HD 5770
GeForce GTX 550 Ti
GeForce GTX 280M SLI
Radeon HD 6950M
Radeon R7 250
GeForce GT 755M
GeForce GTX 660M
GeForce 845M
Radeon HD 8850M
Radeon R9 M365X
Radeon R9 M265X
Ryzen 5 PRO 4400GE with Radeon Graphics
FirePro W5130M *
Radeon Vega 8 Ryzen 5 3500U
Radeon HD 7850M
Radeon HD 8790M
FirePro W4170M
FirePro W4190M
FirePro W4100
Radeon Vega 6 Ryzen 3 3300U
Quadro 4000M
GeForce GTX 470M
GeForce GTX 480M
GeForce GT 750M
Iris Pro Graphics 6200
Quadro K1100M
GeForce 940M
Radeon R9 M375
GeForce 930MX *
Radeon R7 M380 *
Radeon R7 M370
Quadro M600M *
GeForce GT 650M
Quadro K620M
GeForce 840M
Radeon R7 M275DX
GeForce GT 745M
Radeon HD 7770M
GeForce GTX 560M
Radeon R7
Iris Pro Graphics 5200
GeForce GT 740M
GeForce 930M
Radeon HD 4850
Group 10
Iris Graphics 550 *
GeForce 830M
Iris Graphics 540
Quadro M500M *
Quadro K2000M
GeForce GTS 450
GeForce GTX 260M SLI
GeForce GT 735M
Mobility Radeon HD 5870
GeForce 825M
Quadro 5000M
FirePro M4000
FirePro M7820
Radeon HD 6870M
GeForce 9800M GTX SLI
Radeon HD 8830M *
Radeon HD 8770M
Radeon R7 M260X
GeForce GTX 460M
GeForce 920MX *
GeForce GT 730M
Radeon HD 7750M
GeForce GT 645M *
FirePro M4100
Radeon HD 8750M
Radeon R6 A10-9600P 4C+6G
Quadro 3000M
Radeon R7 M270
Radeon R7 M265
Quadro FX 3800M
GeForce GTX 285M
Mobility Radeon HD 4870
GeForce GT 640M
Radeon R7 (Kaveri)
Radeon R8 M365DX
Radeon R7 M460 *
Radeon HD 7730M
Radeon R7 M360
GeForce GTX 280M
Radeon HD 8690M
Quadro FX 3700M
Radeon R7 M340
GeForce 920M
Radeon R6 M340DX
HD Graphics 530
HD Graphics P530
Tegra X1 Maxwell GPU
Radeon R7 M260
Radeon R6
Group 11
Mobility Radeon HD 4860
FirePro M7740
Mobility Radeon HD 4850
GeForce GTX 260M
GeForce 9800M GTX
Quadro FX 2800M
Radeon HD 8670D
Radeon HD 7690M XT
FirePro M5950
GeForce GT 640M LE
Radeon R6 (Kaveri)
Radeon HD 8650M *
Radeon HD 8730M
Radeon HD 6770M
GeForce GT 635M
GeForce GT 555M
Radeon R7 A10 PRO-7800B
Radeon HD 5670
Mobility Radeon HD 5850
Radeon HD 6850M
Quadro 2000M
GeForce 9800M GT
GeForce 8800M GTX
Quadro FX 3600M
GeForce GT 445M
GeForce GTS 360M
Group 12
GeForce GT 240
Radeon R7 PRO A10-9700
Radeon HD 7690M
HD Graphics 5600
Radeon HD 8570D
Radeon HD 8670M
Radeon R6 M255DX
Radeon HD 7660D
Radeon HD 6750M
Quadro K1000M
GeForce GT 550M
Radeon HD 8590M *
GeForce GTS 260M
GeForce GTS 160M
GeForce 9800M GTS
GeForce GT 430
Radeon HD 6830M
Mobility Radeon HD 5830
Radeon HD 6730M *
GeForce 9800M GS
Mobility Radeon HD 4830
Mobility Radeon HD 5770
Radeon HD 6570M
Radeon HD 8650G
Radeon HD 7670M
GeForce GT 630M
Radeon HD 7560D
GeForce GTS 150M *
Radeon R5 M335
Radeon R5 M430 *
Radeon R5 M330
Radeon R5 M255
Radeon Vega 3
Quadro 1000M
GeForce 820M
FirePro W2100
HD Graphics 520 620
Iris Graphics 6100
GeForce GT 720M
GeForce 8800M GTS
Radeon R5 M240
Radeon R5 M320 *
Radeon R5 M230
Radeon R5 M315 *
Mobility Radeon HD 5750 *
Radeon HD 8570M
Radeon R7 PRO A10-8850B
HD Graphics 6000
Quadro K610M
Radeon HD 8550M
Iris Graphics 5100
GeForce GT 540M
Mali-T880 MP12 *
Radeon HD 8610G *
Radeon HD 6650M
HD Graphics 4600
Mobility Radeon HD 5730
HD Graphics 5500
Radeon R5 (Carrizo) *
Radeon R5 (Kaveri)
FirePro M5800
NVS 5400M
GeForce 710M
Radeon HD 7660G
GeForce GT 435M
HD Graphics 5000
Quadro K510M *
Radeon HD 5570
Radeon HD 6550M
Radeon HD 7590M *
GeForce GTS 350M
GeForce GTS 250M
Radeon HD 6630M
Radeon HD 7650M
FirePro M2000
Radeon HD 7570M
Radeon HD 7630M
Quadro FX 1800M
Mobility Radeon HD 5650
Radeon HD 8510G *
Radeon HD 6530M
Radeon HD 8550G
Quadro K500M *
GeForce GT 625M *
GeForce GT 620M
GeForce GT 525M
Radeon HD 6550D *
Radeon HD 7610M
Radeon HD 7620G
Radeon HD 8470D
Radeon HD 7640G
Adreno 530
GeForce ULP K1 (Tegra K1 Kepler GPU)
HD Graphics 4400
HD Graphics 510 515 *
NVS 5200M
Mobility Radeon HD 565v
Radeon HD 7550M
Mobility Radeon HD 4670
GeForce GT 425M
GeForce 9700M GTS
Radeon HD 6645G2 *
Quadro FX 2700M
GeForce GT 335M
Radeon HD 7600G
Mobility Radeon HD 3870
Mobility Radeon HD 4650
GeForce GT 220
GeForce GT 420M
Radeon HD 7530M *
Mobility Radeon HD 3850
GeForce GT 330M
Quadro FX 880M
Quadro NVS 5100M
GeForce GT 240M
Radeon HD 7490M *
HD Graphics 5300
Radeon HD 7510M *
GeForce Go 7950 GTX
Quadro FX 3500M
GeForce 8700M GT SLI
GeForce 9700M GT
GeForce GT 230M
Mobility Radeon HD 550v
Radeon HD 7480D
HD Graphics 4000
Mali-T760 MP8
Radeon HD 6620G
HD Graphics (Broadwell) *
Adreno 430
Radeon R5 (Beema/Carrizo-L)
Radeon R4 (Beema) (Kaveri)
HD Graphics (Skylake) *
Radeon HD 6450 GDDR5
Radeon HD 7500G
Radeon HD 8450G
Radeon HD 7470M
Radeon HD 6490M
Radeon HD 8400
Mali-T880 MP4
GeForce GT 520MX
Radeon HD 7520G
GeForce GT 325M
GeForce Go 7800 GTX SLI
GeForce 8600M GT SLI
GeForce Go 7900 GS SLI
GeForce GT 130M
NVS 4200M
GeForce Go 7900 GTX
Quadro FX 2500M
Radeon HD 8350G
Radeon HD 8330
GeForce 9650M GS
GeForce 9650M GT
Radeon R3 (Mullins/Beema)
GeForce 8700M GT
Quadro FX 1700M
Quadro FX 1600M
GeForce Go 7800 GTX
GeForce Go 7900 GS
Quadro NVS 320M
Quadro FX 1500M
GeForce 9600M GT
GeForce GT 220M
Quadro FX 770M
GeForce GT 120M
Radeon HD 7450M
GeForce 610M
GeForce 705M
Mali-T760 MP6
Radeon HD 6470M
FirePro M3900 *
GeForce GT 520M
Radeon HD 7420G
Mobility Radeon HD 3670
Mobility FireGL V5725
PowerVR GX6450
Adreno 420
HD Graphics (Haswell)
Radeon HD 6520G
Radeon HD 8310G *
GeForce 320M
GeForce GT 320M
Mobility Radeon HD 2600 XT
Mobility Radeon X1900
Mobility Radeon X1800XT
Mobility Radeon X1800
GeForce Go 6800 Ultra
GeForce Go 7800
GeForce 9600M GS
GeForce 9500M GS
Radeon HD 7400G
Radeon HD 6480G *
Mobility Radeon HD 2700
GeForce GT 415M
GeForce 410M
Radeon HD 7370M
Adreno 418
HD Graphics (Cherry Trail)
Radeon HD 6370M
Radeon HD 8280
Mobility Radeon HD 5470
Radeon HD 6450M
Radeon HD 7430M *
Mobility Radeon HD 3650
Mobility FireGL V5700
Mobility Radeon HD 5145
Mobility Radeon HD 545v
Radeon R6 (Mullins) *
Radeon HD 8240
Radeon HD 8250
Mobility Radeon HD 4570
Quadro FX 570M
Mobility Radeon HD 5450 *
Radeon R2 (Mullins/Beema) *
GeForce 8600M GT
Mobility Radeon HD 2600
HD Graphics 3000
Quadro FX 380M
GeForce 310M
GeForce G210M
NVS 3100M
GeForce 405M
GeForce 315M
GeForce Go 7600 GT
GeForce 9500M G
GeForce 8600M GS
NVS 2100M
GeForce Go 7700
GeForce Go 6800
Quadro FX Go 1400
Mobility Radeon X800XT
Radeon HD 6430M *
Radeon HD 6380G *
Mobility Radeon HD 5430
Radeon HD 8210
Mobility Radeon HD 540v
Mobility Radeon HD 4550
HD Graphics 2500
HD Graphics (Ivy Bridge)
Quadro NVS 310
Radeon HD 7350M *
Radeon HD 6350M *
Mobility Radeon HD 4530
Mobility Radeon HD 4350
Radeon HD 4350
GeForce 305M
Mobility Radeon X1700
Mobility FireGL V5250
Mobility Radeon X2500
GeForce Go 7600
Quadro NVS 300M
Mobility Radeon X800
Mobility Radeon X1600
Mobility FireGL V5200
Mobility Radeon 9800
GeForce Go 6600
Mobility Radeon X1450
Mobility Radeon X700
Mobility FireGL V5000
GeForce G 110M
Quadro NVS 295
Radeon HD 6330M *
Mobility Radeon HD 4330
GeForce 8400M GT
Quadro NVS 140M
HD Graphics 2000
GeForce 9500M GE *
GeForce 9400M (G) / ION (LE)
HD Graphics (Sandy Bridge) *
Adreno 330
PowerVR G6430
PowerVR GX6250
PowerVR G6400
HD Graphics (Bay Trail)
Mali-T628 MP6
Mali-T760 MP4
Chrome9HD *
Radeon HD 7340
Radeon HD 6320 *
Radeon HD 7310
Radeon HD 6310 *
Radeon HD 8180
Mobility Radeon HD 3470
GeForce 9300M G
ION 2 *
GeForce 9300M GS
Quadro FX 370M
Quadro NVS 160M
GeForce 9200M GS
Mobility Radeon HD 3450
Mobility Radeon HD 3430
Mobility Radeon HD 3410
Mobility Radeon HD 2400 XT
Radeon HD 4270
Radeon HD 4250
Radeon HD 7290 *
Radeon HD 6290 *
Radeon HD 4200
Graphics Media Accelerator (GMA) HD Graphics
Radeon HD 6250
Quadro NVS 150M
Quadro FX 360M
Mobility Radeon X1350
Mobility Radeon X1400
GeForce 9100M G
GeForce 8400M GS
Quadro NVS 135M
Mobility Radeon HD 2400
Radeon HD 3200
Radeon HD 4225 *
Radeon HD 4100 *
SGX554MP4
Mali-T628 MP4
Mobility Radeon HD 3400 *
Radeon HD 3100
GeForce 8400M G
Mali-T860 MP2
Quadro NVS 130M
GeForce 8200M G
Graphics Media Accelerator (GMA) 4700MHD
Graphics Media Accelerator (GMA) 4500MHD
Graphics Media Accelerator (GMA) 4500M
Mali-T604 MP4
GeForce Go 7400
Quadro FX 350M
Quadro NVS 120M
GeForce Go 7300
GeForce Tegra 4 *
PowerVR G6200
Adreno 405 *
Quadro NVS 110M
Mobility Radeon X600
Mobility FireGL V3200
Mobility FireGL V3100
Mobility Radeon HD X2300
Mobility Radeon 9700
Mobility FireGL T2e
Mobility Radeon X1300
GeForce4 4200 Go
Mobility Radeon 9600
Mobility FireGL T2
Mobility Radeon 9550
GeForce Go 7200
GeForce Go 6400
Mobility Radeon X300
GeForce Go 6250
GeForce Go 6200
GeForce FX Go 5700
Quadro FX Go 1000
GeForce FX Go 5600 / 5650
Radeon Xpress X1270
Radeon Xpress X1250
Radeon Xpress X1200
Graphics Media Accelerator (GMA) X3100
Mali-T624
Adreno 320 *
Mali-T760 MP2
Mali-T720 MP4
Mali-450 MP4
Graphics Media Accelerator (GMA) 3650 *
GeForce 7190M *
GeForce 7150M
Radeon Xpress 1150
GeForce Go 6150
GeForce Go 6100
GeForce 7000M
Graphics Media Accelerator (GMA) 3600 *
Mobility Radeon 9200
Mobility FireGL 9000
GeForce FX Go 5200
Mobility Radeon 9000
GeForce 4 488 Go
GeForce 4 460 Go
GeForce 4 440 Go
GeForce 4 420 Go
Graphics Media Accelerator (GMA) 3150
Graphics Media Accelerator (GMA) 950
SGX545 SGX544MP2 SGX543MP2 *
Mali-T720 MP2
Mali-T720
Adreno 302 304 305 306
Mobility Radeon 7500
Mobility FireGL 7800
Graphics Media Accelerator (GMA) 900
Radeon Xpress 200M
Radeon Xpress 1100
Mirage 3+ 672MX
Mirage 3 671MX
Mali-400 MP4 *
GeForce ULP (Tegra 3) *
VideoCore-IV *
Adreno 220 225*
Vivante GC1000+ Dual-Core
Mali-400 MP2 *
GeForce ULP (Tegra 2) *
Graphics Media Accelerator (GMA) 600 *
SGX540 *
Graphics Media Accelerator (GMA) 500
Adreno 205 *
Adreno 203 *
GC800 *
SGX535
SGX531
SGX530
Adreno 200 *
Mali-200 *
GeForce 3 Go *
GeForce 2 Go 200 / 100
Mobility Radeon 9100 IGP
Mobility Radeon 9000 IGP
Mobility Radeon M7
Mobility Radeon M6
Chrome9 HC
Extreme Graphics 2
Mobility Radeon 7000 IGP
Radeon IGP 340M
Radeon IGP 320M
S3G UniChrome Pro II
S3G UniChrome Pro
Castle Rock
Mirage 2 M760
Mirage M661FX
S3 Graphics ProSavage8
Mobility 128 M3
SM502 *
</pre>
Kernel-space drivers like '''radeon''' (older AMD driver for older GPUs), '''amdgpu''' (newer driver for newer GPUs, allows using a few new features), i915, nouveau and a few others. They are what handles the gory details of talking to the GPU itself (writing to proper registers, handling its memory directly, configuring outputs, and so on). Unfortunately most of what they're exposing can be only consumed by a single user of that GPU, which is why we need...
DRM and DRI (Direct Rendering Manager/Infrastructure) controls access to the GPUs, provides interfaces for talking to the GPU concurrently by multiple apps at once (without them breaking each other) and lets the system perform the most basic tasks like setting proper resolution and such if no userspace apps understand how to talk to the GPU exposed. DRI and DRM expose the GPU interfaces mostly as-is, not in a "vendor-neutral" portable way - if you don't have an application developed specifically for a GPU you have, it won't work.
"let's create a vendor-neutral interface for graphics so that apps can ignore the GPU-specific bits and get right to the drawing!" - which is what OpenGL is. User-space drivers implement the OpenGL specification and expose it as an OpenGL library to apps (like games, browsers, etc) instead of the GPU. Mesa is the most popular collection of open-source user-space drivers and contains a few user-space drivers for different GPU families: '''radeonsi''' for most modern AMD GPUs (and '''r600g''', r300g and others for older ones), '''i915/i965''' for old/new Intel GPUs and '''nouveau''' for Nvidia GPUs.
There's also Gallium, which is a bunch of utilities and common code shared among these drivers - if certain things can be done once and work everywhere, they'll land in Gallium and benefit all the drivers. Most Mesa drivers use Gallium (radeonsi, nouveau, software renderers), some don't (intel after gma950).
Displaying 2D windows supports device-specific 2D drivers as well, but nowadays most of these are no longer needed as the modesetting can handle most hardware on its own. As the DRM/DRI got some additional interfaces for what used to be hardware-specific (setting resolutions, refresh rates, etc) and software requiring accelerated 2D drawing was optimized OpenGL-based renderers, dedicated 2D acceleration is slowly going away. Since around 2012, the 3D part of the graphics card deals with 2D operations.
Modern GPUs can also decode video!? There's VDPAU (NVIDIA & AMD GPUs) and VA-API (AMD & Intel GPUs) that can also talk to the GPU exposed via DRM/DRI and issue proper commands to decode/encode a given video stream. Those drivers are GPU-specific too.
So let's say you have some example GPUs, here's how example stacks could look like:
* AMD Radeon HD8750: amdgpu -> DRM/DRI -> Mesa (radeonsi)
* AMD Radeon HD4850: radeon kernel driver -> DRM/DRI -> Mesa (r600g) -> games/apps/etc.
* NVIDIA GeForce 460: nouveau kernel driver -> DRM/DRI -> Mesa (nouveau) -> games/apps.
* Intel GMA950: i915 kernel driver -> DRM/DRI -> Mesa (i945) -> games/apps.
{| class="wikitable sortable" width="90%"
! width="15%" | Description
! width="15%" | Analog Output
! width="15%" | Digital Output
! width="15%" | Laptop LCD
! width=30%" | Comments
|-
| <!--Description-->Fudomi GC888A
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->1080p 100in throw projector
|-
| <!--Description-->Vamvo VF320 (720P)
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->720p 90in
|-
| <!--Description-->Happrun H1
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->1080p 90in
|-
| <!--Description-->Umbolite Magcubic HIPPUS HY320 Mini
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->720p 100in
|-
| <!--Description-->Zentality A10 Plus
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->720p 110in
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->nexigo nova mini
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->nebula mars 3
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->epson lifestudio flex plus portable projector
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->dangbei freedo
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->benq gv50
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
Unless your computer uses a Firewire chipset manufactured by Texas Instruments, FireWire interfaces are likely to act buggy.
AROS is unlikely to ever support FireWire.
Bluetooth is similarly unlikely to be ever supported due to huge cost to be certified.
No, x86 PCMCIA card.resource at the moment. Writing card.resource would be a similar amount of work to writing a typical driver. However, it might be complicated by having to support a variety of PCMCIA-controller chipsets like TI PCI1225, PCI1410, PCI1420, 1450, PCIxx12 and O2, etc. m68k card.resource does not really have many higher level functions, most functions are really simple or poke Gayle registers directly. only exception is CopyTuple(). Amiga card.resource has one significant flaw: it's single-unit. would need card.resource and pccard.library. There was talk in the past of designing a new API for PCMCIA because card.resource only supports one slot, but since most modern laptops only have one slot anyway, I think it might be worthwhile to implement card.resource as-is (at least as a first step). pccard.library would be trivial to port. So, a new API is needed.
k33r1a7wx0i7v8jtsjyvxlsbvn0w73r
4641229
4641144
2026-06-26T09:47:15Z
Jeff1138
301139
4641229
wikitext
text/x-wiki
Google translation into [http://translate.google.com/translate?hl=en&sl=auto&tl=de&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support German], [http://translate.google.com/translate?hl=en&sl=auto&tl=fr&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support French], [http://translate.google.com/translate?hl=en&sl=auto&tl=nl&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Dutch], [http://translate.google.com/translate?hl=en&sl=auto&tl=it&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Italian], [http://translate.google.com/translate?hl=en&sl=auto&tl=es&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Spanish], [http://translate.google.com/translate?hl=en&sl=auto&tl=hi&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Hindi],
[http://translate.google.com/translate?hl=en&sl=auto&tl=zh-CN&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Chinese Simplified],
[http://translate.google.com/translate?hl=en&sl=auto&tl=pl&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Polish],
[http://translate.google.com/translate?hl=en&sl=auto&tl=ru&u=http%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAros%2FPlatforms%2Fx86_support Russian],
{{ArosNav}}
[[#Audio Chipsets]]
[[#Graphic GFX Chipsets]]
[[#Rough gfx comparison]]
[[#]]
==x86 Native Environment==
AROS should run on almost any i386 PC hardware so long as the CPU is newer than an i486, and has a "Floating Point Unit (FPU)". Ideally around 700Mhz and above with at least 256MB of memory is recommended for desktops and around 1GHz and at least 256MB for laptops/notebooks/netbooks. For web browsing, etc above 1GB is usually needed and offers the option to run web browsers, media players and other hard disk heavy usage from RAM: disk.
Motherboards supported
* Most Intel mobos are supported (Skt 775 is ok but newer is better) - additional pci / pci-e cards may be needed for networking, audio, etc
* AMD based socket 939 am2 am2+ am3+, fusion and am4 ryzen based systems work but additional pci / pci-e cards may be needed
Supported graphics cards (gfx)
* Nvidia 2D and 3D 2005-2017.
64bit AROS Nouveau covers '''2D''' 8xxxgs and higher to GTX 900s and '''3D''' from .
32bit AROS supports '''2D''' from TNT through to fermi gtx5xx and '''3D''' acceleration fx5xxx to gtx4xx.
* Intel GMA 2D and 3D 2006-2009.
'''2D''' for many old netbooks and motherboards. '''3D''' for many early netbooks and motherboards
* AMD/ATI 2D only and '''no 3D'''. 1999-2005.
Desktop ie external monitor support only (no laptop internal support) for very early Radeon 7000 through to x600. Experimental 2D version for up to HD3xxx came later
* VESA 2D fallback modes for all graphic cards (GPUs) and with [http://www.youtube.com/watch?v=HKCHZFYj9Kk screen dragging].
It's worth noting however that support isn't guaranteed. Nor will potential power of a card reflect its performance under AROS.
Sound wise there are
* HDaudio support for onboard intel and AMD netbooks, ultrabooks, notebooks and motherboards (2005 to 2020)
* some AC97 codec support for very old motherboards and laptops (ie pre 2004)
* PCI and some PCI-E C-Media CMI8738 for desktop plugin cards
* PCI Creative Soundblaster EMU10K1 cards [http://amigaworld.net/modules/news/article.php?storyid=2512 SBLive]
* PCI semi professional some early VIA Envy24 desktop sound cards
* PCI Sound Blaster 128 aka SB16
Supported [http://en.wikibooks.org/wiki/Aros/Platforms/x86_Network_support network] which could be desktop, laptop, etc
* PCI-E Realtek rtl8169 which also includes the rtl8111 and rtl8110
* PCI Realtek rtl8139 and includes rtl8101 and rtl8100
* PCI intel pro100
* Broadcom 44xx 10/100 integrated in laptops around 2005
* VIA 10/100
* 3com Etherlink 10/100
* Realtek rtl8029 10mbit
Wireless wifi
* atheros 5000 wireless
*realtek 8187 usb
It is very hard to recommend a completely supported motherboard because as soon as newer motherboards arrive so their features change subtly, often introducing non supported parts like ethernet and audio. It is a moving target.
* mini-itx motherboard will only get you 1 pci or pci-e slot
* micro mATX or uATX will have more, typically 2 pci-e or pci slots which helps if any onboard features are not supported.
* full atx will have more slots available
'''N.B''' It is frustrating when a piece of hardware is not supported. Hardware documentation can run to over 100 pages and a lot of hardware do not have any public documentation anyway. Chips from different manufacturers for sound, graphics, SATA, etc. vary just as much, unless they follow a standard such as [https://github.com/acidanthera/AppleALC/wiki/Supported-codecs HDAudio codecs], AHCI etc.
Coding drivers is a far cry from Hello World programs or even a port of existing software. If you do actually want to try then get a hold of documentation on the relevant hardware and start there. Alternatively you could try to find some '''BSD''', MIT or MPL licence drivers as a point of reference. Please , do not think you can just adapt strings in a driver for different strings, it does not work that way. You will '''need''' to start from scratch for each new bit of hardware. Device driver programming require '''embedded''' skills, like manipulation of bits within registers, good debugging skills, dealing with interrupts, lots of patience, etc.
The following specific chipsets and drivers are also available - use Tools/PCITool to confirm Vendor and Product IDs - Please let us know any mistakes or any information to be added, to this General Chat list on [https://arosworld.org/ AROS World]
: Brief Timeline
: 2000-12-06 HIDD first mouse.hidd completed ([http://msaros.blogspot.com/ Michal Schulz])
: 2001-03-31 BOOT first boot from floppy disk with IDE device
: 2001-10-30 BOOT first cd bootable version
: 2002-01-27 HIDD first pci.hidd added (Michal Schulz)
: 2002-04-13 BOOT software HDToolBox added ()
: 2003-04-03 HIDD vesa2.hidd graphic modes added ()
: 2004-03-08 HIDD new pci and ata (pata) devices worked on (Michal Schulz)
: 2004-03-17 HIDD nVidia 2D driver appears (Michal Schulz)
: 2005-01-05 AHI AHI v6 audio system ported (Martin Blom)
: 2005-01-06 AHI SBLive SoundBlaster Live driver ported (Georg Steger)
: 2005-02-04 AHI AC97 playback only driver added (Michal Schulz)
: 2005-06-27 NIC amiTCP stack ported with 3com, NE2000, prism2 drivers (Neil Cafferkey)
: 2005-08-25 NIC nForce2 support added (Michal Schulz)
: 2005-12-24 NIC Intel Pro100 network driver added (Neil Cafferkey)
: 2006-03-25 HIDD ATI radeon 2D driver added (Michal Schulz)
: 2007-03-06 HIDD vesa 1.0 video driver added (Pavel Fedin)
: 2007-03-08 HIDD dospackets and FAT filesystem (Rob Norris)
: 2007-03-21 HIDD usb initial commit (Michal Schulz)
: 2007-10-01 BOOT Installer added (Neil Cafferkey)
: 2007-11-29 PORT 64bit x86 added (Michal Schulz)
: 2008-04-12 BOOT GRUB2 added (Alain Greppin and Nick Andrews)
: 2008-08-26 NIC RTL8139 added ([http://kalamatee.blogspot.com/ Nick Andrews])
: 2008-10-22 PORT to SAM440ep (ppc) (Michal Schulz)
: 2009-02-25 PORT to efika (ppc) (Michal Schulz)
: 2009-05-18 HIDD poseidon usb2.0 stack ported to AROS (Chris Hodges)
: 2009-11-18 NIC RTL8169 network driver arrived (Nick Andrews and [http://pagesperso-orange.fr/franck.charlet/oldnews.html Franck Charlet])
: 2009-12-23 AHI HDAudio based Atom CPU and netbook audio driver arrived (Davy Wentzler)
: 2010-03-09 BOOT USB pendrive stick booting available (Neil Cafferkey)
: 2010-05-26 HIDD Intel GMA900 2D graphics card support (Michal Schulz)
: 2010-09-03 NIC Wireless PCI based NIC arrived (Neil Cafferkey)
: 2011-04-30 HIDD Nvidia 2D and 3D nouveau graphics card support (Deadwood)
: 2011-08-30 HIDD Radeon 2D enhanced AMD driver arrives (Bearsoft)
: 2011-09-17 NIC Wireless USB realtek arrives (Neil Cafferkey)
: 2011-12-09 HIDD Intel 945G 3D Gallium graphics support (Sami)
: 2013-02-25 AHI AC97 VIA 686 audio support (Davy Wentzler and Neil Cafferkey)
: 2013-03-31 PORT early Raspberry PI native support (Nik Andrews)
: 2014-01-16 AHI Envy24 audio chipset support (Davy Wentzler and Neil Cafferkey)
: 2017-02-17 PORT Symmetric MultiProcessing smp added for x86 64bit (Michal Schulz)
: 2018-10-20 PORT Big Endian ARM
: 2021-11-26 NIC Broadcom 44xx ethernet (Neil Cafferkey)
: 2023-01-12 NIC Nvidia MCP61 ethernet (Neil Cafferkey)
: 2025-11 HIDD xHCI USB3 and isoc (Nik Andrews)
[[#top|...to the top]]
===Audio Chipsets===
'''If sound beeps in AHI prefs after Music set then some support is there. Select more than one channel for multiple audio streams, set frequency up to 44 kHz or higher and set the volume if not already set. Ensure you set the music unit 0 to 3 which allows the extra features of the audio card like microphone, line-out, etc).'''
====1996-2000 sb128.audio aka SB16 PCI====
*2021 5.27
as per CREATIVE's website, the model number is the first two digits on the front and first two digits on the back. my card says CT4810 and 161TK110B 995; this translates to CT4816 as the model.
The original AudioPCI 3000 card with the ES1370 had a master clock crystal for 44.1 kHz (22.5792 MHz), used an AKM codec (AK4531, non-AC97) and had 4 channel output; Creative later modified the design with a crystal for 48 kHz (24.576 MHz) and Sigmatel AC97 codec (a CT4700 SB128 with a CT5507 chip, AK4531, 22.5792 MHz crystal and TDA7360 speaker power amp). The issue with these cards involved never quite eliminate the effects of resampling on the 64V, it also shows signs of undersized coupling caps. These Ensoniq cards automatically engaged headphone amplifier (with a 4565 opamp).
Porting involved [http://repo.or.cz/w/AROS.git/commit/b60abd12967144a844980c422ea9e99c056eabca 40897], [http://repo.or.cz/w/AROS.git/commit/b7d6511fca6430a63fbaaa390b4f51bf0203a460 40898 configure], [http://repo.or.cz/w/AROS.git/commit/f51034cd22759a4ec3a2547bddb3a7169d956eaa 40900 bugs], [http://repo.or.cz/w/AROS.git/commit/4f43fc38e3489ea45d12b7b5ba6fff50b69c5746 40901 further bugs], [http://repo.or.cz/w/AROS.git/commit/d23c78aec75f049484b6916d27b6804ce858bb2c 40913 memory IO fixes], [http://repo.or.cz/w/AROS.git/commit/d256860fe3035016952e88d143c6f2611997f2f3 40914 irq fix].
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| Ensoniq AudioPCI 1000
| 0x1274
| 0x5000
|
| {{unk}}
| {{unk}}
| untested - es1370 (u?) AK4531 (u?)
|-
| Ensoniq AudioPCI
| 0x1274
| 0x5000
| 0x00
| {{yes}}
| {{maybe}}
|
|-
| CT4700 Sound Blaster PCI 64 (audioPCI 3000)
| 0x1274
| 0x5000
| 0x7c
| {{yes}}
| {{maybe}}
| works - opamp JRC4565(u?) [http://en.wikipedia.org/wiki/Ensoniq_ES1370 es1370] (u?)
|-
| CT4750 Sound Blaster 64/PCI
|
|
|
| {{unk}}
| {{unk}}
| untested - 4565-1056W (u1) stac9708t(u2) [http://arstechnica.com/civis/viewtopic.php?f=6&t=916891 ct5880-dcq] (u3) 24wc012 (u4)
|-
| CT4751 (SB128PCI)
| 0x1274
| 0x8001
|
| {{unk}}
| {{unk}}
| untested - [http://en.wikipedia.org/wiki/Sound_Blaster#Ensoniq_AudioPCI-based_cards es1371] (u?)
|-
| CT4810 Creative AudioPCI64V
| 0x1274
| 0x1371
| 0x06
| {{yes}}
| {{maybe}}
| works
|-
| CT4811 (SB Vibra 128)
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4812 (Vibra 128)
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4813
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4815
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4816 es1373 (vibra 128)
|
|
|
| {{unk}}
| {{unk}}
| untested but this card has creative's ES1373 as the main chip(U1). it is also different from the other CT4810 (vibra128) in that it does not have a second chip in U2 position. Also there is only one jumper JP1 (2X3).
|-
| CT5801 HP
|
|
|
| {{unk}}
| {{unk}}
| untested - es1373 (u3)
|-
| CT5803 Gateway
| 0x1274
| 0x1371
| 0x08
| {{yes}}
| {{maybe}}
| works 4565-0005b jrc (u1) 4297a-jq ztae0c0002 (u2) es1373 (u3)
|-
| CT4740
| 0x1274
| 0x1371
| 0x08
| {{yes}}
| {{yes}}
|
|-
| CT5805 Compaq OEM Premier Sound Presario 7
|
|
|
| {{unk}}
| {{unk}}
| untested - es1373 (u3)
|-
| CT5806 (Sound Blaster AudioPCI 128D)
|
|
|
| {{unk}}
| {{unk}}
| untested - 4297A-JO EP (u?) ZTAPWC9933 (u2) es1373 (u3)
|-
| CT5807 Dell OEM Dimension 8100
|
|
|
| {{unk}}
| {{unk}}
| untested - es1373 (u?)
|-
| CT5808
|
|
|
| {{unk}}
| {{unk}}
| untested
|-
| CT4730 Sound Blaster AudioPCI 64V Ectiva EV1938
| 0x1102
| 0x8938
|
| {{unk}}
| {{unk}}
| untested
|-
| CT5880 on various motherboards
| 0x1274
| 0x5880
|
| {{unk}}
| {{unk}}
| untested [http://www.xbitlabs.com/articles/mainboards/display/ga-6rx.html Gigabyte GA-6RX] (VIA ApolloPro 266 2001], Gigabyte GA-6VM7-4E mobo, [http://active-hardware.com/english/reviews/mainboard/ga-7vtx.htm Gigabyte GA-7VTX] (KT266 2001), Gigabyte [http://www.amdboard.com/gigabytega7vtxh.html GA-7VTXH] (KT266A 2001), [http://www.amdboard.com/gigabytega7vrxp.html Gigabyte 7VRXP] mobo (KT333 2002), MSI MS-6309, MS-6318, MS-6337 (815E Pro), MS-6339 (850Pro) and MS-6340, PCChips Motherboard M571 TXPRO, Soltek SL-65ME+,
|-
| VMware Virtual Workstation(TM)
| 0x1274
| 0x1371
| 0x02
| {{Yes|but not Hi-Fi modes}}
| {{maybe}}
| works
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
<pre>
Revision 0x04 = ES1371 REV_ES1373_A
Revision 0x06 = ES1371 REV_ES1373_B
Revision 0x07 = ES1371 REV_CT5880_A
Revision 0x02 = CT5880 REV_CT5880_C
Revision 0x03 = CT5880 REV_CT5880_D
Revision 0x04 = CT5880 REV_CT5880_E
Revision 0x09 = ES1371 REV_ES1371_B
Revision 0x00 = EV1938 REV_EV1938_A
Revision 0x08 = ES1371 REV_ES1373_8
</pre>
====1999-2001 via-ac97.audio====
*2021 5.10
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| <!--Description-->694X with 686A KT133 PM133 or 693A with VT8231
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3058
| <!--Revision-->
| <!--Playback-->{{Yes| }} redirects earphones correctly
| <!--Recording-->{{Yes| }}
| <!--Comments-->audio controller works but depends on the underlying invisible codec used see AC97 section
|-
| <!--Description-->686B KT133A with VT8231
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3058
| <!--Revision-->0x50
| <!--Playback-->{{Yes|}} reroutes ear pieces right
| <!--Recording-->{{Yes|}}
| <!--Comments-->audio controller works but depends on the underlying codec used see AC97 section below
|-
| <!--Description-->686C
| <!--Vendor ID-->0x1106
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->untested
|-
| <!--Description-->KM266 or KT266 with VT8233, KT266A with VT8233A, VT8233C
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3059
| <!--Revision-->0x10
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->KM333 KT333 with VT8235
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3059
| <!--Revision-->0x30
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
| <!--Description-->KM400 KT400 with VT8237, KT600 with VT8237R,
| <!--Vendor ID-->0x1106
| <!--Product ID-->0x3059
| <!--Revision-->0x40 0x50 0x60
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
|}
====1998-2003 emu10kx.audio - Creative Labs SoundBlaster Live! and Audigy====
*2021 6.5
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| PCI512 CT4790 (emu10k1)
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested (1st Gen)
|-
| Live CT4620
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Live CT4760
| 0x1102
| 0x0002
| 0x07
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| playback works
|-
| Live Value CT4670
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| works plays stereo (2nd Gen)
|-
| Live Value DELL CT4780
| 0x1102
| 0x0002
| 0x06
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| plays/records stereo - untested 4.1mode
|-
| Live Value Compaq CT4830
| 0x1102
| 0x0002
| 0x0
| <!--Playback--> {{Maybe}}
| <!--Recording--> {{unk}}
| not working
|-
| Live Value CT4831
| 0x1102
| 0x0002
| 0x00
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Live Value CT4832
| 0x1102
| 0x0002
| 0x07
| <!--Playback--> {{yes}}
| <!--Recording--> {{partial|Line-In only}}
| works
|-
| Live Value CT4832
| 0x1102
| 0x0002
| 0x08
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| works
|-
| Live Value HP CT4870
| 0x1102
| 0x0002
|
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| Works
|-
| Live Value Gateway CT4871
| 0x1102
| 0x0002
|
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Live! Platinum 5.1 SB0060
| 0x1102
| 0x0002
| 0x00
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
| plays audio/records, untested 5.1 (3rd Gen)
|-
| Live 5.1 SB0100 -SFF
| 0x1102
| 0x0002
| 0x00
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| works
|-
| Live 5.1 Player SB0220
| 0x1102
| 0x0002
| 0x0a
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
| plays audio/records stereo, untested 5.1
|-
| Live 5.1 Digital SB0228
| 0x1102
| 0x0002
| 0x0a
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
| working
|-
| Audigy SB0090 (emu10k2)
| 0x1102
| 0x0004
|
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| <!--Description-->Audigy SB0230
| <!--Vendor ID-->0x1102
| <!--Product ID-->0x0004
| <!--Revision-->0x03
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Yes|Mic only}}
| <!--Comments-->5th Dec 2012 - untested optical tos link. contains also IEEE1394/Firewire (untested)
|-
| Audigy 2 Platinum 6.1 SB0240 SB0250 EMU10K2.5
| 0x1102
| 0x0004
| 0x04
| <!--Playback--> {{yes}}
| <!--Recording--> {{maybe}}
| works
|-
| Audigy 2 PRO SB0280 EMU10K2.5
| 0x1102
| 0x0004
|
| <!--Playback--> {{unk}}
| <!--Recording--> {{unk}}
| untested
|-
| Audigy 2 ZS SB0350
| 0x1102
| 0x0004
| 0x04
| <!--Playback--> {{yes}}
| <!--Recording--> {{yes}}
|
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| Live 5.1 DELL SB0200 SB0203 emu10kx
| 0x1102
| 0x0006
| 0x0
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
|
|-
| Live 24bit SB0410
| 0x1102
| 0x0007
| 0x
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Live 24bit DELL SB0413
| 0x1102
| 0x0007
| 0x
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy LS SB0310
| 0x1102
| 0x0007
| 0x0
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy SE 7.1 SB0570
| 0x1102
| 0x0007
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 2 ZS SB0320 SB0360 (PRO)
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 2 VALUE SB0400
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 4 VALUE SB0610
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| Audigy 4 PRO SB0380
| 0x1102
| 0x0008
|
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver
|-
| EMU E-MU 0404 PCI (not USB) EM8852
| 0x1102
| 0x000
| 0x0
| <!--Playback-->{{no}}
| <!--Recording-->{{no}}
| no driver but linux support needs firmware
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
the green jack is for the main speaker pair AND headphones, so manual switching will be required
If your card is wired for the "AC97" standard, then it's up to your headphone jack to switch the green speaker output in and out
the headphone jack has Normally-closed contacts that will open on insertion, which breaks the signal path back to the sound card (FP_RETURN)
====2000-2010 cmi8738.audio - C-Media====
*2021 5.20
;Read [http://amigaworld.net/modules/news/article.php?storyid=2512 more] and imported on [http://repo.or.cz/w/AROS.git/commit/aff741d60160c6a9d7d39c9e004a25ea3aa13847 20th July 2011] and [http://alsa.opensrc.org/Cmipci alsa docs].
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| Audiotrak MAYA EX5
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| cmi8738-sx 4ch
| 0x13f6
| 0x0111
| 0x10
| <!--Playback-->
| <!--Recording-->
| untested
|-
| e3dx hsp56 CMedia 8738-sx 4ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| EDio SC3000D 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Genius SoundMaker Value PCI C3DX
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Guillemot Maxi Sound Muse
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Hercules Gamesurround Muse LT
| 0x13f6
| 0x0111
| 0x10
| <!--Playback--> {{yes}}
| <!--Recording--> {{no}}
|
|-
| Hercules Gamesurround Muse XL LT 5.1
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Inno audio extreme 5.1 cmi8738/lx pci 6ch
| 0x13f6
| 0x0111
| 0x
| <!--Playback-->
| <!--Recording-->
| untested
|-
| M-Audio (Midiman) DiO 2448
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Sabrent SBT-SP6C 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| StarTech PCISOUND4CH 8738sx 4ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Sweex SC012 CMI8738-lx 4ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Terratec 5.1 PCI
| 0x13f6
| 0x0111
| 0x10
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Terratec Aureon Fun 5.1
|
|
|
| <!--Playback--> {{yes}}
| <!--Recording--> {{unk}}
| Has SPDIF
|-
| Trust Sound Expert Digital Surround 5.1 (cm8738-mx 6ch)
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Turtle Beach Riviera CMI8738-MX 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| XSonic CMI 8738 6ch
|
|
|
| <!--Playback-->
| <!--Recording-->
| untested
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->CMI8738 6ch PCI-E PCI Express version
| <!--Vendor ID-->0x13f6
| <!--Product ID-->0x0111
| <!--Revision-->0x10
| <!--Playback-->{{Yes|}}
| <!--Recording-->{{Maybe|}}
| <!--Comments-->Chinese based card with playback tested so far
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
====2001-2005 ac97.audio====
*6.4 27-12-2008
The AC97 chips were designed to be pinout interchangeable so that the sound support could change easily and quickly without motherboard redesigns
the green jack is for the main speaker pair AND headphones, so manual switching will be required
If your card is wired for the "AC97" standard, then it's up to your headphone jack to switch the green speaker output in and out, the headphone jack has Normally-closed contacts that will open on insertion, which breaks the signal path back to the sound card (FP_RETURN)
The ProductID and VendorID are for the audio controller only - the important additional codec is '''NOT''' so easily identified.
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| <!--Description-->Avance Logic (now Realtek) ALC100 and ALC101 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->ALC200 and ALC201 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->ALC201A and ALC202 and ALC202A codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->ALC650
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| <!--Comments-->most Nforce2 boards plays audio only - Abit NF7, Asus A7N8X, MSI K7N2, Epox 8RDA+, DFI
|-
| <!--Description-->ALC850 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{No}}
| <!--Comments-->no support for via P4P800 chipset on ASUS A8V-E SE Deluxe mobo - ICaros 1.3
|-
| <!--Description-->Realtek ALC653 codec and ALC655 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested Acorp 7NFU400
|-
| <!--Description-->Realtek ALC658 codec ALC658D
| <!--Vendor ID-->0x8080
| <!--Product ID-->0x24c5
| <!--Revision-->0x0
| <!--Playback-->{{Yes|Prefs Music and Units 0-3 set volume control - playback}}
| <!--Recording-->{{No}}
| <!--Comments-->MSI Motherboard on NB 22-09-2012
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->AD1881 SoundMAX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->Analog Devices first AC97
|-
| <!--Description-->AD1881A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Yes}}
| <!--Revision-->
| <!--Comments-->works with VIA Controller - untested Intel etc
|-
| <!--Description-->AD1881B
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1885 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{No}}
| <!--Comments-->Playback only with issues on D845HV but not working on MS-6367 because Units 0-3 have masked volume control
|-
| <!--Description-->AD1886
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1887
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->ADI AD1888 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{no}}
| <!--Recording-->{{No}}
| <!--Comments--> Icaros 1.51
|-
| <!--Description-->AD1980 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->AD1981A codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested IBM X30
|-
| <!--Description-->Analog Devices SoundMax(TM) AD1981B codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| <!--Comments-->plays back only on IBM T41 Thinkpad
|-
| <!--Description-->AD1985 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{No}}
| <!--Comments-->not working ahi prefs freezes on D865GLC mobo ([http://www.xbitlabs.com/articles/multimedia/display/int-sound2_3.html ]
|-
| <!--Description-->AD1986 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{No}}
| <!--Comments-->untested [http://uk.ts.fujitsu.com/rl/servicesupport/techsupport/Boards/Motherboards/Fujitsu/D1931/D1931.htm D1931] but works (Acer Aspire 3610 laptop)
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->Crystal Semiconductors CS4205, CS4202 codecs
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Cirrus Logic CrystalWare 4236
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->Cirrus Logic CrystalClear SoundFusion CS4297 CS4299 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested IBM T23
|-
| <!--Description-->conexant Cx20468-31 codec (id 30)
| <!--Vendor ID-->0x103c
| <!--Product ID-->0x3085
| <!--Revision-->
| <!--Playback-->{{No|AC97 appears in AHI Prefs}}
| <!--Recording-->{{No}}
| <!--Comments-->Tested AspireOS 1.8 on Gateway W322
|-
| <!--Description-->ESS Technology ES1921 AC'97 2.1
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->CMI 6501 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested on ASROCK SKT-AM2 AM2NF3-VSTA
|-
| <!--Description-->codec CMI9738
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->codec CMI9739
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->C-Media CMI 9739A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments--> untested on EPoX 8RDA3+
|-
| <!--Description-->CMedia CMI 9761A codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested ASRocK K7NF2-RAID
|-
| <!--Description-->C-Media CMI9880
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->National Semi conductor (now TI) LM4540, LM4543, LM4545, LM4546, LM4548, LM4549, LM4550 LM4560
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->STAC9708T codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->SigmaTel (now IDT) C-Major STAC 9460 (D/A only), 9461, 9462, 9463, 9200, 9202, 9250, 9251, 9220, 9221, 9223, 9750
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AKM (Asahi Kasei Microsystems) AK 4540, 4543, 4544A, 4545
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->codec VT1616 (VIA Six-TRAC Vinyl Audio)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->VIA VT1612, VT82C686
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->ESStech ESS ES1968 maestro-2
| <!--Vendor ID-->0x125d
| <!--Product ID-->0x1968
| <!--Revision-->0x
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->ESStech ESS ES1978 maestro2e
| <!--Vendor ID-->0x125d
| <!--Product ID-->0x1978
| <!--Revision-->0x
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->ESStech ESS ES1988 maestro3 allegro-1 codec
| <!--Vendor ID-->0x125d
| <!--Product ID-->0x1988
| <!--Revision-->0x12
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->Yamaha AC97 ymf-743 YMF752 YMF753 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->{{No}}
| <!--Comments-->untested ymf-753
|-
| <!--Description-->YMF724 YMF744 YMF-754 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->{{No}}
| <!--Comments-->untested
|-
| SIS 7018 / Trident 4dwave DX/NX / ALi 5451
| 0x1039 (0x1023 Trident)
| 0x7018 (0x2000 Trident DX) (0x2001 Trident NX)
| 0x02
| <!--Playback-->{{No}}
| <!--Recording-->{{No}}
| no support - introduced early 2000s
|-
| SIS 7012
| 0x1039
| 0x7012
|
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| working through 1 speaker only took over from SIS7018 (2002 onwards)
|-
| <!--Description-->Wolfson (now Cirrus Logic) WM9701, WM9701A (AC'97 1.03 spec), WM9703, WM9704 (AC'97 2.1), WM9705, WM9706, WM9707, WM9708
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->WM9709, WM9710, WM9711, WM9712, WM971
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->first Microsoft(TM) Xbox DAC sound chip (AC Link compliant D/A converter)
|-
| <!--Description-->Wolfson WM9717
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| Parallels
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested
|-
| VirtualBox
|
|
|
| <!--Playback-->{{Yes}}
| <!--Recording-->{{No}}
| working
|-
| VirtualPC
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested
|-
| <!--Description-->Intel 82801AA Proxmox
| <!--Vendor ID-->0x8086
| <!--Product ID-->0x
| <!--Revision-->
| <!--Playback-->{{unk| }}
| <!--Recording-->{{unk| }}
| <!--Comments-->
|-
|}
====2005-20xx HDAUDIO.audio====
*6.36 2025 [https://github.com/aros-development-team/AROS/commit/43b33a9280b10963ca659de2cc3d1cf289b43a87 reset handler]
*6.35 202 []
*6.34 2019 AROS One 1.5 upwards
*6.29 2018
*6.27 2017 update
*6.25 2014 used for most Icaros 2.x
*6.20 July 2012
*6.17 Nov 2011
*6.15 Jun 2011
*[http://www.clusteruk.com/SitePortalPage.aspx?siteid=1&did=109 6.13] Sep 2010
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="5%" |Vendor ID
! width="5%" |Product ID
! width="5%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| <!--Description-->ALC260
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| <!--Description-->ALC262
* ALC262-VD2-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->LQFP-48
|-
| ALC268 codec
| 0x
| 0x
| 0x
| <!--Playback-->{{Yes|Version 6.17 Acer AOA110 and AOA150 netbooks), works (Dell Mini Inspiron 9 and 10v, }}
| <!--Recording-->{{Yes|Version 6.17 remove QUERY and select 'Mic 1' as input. Tested with 6.15 as well using QuickRecord and AE 4.0.23 under Icaros 1.4.}}
| <!--Comments-->AHI UNITS and Music are set to: hdaudio:HiFi 16 bit stereo++ / Frequency 48000 Hz, Volume +0.0 dB. The hdaudio.config in SYS:Prefs/Env-Archive is WITHOUT the QUERY-line. After changing and saving the config-file turn off and start again the computer. Switch from internal loudspeaker to headphone you must turn off the music before plug in the headphone-cable, otherwise there is no output on the socket. Back from line-out to internal speakers it is the same.
|-
| [http://blog.foool.net/wp-content/uploads/linuxdocs/sound.pdf Linux docs ALC269]
* ALC269Q-GR
* ALC269QSRS-GR
* ALC269W-GR
| 0x
| 0x
| 0x
| <!--Playback-->{{Maybe| }}
| <!--Recording-->{{Unk| }}
| <!--Comments-->TQFP 48 pin Power IC Chip From [https://patchwork.kernel.org/project/alsa-devel/patch/1408118123-15849-1-git-send-email-tiwai@suse.de/ ALC269 & co have many vendor-specific setups with COEF verbs, result in the codec stalling]
|-
| [http://www.alsa-project.org/db/?f=0321f8479fd670cd510f9912b1120fe7edcf2e07 ALC269VB]
* ALC269Q-VB5-GR
* ALC269Q-VB6-CG
* ALC269Q-VB6-GR
| 0x10ec
| 0x0269
| 0x100004, 0x100100, 0x100202
| <!--Playback-->{{Maybe|some versions work}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* v1 works Asus eee PC netbook 901/1000HA 1005HA/1008HA, 1001P,
* v2 maybe working Lenovo S9 S10 S10-2 S10-3 under HDAudio version 6.13
* v3 maybe dell wyse 7010
|-
| [http://alsa-project.org/db/?f=9c1746c5957b0ce72ff9cfffa312e97d14baf785 ALC269VC aka ALC3202]
* ALC269Q-VC2-GR
* ALC269Q-VC3-GR
| 0x10ec
| 0x0269
| 0x100203,
| <!--Playback-->{{Maybe|some versions work}}
| <!--Recording-->{{Unk}}
| <!--Comments-->SMT SMD QFN-48 -
* v1 unknown
* v2 unknown
* v3 x230, dell wyse,
|-
| ALC272
* ALC272-VA4-GR
| 0x10ec
| 0x0272
| 0x0
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Unk}}
|
* works Acer AOD150 and Acer AOD250 works [http://amigaworld.net/modules/newbb/viewtopic.php?topic_id=33755&forum=28#616910 Samsung NP-NC10], works Samsung NF210-A02] netbooks,
|-
| <!--Description-->ALC273
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| <!--Description-->ALC270
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC282
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x
| <!--Revision-->
| <!--Playback-->{{No|Version 6.17}}
| <!--Recording-->{{No|Version 6.17}}
| <!--Comments-->needs retest
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC660 ALC660-VD
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes| }}
| <!--Recording-->
| <!--Comments-->
* works asus F9s, F9e
* untested asus w7j, M51SN, A6Tc, A8Sr,
|-
| <!--Description-->ALC661-GR (2011)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| ALC662
| 0x1043
| 0x82a1
| 0x0
| <!--Playback-->{{Yes|Version 6.17 if QUERY added to top of hdaudio.config}}
| <!--Recording-->{{No|Version 6.17 not working for eee pc 900}}
|
* works Asus eee PC netbook 700/701/900, Atom 270 and 330 mobos, odd clicks (D410 NM10 PineTrail),
|-
| <!--Description-->[http://outpost.fr/rmaa/ALC663.htm ALC663]
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0861
| <!--Revision-->
| <!--Playback-->{{No|Version 6.13}}
| <!--Recording-->{{Unk}}
| <!--Comments-->not bad output like headphone amp part of the codec actually works well but messed up by undersized coupling capacitors to actually support such a low impedance
* not working Asus n50vn x71vn,
|-
| <!--Description-->ALC665
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC666
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC667
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC668
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC670
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->ALC880
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->some 915 and 925 chipset mobos
|-
| <!--Description-->ALC882M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| Realtek ALC883 ALC883-GR ALC883D-GR ALC883DTS-GR ALC883DD-GR codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe|some early versions work }}
| <!--Recording-->{{Unk| }}
| 2005 to 2007 HD Audio codec untested (Asus ),
|-
| Codec ALC885
| 0x10ec
| 0x0885
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
|-
| ALC888
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
|
|-
| ALC888s
* ALC888S-VD2-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}} MSI Wind U90/U100,
| <!--Recording-->{{Unk}}
| LQFP-48
|-
| ALC888b
| 0x8086
| 0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| untested (D510 NM10 Dual Core PineTrail mobo),
|-
| ALC888-VD
| 0x8086
| 0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| untested
|-
| ALC889A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes|works if QUERY added to the top of hdaudio.config in Prefs drawer/directory}}
| <!--Recording-->{{Unk}}
|
|-
| ALC889 Gr
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}} with crackles
| <!--Recording-->{{Unk}}
|
|-
| ALC889
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
| Tested with MSI H55 board
|-
| ALC887 ALC887-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
|
* working on ASUS P5KPL/EPU and Gigabyte GA-E350N-Win8 Rev1.0
|-
| ALC887-VD-CG
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0887
| <!--Revision-->0x100302
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}} Subsystem Id: 0x1458a002
|
|-
| ALC887-VD
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0887 0x1458
| <!--Revision-->0xa002
| <!--Playback-->{{Maybe}}
| <!--Recording-->{{Unk}} index = 2
| ALC887 does not have any volume control ability on the mixer NIDs, so put the volume controls on the dac NIDs instead
* working with intermittent corrupting pop popping skipping stuttering sound issues MSI 760GM-P23 (FX),
* not working Gigabyte H61MA-D3V, AT3IONT-I Deluxe,
|-
| ALC887-VD2
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
| 3jacks
|-
| ALC887-VD2-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
|-
| ALC887-
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
|
|-
| ALC892-CG rev
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| 2011 48-pin LQFP Green package -
|-
| ALC892 ALC892-DTS-CG rev
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
| 2009 introduced
* works
* not working
* untested
|-
| ALC892 rev
| <!--Vendor ID-->0x0x10ec
| <!--Product ID-->0x0892
| <!--Revision-->0x100302
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| 2014
|-
| Realtek ALC886-GR
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| LQFP-48
|-
| Codec ALC861 ALC861-VD
| 0x10ec
| <!--Product ID-->0x0663
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
|
* not working Toshiba Tecra A7
|-
| <!--Description-->ALC1200
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| ALC898
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk}}
| not working
|-
| <!--Description-->ALC1500
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC3232 (aka ALC292)
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0292
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC3234 aka ALC255
| <!--Vendor ID-->0x10ec
| <!--Product ID-->0x0255
| <!--Revision-->003
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC3287 aka ALC257
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes| }}
| <!--Recording-->{{no| }}
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->ALC aka ALC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->AD1882
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1883 HD Codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| <!--Description-->AD1884
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Playback-->
| <!--Recording-->
| <!--Revision-->
| <!--Comments-->
|-
| Analog Devices SoundMAX AD1981
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| IBM Thinkpad T60,
|-
| AD1984 hp-m4 codec
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
* audio not working on Lenovo X61, Thinkpad T61,
|-
| AD1986
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
|
|-
| AD1988
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->{{No}}
| <!--Recording-->{{Unk}}
|
|-
| <!--Description-->AD1988A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->Cirrus Logic CS4207
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->
| <!--Recording-->
|
|-
| <!--Description-->Cirrus Logic CS4208
| <!--Vendor ID-->0x0
| <!--Product ID-->0x0
| <!--Revision-->0x0
| <!--Playback-->
| <!--Recording-->
|
|-
| <!--Description-->Conexant CX20549 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Maybe|very very very low volume}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested Fujitsu Amilo SI 1510 1520 no datasheet for the general public
|-
| <!--Description-->Conexant CX20549-12Z codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested HP 530
|-
| <!--Description-->Conexant CX20561 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* working lenovo x200s
* untested Lenovo Essential G555 Notebook, HP Pavilion dv6700,
|-
| <!--Description-->Conexant CX20582 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX2059x CX20590 CX20594-21Z codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX20585 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* working Lenovo Thinkpad T410,
|-
| <!--Description-->Conexant CX20672 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX20671 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX20751-21Z codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes| }}
| <!--Recording-->{{Unk}}
| <!--Comments-->
|-
| <!--Description-->Conexant CX11852 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant CX11880 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->untested
|-
| <!--Description-->Conexant after 2015 up to 2018 CX7501 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{no|no driver codec}}
| <!--Recording-->{{no|no driver codec}}
| <!--Comments-->Conexant bought by synaptics 2019
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->C-Media CMI9880 codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| <!--Comments-->Gigabyte GA-8GPNXP
|-
| <!--Description-->Silicon Labs 3054
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| VIA 1708A
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| untested,
|-
| VIA VT1708B
| <!--Vendor ID-->
| <!--Product ID-->
| 0x0010
| <!--Playback-->{{No|VIA PicoITX}}
| <!--Recording-->{{Unk}}
|
|-
| VIA 1708S
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
|
|-
| <!--Description-->VT2021 10ch
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->Gigabyte Z77MX-D3H, GA-H61M-S2H S2P,
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Creative CA0110-IBG
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->SigmaTel STAC 9220 9221 9223 8ch (7+1)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{Unk| }}
| <!--Recording-->{{Unk| }}
| <!--Comments-->ECS 945GCT/M-1333 (version 3.0),
|-
| IDT SigmaTec [http://explorer.cekli.com/articles/pdf/hd-audio STAC9227] /28/29/30 codec
| <!--Vendor ID-->0x8384
| <!--Product ID-->0x7626
| <!--Revision-->0x0002
| <!--Playback-->{{Yes| }}
| <!--Recording-->{{Unk}}
|
* works HP Compaq mini 110
* untested HP Pavilion HDX9000 CTO Notebook, Intel DG33TL mobo, Dell E520, Intel DP35DP mobo, Dell E6410 Laptop,
|-
| IDT (formerly SigmaTel) IDC STAC 9271/71D
| <!--Vendor ID-->0x8384
| <!--Product ID-->0x7626
| <!--Revision-->0x0002
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
|
|-
| <!--Description-->IDC STAC 9272 9273 9274
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->Intel D5400XS,
|-
| <!--Description-->IDT 92HD73C
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{yes}}
| <!--Recording-->
| <!--Comments-->headphones only Asus AT4NM10 mobo
|-
| <!--Description-->IDT 92HD75B
| <!--Vendor ID-->0x111d
| <!--Product ID-->0x7608
| <!--Revision-->
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Unk}}
| <!--Comments-->
* working [http://koti.kapsi.fi/jvaltane/aros/hdaudio/ HP Compaq Mini 700 Netbook - feedback required]
* untested HP Mini 5103 and 5102, HP Compaq 610, HP ProBook Laptop 4520s 4525s 6450b 6550b 6555b, HP EliteBook 2540p 2740p 8440p, Mobile Workstation 8540w 8740w, Pavilion NoteBook DV8,
|-
| <!--Description-->IDC 92HD81XX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC 92HD83XX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC STAC 92HD89XX
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->IDC
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Wolfson (now Cirrus Logic) WM8850
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Wolfson WM8860
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->Intel High Definition Audio Revision 1.0. - 4-Channel DAC, 4-channel ADC. - DAC sampling
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
Using Prefs/AHI ensure you set the music unit and at least Units 0 (where most audio comes from) in top left drop down menu to HDaudio - HIFI in the section below. Set Units 1 or 2 to microphone or other outputs. Plus allow more than one channel for multiple audio streams and set frequency up to 44 kHz or higher on the right hand side of the ahi prefs. If sound beeps when you press the test button then all should be OK.
Output <- Codec <- Audio Controller (HDA) <-> Computer
codecs and exact hardware identifier. As mentioned above, HDA is only part of the work here, it gets the audio out of the main chipset in digital format (on a bus called I2S). This is not enough, there is another step needed which is routing that I2S signal to the output, converting it to actual audio, amplifying it, etc. This is handled by a separate chip called a "codec". Sometimes it is initialized by the BIOS, but this is not always the case.
Most audio drivers are made up of two parts a [http://www.kernel.org/doc/Documentation/sound/alsa/HD-Audio.txt Controller + a Codec]. The ProductID and VendorID are for the audio controller only - the important additional codec is '''NOT''' so easily identified.
Some newer versions of codecs are missing at the moment.
Things to try if sound not working
* try to connect something to the audio jack, maybe it is not playing on internal speakers or vice versa
* make sure you try and select all music units e.g. unit0, unit1....
* even if PCI ID's are in Prefs/Env-Archive/HDaudio.config, this doesn't mean it is working, it is the codec that matters
* it might be internally muted
<pre>
add debug=memory to grub boot line - continue booting with F10
Open a shell
Tools/Debug/Bifteck > RAM:audio.txt
</pre>
or
<pre>
Open a shell
Tools/Debug/Sashimi > RAM:audio.txt
Run ahi prefs
Click test tone button
Stop sashimi with Ctrl-C
</pre>
If the boot sound is enabled, you have to use Bifteck to capture AHI debug output. In the GRUB menu, press E on your selected entry, then add "debug=memory" to the options (alongside ATA=, vesa= etc.). Then F10 or Ctrl-X to boot. Once booted, run Tools/Debug/Bifteck again.
or
* try adding QUERYD to the start of ENVARC:hdaudio.config file (also known as Prefs/Env-Archive/) ie. on the first line
* '''OR''' try removing QUERY and QUERYD from the start of the hdaudio.config file
* Reboot
* open a shell
* type: sys:tools/debug/sashimi > ram:debug.txt
* open ahi prefs
* select one of the audio modes - HIFI or otherwise
* press the 'test sound' button
* press ctrl-c in the shell
* post the results to Aros-World
The HD Audio standard was designed to be hardware pinout interchangeable so that the sound support could change easily and quickly. HDA is a standard around particular chips. Each kind of chip has a certain number of DACs and pins, and even the same chip could be hooked up in different ways on different motherboards. The chips are programmable and the operating system can adjust how things are routed. Some pins aren’t even hooked up, so it makes no sense to route sound to them. Also some pins have sensors that can tell when something is plugged in, so that for example the speakers in a laptop can be muted when headphones are plugged in. Pins are also grouped, so for example all the outputs for a 5.1 sound system are grouped. Generally the HDA driver in the operating system is supposed to read the pin set up and figure out a reasonable way to set things up, and disconnected pins should be ignored, etc.
HDAudio standard has headphones on a separate DAC, and it's up to the driver.. it can even send different audio to the headphones without interrupting the main (green) outputs
====Envy24 series ====
A little history. VIA bought the ICE created Envy chipsets [http://www.via.com.tw/en/products/audio/controllers/comparison_controller.jsp VT1712] first. A few years later, they created several cheaper variants VT1724 (mixer missing), VT1721 (low end cut down), VT1720 (embedded on motherboard) and lastly the VT1723 (no support apart from Windows Envy24DT like SYBA SD-PEX63034).
There are PCI Express versions appearing.
The Envy24 is the base product that was originally designed by ICEnsemble, and it supports multi-channel hardware mixing, which is great for professional use. The HT version removes the hardware mixer (unimportant for non-professional uses). The [http://www.avsforum.com/t/364771/envy24ht-s-the-definitive-source HT-S] version is almost exactly the same as the HT, it just uses cheaper DACs. The PT version is exactly the same as the HT-S version, it is just the edition used for on-board audio on motherboards.
N.B. [http://www.soundonsound.com/sos/dec04/articles/pcnotes.htm PCI slot identification] and [http://hsi.web.cern.ch/HSI/s-link/devices/s32pci64/slottypes.html 3.3v PCI].
=====[http://www.opensound.com/readme/README.Envy24.html envy24.audio] - [http://www.anime.net/~goemon/alsa/ VT1712] =====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Playback
! Recording
! Comments
|-
| M-Audio Delta 66 - Rev B 1999
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested AK4524VF CS8404A-CS - needs Delta Series break out box with D-sub lead -
|-
| [http://ixbtlabs.com/articles/maudioaudiophile/index.html Audiophile 2496] Rev A 2000
| 0x14
| 0x
|
| <!--Playback-->{{unk| }}
| <!--Recording-->{{unk| }}
| works audio out on - I2S stereo codec AKM AK4528VF with the 24bit/96kHz DAC and ADC; CS8427 digital transceiver
|-
| [http://ixbtlabs.com/articles/maudioaudiophile/index.html Audiophile 2496] Rev B 2003
| 0x14
| 0x
|
| <!--Playback-->{{Yes }}
| <!--Recording-->
| works well - I2S stereo codec AKM AK4528VF with the 24bit/96kHz DAC and ADC; CS8427 digital transceiver
|-
| M-Audio Delta 410 - 2001 2001 REV-B
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested for D-A AK4529VQ converters with CS8427-CS 5532 1158B or Event Echo Gina 20-Bit Multitrack Interface Breakout Box -
|-
| M-Audio Delta 1010
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested AK5383 and AK4393 - 25 pin dsub -
|-
| M-Audio Delta 1010LT 1010E
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested for D-A AK4529 converters with 2 XLR Microphone inputs with pre amps
* be aware of redesign in 2007 - possible issues
|-
| M Audio Delta 44 - Rev A 2002 - Rev B 2003 - Rev D 2003
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested ICE1712G AK4524VF needs breakout box with 15 pin D-sub lead -
|-
| M-Audio Delta 66 Rev E 2006 - Omni Studio
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested needs break out box with 15 pin D-sub lead -
|-
| <!--Description-->M-Audio Delta DiO 2496
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| Terratec EWX24/96
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| [http://ixbtlabs.com/articles2/terratecdmx6fire/index.html TerraTec 6fire DMX 24/96]
| <!--Vendor ID-->0x1412
| <!--Product ID-->0x1712
| <!--Revision-->0x02
| <!--Playback-->{{No|tried line 1-2 3-4 5-6 7-8 }}
| <!--Recording-->{{No| }}
| untested - AKM and codec
|-
| <!--Description-->Terratec EWSA88MT
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| [http://lists.freebsd.org/pipermail/freebsd-multimedia/2007-March/006087.html Audiotrak Prodigy HD2] 24/96
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| Audiotrak (ESI) Maya 1010 1010L
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| EMU 1212M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| EMU 1616M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| untested
|-
| <!--Description-->Terratec EWS 88MT EWS 88D
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Hoontech Soundtrack DSP 24
Soundtrack DSP 24 Value
Soundtrack DSP 24 Media 7.1
Event Electronics EZ8
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Digigram VX442
Lionstracs
Mediastation
Terrasoniq TS 88
Roland/Edirol DA-2496
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
|}
=====envy24ht.audio - VIA VT1724=====
{| class="wikitable sortable" width="90%"
! width="10%" |Description
! width="10%" |Vendor ID
! width="10%" |Product ID
! width="10%" |Revision
! width="10%" |Playback
! width="10%" |Recording
! width="35%" |Comments
|-
| ESI Juli@
| 0x3031
| 0x4553
| 0x0
| <!--Playback-->{{Yes}}
| <!--Recording-->{{Yes}}
| reported working years ago [http://envy24.svobodno.com/ Envy24HT-S] - AKM 4358 DAC - AKM 4114/4112 DIT
|-
| ESI Juli@ Ego Igo rev K
| 0x3031
| 0x
| 0x0
| <!--Playback-->{{Unk}}
| <!--Recording-->{{Unk}}
| AK4358? DAC - AK4114 AK4112 DIT
|-
| [http://ixbtlabs.com/articles2/multimedia/m-audio-revolution51.html M-Audio Revolution 5.1]
| 0x1412
| 0x3631
| 0x0
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| reported working years ago but discontinued - (Envy24GT) - 3ch AKM 4358 DAC - ADC AKM 5365 -
|-
| [http://ixbtlabs.com/articles2/m-audio-revolution71/index.html M-Audio Revolution 7.1] 24/192
| 0x1412
| 0x3630 0x1724
| 0x0
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| not working - illegal semaphore - 6ch ADC AKM AK4355 24-bit 192 kHz - 2ch DAC AKM AK4381 24-bit 192 kHz - ADC AKM AK5380
|-
| Terratec Aureon Sky 5.1
| 0x153b
| 0x1147
| 0x
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - discontinued
|-
| [http://ixbtlabs.com/articles2/terratec-aureon71/index.html Terratec Aureon Space 7.1]
| 0x153b
| 0x1145
| 0x0
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - Wolfson WM8770 DAC, AC'97 codec SigmaTel STAC9744
|-
| Terratec Aureon Universe 7.1
| 0x153b
| 0x1153 (rev x) 0x1724 (rev3)
| 0x0
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| not working - semaphore error on rev 3 - DAC ADC
|-
| Terratec Phase 22
| 0x153b
| 0x1150
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - Envy24HT-S - AK4524
|-
| Terratec Phase 28
| 0x153b
| 0x1149
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| untested - Envy24HT-S - AK4524
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Playback
| Recording
| Revision
| Comments
|-
| Audiotrak (ESI) Prodigy 7.1
| 0x4933
| 0x4553
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - Wolfson WM8770 and AC'97 SigmaTel STAC9744 codec
|-
| Audiotrak (ESI) Prodigy 7.1 LT
| 0x3132
| 0x4154
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver -
|-
| [http://ixbtlabs.com/articles2/sound/audiotrak-prodigy192.html Audiotrak (ESI) Prodigy 192] 24/96
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - STAC9460S codec
|-
| <!--Description-->Echo Layla 24/96
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
| [http://www.bit-tech.net/custompc/labs/80752/hercules-gamesurround-fortissimo-4.html Hercules Gamesurround Fortissimo 4]
|
|
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - Wolfson WM8776 Codec and WM8766 DAC
|-
| [http://ixbtlabs.com/articles2/multimedia/m-audio-audiophile192.html M-Audio Audiophile Delta AP 192k]
| 0x1412
| 0x3632
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver - Stereo ADC AKM AK5385A 24-bit 192 kHZ - 8-channel DAC AKM AK4358 24-bit 192 kHz - AKM 4114/4112 DIT
|-
| ONKYO SE-150PCI
| 0x160b
| 0x0001
|
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| no driver
|-
| <!--Description-->ESI Waveterminal 192x
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
| <!--Description-->Quartet
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments--> - AKM 4114/4112 DIT
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->{{unk}}
| <!--Recording-->{{unk}}
| <!--Comments-->
|-
|}
====hdmiaudio.audio - hdmi no support====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| Playback
| Recording
| Comments
|-
| <!--Description-->ATI R6xx HDMI Audio codec support output
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x9840
| <!--Revision-->
| <!--Playback-->{{No| }}
| <!--Recording-->{{No| }}
| <!--Comments-->Not detected
|-
| <!--Description-->NVidia HDMI
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Intel Series 6 CougarPoint HDMI codec
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->Intel HDMI
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Playback-->
| <!--Recording-->
| <!--Comments-->
|}
[[#top|...to the top]]
===Graphic GFX Chipsets===
[https://gallium.readthedocs.io/en/latest/systems.html PCIe based] graphic chipset is defacto on 64bit AROS and recommended on 32bit.
AGP works on 32bit but faster transfers through the AGP slot are only available on a few supported motherboard chipsets
* Faster AGP Working = SIS 650 board, Intel 865pe AGP slot on MSI 6788-050,
* Not Supported = NForce2 chipsets, most Intel 815/820 chipsets, VIA chipsets, ALi chipsets,
The fallback for all graphics modes is vesa if any native support does not work. There is a choice of very low resolution vga as the last resort
2D tests performed with [http://download.aros3d.org/software/gfxbench.zip gfxbench] in the shell type gfxbench > out.txt (40 seconds blank screen is part of the test), via FreeDoom via limit-removing engine like odamex, chocolate or vanilla doom -timedemo demo1 or doom2 -timedemo demo1, doom.exe -iwad doom2 -file mymap.wad, Duke DNRATE 640x480 windowed
3D tests performed with Demos/Mesa/ , Cube 1080p, Cube 2 windowed not fullscreen 1920 x 1025, Quake3 ~ cl_drawFPS 1, Xonotic , [http://shinh.skr.jp/sdlbench/showtestgl.cgi test gl],
HDMI, DVI and DisplayPort monitors have a native resolution of 480p, 720p, 1080i, 1080p and up
<pre>
HDMI (licensing fee)
1.2 720p res.
1.3 1080 resolution
1.4 4K @ 30Hz
2.0 4K @ 60Hz
2.1 48Gbs for 4K @ 120Hz, 8K @ , VRR, etc
2.2 ultra96
</pre>
<pre>
DisplayPort (VESA introduced)
1.4 4K @ 60Hz
2.1 96Gbs for 4K @ 240Hz, 8K @ 120Hz. MST daisy chain multiple monitors,
</pre>
<pre>
GPMI chinese standard
2.0
</pre>
Might be supported on AROS
*OpenGL4 GPU must have 64-bit floating point FP64 math support, which is a hard requirement for GL 4.0. The max last revision opengl 4.6 (2017) on [https://wiki.gentoo.org/wiki/AMDGPU AMDGPU] RX 5000's / 6000s ([https://forum.batocera.org/d/7491-enable-opengl-46-and-vulkan-for-an-old-radeon-video-card RDNA] and Nvidia RTX might come to AROS) but Intel UHD, Iris Plus or Xe or Arc (will not unless a developer wants the challenge)
*OpenGL3 last revision 3.3 (2011)
Already supported on AROS
*OpenGL2 nvidia-nouveau,
*OpenGL1 intel gma950,
====vga.hidd====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Comments
|-
|
| 0x
| 0x
| 0x0
| Generic VGA Driver, limited to 640x480 in 16 colours - no 3D support
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Comments-->
|-
|}
====vesa.hidd====
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! Comments
|-
|
| 0x
| 0x
| 0x0
| 2D support for VBE1, VBE2 and VBE3 (most cards) - various resolutions and 24bit colour - no 3D support
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--Comments-->
|-
|}
[[#top|...to the top]]
====[[w:en:Intel GMA|Intel GMA]]====
DVI output is not supported at the moment.
If having problems:
* Ensure the latest version is being used.
* Set GMA_MEM to 128 or 256 to test
* Try the FORCEGMA ToolType for 2D, and try the FORCEGALLIUM ToolType for 3D acceleration after 2D is verified to work. ToolTypes should be applied to the Devs/Monitors/IntelGMA monitor icon.
If still having problems:
* At GRUB boot screen edit boot line and add option: debug=memory
* Boot.
* Use shell command: tools/debug/bifteck > RAM:debug.txt
* And post [GMA MONITOR DETECTION] and other related debug lines
{| class="wikitable sortable" width="90%"
! width="5%" |Description
! width="5%" |Vendor ID
! width="5%" |Product ID
! width="3%" |Rev
! width="5%" |2D
! width="5%" |3D
! width="5%" |Analog Output
! width="5%" |Digital Output
! width="5%" |Laptop LCD
! width="30%" |Comments
|-
| 910GL 82910GL GMCH + ICH6
| 0x8086
| 0x2582 0x2592
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| 910GML 82910 GML GMCH + ICH6 Mobile
| 0x8086
| 0x2582 0x2592
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| may need to add forceGMA to grub boot line to work
|-
| 915G 82915G GMCH + ICH6-M
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
|
|-
| 915GL 82915GL GMCH
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
|
|-
| 915GV 82915GV GMCH
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Yes|}}
| <!--3D-->{{No|}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{N/A}}
| HP DC5100 small form factor
|-
| 915GM GMA900
| 0x8086
| 0x
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| tunnel gearbox }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes}}
| asus eee pc 900
|-
| 915GMS
| 0x8086
| 0x
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| tunnel }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes| }}
|
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| [http://www.notebookcheck.net/Intel-Graphics-Media-Accelerator-950.2177.0.html 945GU] - 133 MHz (Lake port for Intel A100 and A110)
| 0x8086
| 0x2772
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| Fujitsu LifeBook U1010,
|-
| 945GMS - 166 MHz / 250 MHz (1.05V)
| 0x8086
| 0x27a2
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Unk| }}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes}}
| Dell D430
|-
| 945GSE - 166 MHz (for Atom)
| 0x8086
| 0x27ae
| 0x0
| <!--2D--> {{Yes| }}
| <!--3D--> {{Yes|[http://www.x.org/wiki/GalliumStatus]}}
| {{Yes}}
| {{No|dvi port}}
| {{Yes| }}
| for atom motherboards and most 2008/2009 netbooks
* 3D Works - AOA110 AOA150, Dell Mini 9, Samsung NC10, Toshiba NB100,
|-
| 945G 82945G GMCH + ICH7
| 0x8086
| 0x27a6
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| untested 2D and 3D
|-
| 945GC 82945GC MCH
| 0x8086
| 0x27a6
| 0x0
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| untested 2D and 3D
|-
| 945PM
| 0x8086
| 0x
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
| Dell D420, Compaq nc6400,
|-
| 945GMS - 250 MHz Calistoga
| 0x8086
| 0x
| 0x0
| <!--2D--> {{Yes}}
| <!--3D--> {{Yes|most models}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->{{Yes}}
|
* 3D Works Dell Latitude 2100, HP Compaq nc6320, Lenovo 3000, Lenovo T60, Samsung Q35, Dell D620, Dell D820,
* 3D untested Toshiba Satellite L100-120, Toshiba Portege M400,
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Unk}}
| <!--3D-->{{Unk}}
| <!--Analogue Output-->
| <!--Digital Output-->
| <!--Laptop LCD-->
|
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GMA 3100 G31
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works 2D but no 3D
|-
| GMA 3100 G33
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works 2D but no 3D
|-
| [http://en.wikipedia.org/wiki/Intel_GMA GMA 3150] netbooks and nettops
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works 2D but no 3D. no vga, dvi or hdmi output for nettops
|-
| <!--Description--> G965
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments-->
|-
| <!--Description--> Q965
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x2992
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{No}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments--> Only tested with VGA output.
|-
| 965GM X3100 (500 MHz)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| some support 2D but no hardware 3D - could not get it to work with VGA or dvi output
* untested Apple MacBook Air, Lenovo Thinkpad X300, Dell Inspiron 1525, Toshiba M9,
|-
| 960GM X3100 (400 MHz)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
|
|-
| 965M X3100 (400 MHz)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| Dell D830,
|-
| 965PM ??
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| Toshiba A9 works with limited 2D acceleration but no hardware 3D
|-
| GL965
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works with limited 2D acceleration but no hardware 3D
|-
| GM965
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works with limited 2D acceleration but no hardware 3D
|-
| GMA X3500 G35
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->X4500M G41 G43 G45 (400Mhz) Mobile 4 Series
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x2a42 0x2a43
| <!--Revision-->0x07
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue--> {{No|}}
| <!--Digital--> {{No|}}
| <!--Laptop LCD--> {{Yes| VESA}}
| <!--Comments-->works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->GMA 4500M HD (533 MHz)
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments-->works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->GMA 4700M HD (640MHZ)
| <!--Vendor ID--> 0x8086
| <!--Product ID--> 0x2a42
| <!--Revision-->
| <!--2D-->{{Maybe|}}
| <!--3D-->{{No|}}
| <!--Analogue-->{{Unk}}
| <!--Digital-->{{Unk}}
| <!--Laptop LCD-->{{Unk}}
| <!--Comments-->works with limited 2D acceleration but no hardware 3D
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
====[http://nouveau.freedesktop.org/wiki/FeatureMatrix nouveau].hidd (nvidia pci, agp, pci-e desktop)====
PCIe based nvidia graphics (gfx 8xxx) are the base level for 64bit AROS but earlier models still has some support on 32bit AROS
*Desktop, more likely hit rather than miss on early nvidia on Aros 32bit but on Aros 64bit ...
*Laptop, limited support for '''very''' early non-optimus (i.e. just Nvidia gfx only so no Intel and nvidia gfx combinations on 32bit but on 64bit ...)
Please note that the nouveau project is reverse engineering a nvidia graphics driver but takes time because of [https://nouveau.freedesktop.org/ nVidia's closed firmwares], etc
* 2026-06 - DEVS Nouveau.hidd Gallium.hidd Softpipe - LIBS Gallium GLU 20.0 Mesa OpenCL
* 2011-10 - DEVS 6.11 Nouveau.hidd 7.4 Gallium.hidd 9.4 Softpipe - LIBS 2.3 Gallium 1.3 GLU 19.0 Mesa OpenCL 1.x
* 2011-04 - DEVS 5.31 Nouveau.hidd 7.3 Gallium.hidd 9.3 Softpipe - LIBS 2.2 Gallium 1.1 GLU 18.0 Mesa OpenCL n/a
Nouveau support for AROS is limited to OpenGL 2.1 compliance on 32bit even for modern GL4 capable GPUs but on 64bit ...
On Aros 32bit OpenCL supports the NV50 (8000 9000) cards, less support in NVC0 fermi cards (300 upwards)
On Aros 64bit
ADoom3 graphic details ultra, benchmark while playing press the "`" key and type "Timedemo demo1" in the console
{| class="wikitable sortable" width="90%"
! width="5%" | Graphic Card
! width="5%" | Aros 32bit 1024 x 768
! width="5%" | Aros 32bit 800 x 600
! width="5%" | Aros 32bit 640 x 480
! width="5%" | Aros 64bit 1024 x 768
! width="5%" | Aros 64bit 800 x 600
! width="5%" | Aros 64bit 640 x 480
|-
| NV50 Asus EN8400GS SILENT/P/512M PCIe (G98) || || || || || ||
|-
| Gigabyte 8500GT 256M || 42,6 || 57,2 || 68,6 || || ||
|-
| NV96 (G96) Geforce 9500GT 512M || 43 || 53 || 57 || || ||
|-
| NV96 (G96) 9600GT || || || || || ||
|-
| NVA3 (GT215) GT240 || || || || || ||
|-
| NVA5 (GT216) Palit GT220 Sonic 512M || 39,7 || 55,8 || 63,7 || || ||
|-
| NVA8 (GT218) gt210 || || || || || ||
|-
| NVA8 (GT218) ION2 || 38,4 || 53,9 || 61,7 || Not Detected || Not Detected || Not Detected
|-
| NVC3 (GF106) GT440 GTS 450 || || || || || ||
|-
| NVCF (GF116) NVC0 Fermi GTX 550Ti or GTS 450 v2 || || || || || ||
|-
| NVC8 (GF110) 580GTX || N/A || N/A || N/A || || ||
|-
| NVE0 Kepler GT630 || N/A || N/A || N/A || || ||
|-
| NVE6 (GK106) Kepler GTX660 || N/A || N/A || N/A || || ||
|-
| NVE7 (GK107) GTX 650 || N/A || N/A || N/A || || ||
|-
| NV110 Maxwell GTX 750 || N/A || N/A || N/A || || ||
|-
| NV126 (GM206) GTX950 upwards no reclocking || N/A || N/A || N/A || poor || poor || poor
|-
| NV160 family (Turing) GTX 1650 and RTX 2000 upwards with GSP firmware || N/A || N/A || N/A || unknown || unknown || unknown
|-
| HostGL Ryzen 5 4600H - Nvidia 1650 - Linux mint 21.1 || N/A || N/A || N/A || 150fps || 154fps || 155fps
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| width="5%" | Graphic Card
| width="5%" | Aros 32bit 1024 x 768
| width="5%" | Aros 32bit 800 x 600
| width="5%" | Aros 32bit 640 x 480
| width="5%" | Aros 64bit 1024 x 768
| width="5%" | Aros 64bit 800 x 600
| width="5%" | Aros 64bit 640 x 480
|}
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|-
| <!--Description-->tnt1 (nv04) tnt2 (nv05) m64 value (1998)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|very slow}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| NV04 Riva TNT TNT2 Fahrenheit freezes on via motherboard chipset so rename agp.hidd in SYS:Devs/Drivers or Monitors
|-
| <!--Description-->tnt vanta lt (nv06) 1998 /9
| 0x10de
| 0x002c
| 0x15
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|slow}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| <!--Description-->Geforce 256 (nv10) (2000)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|slow }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| untested Geforce256
|-
| <!--Description-->Geforce 2 Geforce 3 Geforce 4 (nv20) 2000 / 2
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{No|slow }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| works for some PCI and AGP Geforce2 Geforce3 Geforce4
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| Geforce FX5200 nv34 (2003)
| 0x10DE
| 0x0322 0x
| 0xA1
| <!--2D-->{{Maybe| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->{{Maybe|VGA15 }}
| <!--Digital-->{{Maybe|DVI}}
| <!--Laptop LCD-->{{N/A}}
| NV30 GeForce 5 FX Rankine Hardware OpenGL 1.5 - slower than GF MX 4000 for 2D - max 1024 x768
* not working [https://eab.abime.net/showthread.php?t=92328&page=8 mobos with VIA chipsets 2018]
* working (MSI 0x9174) the previous nouveau 5.x driver
* Others work with 6.x series XFX PV-T34K-NA, ASUS V9520-X/TD
|-
| Geforce FX5500 (nv34) (2003)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{Maybe| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| works
|-
| Geforce 5100 (NV34)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce FX 5200LE (NV34)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5200 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce FX5600 (nv31) (2004)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Maybe| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| works
|-
| GeForce FX 5600 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5600SE
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5600XT
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce FX5700 (nv36) (2004)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes|some}}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{Maybe| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5700VE
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5700 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5700LE
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5800 (NV30)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5800 Ultra (NV30)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900 (NV35)
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900XT
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5900ZT
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce FX 5950 Ultra
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce 5xxx
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
|
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| Geforce 6200 (nv44) (2005)
| 0x
| 0x00F3 0x014F
| 0x0
| <!--2D-->{{Yes|5.28 Pixel Text}}
| <!--3D-->{{Maybe| use 5.28}}
| <!--Analogue-->{{Yes|VGA15 and s-video - plain 4pin cable lead will work with 7pin}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| NV40 GeForce 6 GeForce 7 Curie AGP Hardware OpenGL 2.1 needing previous 5.x version as regression arose 2011-10
|-
| Geforce 6200 (nv44a) (2006)
| 0x
| 0x0221
| 0x0
| <!--2D-->{{Yes|5.28 Pixel Text }}
| <!--3D-->{{Yes|}}
| <!--Analogue-->{{Yes|VGA15}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| Hardware OpenGL 2.1, PCI version tested OK in 2014-01-02 - Icaros 1.5.2
* not working
*working
|-
| GeForce 6200 with Turbo Cache (NV43)
| 0x
| 0x0161
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
|
|-
| GeForce 6200SE with Turbo Cache (NV44)
| 0x
| 0x0162
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
|
|-
| Geforce 6200 LE
| 0x10de
| 0x0163
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| PCI-E
|-
| GeForce 6600 LE
| 0x
| 0x00F4 0x0142
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6600
| 0x
| 0x00F2 0x0141
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| 2006 PureVideo HD 1 or VP1 re-used the MPEG-1/MPEG-2 decoding pipeline from FX
|-
| Geforce 6600gt (nv4x) (2005)
| 0x
| 0x00F1 0x0140
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Yes| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| OpenGL tests -
|-
| Geforce 6800 (nv40) (2005)
| 0x
| 0x0041 0x00C1 0x00F0 0x0211
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Yes| }}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 XE (NV4x)
| 0x
| 0x0043
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 LE
| 0x
| 0x0042 0x00C2 0x0212
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 GT (quadro fx 1400)
| 0x
| 0x0045 0x0046 0x0215
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 6800 GS
| 0x
| 0x0047 0x00C0 0x00F6
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6800 GTS NV40
| 0x
| 0x0040 0x0F9
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 6800XT
| 0x
| 0x0044 0x0048 0x00C3 0x0218
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6600 VE
| 0x
| 0x0143
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6500 NV44
| 0x
| 0x0160
| 0x0
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6250
| 0x
| 0x0169
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 6xxx
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GeForce 7800 GTX
| 0x
| 0x0090 0x0091
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| tunnel gearbox cube cube2 25}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> 256MB DDR3 - 1 6pin psu connector -
* not working asus en7800gtx/2dhtv/256m/osp/a -
* Works XFX PV-T70F-UDD7 Works in steve jones' scrap pc aros build 2010 2 DVI-I ports
* Untested
|-
| GeForce 7800 GT
| 0x
| 0x0092
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7600gt (G8 ) (nv4 ) (2006)
| 0x
| 0x02E0 0x0391
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL 2.1
* not working
* working
|-
| GeForce 7800 SLI
| 0x
| 0x0095
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GTX
| 0x
| 0x0290
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GT GTO
| 0x
| 0x0291
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GS
| 0x10de
| 0x0292
| 0x0a1
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working
* Works with a few glitches with XFX Pine 0x2218
|-
| GeForce 7950 GX2
| 0x10de
| 0x0293 0x0294
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| GeForce 7950 GT
| 0x
| 0x0295 0x02E4
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7900 GS
| 0x
| 0x02E3
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7600 GS
| 0x
| 0x02E1 0x0392
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7650 GS
| 0x
| 0x0390
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7600 LE
| 0x
| 0x0394
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7800GS (G8 ) (nv4 ) (2006)
| 0x
| 0x0093 0x00F5
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working
* works if AGP motherboard chipset is supported - Hardware OpenGL 2.1
|-
| GeForce 7100 GS
| 0x
| 0x016A
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7350 LE
| 0x
| 0x01D0
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7300le (G8 ) (nv4 ) (2006)
| 0x
| 0x01D1
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7300SE 7200GSGF-7200GS-N-B1 variant (G72)
| 0x10de
| 0x01D3
| 0x0a1
| <!--2D-->
| <!--3D-->
| <!--Analogue-->{{Unk|1x DVI, 1x VGA, 1x S-Video}}
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2007 40W pci-e 1.0 VP1 no unified shaders -
* not working Asus on via chipset (2015),
* works Asus on intel chipset (2015),
|-
| Geforce 7300gt (G8 ) (nv4 ) (2006)
| 0x
| 0x0395 0x0393
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working
* works
|-
| GeForce 7300 GS
| 0x
| 0x01DF
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 7500 LE
| 0x
| 0x01DD
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| Geforce 7xxx
| 0x
| 0x
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GeForce 8800 Ultra (NV50 family)
| 0x
| 0x0194
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NV50 GeForce 8 to GeForce 200s opengl 3.x - max res - 80nm technology - PureVideo HD 2 or VP2 Nvidia VDPAU Feature Set A (absent from ultra and some 8800gt?) added a dedicated bitstream processor (BSP) and enhanced video processor for H.264, VC-1 acceleration
|-
| Geforce 8800gts (nv50) (G8x) (2007)
| 0x
| 0x0400 0x0600 0x0193
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2007 200w openGL3 openCL - 2x6pin psu
* not working 0x0193 models (2015) on via chipsets,
* works
|-
| Geforce 8800gtx (nv5 ) (G8x) (2007)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2008 200W 1x 6pin connector,
* not working
* working
* untested XFX PV-T88P-YDF4, Alpha Dog Edition runs extremely hot - Gigabyte GV-NX88T512H,
|-
| GeForce 8800 GT
| 0x
| 0x0602 0x0611 0x0193
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes}}
| <!--Analogue-->
| <!--Digital-->DVI up to 2500 x 1600
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - 6pin psu power connector required
* not working
* untested Asus EN8800GT/HTDP/256M EN8800GT/HTDP/512M EN8800GT/G/HTDP/512M
* works
|-
| GeForce 8800 GT (G92)
| 0x10de
| 0x0611
| 0x0a2
| <!--2D-->{{Yes|6.11 Pixel Text}}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{N/A}}
| <!--Digital-->{{Yes}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3 pci-e 2.0 8800GT 512MB on Icaros 2.0.3 [[File:8800GT aros heads.png|thumb|8800GT]] [[File:8800GT aros tails.png|thumb|8800GT detail]]
|-
| Geforce 8600gt (nv5 ) (G8x) (2007)
| 0x
| 0x0401 0x0402
| 0x0
| <!--2D-->{{Yes|Pixel Text}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res
* not working
* works
|-
| GeForce 8500 GT
| 0x
| 0x0421
| 0x0
| <!--2D-->{{Yes| some color }}
| <!--3D-->{{yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL tests - max opengl 3.x but 2.1 offered - max res
* not working
* works Gigabyte 8500 GT,
|-
| GeForce 8800 GS
| 0x
| 0x0606 0x060D
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res
|-
| GeForce 8600GS
| 0x
| 0x0403
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 3.x VP3 offers complete hardware-decoding for all 3 video codecs of the Blu-ray Disc format: MPEG-2, VC-1, and H.264 - Nvidia VDPAU Feature Set B
|-
| GeForce 8300 GS
| 0x
| 0x0423
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res
|-
| Geforce 8400gs G98GS (end 2007) GT218 (2009)
* Rev2 with 8/16 cores and 128-512MB of DDR2 or GDDR3 memory.
* Rev3 with 8 cores and 512MB-1GB of DDR3 memory (based on Tesla 2.0)
| 0x
| 0x0424 0x0422
| 0x0
| <!--2D-->{{Yes|Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 490 gearbox 505 Cube 135 Cube2 55 quake3 }}
| <!--Analogue-->{{Yes|works digital part of DVI but nothing from any display port}}
| <!--Digital-->{{Yes|output on digital 24 pin array of DDWG's DVI and hdmi}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 50W openGL 3.1 openCL - case single slot - one single-link DVI digital output, supporting up to one 1920x1080 resolution display - analog resolution 640 x 480 to 1024 x 768 16 and 24 bit color - [http://www.phoronix.com/scan.php?page=article&item=nouveau_comp_2011&num=19 runs a little hotter than expected] - G98 VP3 pci-e 2.0 512MB DDR2 -
* not working
* works Asus EN8400GS SILENT/P/512M PCIe (G98),
|-
| Geforce 8400gs (nv50) (G86) (mid-2007)
* Rev1 with 16 cores / 256MB of DDR2 memory.
| 0x
| 0x0404
| 0x0
| <!--2D-->{{Yes|Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 490 gearbox 505 Cube 135 Cube2 55 quake3 }}
| <!--Analogue-->{{Yes|works but not tested thru 4 pins of analog signal of DVI plug}}
| <!--Digital-->{{Yes|output on digital 24 pin array of DDWG's DVI and hdmi}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2008 50W openGL 3.1 openCL - case single slot - one single-link DVI digital output up to 1920x1080 resolution display - analog resolution 640 x 480 to 1024 x 768 16 and 24 bit color - [http://www.phoronix.com/scan.php?page=article&item=nouveau_comp_2011&num=19 runs a little hotter than expected] - G86 VP2 128MB -
* not working XFX PV-T86S-YAJG NVIDIA GeForce 8400 GS 512MB DDR2, Sparkle 8400GS 512MB SX84GS512D2L-DPP,
* works Asus EN8400GS SILENT/HTP/256M SILENT/HTP/512M/A,
|-
| GeForce 8400 SE
| 0x
| 0x0420
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 2.x openCL
|-
| NVidia Quadro NVS290 DMS-59
| 0x
| 0x0403
| 0x0
| <!--2D-->{{no| }}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk|DMS-59 socket}}
| <!--Digital-->{{unk|DMS-59 }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2008 21W - G86S (G86-827-A2) - 16 shading units, 8 texture mapping units, and 4 ROPs. NVIDIA has paired 256 MB DDR2 - PCIe 1.0 x16 Low Profile -
|-
| Geforce Quadro FX 4600 (SDI), 5600
| 0x
| 0x
| 0x0
| <!--2D-->{{Partial|VESA 2d}}
| <!--3D-->{{no| }}
| <!--Analogue-->{{partial| }}
| <!--Digital-->{{partial| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| GeForce 9800 GX2 (NV50 family)
| 0x
| 0x0604
| 0x0
| <!--2D-->{{Partial|VESA }}
| <!--3D-->{{no| }}
| <!--Analogue-->{{Partial| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 150w - 65nm technology
|-
| GeForce 9800 GTX
| 0x10de
| 0x0612
| 0x0a2
| <!--2D-->{{Yes| }}
| <!--3D-->{{Maybe|6.11 }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 2x6pin psu -
* not working xfx on via chipset (2015),
* works xfx on chipset intel ,
|-
| GeForce 9800 GTX+
| 0x10de
| 0x0613
| 0x0
| <!--2D-->{{Yes| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res 2560 x 1920 - case dual slot - 26amp 12v rail on computer psu if 2x6pin connectors needed - 55nm version of the G92 chip - will not work with PCI-e 1.0a slots -
* not working
* works on a few models
|-
| Geforce 9800gt (nv50) (G92a) (2008)
| 0x10de
| 0x0614
| 0x0xa2
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel 495 gearbox 513 Cube 156 Cube2 120 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{partial| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL 3.1 openCL 1.x - case dual slot - 600w 26amp on both 12v rails for 2x6pin psu on gfx card - no fan control - some come with 1x6pin - renamed version of the venerable GeForce 8800 GT - randomly works
* not working Gainward 512M untested
* working Gainward CardExpert (0x0401) Green Edition NE39800TFHD02-PM8D92 1024MB (no 6pin)
|-
| Geforce gf9600 9600gt (nv5 ) (G9x) (2008)
| 0x10de
| 0x0622
| 0x0a1
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel 493 gearbox 675 Cube Cube2 100 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> OpenGL 3.2 openCL but no fan control - case dual slot - 1 6pin pcie psu connector - 500 Watt or greater power supply with a minimum of 26 Amp on the +12 volt rail - Max Analog: 2048x1536 and Max Digital: 2560x1600 (Dual Link DVI Only) - PCI Express® 2.0 / 1.1 Support - g96 gpu randomly works -
* not working bfg tech ocx,
* works gigabyte gv-n96tsl-512i -
|-
| Geforce gf9500 9500gt (nv5 ) (G9x) (2008)
| 0x10de
| 0x0640
| 0x0a1
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel 480 gearbox 500 Cube Cube2 64 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.2 - case single slot - 350 Watt/400 Watt or greater power supply with a minimum of 18 Amp/22 Amp on the +12 volt rail - Max Analog: 2048x1536 and Max Digital: 2560x1600 (Dual Link DVI Only) - PCI Express® 2.0 / 1.1 Support -
* not working zotac zone fanless, Gainward USA NE29500THHD01-PM8796, PNY G9500GN2E50X+0TE,
* works xfx xne-9500t-td01-pm8596 1024mb ddr2,
|-
| GeForce 9600 GS
| 0x
| 0x0623
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res - will not work with PCI-e 1.0a slots -
* not working
* works
|-
| GeForce 9600 GSO
| 0x
| 0x0610
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res - G92 chopped down - 9600GSO is re-badged 8800GS both very power hungry cards -
|-
| GeForce 9300 GS
| 0x
| 0x06E1
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 opengl 3.x - max res
|-
| Geforce 9400 GT (nv5 ) (G86S) (2008)
| 0x
| 0x
| 0x0
| <!--2D-->{{partial|}}
| <!--3D-->{{unk|}}
| <!--Analogue-->{{unk|1x DVI, 1x VGA, 1x S-Video}}
| <!--Digital-->{{unk|1x DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 50W opengl 3.x - max res
|-
| Geforce 9xxx (nv5 ) (G9x) (2008)
| 0x
| 0x
| 0x0
| <!--2D-->{{unk|}}
| <!--3D-->{{unk|}}
| <!--Analogue-->{{unk|}}
| <!--Digital-->{{unk|}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 opengl 3.x - max res
|-
| <!--Description-->Quadro FX 580 G96 chipset
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2009
|-
| <!--Description-->
NV84 (G84) GeForce 8600 (GT, GTS, M GT, M GS), 8700M GT,
NV92 (G92) GeForce 8800 (GT, GS, GTS 512, M GTS, M GTX)
GeForce 9600 GSO, 9800 (GT, GTX, GTX+, GX2, M GT, M GTX)
NV96 (G96) GeForce 9400 GT, 9500 (GT, M G), 9600 (M GS, M GT),
NV86 (G86) GeForce 8300 GS, 8400 (GS, M G, M GS, M GT), 8500 GT
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NVA0 (GT200) Tesla GeForce GTX (260, 275, 280, 285, 295)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->GeForce GTX 280 (NV50 family)
| <!--Vendor ID-->
| <!--Product ID-->0x05E1
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> opengl 3.x - max res PureVideo HD 4 (Nvidia Feature Set C or "VDPAU Feature Set C), VP4 added hardware to offload MPEG-4 Advanced Simple Profile (original DivX and Xvid)
|-
| <!--Description-->GeForce GTX 260
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x05E2
| <!--Revision-->
| <!--2D-->{{partial|Vesa}}
| <!--3D-->{{no| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> 2 6pin - psu pci express 2.1 -
|-
| Geforce GTS250 250GTS (g92b) (2009)
| 0x10de
| 0x0615
| 0x0a2
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 486 gearbox 508-642 Cube Cube2 80 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes| DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> 2x6pin psu VP2 - pci-e 2.x - case dual slots - 738m 1gb ddr3 -
* not working Zotac branded version GDDR3 -
* works PNY gs-250x-zdfl and Gigabyte ??, BFG Tech RGTS2501024OCE, palit ne3ts250fhd52-pm8a92 with 2x6pin on top and hdmi output port,
|-
| <!--Description-->GeForce GT 240 (GT215 family)
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0ca3
| <!--Revision-->0xa2
| <!--2D-->{{Maybe|use VESA}}
| <!--3D-->{{No|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->late 2009 openGl 3.2 - case dual slots - no 6pin psu required with VP4 - All are pcie 2.1 cards and may not work in 1.0a slots -
* not working
* DDR3 with 512MB or 1GB -
* DDR5 -Asus ENGT240 - XFX Pine GT240XYHFC 0x3001 - Gigabyte GV-N240D5-512I rev 1.0 - Zotac AMP! with HDMI 1.3a with DisplayPort 1.1, Dual Link DVI -
* works
|-
| <!--Description-->GT220 (GT216) G220
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0a20
| <!--Revision-->0xa2
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes}}
| <!--Analogue-->{{Yes}}
| <!--Digital-->{{Yes|DVI }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> Icaros 2.0.3 GeForce GT220 1GB[[File:GT220 aros heads.png|thumb|GT220]][[File:GT220 aros tails.png|thumb|GT220]]
* untested NVIDIA Quadro® 400 512MB DDR3 GT216 DP DVI, AFox AF220 1Gb DDR3,
|-
| Geforce GT220 220GT G94 Tesla (g92b)
| 0x10de
| 0x0a20
| 0xa2
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Yes| tunnel 490 gearbox 505 cube 150 cube2 50 Quake3 }}
| <!--Analogue-->{{Unk|1x DVI, 1x VGA}}
| <!--Digital-->{{Yes|DVI but not 1x HDMI }}
| <!--Laptop LCD-->{{N/A}}
| 58W pci express 2.0 cards DDR3 - case single slot -
* not working ASUS ENGT220/DI/1GD2(LP)/V2 -
* works - gainward card expert 0x0401 GDDr3 512MB -
|-
| <!--Description-->GT210 GT 210 210GT G210 based on Tesla 2.0 GT218S GT218-300-A2 variant, GT218-300-B1
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0a65
| <!--Revision-->0xa2
| <!--2D-->{{Yes|6.11 Pixel Text}}
| <!--3D-->{{Yes| }}
| <!--Analogue-->{{Unk|1x DVI, 1x VGA}}
| <!--Digital-->{{Maybe|DVI out works but not hdmi or 1x DisplayPort}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 31W OpenGL 3.3 pci-e 2.0 cards - single slot -
* working GT218 based Asus EN210 based silent low profile large passively cooled -
* untested MSI GeForce 210 1GB DDR3 PCIe N210-MD1GD3H/LP,
* not working
|-
| <!--Description-->Nvidia ION2 (GT218) Tesla
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2012
|-
| <!--Description-->Quadro NVS 295 (256 MB GDDR3), NVS 450 (256M/512 MB DDR3)
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x
| <!--Revision-->
| <!--2D-->{{yes| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->
| <!--Digital-->{{partial|2 or 4 dp ports}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 25w low performance - G98s with 8 shading units, 4 texture mapping units, and 4 ROPs on PCI-Express 1.0 x16 -
*not working some NVIDIA Quadro NVS 295 2 dp ports (DELL, HP),
*working
|-
| <!--Description-->GT310 Tesla 310, 315, GT 320, GT 330 GT 340
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{Maybe|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2010 50w OpenGL 3.3 openCL all similar in performance to GT2xx except gt31x (poor)
|-
| <!--Description-->Quadro NVS310 NVIDIA NVS 310
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital--> 2 dp
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 25w GF119S (GF119-825-A1) 48 shading units, 8 texture mapping units, and 4 ROPs on PCI-Express 2.0 x16 - 512 MB DDR3 - PureVideo VP5 VDPAU Feature Set D -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description--> GTX 470, GTX 480 GF10 GF10* core (NVC0 family)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{Maybe| tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2010 215w 2x6 plugs - NVC0 family (Fermi) GF100 (GF100-275-A3) Fermi 448 shading units, 56 texture mapping units, and 40 ROPs with 1,280 MB GDDR5 - OpenGL4.5 OpenCL1.1 Tessellation - case dual slots -
|-
| Geforce GTX460 460GTX (G104) 256bit, 1GB v2 192bit and GTX 465
| 0x10de
| 0x0e22
| 0xa1
| <!--2D-->{{Maybe|VESA }}
| <!--3D-->{{Maybe| tunnel gearbox cube 055-111 cube2 50}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVC0 family (Fermi) OpenGL 4.x but - 2x6pin psu - case dual slots -
* not working evga 768MB GDDR5 192bit 01G-P3-1373-ER or 01G-P3-1372-TR
* works 1GB GDDR5 256bit 01G-P3-1371-ER
|-
| <!--Description-->Geforce GTX 460SE 192bit
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x0e23
| <!--Revision-->0x91 or 0xa1
| <!--2D-->{{Yes| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->{{Yes| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> nouveau 6.11 - 2 6pin psu needed - case dual slots -
* not working
* works EVGA 01g-p3-1366-b6 et 1024MB p1041 -
|-
| Geforce GT450 GTS450 450GTS GF106
| 0x10de
| 0x0dc4
| 0x0a1
| <!--2D-->{{Yes| Doom Doom2 Duke }}
| <!--3D-->{{Maybe| tunnel gearbox cube cube2 50 Quake3 }}
| <!--Analogue-->
| <!--Digital-->{{Yes|DVI }}
| <!--Laptop LCD-->{{N/A}}
| 2010 Hardware OpenGL 4.2 but nouveau at 3.3 - most need 1x 6pin psu - case dual slots -
* not working
* DDR3 1 or 2GB - Palit NEAS450NHD41F,
* GDDR5 512Mb or 1GB - MSI MPN N450GTSM2D1GD5OC, Asus MPN ENGTS450DI1GD5,
* works Gainward Card Expert NE5S4500FHd51,
|-
| <!--Description-->GT 440 GF108 chipset or better OEM GF106
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 6.11 Pixel Text}}
| <!--3D-->{{Maybe| tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGl 4.1 opencl 1.x - no 6 pin psu - 96 cuda cores 128bit - case dual slots -
* not working
* OEM
* GDDR5 512MB to 1GB ASUSTeK ENGT440/DI/1GD5
* GDDR3 Asus 1gb to 2gb,
* works
|-
| <!--Description-->GT430 430GT (GF108)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|6.11 Pixel Text}}
| <!--3D-->{{Maybe|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->ddr3 memory 64bit or 128bit - buggy await new revision of driver
* not working
* works
|-
| <!--Description-->nVidia Quadro FX1800 768MB GDDR3 Full Height Graphics Card Workstation
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 6.11 Pixel Text}}
| <!--3D-->{{no|6.11 tunnel gearbox}}
| <!--Analogue-->
| <!--Digital-->{{Maybe|DVI-I 2xDP}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->59W 768 MB GDDR3 memory using a 192-bit memory interface - OpenGL 3.3 -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GTX 590 Fermi
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->OpenGL4.4 OpenCL 1.1 - GDDR5 - 6pin and 8pin psu connectors - 512 cuda - case dual slots -
* not working
* works
|-
| <!--Description-->GTX 580,
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->PureVideo HD 5" or "VP5" (Nvidia Feature Set D or VDPAU Feature Set D) 4k UHD 3840 × 2160 H.264 decode -
|-
| <!--Description-->GTX 570,
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{Maybe|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working Zotac GTX 570, Gainward GTX560TI/570 Phantom,
* works gigabyte, evga
|-
| <!--Description-->Geforce 5xx 560gtx Fermi GTX 560,
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->opengl 4.x - 2 6pin psu - 384 cuda cores - case dual slots - will not work with PCI-e 1.0a slots -
* not working Asus ENGTX560 DC/2DI/1GD5,
* Ti LE 448 cuda GDDR5 320bit
* Ti 256bit
* works
|-
| <!--Description-->GTX 560 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* not working evga GTX 560Ti 01GP31560KR - Gainward GTX560TI/570 Phantom,
* works
|-
| <!--Description-->GTX 550 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x1201
| <!--Revision-->
| <!--2D-->{{Maybe|VESA Doom Doom2 Duke }}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->can hang on boot up on I2C Init or suffer random lockups on OpenGL apps - most need 1 6pin min 400W 24A on the +12V1 / +12V2 dual 12V rails of the computers' power supply unit - 192 cuda cores - case dual slots used - will not work with PCI-e 1.0a slots -
* not working eVGA GeForce GTX 550 Ti (1024 MB) (01GP31556KR) -
* untested asus Extreme, eVGA GeForce GTX 550 Ti (1024 MB) (01GP31557KR) - -
* works
|-
| <!--Description-->GT 545 and OEM GF116
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 4.2 opencl 1.x - GDDR5 with OEM only -
|-
| <!--Description-->GT530 OEM
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 6.11 Pixel Text}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->96 cuda cores - 1GB or 2GB DDR3 128bit
|-
| <!--Description-->GT520 520GT
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->untested 48 cuda cores - DDR3 64bit
|-
| <!--Description-->510, GT 530
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D 6.11 Pixel Text}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> ddr 3 - 50w max -
|-
| <!--Description-->GT610 Fermi GF119
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No|6.11 }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVS 315 300 GF119S
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{No|VESA}} needs special dms-59 cable
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 fermi 315 PNY VCNVS315-T 1Gb DDR3 but needs special dms-59 cable -
|-
| <!--Description-->GT630 GF108 Fermi
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->not accelerated 2015 - like the GT730 below - 96 cuda cores whilst kepler version has 384 - 128bit to keplers' 64bit bandwidth - kepler has 2GB DDR3
* not working Gigabyte
* DDR3
* GDDR5
* works
|-
| <!--Description-->Geforce GT 730 (two versions)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe| use VESA 6.11 Pixel Text}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> fermi version has 96 cuda cores 128bit GF108
* not working Asus
* works
|-
| <!--Description-->nVIDIA Quadro 4000
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}} 2 dp ports
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->142W 2Gb GDDR5 - PCI Express 2.0 x16 ; full Height card with 1x 6-Pin PCIe power need - CUDA Cores 256 - OpenGL 4.5
|-
| <!--Description-->nVIDIA Quadro 5000
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2011 200W 2.5Gb GDDR5 320 bit - PCI Express 2.0 x16 full Height card with 2x 6-Pin PCIe power need -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce GTX Titan GeForce GTX Titan Black GeForce GTX Titan Z
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVE0 family (Kepler) GeForce 600 GeForce 700 GeForce GTX Titan Kepler
|-
| <!--Description-->GeForce GTX 780 GeForce GTX 780 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->PureVideo HD 6" or "VP6" (Nvidia Feature Set E or VDPAU Feature Set E) significantly improved performance when decoding H.264 and MPEG-2
|-
| <!--Description-->GeForce GTX 770
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->opengl 4.4 opencl 1.1
|-
| <!--Description-->GeForce GTX 760 GeForce GTX 760 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce GT 740
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce GT 730 Kepler (two versions) f
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> kepler 384 cores 64bit GK208
|-
| <!--Description-->680gtx GK104 core gtx680 680m
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVE0 family (Kepler)
|-
| <!--Description-->GTX 690 Kepler NVE0
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->pci-e 3.0, OpenGL 4.4 OpenCL 1.1
|-
| <!--Description-->GTX 670
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GTX 660 GTX 660 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GTX 650 GTX 650 Ti GTX 650 Ti Boost
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NVE0 family (Kepler) most need 1 6pin psu
* not working asus ENGTX560 DC/2DI/1GD5
* works
|-
| <!--Description-->Geforce GT 640
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
* 128bit DDR3
* 192bit DDR3 1.5 to 3GB 50W
* 128bit GDDR5 75W
|-
| <!--Description-->GT 620 GT 640
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->Quadro K2000 NVE7 (GK107) Kepler
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 - 50w single slot pcie 2.0 -
|-
| <!--Description-->NVIDIA® Quadro® K4200 GK104 Kepler
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2014 4Gb GDDR5 - 108W 1 6pin -
|-
| <!--Description-->NVIDIA® Quadro® K420 1GB DDR3 Kepler
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2014 41W -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce 750ti, GeForce 900
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->[https://nouveau.freedesktop.org/FeatureMatrix.html NV110] Maxwell -
|-
| <!--Description-->Nvidia GTX 750
| <!--Vendor ID-->0x10de
| <!--Product ID-->0x1381
| <!--Revision-->0xa2
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->2026 nvidia test
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->GM206 2nd gen maxwell PureVideo HD 7" or "VP7" (Nvidia Feature Set F or VDPAU Feature Set F) adds full hardware-decode of H.265 HEVC Version 1 (Main and Main 10 profiles and full fixed function VP9 (video codec) hardware decoding
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->Quadro K2200 (GM107) Maxwell
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{Unk| }}
| <!--Digital-->{{Unk| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 - 68w single slot pcie 2.0 -
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV132 (GP102) NVIDIA Titan (X, Xp), GeForce GTX 1080 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV134 (GP104) GeForce GTX (1070, 1080)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV136 (GP106) GeForce GTX 1060
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->Quadro K620 Maxwell
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2014 50w slim low profile 2gb ddr3 -
|-
| <!--Description-->quadro p620 2gb gddr5 128bit and quadro p1000 4gb gt1030 30w
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 50w slim low profile -
|-
| <!--Description-->GeForce gtx 1060, GeForce 1070
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->NV130 Pascal
|-
| <!--Description-->NV137 (GP107) GeForce GTX (1050, 1050 Ti)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV138 (GP108) GeForce GT 1030
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->NV130 family (Pascal)
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV162 (TU102) NVIDIA Titan RTX, GeForce RTX 2080 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV164 (TU104) GeForce RTX (2070 Super, 2080, 2080 Super)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2020 NV160 family (Turing) unified gsp-rm firmware - best starting point for Vulkan support
|-
| <!--Description-->NV166 (TU106) GeForce RTX (2060, 2060 Super, 2070)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV168 (TU116) GeForce GTX (1650 Super, 1660, 1660 Ti, 1660 Super)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV167 (TU117) GeForce GTX 1650
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->gtx 1650ti super
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2018 old style
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV172 (GA102) GeForce RTX (3080, 3090)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No| }}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 av1 decoding ampere
|-
| <!--Description-->NV174 (GA104) GeForce RTX (3060 Ti, 3070, 3080 Mobile)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->NV170 family (Ampere)
|-
| <!--Description-->NV176 (GA106) GeForce RTX (3050, 3060)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV177 (GA107) GeForce RTX 3050
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NV192 (AD102) GeForce RTX 4090
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV193 (AD103) GeForce RTX 4080
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->NV190 family (Ada Lovelace)
|-
| <!--Description-->NV194 (AD104) GeForce RTX (4070, 4070 Ti)
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV196 (AD106) GeForce RTX 4060 Ti
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
| <!--Description-->NV197 (AD107) GeForce RTX 4060
| <!--Vendor ID-->0x10de
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{unk| }}
| <!--3D-->{{unk| }}
| <!--Analogue-->{{unk| }}
| <!--Digital-->{{unk| }}
| <!--Laptop LCD-->{{unk| }}
| <!--Comments-->
|-
|}
==== nouveau mobile integrated ====
If you purchased a notebook with an NVidia sticker on it, most of the time you have a optimus based one, ie Intel CPU+GPU melded with Nvidia GPU, Optimus was slated at one point to go into desktop PCs but the industry ended up rejecting that concept
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|-
| GeForce 6100 nForce 405
| 0x
| 0x03D1 0x0242
| 0x0
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
|
|-
| <!--Description-->GeForce 6100 nForce 400
| <!--Vendor ID-->
| <!--Product ID-->0x03D2
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce 6100 nForce 420
| <!--Vendor ID-->
| <!--Product ID-->0x03D5
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->GeForce 6150 LE
| <!--Vendor ID-->
| <!--Product ID-->0x0241
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| GeForce 6150SE nForce 430
| 0x
| 0x03D0
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| working
|-
| <!--Description-->GeForce 6150
| <!--Vendor ID-->
| <!--Product ID-->0x0240
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7150M / nForce 630M
| <!--Vendor ID-->
| <!--Product ID-->0x0531
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7000M / nForce 610M
| <!--Vendor ID-->
| <!--Product ID-->0x0533
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7050 PV / NVIDIA nForce 630a
| <!--Vendor ID-->
| <!--Product ID-->0x053A 0x053B
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Geforce IGP 7025 nForce 630a
| 0x
| 0x053E
| 0x0
| <!--2D-->{{Yes|some}}
| <!--3D-->{{Yes|some}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No| }}
| some support on some chipsets
|-
| GeForce 7100 / nForce 630i (C73)
| 0x10de
| 0x07e1
| 0x0a2
| <!--2D-->{{Maybe}}
| <!--3D-->{{Maybe}}
| <!--Analogue-->{{Maybe}}
| <!--Digital-->{{Maybe}}
| <!--Laptop LCD-->{{N/A}}
| Icaros 2.0.3 and Gigabyte 73-pvm-s2h rev. 1.0 but will not boot on [https://ae.amigalife.org/index.php?topic=806.msg8765#new Acer x270 with Icaros 2.3]
|-
| <!--Description-->GeForce 7150 / NVIDIA nForce 630i
| <!--Vendor ID-->
| <!--Product ID-->0x07E0
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 7050 / NVIDIA nForce 610i
| <!--Vendor ID-->
| <!--Product ID-->0x07E3
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Geforce IGP 8100 (nForce 720a)
| 0x
| 0x084F
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
|
|-
| GeForce 8100P
| 0x
| 0x0847
| 0x0
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
|
|-
| <!--Description-->Geforce 8200 8300 nForce 730a
| <!--Vendor ID-->
| <!--Product ID-->0x084A 0x0848 (GeForce 8300) 0x0849 (GeForce 8200) 0x084B (GeForce 8200)
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->working on some 8300's with Icaros 1.5 but others untested
|-
| <!--Description-->nForce 780a SLI
| <!--Vendor ID-->
| <!--Product ID-->0x084C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->nForce 750a SLI
| <!--Vendor ID-->
| <!--Product ID-->0x084D
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Nvidia Geforce IGP 9300 (nForce MCP7a)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe| }}
| <!--3D-->{{Maybe| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->works
|
|-
| <!--Description-->9400 (ION)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->If AROS detects GPU chipset, works well
|-
| <!--Description-->9700M ()
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| Geforce ION 2
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Yes| }}
| <!--3D-->{{Yes| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->works well
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce Go 6150
| <!--Vendor ID-->
| <!--Product ID-->0x0244
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6100
| <!--Vendor ID-->
| <!--Product ID-->0x0247
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6200
| <!--Vendor ID-->
| <!--Product ID-->0x0164 0x0167
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6400
| <!--Vendor ID-->
| <!--Product ID-->0x0166 0x0168
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->Sony Laptop
|-
| <!--Description-->GeForce Go 6800
| <!--Vendor ID-->
| <!--Product ID-->0x00C8
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6800 Ultra
| <!--Vendor ID-->
| <!--Product ID-->0x00C9
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600
| <!--Vendor ID-->
| <!--Product ID-->0x0144
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600 TE/6200 TE
| <!--Vendor ID-->
| <!--Product ID-->0x0146
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600
| <!--Vendor ID-->
| <!--Product ID-->0x0148
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 6600 GT
| <!--Vendor ID-->
| <!--Product ID-->0x0149
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7200
| <!--Vendor ID-->
| <!--Product ID-->0x01D6
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7300
| <!--Vendor ID-->
| <!--Product ID-->0x01D7
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->untested
|-
| <!--Description-->GeForce Go 7400
| <!--Vendor ID-->
| <!--Product ID-->0x01D8
| <!--Revision-->
| <!--2D-->
| <!--3D-->works 2D and 3d issues though
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7800
| <!--Vendor ID-->
| <!--Product ID-->0x098
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7800 GTX
| <!--Vendor ID-->
| <!--Product ID-->0x0099
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7950 GTX
| <!--Vendor ID-->
| <!--Product ID-->0x0297
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7900 GS
| <!--Vendor ID-->
| <!--Product ID-->0x0298
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7900 GTX
| <!--Vendor ID-->
| <!--Product ID-->0x0299
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7600
| <!--Vendor ID-->
| <!--Product ID-->0x0398
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce Go 7600 GT
| <!--Vendor ID-->
| <!--Product ID-->0x0399
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 6610 XL
| <!--Vendor ID-->
| <!--Product ID-->0x0145
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 6700 XL
| <!--Vendor ID-->
| <!--Product ID-->0x0147
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GeForce 8700M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0409
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8600M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0425
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8400M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0426
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8400M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0427
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8400M G
| <!--Vendor ID-->
| <!--Product ID-->0x0428
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8800M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x0609
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8800M GTX
| <!--Vendor ID-->
| <!--Product ID-->0x060C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9500M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0405
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 8600M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0407
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9650M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0408
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9400M GT
| <!--Vendor ID-->
| <!--Product ID-->0x042C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9300M G
| <!--Vendor ID-->
| <!--Product ID-->0x042E
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9100M G
| <!--Vendor ID-->
| <!--Product ID-->0x0844
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9800M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x0628
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9700M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x062A
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9800M GTS
| <!--Vendor ID-->
| <!--Product ID-->0x062C
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9600M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0647
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9600M GS
| <!--Vendor ID-->
| <!--Product ID-->0x0648
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9600M GT
| <!--Vendor ID-->
| <!--Product ID-->0x0649
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9500M G
| <!--Vendor ID-->
| <!--Product ID-->0x064B
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9300M GS
| <!--Vendor ID-->
| <!--Product ID-->0x06E5
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9200M GS
| <!--Vendor ID-->
| <!--Product ID-->0x06E8
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->GeForce 9300M GS
| <!--Vendor ID-->
| <!--Product ID-->0x06E8
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->NV50 (G80) Quadro FX (4600 (SDI), 5600)
Quadro FX (2800M, 3600M, 3700, 3700M, 3800M, 4700 X2), VX 200
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV94 (G94) 9700M GTS, 9800M GTS, GeForce G 110M, GT 130(M), GT 140, Quadro FX (1800, 2700M)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV84 (G84) Tesla 8700M GT, GeForce 9500M GS, 9650M GS
Quadro FX (370, 570, 570M, 1600M, 1700), NVS 320M
NV86 (G86) GeForce 8300 GS, 8400 (GS, M G, M GS, M GT), 8500 GT, GeForce 9300M G
Quadro FX 360M, NVS (130M, 135M, 140M, 290)
GeForce GTS 150(M), GTS 160M, GTS 240, GTS 250, GTX (260M, 280M, 285M), GT (330, 340)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NV96 (G96) 9650M GT, 9700M GT
GeForce G 102M, GT 120
Quadro FX (380, 580, 770M, 1700M)
NV98 (G98) GeForce 8400 GS, GeForce 9200M GS, 9300 (GE, GS, M GS)
GeForce G 100, G 105M
Quadro FX (370 LP, 370M), NVS (150M, 160M, 295, 420, 450)
Quadro CX, FX (3800, 4800, 5800)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVA3 (GT215) GeForce GT (240, 320, 335M), GTS (250M, 260M, 350M, 360M) Quadro FX 1800M
NVA5 (GT216) GeForce GT (220, 230M, 240M, 325M, 330M), 315
Quadro 400, FX 880M, NVS 5100M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVA8 (GT218) Tesla GeForce 8400 GS, GeForce 210M, 305M, 310M, Quadro FX 380M, NVS 2100M, 3100M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVAA (MCP77/MCP78) GeForce 8100, 8200, 8300 mGPU / nForce 700a series, 8200M G
NVAC (MCP79/MCP7A) ION, GeForce 9300, 9400 mGPU / nForce 700i series, 8200M G, 9100M, 9400M (G)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVAF (MCP89) GeForce 320M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NVC0 (GF100) Fermi GeForce GTX 480M, Quadro 5000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVC1 (GF108) GeForce GT 415M, 420M, 425M, 435M, 520M, 525M, 540M, 550M, 555M, 630M, 635M, 640M LE, Quadro 1000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVC3 (GF106) Fermi GeForce GT 445M, 555M, 630M, 635M), GTX 460M, Quadro 2000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVC4 (GF104) GeForce GTX 470M, 485M, Quadro 5000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVCE (GF114) GeForce GTX 570M, 580M, 670M, 675M,
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVD7 (GF117) Fermi Geforce GT 620M, 625M, (some) 630M, 710M, 720M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVD9 (GF119) Fermi GeForce 410M, GT 520M, 520MX, 610M, Quadro NVS 4200M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->NVE4 (GK104) GeForce GTX 670M, 680M, 775M, 780M, 860M, Quadro K3000M, K3100M, K4000M, K4100M, K5000M, K5100M,
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->NVE7 (GK107) GeForce GT640M, 645M, 650M, 710M, 720M, 730M, 740M, 745M, 750M, 755M, GTX 660M, K500M, K1000M, K1100M, K2000M
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->GTX 1650 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2019 turing architecture - last old skool support pre Vulkan
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rtx 2050 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 ampere architecture best starting point for vulkan support
|-
| <!--Description-->rtx 2060 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Rev
| 2D
| 3D
| Analog Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rtx 4060 mobile
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
|}
====radeon.hidd====
Michel Shultz ''2D'' graphics driver (standard on most distributions but only for very old GPUs) and bearsofts updated 2013 around Icaros 1.3.1
3D is not implemented by AROS yet but could cover these AMD chipsets
<pre>
2014 SI AMD HD 7xxx
2016 GCN3rd AMD R5E R7E
2019 GCN5th AMD Vega 8
2022 RDNA1 AMD RX5500 desktop only
2023 RDNA2 AMD 680M 780M
2024 RDNA3 AMD 880M 890M
2025 RDNA3.5 AMD 8060S strix halo and AI
2027 RDNA4 AMD
</pre>
{| class="wikitable"
! Description
! Vendor ID
! Product ID
! Revision
! 2D
! 3D
! Analogue Output
! Digital Output
! Laptop LCD
! Comments
|-
| 7000 (r100)
| 0x1002
| 0x5159
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->{{Maybe|vga15 pin connection but not s-video}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.3
|-
| 7500 (rv200 but still r100 based)
| 0x1002
| 0x5157
| 0x
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->{{Yes|vga15}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.3
|-
| 8000 8500 (r200)
| 0x1002
| 0x514c (8500LE)
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.4
|-
| 9000 9100 9250 (r200)
| 0x1002
| 0x5964 (9000) 0x514d (9100)
| 0x0001
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->{{Maybe|VGA15 but not s-video}}
| <!--Digital-->{{Yes|DVI}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 1.4
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| 9600 9800 (r300)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1
|-
| x300 x600 (r300)
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1
|-
| x700, x800 ([http://en.wikipedia.org/wiki/Radeon_R600 r420])
| 0x
| 0x554d (R430 x800xl)
| 0x0
| <!--2D-->{{Yes|new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1 - x800 XL PCIE (problem with mouse-pointer, some part of the pointer is not transparent)
|-
| x1300 x1550 x1600 x1800 x1900 x1950 ([http://en.wikipedia.org/wiki/Radeon_R520 r520])
| 0x
| 0x
| 0x0
| <!--2D-->{{Yes|new driver}}
| <!--3D-->{{no}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 2.1
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| HD2400 HD2600 HD2900 ([http://en.wikipedia.org/wiki/Radeon_R600 r600])
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|some features with new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 3.3 open CL 1.2 TeraScale architecture
|-
| HD3400 HD3600 HD3800 (r600)
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|some features with new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->pci-e 2.0, openGL 3.3
|-
| HD4300 HD4500 HD4600 HD4700 HD4800 ([http://en.wikipedia.org/wiki/Radeon_R600 r700])
| 0x1002
| 0x
| 0x0
| <!--2D-->{{Maybe|but some later cards need 3D engine for faster and more flexible 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 3.3 - DDR3 - GDDR5 was one of AMD's aces for the 4800 series - 4670 liked -
|-
| HD6900 cayman series
| 0x
| 0x
| 0x0
| <!--2D-->{{Maybe|some features with new driver}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> openGL 3.3 open CL not mature (2014) -
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| HD5400 Series HD5430 HD5450 HD5470
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2010 openGL 3.3 openCL - GDDR3 -
|-
| HD5500 Series HD5550 HD5570 HD5600 Series HD5650 HD5670 HD5700 Series HD5750 HD5770
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->openGL 3.3 openCL - GDDR5
|-
| HD 5800 Series HD5850 HD5870 HD5900 Series HD5950 HD5970 - HD6xxx not NI chipset ([http://en.wikipedia.org/wiki/Evergreen_(GPU_family) r800 evergreen])
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2009 openGL 3.3 openCL - DDR5 pci-e 2.1 best avoided for all pci-e 1.0 mobos - Ati TeraScale2 architecture -
|-
| HD6450 [http://en.wikipedia.org/wiki/Northern_Islands_(GPU_family) Northern Islands chipset]
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> - DDR3 -
|-
| HD6600 Series HD6650 HD6570 HD6600 Series HD6650 HD6670
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2011 - DDR5 -
Radeon HD 8470 11 TeraScale 2
Radeon HD 8350 11 TeraScale 2
Radeon HD 7510 11 TeraScale 2
Radeon HD 6550D 11 TeraScale 2
Radeon HD 6530D 11 TeraScale 2
Radeon HD 6410D 11 TeraScale 2
Radeon HD 6370D 11 TeraScale 2
Radeon HD 6320 11 TeraScale 2
Radeon HD 6310 11 TeraScale 2
Radeon HD 6290 11 TeraScale 2
Radeon HD 6250 11 TeraScale 2
|-
| HD6800 Series HD6850 HD6870 HD6700 Series HD6790 to HD6990
| 0x
| 0x
| 0x0
| <!--2D-->{{No|needs 3D engine for accelerated 2D now}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2011 - DDR5 - AMD TeraScale3 -
|-
| <!--Description-->HD7450-HD7670
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 OpenGL but not Vulkan
Radeon HD 7660D 11 TeraScale 3
Radeon HD 7560D 11 TeraScale 3
Radeon HD 7540D 11 TeraScale 3
Radeon HD 7480D 11 TeraScale 3
Radeon HD 6930 11 TeraScale 3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->HD7750 HD 7770 / R7 250X HD7850 HD7870 / R9 270X HD 7950 / R9 280 HD 7970 / R9 280X [http://en.wikipedia.org/wiki/Southern_Islands_(GPU_family) Southern Islands]
*AMD Radeon R7 250XE Cape Verde XT
*AMD Radeon R7 M465X Cape Verde
*AMD Radeon R9 255 Cape Verde PRX
*AMD Radeon HD 7750 Cape Verde PRO
*AMD Radeon R7 250E Cape Verde PRO
*AMD Radeon HD 8740 Cape Verde PRO
*AMD Radeon HD 7730 Cape Verde LE
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2012 pci-e 3.0 1st Gen GCN architecture -
|-
| <!--Description-->R5 430, FirePro W2100,
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 50W+ openGL openCL 1/3 speed of gtx750ti 1st gen gcn1
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->HD7790 [ Sea Islands ]
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 openGL 4.1 open CL - GCN2.0 Vulkan 1.0 introduced a Shader Engine (SE) comprising one geometry processor, up to 44 CUs (Hawaii chip), rasterizers, ROPs, and L1 cache and Graphics Command Processor for faster audio/video - suits Vulkan 1.1
|-
| <!--Description-->r5 240 240x (slow) R7 250 250x (faster) HD 7790 / R7 260 260X / R7 360 to R5 350 (fast) and last one R5 430 OEM Plus (slow again)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 50W+ GCN 1st gen - openGL 4.x openCL 1.x Vulkan 1.0
|-
| <!--Description-->R9 290 / R9 390 R9 290X / R9 390X
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2014 GCN 1.1 2nd Gen architecture - openGL 4.x openCL 1.x Vulkan 1.1 -
|-
| <!--Description-->R9 Fury Nano
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 GCN 1.2 3rd Gen - openGL openCL vulkan
|-
| <!--Description-->r-200 series r8 275 285 295 375 [Volcanic Islands]
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 GCN1.2 - openGL 4.x openCL 1.x Vulkan 1.2
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 [https://gpuopen.com/download/AMD_GCN3_Instruction_Set_Architecture_rev1.1.pdf GCN3]
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Radeon™ RX 5700/5600/5500 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 GCN 4 - OpenGL 4, Vulkan 1.3 -
|-
| <!--Description-->Radeon™ RX 400/500 Series like rx vega 580
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->Radeon™ Pro WX 9100, x200 Series and Radeon™ Pro W5700/W5500 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Radeon™ RX 7900/7600 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->Radeon™ RX 6900/6800/6700/6600/6500 Series
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|}
==== amd radeon mobile integrated ====
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|-
| <!--Description-->ATI RC410 [Radeon Xpress 200M]
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x5a62 0x5955 0x5974 (200m)
| <!--Revision-->0x00
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->
|-
| <!--Description-->Mobility Radeon 7500
| <!--Vendor ID-->0x1002
| <!--Product ID-->0x4c57 (7500)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->
|-
| <!--Description-->Mobility Radeon 9000
| 0x1002
| 0x4966 (9000)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->
|-
| <!--Description-->Mobility Radeon 9500 9550 (rv360) 9600 (rv350)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon 9800 (rv420)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon X300 (RV370) X600 (RV380)
| 0x1002
| 0x (RV370) 0x5657 (RV380)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon X700 (RV410) X800 (RV423)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon X1200 (RS69M0)
| 0x1002
| 0x791f
| 0x0
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->X1200 IGP (RS690)
|-
| <!--Description-->Mobility Radeon X1300 X1350 X1400(rv515) X1600 (rv530) X1650 (RV535) X1800 (rv520) x1900 (rv570)
| 0x1002
| 0x71c7 (X1650)
| 0x009e
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon 2100
| 0x1002
| 0x796e (2100)
| 0x0
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{No|}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 2400 (rv610) HD2600 (rv630)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 3100 HD3200 HD3450 3470 (RS780MC RV620) 3670 (M86-XT RV635) HD3870 (M88-LXT RV670)
| 0x1002
| 0x9610 and 0x9612 (HD3200) 0x9614 (HD3300)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 4200 4250 (RV620)
| 0x1002
| 0x (HD4200) 0x9715 (HD4250)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 4330 4530 4550 (M92 RV710) 4650 (M96-XT RV730) 4670 RV730XT 4830 (M97 RV740) 4850 (M98 RV770)
| 0x1002
| 0x (HD4350) 0x9442 (RV770) 0x9490 (HD4670)
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->untested
|-
| <!--Description-->Mobility Radeon HD 530v (M92 RV710) HD 550v (M96 RV730)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->no support yet
|-
| <!--Description-->Mobility Radeon HD 5430 HD5650 (cedar Park LP)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->no support yet
|-
| <!--Description-->Radeon HD 6250 6290 6310 6320 6350M (Redwood Capilano PRO)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No}}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{No}}
| <!--Comments-->no support yet
|-
| <!--Description-->AMD 7640G, 8450G, 8550G, 8650G Northern Islands
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2013 Last real support for old graphics standard before Vulkan takeover
|-
| <!--Description-->R5 M230 M240 M255 - R7 M260 M265 (Kaveri Crystal series with Mantle and HSA)
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->2015 Maybe better with Vulkan
|-
| <!--Description-->R5E R7E
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->2016 bristol ridge GCN 3.0 IGP (Carrizo Mobile)
|-
| <!--Description-->AMD Vega 3, 6, 8, 11 iGP
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA 2D}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2018 raven ridge GCN 5th Gen
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->5500m 5600m 5800m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA1 NaviX1 Zen 2
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rx680m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA2 NaviX2 Zen 3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->phoenix apu 1103
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 RDNA3 NaviX3 zen 4
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
==== AMDGPU Vulkan desktop ====
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->Kaveri 290 290X, 260 260X
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2015 AMDGPU Vulkan
|-
| <!--Description-->R9 285 / R9 380 R9 380X Fury / Fury X
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->opengl 4 opencl 1 3rd Gen GCN architecture
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX470 RX460 RX480 RX580 polaris10
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 opengl 4 opencl 2 4th Gen GCN architecture vulkan 1.3
|-
| <!--Description-->RX460 RX560D polaris11
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 opengl 4 opencl 2 4th Gen GCN architecture vulkan 1.3
|-
| <!--Description-->RX580 polaris20
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2016 opengl 4 opencl 2 4th Gen GCN architecture vulkan 1.3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX 5000 5500 Navi 1x
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RNDA 1
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX 6000 Navi 2x
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RNDA 2 Mesa 21.3 decode av1
|-
| <!--Description-->RX6000
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->RX 7000
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2022 RNDA 3 navi
|-
| <!--Description-->RX7000
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->{{No| }}
| <!--Digital-->{{No|nothing}}
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->RX9070 rx 9060 XT
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2025 rdna4 navi
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2026 udna (aka rdna5)
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
|}
==== AMDGPU Vulkan mobile ====
{| class="wikitable sortable" width="90%"
! width="5%" | Description
! width="5%" | Vendor ID
! width="5%" | Product ID
! width="2%" | Rev
! width="5%" | 2D
! width="5%" | 3D
! width="5%" | Analog Output
! width="5%" | Digital Output
! width="5%" | Laptop LCD
! width=40%" | Comments
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->R5E R7E
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->2016 bristol ridge GCN 3.0 IGP (Carrizo Mobile)
|-
| <!--Description-->Vega 8
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments--> GCN 5
|-
| <!--Description-->Vega iGP 3, 6, 8, 11
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->2018 raven ridge - Graphics Core Next (GCN) 5th gen -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->5500m 5600m 5800m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA1 NaviX1 Zen 2
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->rx680m
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA2 NaviX2 Zen 3
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->phoenix apu 1103
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->{{Maybe|VESA}}
| <!--3D-->{{No| }}
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->RDNA3 NaviX3 zen 4
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->{{N/A}}
| <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Description
| Vendor ID
| Product ID
| Revision
| 2D
| 3D
| Analogue Output
| Digital Output
| Laptop LCD
| Comments
|-
| <!--Description-->
| <!--Vendor ID-->
| <!--Product ID-->
| <!--Revision-->
| <!--2D-->
| <!--3D-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
fyi if a notebooks with two graphic cards, the integrated Intel card (id 0x7d) for low power usage and a discrete Radeon card (id 0x56) which should be used for GPU-intensive applications. By default the Intel card is always used
[https://wiki.archlinux.org/title/ATI Gallium Radeon HD] is not ported yet but is [https://www.phoronix.com/scan.php?page=news_item&px=Linux-5.9-AMDGPU-Stats really big] and complex so another solution may have to be [https://discuss.haiku-os.org/t/the-graphics-acceleration-can-of-worms/10515/5 found] like [https://discuss.haiku-os.org/t/vulkan-lavapipe-software-rendering-is-working-on-haiku/11363/10 vulkan] where support starts from very recent ISA GCN islands HD7000s cards only
*Vulkan
*Gallium
Vulkan software renderer allows to prepares the infrastructure for hardware rendering. Primary difference between software and hardware renderer is output to regular RAM vs GPU RAM, the rest is almost the same. It is possible to render to GPU RAM offscreen.
bare bones basics data flow
application,>>> api/opengl/vulkan>>>>, jit compiler, >>>>memory manger, >>>>gpu hardware
so you need to have a compiler that takes your api call/program/shaders/drawing commands and turns them into a program the gpu can render.
the vulkan to amd gpu compiler for shaders and textures is nearly os agnostic iirc as long as you have solid posix compliance
Unlike OpenGL, Vulkan does not depend on windowing system and it have driver add-on system with standardized API (Mesa also have OpenGL driver add-ons, but it have non-standard Mesa-specific API). OpenGL may need more work for windowing system related code at this point but developing Vulkan on real hardware is more strategic than developing OpenGL, since now Zink 3 running on Vulkan compensates for the lack of OpenGL support by giving performance similar to native accelerated OpenGL
RadeonGfx use client-server model with client-server thread pairs. For each client thread that calls 3D acceleration API, server side thread is created. If client thread terminates, server side thread also exit.
==Rough gfx comparison==
<pre>
Group 1
GeForce RTX 5090 5070 5060 5050
GeForce RTX 4090 4070 4060 4050
Group 2
GeForce RTX 2070
Radeon RX 7600
Quadro RTX 5000
Radeon PRO W6600
GeForce RTX 2060 12GB
Radeon PRO W7500
Quadro GP100
Radeon RX 6800S
GeForce RTX 3070 Laptop GPU
GeForce GTX 1080
GeForce RTX 3060 8GB
Quadro RTX 4000
Radeon Pro W5700
Radeon RX 6600
GeForce RTX 2080 (Mobile)
Radeon RX 7700S
Radeon RX 6700S
Radeon RX 6600S
Quadro RTX 5000 (Mobile)
GeForce GTX 1070 Ti
GeForce RTX 4050 Laptop GPU
Radeon Pro Vega 64X
Radeon RX 5700
Radeon RX Vega 64
GeForce RTX 2060
GeForce RTX 2070 Super with Max-Q Design
Group 3
Radeon RX 6600M
GeForce GTX 1070
Radeon RX 6650M
GeForce RTX 3060 Laptop GPU
Radeon RX Vega 56
Radeon RX 6700M
GeForce RTX 2080 with Max-Q Design
Radeon RX 6800M
GeForce GTX 980 Ti
Radeon R9 Fury
GeForce GTX 980
Quadro M5500
Radeon R9 390X
Radeon RX 580
Radeon RX 5500
Radeon RX 6550M
GeForce GTX 1660 Ti with Max-Q Design
GeForce GTX 780 Ti
GeForce GTX 970
Radeon R9 290X
Radeon RX 480
Radeon RX 5600M
Quadro RTX 3000 with Max-Q Design
Radeon R9 290X / 390X
Ryzen 5 4600HS with Radeon Graphics
Radeon R9 290
Radeon Pro 5500 XT
Radeon R9 M490 *
GeForce GTX 780
Radeon RX 6500M
Quadro M5500
GeForce GTX 1060 with Max-Q Design
Radeon RX 6500
Radeon RX 5300
Intel Arc A770M
GeForce GTX 1650 Ti
Radeon Pro 580X
Radeon RX 6400
GeForce RTX 2050
Ryzen 9 4900HS with Radeon Graphics
Radeon Ryzen 9 6900HS
GeForce GTX 980M
Quadro M5000M
Radeon RX 6300
GeForce GTX 1650 Ti with Max-Q Design
Radeon Pro 570
Ryzen 9 6900HS with Radeon Graphics
GeForce GTX 1050 Ti
Quadro M4000M
Radeon R9 280X 380X
GeForce GTX 1650 with Max-Q Design
GeForce MX570
Radeon R9 280X
Radeon R9 380
Radeon 780M
GeForce GTX 960
GeForce GTX 970M
Quadro M4000M *
GeForce GTX 680
Group 4
Radeon RX 6500M
Quadro M5500
Radeon Pro WX 7100
GeForce GTX 1060 with Max-Q Design
GeForce GTX 1650
Intel Arc A730M
Radeon HD 7970
Radeon R9 M395X
Radeon R9 M485X
Radeon R9 M480 *
Radeon R9 M295X
Radeon R9 M390X *
FirePro W7170M *
Radeon R9 M395
Radeon R7 370
Radeon RX 5500M
GeForce GTX 590
GeForce GTX 880M
GeForce GTX 950
Radeon R9 270X
GeForce GTX 660 Ti
GeForce GTX 760
GeForce GTX 780M
Quadro K5100M
GeForce GTX 680MX
Radeon HD 7870
GeForce GTX 965M
Quadro M3000M *
GeForce GTX 870M
Radeon R9 M290X
Radeon HD 8970M
Radeon Ryzen 7 7735U (680M), Radeon Ryzen 7 7735HS (680M 12C)
GeForce GTX 580
Radeon HD 6970
GeForce GTX 1050
GeForce GTX 680M
GeForce GTX 775M
GeForce GTX 1630
FirePro M6100
Radeon HD 7970M
Radeon R9 M390 *
GeForce GTX 750 Ti
Group 5
GeForce GTX 570
GeForce GTX 480
GeForce GTX 960M
Quadro M2000M *
Quadro K5000M
Quadro K4100M
GeForce GTX 770M
GeForce GTX 860M
GeForce GTX 675MX
GeForce GTX 950M
GeForce GTX 850M
Quadro M1000M
Radeon R9 M280X
Radeon HD 7950M *
GeForce GTX 560 Ti
Radeon HD 6870
GeForce GTX 470
GeForce GT 1030
GeForce MX330
Ryzen 5 PRO 5650GE with Radeon Graphics
Ryzen 7 5800HS
FirePro 3D V8800
GeForce MX250
Group 6
Radeon Pro WX 3200
Ryzen 7 PRO 5750G with Radeon Graphics
Radeon Ryzen 5 5600H
Ryzen 5 Pro 4650G with Radeon Graphics
Radeon Ryzen 7 5800U
Ryzen 7 7730U with Radeon Graphics
Radeon Ryzen 7 5825U
Radeon Pro WX 4150
Radeon Ryzen 5 PRO 4655G
Ryzen 5 4600G with Radeon Graphics
Radeon Ryzen 5 PRO 4655GE
GeForce GTX 485M
FirePro W6150M
Ryzen 7 5800U with Radeon Graphics
Ryzen 5 7530U with Radeon Graphics
Ryzen 7 4800U with Radeon Graphics
Radeon R9 M470
Ryzen 3 PRO 5350G with Radeon Graphics
Radeon RX Vega Ryzen 3 5300U
Ryzen 7 5825U with Radeon Graphics
Ryzen 5 PRO 4400G with Radeon Graphics
Radeon Ryzen 7 PRO 4750GE
Radeon Ryzen 7 4800U
FirePro V7900
Radeon HD 5970
Radeon Ryzen 7 7700X 8-Core
Radeon Ryzen 5 PRO 5650G
Radeon Ryzen 5 4400G
Radeon Ryzen 5 PRO 5650GE
Radeon RX 550X
FirePro V8800
Radeon RX Vega Ryzen 5 5500U
GeForce MX150
Quadro K3100M
Ryzen 7 PRO 5850U with Radeon Graphics
Radeon HD 6970M
Radeon R7 250X
Intel HD 5600
Ryzen 3 4300GE with Radeon Graphics
GeForce GTX 460
Ryzen 7 5700U with Radeon Graphics
Radeon Ryzen 5 7530U
Quadro K620
Ryzen 3 PRO 5350GE with Radeon Graphics
Intel Iris Pro P580
Intel UHD Graphics P630
Ryzen 5 4600H with Radeon Graphics
Ryzen 5 PRO 7530U with Radeon Graphics
Radeon HD 5870
Radeon HD 6870
Ryzen 7 4700G with Radeon Graphics
Ryzen 5 5600U with Radeon Graphics
Radeon HD 7770
Ryzen 3 Pro 4350G with Radeon Graphics
Radeon Ryzen 5 5625U
GeForce GTX 745
Radeon Ryzen 7 4850U Mobile
Radeon Ryzen 3 PRO 7330U
Quadro M600M
Radeon Ryzen 5 5500U
Ryzen 5 5560U with Radeon Graphics
Ryzen 7 4800H with Radeon Graphics
Group 7
GeForce 945M
Ryzen 5 PRO 4650GE with Radeon Graphics
FirePro M5100
Radeon Ryzen 5 5600U
Radeon Ryzen 5 PRO 4500U
GeForce GTX 580M
Ryzen 7 PRO 5875U with Radeon Graphics
Ryzen 3 5300GE with Radeon Graphics
Radeon R9 M385
Quadro 5000M
Radeon Ryzen 7 4700U
Ryzen 5 PRO 5650U with Radeon Graphics
Radeon Ryzen 7 PRO 4750U
Ryzen 7 4700U with Radeon Graphics
Ryzen 7 PRO 4750U with Radeon Graphics
FirePro V7800
Radeon R9 350
Ryzen 3 4300G with Radeon Graphics
Radeon Vega 11 Ryzen 5 PRO 3350G
Radeon Ryzen 5 5560U
GeForce GTX 460 SE
Radeon Pro W5500M
Radeon Vega 11 Ryzen 5 PRO 3400G
Ryzen 5 5500U with Radeon Graphics
Ryzen 5 PRO 4500U with Radeon Graphics
GeForce GT 645
GeForce GTX 765M
Radeon R9 M385X
Ryzen 5 5625U with Radeon Graphics
Ryzen 3 PRO 7330U with Radeon Graphics
Radeon HD 5850
Radeon Vega 11 Ryzen 5 PRO 2400G
Intel Iris Pro 580
Radeon HD 6850
Intel Iris Xe MAX
Radeon Ryzen 7 PRO 5875U
Radeon Ryzen 5 7600 6-Core
GeForce GTX 470M
Ryzen 3 5300G with Radeon Graphics
GeForce GTX 670MX
Radeon RX 640
Qualcomm Adreno Gen 3
Radeon R7 450
GeForce GTX 675M
Radeon Pro WX 4130
Intel Iris Xe MAX 100
Quadro 5000
Radeon RX 570X
Radeon HD 7700-serie
Ryzen 5 4600U with Radeon Graphics
Ryzen 3 PRO 4350GE with Radeon Graphics
Radeon Vega 8
Group 8
GeForce MX230
GeForce GTX 765M
Quadro K4000M
Iris Pro Graphics P580 *
Iris Pro Graphics 580 *
GeForce GTX 645
Quadro M520
GeForce GTX 570M
GeForce MX130
Radeon RX 540
Radeon Ryzen 5 PRO 5675U
Intel UHD Graphics 770
Radeon RX Vega 11 Ryzen 7 3750H
Radeon Vega 11 Ryzen 5 PRO 3400GE
Radeon HD 5850
GeForce GTX 675M
GeForce GTX 580M
Radeon HD 6990M
Radeon R9 M385X *
Radeon R9 M470X *
Radeon R9 M470 *
Radeon R9 M385 *
Radeon R9 M380 *
Radeon R9 M370X
Radeon R9 M275
Radeon HD 7770
GeForce GTX 485M
GeForce GTX 460 768MB
Radeon HD 6790
GeForce GTX 285M SLI
Quadro K3100M
FirePro W5170M *
GeForce GTX 670MX
Quadro 5010M
GeForce GTX 760M
GeForce GTX 670M
Group 9
GeForce 940MX *
Maxwell GPU (940M, GDDR5)
FirePro M8900
Radeon HD 6970M
Radeon R9 M270
Radeon HD 8870M
Radeon HD 7870M
Quadro K3000M
GeForce GTX 570M
FirePro M6000
FirePro M5100
Quadro K2100M
Radeon HD 5770
GeForce GTX 550 Ti
GeForce GTX 280M SLI
Radeon HD 6950M
Radeon R7 250
GeForce GT 755M
GeForce GTX 660M
GeForce 845M
Radeon HD 8850M
Radeon R9 M365X
Radeon R9 M265X
Ryzen 5 PRO 4400GE with Radeon Graphics
FirePro W5130M *
Radeon Vega 8 Ryzen 5 3500U
Radeon HD 7850M
Radeon HD 8790M
FirePro W4170M
FirePro W4190M
FirePro W4100
Radeon Vega 6 Ryzen 3 3300U
Quadro 4000M
GeForce GTX 470M
GeForce GTX 480M
GeForce GT 750M
Iris Pro Graphics 6200
Quadro K1100M
GeForce 940M
Radeon R9 M375
GeForce 930MX *
Radeon R7 M380 *
Radeon R7 M370
Quadro M600M *
GeForce GT 650M
Quadro K620M
GeForce 840M
Radeon R7 M275DX
GeForce GT 745M
Radeon HD 7770M
GeForce GTX 560M
Radeon R7
Iris Pro Graphics 5200
GeForce GT 740M
GeForce 930M
Radeon HD 4850
Group 10
Iris Graphics 550 *
GeForce 830M
Iris Graphics 540
Quadro M500M *
Quadro K2000M
GeForce GTS 450
GeForce GTX 260M SLI
GeForce GT 735M
Mobility Radeon HD 5870
GeForce 825M
Quadro 5000M
FirePro M4000
FirePro M7820
Radeon HD 6870M
GeForce 9800M GTX SLI
Radeon HD 8830M *
Radeon HD 8770M
Radeon R7 M260X
GeForce GTX 460M
GeForce 920MX *
GeForce GT 730M
Radeon HD 7750M
GeForce GT 645M *
FirePro M4100
Radeon HD 8750M
Radeon R6 A10-9600P 4C+6G
Quadro 3000M
Radeon R7 M270
Radeon R7 M265
Quadro FX 3800M
GeForce GTX 285M
Mobility Radeon HD 4870
GeForce GT 640M
Radeon R7 (Kaveri)
Radeon R8 M365DX
Radeon R7 M460 *
Radeon HD 7730M
Radeon R7 M360
GeForce GTX 280M
Radeon HD 8690M
Quadro FX 3700M
Radeon R7 M340
GeForce 920M
Radeon R6 M340DX
HD Graphics 530
HD Graphics P530
Tegra X1 Maxwell GPU
Radeon R7 M260
Radeon R6
Group 11
Mobility Radeon HD 4860
FirePro M7740
Mobility Radeon HD 4850
GeForce GTX 260M
GeForce 9800M GTX
Quadro FX 2800M
Radeon HD 8670D
Radeon HD 7690M XT
FirePro M5950
GeForce GT 640M LE
Radeon R6 (Kaveri)
Radeon HD 8650M *
Radeon HD 8730M
Radeon HD 6770M
GeForce GT 635M
GeForce GT 555M
Radeon R7 A10 PRO-7800B
Radeon HD 5670
Mobility Radeon HD 5850
Radeon HD 6850M
Quadro 2000M
GeForce 9800M GT
GeForce 8800M GTX
Quadro FX 3600M
GeForce GT 445M
GeForce GTS 360M
Group 12
GeForce GT 240
Radeon R7 PRO A10-9700
Radeon HD 7690M
HD Graphics 5600
Radeon HD 8570D
Radeon HD 8670M
Radeon R6 M255DX
Radeon HD 7660D
Radeon HD 6750M
Quadro K1000M
GeForce GT 550M
Radeon HD 8590M *
GeForce GTS 260M
GeForce GTS 160M
GeForce 9800M GTS
GeForce GT 430
Radeon HD 6830M
Mobility Radeon HD 5830
Radeon HD 6730M *
GeForce 9800M GS
Mobility Radeon HD 4830
Mobility Radeon HD 5770
Radeon HD 6570M
Radeon HD 8650G
Radeon HD 7670M
GeForce GT 630M
Radeon HD 7560D
GeForce GTS 150M *
Radeon R5 M335
Radeon R5 M430 *
Radeon R5 M330
Radeon R5 M255
Radeon Vega 3
Quadro 1000M
GeForce 820M
FirePro W2100
HD Graphics 520 620
Iris Graphics 6100
GeForce GT 720M
GeForce 8800M GTS
Radeon R5 M240
Radeon R5 M320 *
Radeon R5 M230
Radeon R5 M315 *
Mobility Radeon HD 5750 *
Radeon HD 8570M
Radeon R7 PRO A10-8850B
HD Graphics 6000
Quadro K610M
Radeon HD 8550M
Iris Graphics 5100
GeForce GT 540M
Mali-T880 MP12 *
Radeon HD 8610G *
Radeon HD 6650M
HD Graphics 4600
Mobility Radeon HD 5730
HD Graphics 5500
Radeon R5 (Carrizo) *
Radeon R5 (Kaveri)
FirePro M5800
NVS 5400M
GeForce 710M
Radeon HD 7660G
GeForce GT 435M
HD Graphics 5000
Quadro K510M *
Radeon HD 5570
Radeon HD 6550M
Radeon HD 7590M *
GeForce GTS 350M
GeForce GTS 250M
Radeon HD 6630M
Radeon HD 7650M
FirePro M2000
Radeon HD 7570M
Radeon HD 7630M
Quadro FX 1800M
Mobility Radeon HD 5650
Radeon HD 8510G *
Radeon HD 6530M
Radeon HD 8550G
Quadro K500M *
GeForce GT 625M *
GeForce GT 620M
GeForce GT 525M
Radeon HD 6550D *
Radeon HD 7610M
Radeon HD 7620G
Radeon HD 8470D
Radeon HD 7640G
Adreno 530
GeForce ULP K1 (Tegra K1 Kepler GPU)
HD Graphics 4400
HD Graphics 510 515 *
NVS 5200M
Mobility Radeon HD 565v
Radeon HD 7550M
Mobility Radeon HD 4670
GeForce GT 425M
GeForce 9700M GTS
Radeon HD 6645G2 *
Quadro FX 2700M
GeForce GT 335M
Radeon HD 7600G
Mobility Radeon HD 3870
Mobility Radeon HD 4650
GeForce GT 220
GeForce GT 420M
Radeon HD 7530M *
Mobility Radeon HD 3850
GeForce GT 330M
Quadro FX 880M
Quadro NVS 5100M
GeForce GT 240M
Radeon HD 7490M *
HD Graphics 5300
Radeon HD 7510M *
GeForce Go 7950 GTX
Quadro FX 3500M
GeForce 8700M GT SLI
GeForce 9700M GT
GeForce GT 230M
Mobility Radeon HD 550v
Radeon HD 7480D
HD Graphics 4000
Mali-T760 MP8
Radeon HD 6620G
HD Graphics (Broadwell) *
Adreno 430
Radeon R5 (Beema/Carrizo-L)
Radeon R4 (Beema) (Kaveri)
HD Graphics (Skylake) *
Radeon HD 6450 GDDR5
Radeon HD 7500G
Radeon HD 8450G
Radeon HD 7470M
Radeon HD 6490M
Radeon HD 8400
Mali-T880 MP4
GeForce GT 520MX
Radeon HD 7520G
GeForce GT 325M
GeForce Go 7800 GTX SLI
GeForce 8600M GT SLI
GeForce Go 7900 GS SLI
GeForce GT 130M
NVS 4200M
GeForce Go 7900 GTX
Quadro FX 2500M
Radeon HD 8350G
Radeon HD 8330
GeForce 9650M GS
GeForce 9650M GT
Radeon R3 (Mullins/Beema)
GeForce 8700M GT
Quadro FX 1700M
Quadro FX 1600M
GeForce Go 7800 GTX
GeForce Go 7900 GS
Quadro NVS 320M
Quadro FX 1500M
GeForce 9600M GT
GeForce GT 220M
Quadro FX 770M
GeForce GT 120M
Radeon HD 7450M
GeForce 610M
GeForce 705M
Mali-T760 MP6
Radeon HD 6470M
FirePro M3900 *
GeForce GT 520M
Radeon HD 7420G
Mobility Radeon HD 3670
Mobility FireGL V5725
PowerVR GX6450
Adreno 420
HD Graphics (Haswell)
Radeon HD 6520G
Radeon HD 8310G *
GeForce 320M
GeForce GT 320M
Mobility Radeon HD 2600 XT
Mobility Radeon X1900
Mobility Radeon X1800XT
Mobility Radeon X1800
GeForce Go 6800 Ultra
GeForce Go 7800
GeForce 9600M GS
GeForce 9500M GS
Radeon HD 7400G
Radeon HD 6480G *
Mobility Radeon HD 2700
GeForce GT 415M
GeForce 410M
Radeon HD 7370M
Adreno 418
HD Graphics (Cherry Trail)
Radeon HD 6370M
Radeon HD 8280
Mobility Radeon HD 5470
Radeon HD 6450M
Radeon HD 7430M *
Mobility Radeon HD 3650
Mobility FireGL V5700
Mobility Radeon HD 5145
Mobility Radeon HD 545v
Radeon R6 (Mullins) *
Radeon HD 8240
Radeon HD 8250
Mobility Radeon HD 4570
Quadro FX 570M
Mobility Radeon HD 5450 *
Radeon R2 (Mullins/Beema) *
GeForce 8600M GT
Mobility Radeon HD 2600
HD Graphics 3000
Quadro FX 380M
GeForce 310M
GeForce G210M
NVS 3100M
GeForce 405M
GeForce 315M
GeForce Go 7600 GT
GeForce 9500M G
GeForce 8600M GS
NVS 2100M
GeForce Go 7700
GeForce Go 6800
Quadro FX Go 1400
Mobility Radeon X800XT
Radeon HD 6430M *
Radeon HD 6380G *
Mobility Radeon HD 5430
Radeon HD 8210
Mobility Radeon HD 540v
Mobility Radeon HD 4550
HD Graphics 2500
HD Graphics (Ivy Bridge)
Quadro NVS 310
Radeon HD 7350M *
Radeon HD 6350M *
Mobility Radeon HD 4530
Mobility Radeon HD 4350
Radeon HD 4350
GeForce 305M
Mobility Radeon X1700
Mobility FireGL V5250
Mobility Radeon X2500
GeForce Go 7600
Quadro NVS 300M
Mobility Radeon X800
Mobility Radeon X1600
Mobility FireGL V5200
Mobility Radeon 9800
GeForce Go 6600
Mobility Radeon X1450
Mobility Radeon X700
Mobility FireGL V5000
GeForce G 110M
Quadro NVS 295
Radeon HD 6330M *
Mobility Radeon HD 4330
GeForce 8400M GT
Quadro NVS 140M
HD Graphics 2000
GeForce 9500M GE *
GeForce 9400M (G) / ION (LE)
HD Graphics (Sandy Bridge) *
Adreno 330
PowerVR G6430
PowerVR GX6250
PowerVR G6400
HD Graphics (Bay Trail)
Mali-T628 MP6
Mali-T760 MP4
Chrome9HD *
Radeon HD 7340
Radeon HD 6320 *
Radeon HD 7310
Radeon HD 6310 *
Radeon HD 8180
Mobility Radeon HD 3470
GeForce 9300M G
ION 2 *
GeForce 9300M GS
Quadro FX 370M
Quadro NVS 160M
GeForce 9200M GS
Mobility Radeon HD 3450
Mobility Radeon HD 3430
Mobility Radeon HD 3410
Mobility Radeon HD 2400 XT
Radeon HD 4270
Radeon HD 4250
Radeon HD 7290 *
Radeon HD 6290 *
Radeon HD 4200
Graphics Media Accelerator (GMA) HD Graphics
Radeon HD 6250
Quadro NVS 150M
Quadro FX 360M
Mobility Radeon X1350
Mobility Radeon X1400
GeForce 9100M G
GeForce 8400M GS
Quadro NVS 135M
Mobility Radeon HD 2400
Radeon HD 3200
Radeon HD 4225 *
Radeon HD 4100 *
SGX554MP4
Mali-T628 MP4
Mobility Radeon HD 3400 *
Radeon HD 3100
GeForce 8400M G
Mali-T860 MP2
Quadro NVS 130M
GeForce 8200M G
Graphics Media Accelerator (GMA) 4700MHD
Graphics Media Accelerator (GMA) 4500MHD
Graphics Media Accelerator (GMA) 4500M
Mali-T604 MP4
GeForce Go 7400
Quadro FX 350M
Quadro NVS 120M
GeForce Go 7300
GeForce Tegra 4 *
PowerVR G6200
Adreno 405 *
Quadro NVS 110M
Mobility Radeon X600
Mobility FireGL V3200
Mobility FireGL V3100
Mobility Radeon HD X2300
Mobility Radeon 9700
Mobility FireGL T2e
Mobility Radeon X1300
GeForce4 4200 Go
Mobility Radeon 9600
Mobility FireGL T2
Mobility Radeon 9550
GeForce Go 7200
GeForce Go 6400
Mobility Radeon X300
GeForce Go 6250
GeForce Go 6200
GeForce FX Go 5700
Quadro FX Go 1000
GeForce FX Go 5600 / 5650
Radeon Xpress X1270
Radeon Xpress X1250
Radeon Xpress X1200
Graphics Media Accelerator (GMA) X3100
Mali-T624
Adreno 320 *
Mali-T760 MP2
Mali-T720 MP4
Mali-450 MP4
Graphics Media Accelerator (GMA) 3650 *
GeForce 7190M *
GeForce 7150M
Radeon Xpress 1150
GeForce Go 6150
GeForce Go 6100
GeForce 7000M
Graphics Media Accelerator (GMA) 3600 *
Mobility Radeon 9200
Mobility FireGL 9000
GeForce FX Go 5200
Mobility Radeon 9000
GeForce 4 488 Go
GeForce 4 460 Go
GeForce 4 440 Go
GeForce 4 420 Go
Graphics Media Accelerator (GMA) 3150
Graphics Media Accelerator (GMA) 950
SGX545 SGX544MP2 SGX543MP2 *
Mali-T720 MP2
Mali-T720
Adreno 302 304 305 306
Mobility Radeon 7500
Mobility FireGL 7800
Graphics Media Accelerator (GMA) 900
Radeon Xpress 200M
Radeon Xpress 1100
Mirage 3+ 672MX
Mirage 3 671MX
Mali-400 MP4 *
GeForce ULP (Tegra 3) *
VideoCore-IV *
Adreno 220 225*
Vivante GC1000+ Dual-Core
Mali-400 MP2 *
GeForce ULP (Tegra 2) *
Graphics Media Accelerator (GMA) 600 *
SGX540 *
Graphics Media Accelerator (GMA) 500
Adreno 205 *
Adreno 203 *
GC800 *
SGX535
SGX531
SGX530
Adreno 200 *
Mali-200 *
GeForce 3 Go *
GeForce 2 Go 200 / 100
Mobility Radeon 9100 IGP
Mobility Radeon 9000 IGP
Mobility Radeon M7
Mobility Radeon M6
Chrome9 HC
Extreme Graphics 2
Mobility Radeon 7000 IGP
Radeon IGP 340M
Radeon IGP 320M
S3G UniChrome Pro II
S3G UniChrome Pro
Castle Rock
Mirage 2 M760
Mirage M661FX
S3 Graphics ProSavage8
Mobility 128 M3
SM502 *
</pre>
Kernel-space drivers like '''radeon''' (older AMD driver for older GPUs), '''amdgpu''' (newer driver for newer GPUs, allows using a few new features), i915, nouveau and a few others. They are what handles the gory details of talking to the GPU itself (writing to proper registers, handling its memory directly, configuring outputs, and so on). Unfortunately most of what they're exposing can be only consumed by a single user of that GPU, which is why we need...
DRM and DRI (Direct Rendering Manager/Infrastructure) controls access to the GPUs, provides interfaces for talking to the GPU concurrently by multiple apps at once (without them breaking each other) and lets the system perform the most basic tasks like setting proper resolution and such if no userspace apps understand how to talk to the GPU exposed. DRI and DRM expose the GPU interfaces mostly as-is, not in a "vendor-neutral" portable way - if you don't have an application developed specifically for a GPU you have, it won't work.
"let's create a vendor-neutral interface for graphics so that apps can ignore the GPU-specific bits and get right to the drawing!" - which is what OpenGL is. User-space drivers implement the OpenGL specification and expose it as an OpenGL library to apps (like games, browsers, etc) instead of the GPU. Mesa is the most popular collection of open-source user-space drivers and contains a few user-space drivers for different GPU families: '''radeonsi''' for most modern AMD GPUs (and '''r600g''', r300g and others for older ones), '''i915/i965''' for old/new Intel GPUs and '''nouveau''' for Nvidia GPUs.
There's also Gallium, which is a bunch of utilities and common code shared among these drivers - if certain things can be done once and work everywhere, they'll land in Gallium and benefit all the drivers. Most Mesa drivers use Gallium (radeonsi, nouveau, software renderers), some don't (intel after gma950).
Displaying 2D windows supports device-specific 2D drivers as well, but nowadays most of these are no longer needed as the modesetting can handle most hardware on its own. As the DRM/DRI got some additional interfaces for what used to be hardware-specific (setting resolutions, refresh rates, etc) and software requiring accelerated 2D drawing was optimized OpenGL-based renderers, dedicated 2D acceleration is slowly going away. Since around 2012, the 3D part of the graphics card deals with 2D operations.
Modern GPUs can also decode video!? There's VDPAU (NVIDIA & AMD GPUs) and VA-API (AMD & Intel GPUs) that can also talk to the GPU exposed via DRM/DRI and issue proper commands to decode/encode a given video stream. Those drivers are GPU-specific too.
So let's say you have some example GPUs, here's how example stacks could look like:
* AMD Radeon HD8750: amdgpu -> DRM/DRI -> Mesa (radeonsi)
* AMD Radeon HD4850: radeon kernel driver -> DRM/DRI -> Mesa (r600g) -> games/apps/etc.
* NVIDIA GeForce 460: nouveau kernel driver -> DRM/DRI -> Mesa (nouveau) -> games/apps.
* Intel GMA950: i915 kernel driver -> DRM/DRI -> Mesa (i945) -> games/apps.
{| class="wikitable sortable" width="90%"
! width="15%" | Description
! width="15%" | Analog Output
! width="15%" | Digital Output
! width="15%" | Laptop LCD
! width=30%" | Comments
|-
| <!--Description-->Fudomi GC888A
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->1080p 100in throw projector
|-
| <!--Description-->Vamvo VF320 (720P)
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->720p 90in
|-
| <!--Description-->Happrun H1
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->1080p 90in
|-
| <!--Description-->Umbolite Magcubic HIPPUS HY320 Mini
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->720p 100in
|-
| <!--Description-->Zentality A10 Plus
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->720p 110in
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->nexigo nova mini
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->nebula mars 3
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->epson lifestudio flex plus portable projector
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->dangbei freedo
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->benq gv50
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
| <!--Description-->
| <!--Analogue-->
| <!--Digital-->
| <!--Laptop LCD-->
| <!--Comments-->
|-
|}
Unless your computer uses a Firewire chipset manufactured by Texas Instruments, FireWire interfaces are likely to act buggy.
AROS is unlikely to ever support FireWire.
Bluetooth is similarly unlikely to be ever supported due to huge cost to be certified.
No, x86 PCMCIA card.resource at the moment. Writing card.resource would be a similar amount of work to writing a typical driver. However, it might be complicated by having to support a variety of PCMCIA-controller chipsets like TI PCI1225, PCI1410, PCI1420, 1450, PCIxx12 and O2, etc. m68k card.resource does not really have many higher level functions, most functions are really simple or poke Gayle registers directly. only exception is CopyTuple(). Amiga card.resource has one significant flaw: it's single-unit. would need card.resource and pccard.library. There was talk in the past of designing a new API for PCMCIA because card.resource only supports one slot, but since most modern laptops only have one slot anyway, I think it might be worthwhile to implement card.resource as-is (at least as a first step). pccard.library would be trivial to port. So, a new API is needed.
j8kuhldakbilbj3mdwswthovcpvpvnu
Cantonese
0
27558
4641186
4633337
2026-06-25T21:49:49Z
Noeiel17
3495772
fixed inaccurate language categorization
4641186
wikitext
text/x-wiki
{{status|50%}}
[[Image:Hongkong_victoria_peak.jpg|thumb|right|200px|<div style="text-align: center;">香港</div><br/>Victoria Harbour as seen from Victoria Peak 由山頂望向維多利亞港]]
Welcome to the wikibook course on '''Cantonese'''. To use this book, your web browser must first be configured to [[Chinese/Displaying Chinese Characters|display Chinese characters]] {{stage short|50%|Jan 24, 2005}}. If the characters in the box below appear as blank boxes or garbage such as �?�?, your browser is not properly configured.
{| border="1" cellspacing="0" cellpadding="6" align="center"
| style="background-color:#eeeeee;" |如果你識廣東話嘅話,唔該幫下手!
|}
== Introduction / 序 ==
*[[Cantonese/About Cantonese|About Cantonese<br/> 廣東話係乜]] {{stage short|100%|May 21, 2005}}
*[[Cantonese/How To Use This Textbook|How To Use This Textbook<br/>點用呢本教科書]] {{stage short|100%|May 24, 2005}}
*[[Cantonese/How To Study Cantonese|How To Study Cantonese<br/>點學廣東話]] {{stage short|100%|May 24, 2005}}
*[[Cantonese/Pronunciation|Pronunciation<br/> 廣東話發音]] {{stage short|75%|May 21, 2005}}
== Lessons / 課程 ==
*[[Cantonese/Lesson 1|Lesson 1: Hello!<br/> 第一課:你好!]] {{stage short|75%|May 22, 2005}}
*[[Cantonese/Lesson 2|Lesson 2: Introductions II<br/> 第二課:介紹 2]] {{stage short|00%|May 21, 2005}}
**[[Cantonese/Lesson 2/Conversation|Conversation<br/> 傾偈]]
**[[Cantonese/Lesson 2/Notes|Grammar Notes<br/> 文法]]
**[[Cantonese/Lesson 2/Drills|Practice Drills<br/> 練習]]
*[[Cantonese/Lesson 3|Lesson 3: An introduction to particles<br/> 第三課:助語詞]] {{stage short|00%|May 21, 2005}}
*[[Cantonese/Lesson 4|Lesson 4: Word order and Verbs<br/> 第四課:詞序同動詞]] {{stage short|00%|May 21, 2005}}
*[[Cantonese/Lesson 5|Lesson 5: Measure words<br/> 第五課:量詞]] {{stage short|00%|May 21, 2005}}
*[[Cantonese/Lesson 6|Lesson 6: More on interrogatives<br/> 第六課:疑問助詞]] {{stage short|00%|May 21, 2005}}
*[[Cantonese/Lesson 7|Lesson 7: What's this?<br/> 第七課:呢啲係咩黎架?]] {{stage short|00%|May 21, 2005}}
*[[Cantonese/Lesson 8|Lesson 8: Introduce yourself to strangers<br/> 第八課:向陌生人介紹自己]] {{stage short|00%|May 21, 2005}}
*[[Cantonese/Lesson 9|Lesson 9: It's Monday today.<br/> 第九課:今日係(星期/禮拜)一。]] {{stage short|00%|May 21, 2005}}
*[[Cantonese/Lesson 10|Lesson 10: Ancient Origins of Cantonese Words.<br/> 第十課:粵語嘅本字。]]
== Appendices / 附錄 ==
*[[Cantonese/Cantonese-English Glossary|Cantonese-English Glossary<br/>粤英詞彙]]{{stage short|00%|May 21, 2005}}
*[[Cantonese/Solutions to Exercises|Solutions to Exercises<br/>題解]] {{stage short|00%|May 21, 2005}}
*[[Cantonese/English-Cantonese Glossary|English-Cantonese Glossary<br/>英粤詞彙]] {{stage short|00%|May 21, 2005}}
<!--*[[Cantonese/Greetings|Greetings<br/>問候]] {{stage short|00%|May 21, 2005}}-->
*[[Cantonese/Numbers|Numbers<br/>數字/數目/數目字]] {{stage short|25%|May 21, 2005}}
*[[Cantonese/Romanization Systems|Cantonese Romanization Schemes<br/>粤語注音]] {{stage short|75%|May 21, 2005}}
<!--*[[Cantonese/Slang|Slang<br/>俚語]] {{stage short|00%|May 21, 2005}}-->
*[[Cantonese/Web Resources|Web Resources<br/>網上資源]] {{stage short|50%|May 22, 2005}}
*[[Cantonese/Common phrases|Common phrases]]
<!-- Some appendicies are commented out for now, because they may be a reduplication of the work on cantonese.sheik.co.uk or www.cantonese.ca. Would it be better to just link to these sites? -->
== References / 參考 ==
*[http://humanum.arts.cuhk.edu.hk/Lexis/lexi-can/ Cantonese Syllabary] - Look up the Cantonese pronunciations of a character or look for all the characters of a particular pronunciation. Includes sound files, simple definitions, variant pronunciations, and more. Can switch to virtually any Cantonese romanization system.
== Related Books / 相關維基教科書 ==
*[[Chinese|Standard Mandarin<br/> 普通话]]
*[[East Asian Calligraphy|How to write Chinese in the right way <br/> 如何正確書寫中文]]
== Contributors / 編者 ==
*[[Cantonese/Contributor's Guide|Contributor's Guide]] {{stage short|100%|Dec 21, 2006}}
*[[Cantonese/Planning|Textbook Planning<br/>課文安排]] {{stage short|25%|May 21, 2005}}
*Contributors: [[User:xingmu|xingmu]]
== See also / 睇埋 ==
*[[w:Cangjie input method|Cangjie input method]]
*[[w:Simplified Cangjie|Quick]] - Simplified version of Cangjie input method
*[[w:Jyutping|Jyutping]]
{{shelves|chinese language}}
{{alphabetical|C}}
{{Category 4 Language}}
ounlknyepr9b4j6i6zmewuk61h2j4hb
Hokkien
0
29385
4641183
4460323
2026-06-25T21:47:28Z
Noeiel17
3495772
fixed inaccurate language categorization
4641183
wikitext
text/x-wiki
{{status|25%}}
These [[wikipedia:Hokkien|Hokkien]] lessons are based on the [[w:Amoy (linguistics)|Amoy]] dialect of [[w:Min Nan|Min Nan]], native to the city of 廈門([[w:Taiwanese Romanization System|Tai-lo]] : E7-mng5, [[w:Pinyin|Pinyin]]: Xiamen) in 福建(Fujian), China. The Amoy dialect is mutually intelligible with
the dialects of 泉州(Tai-lo: Tsuan5-tsiu1, Pinyin: Quanzhou) and 漳州
(Tai-lo: Tsiang1-tsiu1, Pinyin: Zhangzhou), that border the city of Xiamen to the north and south respectively.
In Taiwan, Taiwanese Hokkien is often referred to as just Taiwanese. In Southeast Asia, the Amoy and
related Tsuan-tsiu and Tsiang-tsiu dialects are usually known as Hokkien.
The romanization scheme used for this book is the Taiwanese Hokkien Romanization System, which is very similar to Peh-oe-ji.
== Lessons / khò-thêng==
{| border=0 width=75%
|-
|valign=top width=48%|
'''Introduction / kài-siāu'''
*[[Hokkien/About Hokkien|About Hokkien<br> Bân-lâm-gú sī sím-mih?]] {{stage short|00%|Sep 9, 2016}}
*[[Hokkien/How To Use This Textbook|How to use this textbook<br> Jû-hô sú-iōng chit pún kàu-kho-su]] {{stage short|00%|Jan 24, 2005}}
*[[Hokkien/How To Study Hokkien|How to study Hokkien<br> Jû-hô ha̍k-si̍p Bân-lâm-gú]] {{stage short|00%|Jan 24, 2005}}
*[[Hokkien/Pronunciation|Pronunciation<br> Hoat-im]] {{stage short|00%|Jan 24, 2005}}
*[[Hokkien/Common Phrases|Common phrases]]
| width=1% |
| valign=top width=48%|
'''Lesson Texts / khò-pún'''
*[[Hokkien/Lesson 1|Lesson 1: Hello!<br>
Tē-it khò: Lí hó!]] {{stage short|100%|Jan 24, 2005}}
*[[Hokkien/Lesson 2|Lesson 2: Are you busy today?<br> Tē-lī khò: kin-á-jit lí bô-êng mā?]] {{stage short|75%|Jan 24, 2005}}
*[[Hokkien/Lesson 3|Lesson 3: An introduction to particles<br> Tē-saⁿ khò: chō•-sû]] {{stage short|00%|Jan 24, 2005}}
*[[Hokkien/Lesson 4|Lesson 4: Word order and Verbs<br> Tē-sì khò: sû-sū kap tōng-sû]] {{stage short|00%|Jan 24, 2005}}
*[[Hokkien/Lesson 5|Lesson 5: Measure words<br> Tē-ngó khò: liông-sû]] {{stage short|00%|Jan 24, 2005}}
*[[Hokkien/Lesson 6|Lesson 6: More on interrogatives<br> Tē-la̍k khò: gî-būn chō•-sû]] {{stage short|00%|Jan 24, 2005}}
*[[Hokkien/Lesson 7|Lesson 7: What's this?<br> Tē-chhit khò: che sī sím-mih?]] {{stage short|00%|Jan 24, 2005}}
*[[Hokkien/Lesson 8|Lesson 8: My name is Wang Ming<br> Tē-peh khò: gòa ê miâ-kiò Ông Bêng.]] {{stage short|00%|Jan 24, 2005}}
|}
{{Shelves|Chinese language}}
{{alphabetical|M}}
{{Category 4 Language}}
8vj9djfq42tcvtgxqstuui8sd0fw9sp
Template:Policy
10
33472
4641200
4626624
2026-06-26T00:10:34Z
Codename Noreste
3441010
Implementing an edit request.
4641200
wikitext
text/x-wiki
{{Ombox
| type = notice
| image = [[File:Green check.svg|30px|link=|alt=]]
| imageright = {{{shortcutoverride|{{#if:{{{shortcut|{{{shortcut1|{{{sc1|{{{1|<noinclude>WB</noinclude>}}}}}}}}}}}}
| {{Shortcut|{{{shortcut|{{{shortcut1|{{{sc1|{{{1|<noinclude>WB</noinclude>}}}}}}}}}}}}
|{{{shortcut2|{{{sc2|{{{2|}}}}}}}}}
|{{{shortcut3|{{{sc3|{{{3|}}}}}}}}}
|{{{shortcut4|{{{sc4|{{{4|}}}}}}}}}
|{{{shortcut5|{{{sc5|{{{5|}}}}}}}}}
|msg={{{shortcutmsg|}}}
<noinclude>|category=no</noinclude>}} }} }}}
| text = <div style="padding-top: 6px; padding-bottom: 5px;">'''This page documents an official [[Wikibooks:Policies and guidelines|Wikibooks policy]]''' that the Wikibooks community has accepted and Wikibookians '''must follow'''. Except for minor edits, please make use of the [[{{TALKPAGENAME}}|discussion page]] to propose changes to this policy.</div>
}}<includeonly>{{#ifeq:{{{example|no}}}|no|[[Category:Wikibooks policies|{{PAGENAME}}]]}}</includeonly><noinclude>
{{documentation}}
</noinclude>
64mzyogk88smfwoabdqjigmsxt7oxzr
Chess Opening Theory/1. e4/1...c5/2. Nf3/2...Nc6/3. d4
0
42319
4641174
4631297
2026-06-25T19:59:22Z
~2026-36813-86
3609878
changed e5 to d5 as it is the relevant square
4641174
wikitext
text/x-wiki
{{Chess Opening Theory/Position
|name=Open Sicilian with ...Nc6
|eco=[[Chess/ECOB|B32]]
|parent=[[Chess Opening Theory/1. e4/1...c5|Sicilian defence]] → [[Chess Opening Theory/1. e4/1...c5/2. Nf3/2...Nc6|2...Nc6]]
}}
== 3. d4 · Open Sicilian with ...Nc6 ==
White takes space in the centre. White invites Black to take the d-pawn. Black can hardly allow White to advance to d5, taking more space and displacing their knight.
[[/3...cxd4|'''3...cxd4''']] eliminates the pawn and White can recapture 4. Nxd4. White's advantage is that they now have open lines for all their pieces to develop. Black's advantage is that they have both central pawns to White's one.
'''3...Nxd4?!''' is legal but barely warrants mentioning. 4. Nxd4 cxd4 5. Qxd4 only gives White a helping hand with their attack.
'''3...e6?''' to increase control of the d5 square does not prevent White from playing d5.
==Theory table==
1.e4 c5 2.Nf3 Nc6 3.d4
<table border="0" cellspacing="0" cellpadding="4">
<tr>
<th></th>
<th align="left">3</th>
</tr>
<tr>
<th align="right">Main Line</th>
<td>...<br>[[/3...cxd4|cxd4]]</td>
<td>+=</td>
</tr>
<tr>
<th align="right"></th>
<td>...<br>[[/3...e6|e6]]</td>
<td>Nc3<br> </td>
</tr>
</table>
{{ChessMid}}
==References==
{{reflist}}
=== See also ===
{{Wikipedia|Sicilian Defence}}
{{BCO2}}
{{Chess Opening Theory/Footer}}
[[fi:Shakkiaapinen/Peli/1. e4/1...c5/2. Rf3/2...Rc6/3. d4]]
469w2trqiw4vnwbmg2ch875q1kwy6u8
LaTeX/Mathematics
0
42442
4641163
4641016
2026-06-25T17:47:47Z
~2026-36819-09
3609856
added multiply sign
4641163
wikitext
text/x-wiki
<noinclude>{{LaTeX/Top}}
×</noinclude>
One of the greatest motivating forces for Donald Knuth when he began developing the original TeX system was to create something that allowed simple construction of mathematical formulas, while looking professional when printed. The fact that he succeeded was most probably why TeX (and later on, LaTeX) became so popular within the scientific community. Typesetting mathematics is one of LaTeX's greatest strengths. It is also a large topic due to the existence of so much mathematical notation.
If your document requires only a few simple mathematical formulas, plain LaTeX has most of the tools that you will ever need. If you are writing a scientific document that contains numerous complex formulas, the {{LaTeX/Package|amsmath}} package<ref>http://www.ams.org/publications/authors/tex/amslatex</ref> introduces several new commands that are more powerful and flexible than the ones provided by basic LaTeX. The {{LaTeX/Package|mathtools}} package fixes some {{LaTeX/Package|amsmath}} quirks and adds some useful settings, symbols, and environments to amsmath.<ref>http://www.ctan.org/tex-archive/macros/latex/contrib/mathtools/mathtools.pdf</ref> To use either package, include:
<syntaxhighlight lang="latex">
\usepackage{amsmath}
</syntaxhighlight>
or
<syntaxhighlight lang="latex">
\usepackage{mathtools}
</syntaxhighlight>
in the preamble of the document. The {{LaTeX/Package|mathtools}} package loads the {{LaTeX/Package|amsmath}} package and hence there is no need to <code>\usepackage{amsmath}</code> in the preamble if {{LaTeX/Package|mathtools}} is used.
== Mathematics environments ==
LaTeX needs to know when the text is mathematical. This is because LaTeX typesets math notation differently from normal text. Therefore, special environments have been declared for this purpose. They can be distinguished into two categories depending on how they are presented:
* ''text'' — text formulas are displayed inline, that is, within the body of text where it is declared, for example, I can say that <math>a+a=2a</math> within this sentence.
* ''displayed'' — displayed formulas are on a line by themselves.
As math requires special environments, there are naturally the appropriate environment names you can use in the standard way. Unlike most other environments, however, there are some handy shorthands for declaring your formulas. The following table summarizes them:
{| class="wikitable" latexfontsize="scriptsize"
!width="15%"|Type
!Inline (within text) formulas
!Displayed equations
!Displayed and automatically numbered equations
|-
!Environment
|{{LaTeX/LaTeX|code=math}}
|{{LaTeX/LaTeX|code=displaymath}}
|{{LaTeX/LaTeX|code=equation}}
|-
! width="15%"|LaTeX shorthand
|{{LaTeX/LaTeX|code=\(...\) }}
|{{LaTeX/LaTeX|code=\[...\]}}
|
|-
!width="15%"|TeX shorthand
|{{LaTeX/LaTeX|code=$...$}}
|{{LaTeX/LaTeX|code=$$...$$ }}
|
|-
!width="20%"|Comment
|
|
|{{LaTeX/LaTeX|code=equation*}} (starred version) suppresses numbering, but requires amsmath
|}
'''Suggestion''': Using the {{LaTeX/LaTeX|code=$$...$$}} should be avoided, as it may cause problems, particularly with the AMS-LaTeX macros. Furthermore, should a problem occur, the error messages may not be helpful.
The {{LaTeX/LaTeX|code=equation*}} and {{LaTeX/LaTeX|code=displaymath}} environments are functionally equivalent.
If you are typing text normally, you are said to be in ''text mode'', but while you are typing within one of those mathematical environments, you are said to be in ''math mode'', that has some differences compared to the ''text mode'':
# Most spaces and line breaks do not have any significance, as all spaces are either derived logically from the mathematical expressions or have to be specified with special commands such as {{LaTeX/LaTeX|code=\quad}}
# Empty lines are not allowed. Only one paragraph per formula.
# Each letter is considered to be the name of a variable and will be typeset as such. If you want to typeset normal text within a formula (normal upright font with normal spacing), then you have to enter the text using [[#Adding text to equations|dedicated commands.]]
=== Inserting "Displayed" maths inside blocks of text ===
In order for some operators, such as {{LaTeX/LaTeX|code=\lim}} or {{LaTeX/LaTeX|code=\sum}}, to be displayed correctly inside some math environments (read {{LaTeX/LaTeX|code=$......$}}), it might be convenient to write the {{LaTeX/LaTeX|code=\displaystyle}} class inside the environment. Doing so might cause the line to be taller, but will cause exponents and indices to be displayed correctly for some math operators. For example, the {{LaTeX/LaTeX|code=$\sum$}} will print a smaller Σ and {{LaTeX/LaTeX|code=$\displaystyle \sum$}} will print a bigger one <math>\displaystyle \sum</math>, like in equations.{{efn|name="amsmath"}} It is possible to force this behaviour for all math environments by declaring {{LaTeX/LaTeX|code=\everymath{\displaystyle} }} in the preamble (i.e. before {{LaTeX/LaTeX|code=\begin{document} }}).
== Symbols ==
Mathematics has many symbols! The following is a set of symbols that can be accessed directly from the keyboard:
+ - = ! / ( ) [ ] < > | ' : *
Beyond those listed above, distinct commands must be issued in order to display the desired symbols. There are many examples such as Greek letters, set and relations symbols, arrows, binary operators, etc.
For example:
{{LaTeX/Example|code=
\forall x \in X, \quad \exists y \leq \epsilon
|render=<math>
\forall x \in X, \quad \exists y \leq \epsilon
\,</math>}}
Fortunately, there's a tool that can greatly simplify the search for the command for a specific symbol. Look for "Detexify" in the [[#External links|external links]] section below. Another option would be to look in "The Comprehensive LaTeX Symbol List" in the [[#External links|external links]] section below.
==Greek letters==
Greek letters are commonly used in mathematics, and they are very easy to type in ''math mode''. You just have to type the name of the letter after a backslash: if the first letter is lowercase, you will get a lowercase Greek letter, if the first letter is uppercase (and only the first letter), then you will get an uppercase letter. Note that some uppercase Greek letters look like Latin ones, so they are not provided by LaTeX (e.g. uppercase ''Alpha'' and ''Beta'' are just "A" and "B", respectively).
Lowercase epsilon, theta, kappa, phi, pi, rho, and sigma are provided in two different versions. The alternate, or ''var''iant, version is created by adding "var" before the name of the letter:
{{LaTeX/Example|code=
\alpha, \Alpha, \beta, \Beta, \gamma, \Gamma, \pi, \Pi, \phi, \varphi, \mu, \Phi
|render=<math>\alpha, \Alpha, \beta, \Beta, \gamma, \Gamma, \pi, \Pi, \phi, \varphi, \mu, \Phi</math>}}
Scroll down to [[#List of mathematical symbols]] for a complete list of Greek symbols.
== Operators ==
An operator is a function that is written as a word: e.g. trigonometric functions (sin, cos, tan), logarithms and exponentials (log, exp), limits (lim), as well as trace and determinant (tr, det). LaTeX has many of these defined as commands:
{{LaTeX/Example|code=
\cos (2\theta) = \cos^2 \theta - \sin^2 \theta
|render=<math>\cos (2\theta) = \cos^2 \theta - \sin^2 \theta \,</math>
}}
For certain operators such as [[w:Limit (mathematics)|limits]], the subscript is placed underneath the operator:
{{LaTeX/Example|code=
\lim\limits_{x \to \infty} \exp(-x) = 0
|render=<math>\lim_{x \to \infty} \exp(-x) = 0</math>}}
For the [[w:Modular arithmetic|modular operator]] there are two commands: {{LaTeX/LaTeX|code=\bmod}} and {{LaTeX/LaTeX|code=\pmod}}:
{{LaTeX/Example|code=
a \bmod b
|render=<math>
a \, \bmod \, b
\,</math>}}
{{LaTeX/Example|code=
x \equiv a \pmod{b}
|render=<math>
x \equiv a \pmod b
\,</math>}}
To use operators that are not pre-defined, such as [[w:argmax|argmax]], see [[../Advanced Mathematics#Custom operators|custom operators]]
== Powers and indices ==
Powers and indices are equivalent to superscripts and subscripts in normal text mode. The caret (<code>^</code>; [[w:Caret|also known as the circumflex accent]]) character is used to raise something, and the underscore (<code>_</code>) is for lowering. If an expression containing more than one character is raised or lowered, it should be grouped using curly braces (<code>{</code> and <code>}</code>).
{{LaTeX/Example|code=
k_{n+1} = n^2 + k_n^2 - k_{n-1}
|render=<math>
k_{n+1} = n^2 + k_n^2 - k_{n-1}
\,</math>}}
For powers with more than one digit, surround the power with {}.
{{LaTeX/Example|code=
x^{1.01}
|render=<math>
x^{1.01}
\,</math>}}
An underscore (<code>_</code>) can be used with a vertical bar (<math> | </math>) to denote evaluation using subscript notation in mathematics:
{{LaTeX/Example|code=
f(n) = n^5 + 4n^2 + 2 {{!}}_{n=17}
|render=<math>
f(n) = n^5 + 4n^2 + 2 |_{n=17}
\,</math>}}
== Fractions and Binomials ==
A fraction is created using the {{LaTeX/LaTeX|code=\frac{numerator}{denominator}<!---->}} command (for those who need their memories refreshed, that's the ''top'' and ''bottom'' respectively!). Likewise, the [[w:Binomial coefficient|binomial coefficient]] (a.k.a, the Choose function) may be written using the {{LaTeX/LaTeX|code=\binom}} command:{{efn|name="amsmath"}}
{{LaTeX/Example|code=
\frac{n!}{k!(n-k)!} = \binom{n}{k}
|render=
<math>
\frac{n!}{k!(n-k)!} = \binom{n}{k}
</math>
}}
You can embed fractions within fractions:
{{LaTeX/Example|code=
\frac{\frac{1}{x}+\frac{1}{y}<!---->}{y-z}
|render=
<math>
\frac{\frac{1}{x}+\frac{1}{y}}{y-z}
</math>
}}
Note that when appearing inside another fraction, or in inline text <math>\tfrac{a}{b}</math>, a fraction is noticeably smaller than in displayed mathematics. The {{LaTeX/LaTeX|code=\tfrac}} and {{LaTeX/LaTeX|code=\dfrac}} commands{{efn|name="amsmath"}} force the use of the respective styles, {{LaTeX/LaTeX|code=\textstyle}} and {{LaTeX/LaTeX|code=\displaystyle}}. Similarly, the {{LaTeX/LaTeX|code=\tbinom}} and {{LaTeX/LaTeX|code=\dbinom}} commands typeset the binomial coefficient.
For relatively simple fractions, especially within the text, it may be more aesthetically pleasing to use [[#Powers and indices|powers and indices]] instead:
{{LaTeX/Example|code=
^3/_7
|render=<math>
^3/_7
\,</math>
}}
If this looks a little "loose" (i.e., overspaced), a tightened version can be defined by inserting some negative space
{{LaTeX/Example|code=
%running fraction with slash - requires math mode.
\newcommand*\rfrac[2]{{}^{#1}\!/_{#2}}
\rfrac{3}{7}
|render=<math>
{{}^{3}\!/_{7}}
</math>
}}
If you use them throughout the document, usage of {{LaTeX/Package|xfrac}} package is recommended.
This package provides {{LaTeX/LaTeX|code=\sfrac}} command to create slanted fractions. Usage:
{{LaTeX/Example|code=
Take $\sfrac{1}{2}$ cup of sugar, \dots
3\times\sfrac{1}{2}=1\sfrac{1}{2}
Take ${}^1/_2$ cup of sugar, \dots
3\times{}^1/_2=1{}^1/_2
|render=[[Image:LaTeX-xfrac-example.png|400px]]}}
If fractions are used as an exponent, curly braces have to be used around the {{LaTeX/LaTeX|code=\sfrac}} command:
$x^\frac{1}{2}$ % no error
$x^\sfrac{1}{2}$ % error
$x^{\sfrac{1}{2}}$ % no error
{{LaTeX/Example|code=
$x^\frac{1}{2}$ % no error
|render=
<math>
t^\frac{1}{2}
</math>
}}
In some cases, using the package alone will result in errors about certain font shapes not being available. In that case, the {{LaTeX/Package|lmodern}} and {{LaTeX/Package|fix-cm}} packages need to be added as well.
Alternatively, the {{LaTeX/Package|nicefrac}} package provides the {{LaTeX/LaTeX|code=\nicefrac}} command, whose usage is similar to {{LaTeX/LaTeX|code=\sfrac}}.
=== Continued fractions ===
Continued fractions should be written using {{LaTeX/LaTeX|code=\cfrac}} command:{{efn|name="amsmath"}}
{{LaTeX/Example|code=
\begin{equation}
x = a_0 + \cfrac{1}{a_1
+ \cfrac{1}{a_2
+ \cfrac{1}{a_3 + \cfrac{1}{a_4} } } }
\end{equation}
|render=
<math> x = a_0 + \cfrac{1}{a_1
+ \cfrac{1}{a_2
+ \cfrac{1}{a_3 + \cfrac{1}{a_4}}}}
</math>
}}
=== Multiplication of two numbers ===
To make multiplication visually similar to a fraction, a nested array can be used. For example, multiplication of numbers written one below the other can be typeset as follows:
{{LaTeX/Example|code=
\begin{equation}
\frac{
\begin{array}[b]{r}
\left( x_4.12 x_217 \right)\\
\times \left( x'_1 x'_2 \right)
\end{array}
}{
\left( y_1y_2y_3y_4 \right)
}
\end{equation}
|render=
<math>\frac{
\begin{array}[b]{r}
\left( x_1 x_2 \right)\\
\times \left( x'_1 x'_2 \right)
\end{array}
}{
\left( y_1y_2y_3y_4 \right)
}
</math>
}}
== Roots ==
The {{LaTeX/LaTeX|code=\sqrt}} command creates a square root surrounding an expression. It accepts an optional argument specified in square brackets (<code>[</code> and <code>]</code>) to change magnitude:
{{LaTeX/Example|code=
\sqrt{\frac{a}{b}<!---->}
|render=
<math>
\sqrt{\frac{a}{b}}
</math>
}}
{{LaTeX/Example|code=
\sqrt[n]{1+x+x^2+x^3+\dots+x^n}
|render=<math>
\sqrt[n]{1+x+x^2+x^3+\dots+x^n}
</math>
}}
Some people prefer writing the square root "closing" it over its content. This method arguably makes it more clear what is in the scope of the root sign. This habit is not normally used while writing with the computer, but if you still want to change the output of the square root, LaTeX gives you this possibility. Just add the following code in the preamble of your document:
{{LaTeX/Example|code=
% New definition of square root:
% it renames \sqrt as \oldsqrt
\let\oldsqrt\sqrt
% it defines the new \sqrt in terms of the old one
\def\sqrt{\mathpalette\DHLhksqrt}
\def\DHLhksqrt#1#2{%
\setbox0=\hbox{$#1\oldsqrt{#2\,}$}\dimen0=\ht0
\advance\dimen0-0.2\ht0
\setbox2=\hbox{\vrule height\ht0 depth -\dimen0}%
{\box0\lower0.4pt\box2}<!---->}
|render=[[Image:Latex_new_squareroot.png|thumb|right|250px|The new style is on left, the old one on right]]
}}
This TeX code first renames the {{LaTeX/LaTeX|code=\sqrt}} command as {{LaTeX/LaTeX|code=\oldsqrt}}, then redefines {{LaTeX/LaTeX|code=\sqrt}} in terms of the old one, adding something more. The new square root can be seen in the picture on the left, compared to the old one on the right. Unfortunately this code won't work if you want to use multiple roots: if you try to write <math>\sqrt[b]{a}</math> as {{LaTeX/LaTeX|code=\sqrt[b]{a}<!---->}} after you used the code above, you'll just get a wrong output. In other words, you can redefine the square root this way only if you are not going to use multiple roots in the whole document.
An alternative piece of TeX code that does allow multiple roots is
{{LaTeX/Example|code=
\usepackage{letltxmacro}
\makeatletter
\let\oldr@@t\r@@t
\def\r@@t#1#2{%
\setbox0=\hbox{$\oldr@@t#1{#2\,}$}\dimen0=\ht0
\advance\dimen0-0.2\ht0
\setbox2=\hbox{\vrule height\ht0 depth -\dimen0}%
{\box0\lower0.4pt\box2}<!---->}
\LetLtxMacro{\oldsqrt}{\sqrt}
\renewcommand*{\sqrt}[2][\ ]{\oldsqrt[#1]{#2} <!---->}
\makeatother
$\sqrt[a]{b} \quad \oldsqrt[a]{b}$
|render=[[Image:LaTeX example sqrt.png]]
}}
However, this requires the {{LaTeX/LaTeX|code=\usepackage{letltxmacro}<!---->}} package.
== Sums and integrals ==
The {{LaTeX/LaTeX|code=\sum}} and {{LaTeX/LaTeX|code=\int}} commands insert the sum and integral symbols respectively, with limits specified using the caret (<code>^</code>) and underscore (<code>_</code>). The typical notation for sums is:
{{LaTeX/Example|code=
\sum_{i=1}^{10} t_i
|render=<math>
\textstyle\sum_{i=1}^{10} t_i
\,</math>
}}
or
{{LaTeX/Example|code=
\displaystyle\sum_{i=1}^{10} t_i
|render=<math>
\displaystyle\sum_{i=1}^{10} t_i
\,</math>
}}
The limits for the integrals follow the same notation. It's also important to represent the integration variables with an upright <math>\mathrm{d}</math>, which in math mode is obtained through the {{LaTeX/LaTeX|code=\mathrm{}|}} command, and with a small space separating it from the integrand, which is attained with the {{LaTeX/LaTeX|code=\,}} command.
{{LaTeX/Example|code=
\int_0^\infty \mathrm{e}^{-x}\,\mathrm{d}x
|render=<math>
\int_0^\infty \mathrm{e}^{-x}\,\mathrm{d}x
\,</math>
}}
There are many other "big" commands which operate in a similar manner:
{|
| <code>\sum</code> ||width="5%"| <math>\sum \,</math>
|style="padding-left:20px"|
| <code>\prod</code> ||width="5%"| <math>\prod</math>
|style="padding-left:20px"|
| <code>\coprod</code> ||width="5%"| <math>\coprod</math>
|-
| <code>\bigoplus</code> || <math>\bigoplus</math>
|style="padding-left:20px"|
| <code>\bigotimes</code> || <math>\bigotimes</math>
|style="padding-left:20px"|
| <code>\bigodot</code> || <math>\bigodot</math>
|-
| <code>\bigcup</code> || <math>\bigcup</math>
|style="padding-left:20px"|
| <code>\bigcap</code> || <math>\bigcap</math>
|style="padding-left:20px"|
| <code>\biguplus</code> || <math>\biguplus</math>
|-
| <code>\bigsqcup</code> || <math>\bigsqcup</math>
|style="padding-left:20px"|
| <code>\bigvee</code> || <math>\bigvee</math>
|style="padding-left:20px"|
| <code>\bigwedge</code> || <math>\bigwedge</math>
|-
| <code>\int</code> || <math>\int</math>
|style="padding-left:20px"|
| <code>\oint</code> || <math>\oint</math>
|style="padding-left:20px"|
| <code>\iint</code>{{efn|name="amsmath"}} || <math>\iint</math>
|-
| <code>\iiint</code>{{efn|name="amsmath"}} || <math>\iiint</math>
|style="padding-left:20px"|
| <code>\iiiint</code>{{efn|name="amsmath"}} || <math>\iiiint</math>
|style="padding-left:20px"|
| <code>\idotsint</code>{{efn|name="amsmath"}} || <math>\int \! \cdots \! \int</math>
|}
For more integral symbols, including those not included by default in the Computer Modern font, try the {{LaTeX/Package|esint}} package.
The {{LaTeX/LaTeX|code=\substack}} command{{efn|name="amsmath"}} allows the use of {{LaTeX/LaTeX|code=\\}} to write the limits over multiple lines:
{{LaTeX/Example|code=
\sum_{\substack{
0<i<m \\
0<j<n
}<!---->}
P(i,j)
|render=<math>
\sum_{\overset{\scriptstyle 0<i<m} {\scriptstyle 0<j<n}} P(i,j)
\,</math>
}}
If you want the limits of an integral to be specified above and below the symbol (like the sum), use the {{LaTeX/LaTeX|code=\limits}} command:
{{LaTeX/Example|code=
\int\limits_a^b
|render=<math>
\int\limits_b^c
\,</math>
}}
However, if you want this to apply to all integrals, it is preferable to specify the {{LaTeX/Parameter|intlimits}} option when loading the {{LaTeX/Package|amsmath}} package:
{{LaTeX/Usage|code=
\usepackage[intlimits]{amsmath}
}}
Subscripts and superscripts in other contexts, as well as other parameters to {{LaTeX/Package|amsmath}} package related to them, are described in [[LaTeX/Advanced_Mathematics#Advanced_formatting|Advanced Mathematics]] chapter.
For bigger integrals, you may use personal declarations, or the {{LaTeX/Package|bigints}} package <ref name=LM> http://hdl.handle.net/2268/6219</ref>.
== Brackets, braces and delimiters ==
<small>''How to use braces in multi line equations is described in the [[LaTeX/Advanced_Mathematics#Braces_spanning_multiple_lines|Advanced Mathematics]] chapter.''</small>
The use of delimiters such as brackets soon becomes important when dealing with anything but the most trivial equations. Without them, formulas can become ambiguous. Also, special types of mathematical structures, such as matrices, typically rely on delimiters to enclose them.
There are a variety of delimiters available for use in LaTeX:
{{LaTeX/Example|code=
( a ), [ b ], \{ c \}, {{!}} d {{!}}, \{{!}} e \{{!}},
\langle f \rangle, \lfloor g \rfloor,
\lceil h \rceil, \ulcorner i \urcorner,
/ j \backslash
|render=<math>
( a ), [ b ], \{ c \}, | d |, \| e \|, \langle f \rangle, \lfloor g \rfloor, \lceil h \rceil, \ulcorner i \urcorner,
/ j \backslash
</math>
}}
where {{LaTeX/LaTeX|code=\lbrack}} and {{LaTeX/LaTeX|code=\rbrack}} may be used in place of [ and ].
=== Automatic sizing ===
Very often, mathematical features will differ in size, in which case the delimiters surrounding the expression should vary accordingly. This can be done automatically using the {{LaTeX/LaTeX|code=\left}}, {{LaTeX/LaTeX|code=\right}}, and {{LaTeX/LaTeX|code=\middle}} commands. Any of the previous delimiters may be used in combination with these:
{{LaTeX/Example|code=
\left(\frac{x^2}{y^3}\right)
|render=<math>
\left(\frac{x^2}{y^3}\right)
\,</math>
}}
{{LaTeX/Example|code=
P\left(A=2\middle{{!}}\frac{A^2}{B}>4\right)
|
render=[[Image:Latex_example_middle.png|150px]]
}}
Curly braces are defined differently by using {{LaTeX/LaTeX|code=\left\{}} and {{LaTeX/LaTeX|code=\right\} }},
{{LaTeX/Example|code=
\left\{\frac{x^2}{y^3}\right\}
|render=<math>
\left\{\frac{x^2}{y^3}\right\}
\,</math>
}}
If a delimiter on only one side of an expression is required, then an invisible delimiter on the other side may be denoted using a period (<code>.</code>).
{{LaTeX/Example|code=
\left.\frac{x^3}{3}\right{{!}}_0^1
|render=<math>
\left.\frac{x^3}{3}\right|_0^1
\,</math>
}}
=== Manual sizing ===
In certain cases, the sizing produced by the {{LaTeX/LaTeX|code=\left}} and {{LaTeX/LaTeX|code=\right}} commands may not be desirable, or you may simply want finer control over the delimiter sizes. In this case, the {{LaTeX/LaTeX|code=\big}}, {{LaTeX/LaTeX|code=\Big}}, {{LaTeX/LaTeX|code=\bigg}} and {{LaTeX/LaTeX|code=\Bigg}} modifier commands may be used:
{{LaTeX/Example|code=
( \big( \Big( \bigg( \Bigg(
|render=<math>
( \big( \Big( \bigg( \Bigg(
\,</math>
}}
These commands are primarily useful when dealing with nested delimiters. For example, when typesetting
{{LaTeX/Example|code=
\frac{\mathrm d}{\mathrm d x} \left( k g(x) \right)
|render=<math>
\frac{\mathrm d}{\mathrm d x} \left( k g(x) \right)
</math>
}}
we notice that the {{LaTeX/LaTeX|code=\left}} and {{LaTeX/LaTeX|code=\right}} commands produce the same size delimiters as those nested within it. This can be difficult to read. To fix this, we write
{{LaTeX/Example|code=
\frac{\mathrm d}{\mathrm d x} \big( k g(x) \big)
|render=<math>
\frac{\mathrm d}{\mathrm d x} \big( k g(x) \big)
</math>
}}
Manual sizing can also be useful when an equation is too large, trails off the end of the page, and must be separated into two lines using an align command. Although the commands {{LaTeX/LaTeX|code=\left.}} and {{LaTeX/LaTeX|code=\right.}} can be used to balance the delimiters on each line, this may lead to wrong delimiter sizes. Furthermore, manual sizing can be used to avoid overly large delimiters — if an {{LaTeX/LaTeX|code=\underbrace}} or a similar command appears between the delimiters.
== Matrices and arrays ==
A basic matrix may be created using the {{LaTeX/Environment|matrix}} environment{{efn|name="amsmath"}}: in common with other table-like structures, entries are specified by row, with columns separated using an ampersand ({{LaTeX/LaTeX|code=&}}) and new rows separated with a double backslash ({{LaTeX/LaTeX|code=\\}})
{{LaTeX/Example|code=
\[
\begin{matrix}
a & b & c \\
d & e & f \\
g & h & i
\end{matrix}
\]
|render=<math>
\begin{matrix}
a & b & c \\
d & e & f \\
g & h & i
\end{matrix}
</math>
}}
To specify alignment of columns in the table, use starred version{{efn|name="mathtools"}}:
{{LaTeX/Example|code=
\begin{matrix}
-1 & 3 \\
2 & -4
\end{matrix}
=
\begin{matrix*}[r]
-1 & 3 \\
2 & -4
\end{matrix*}
|render=
<math>
\begin{matrix}
-1 & 3 \\
2 & -4
\end{matrix}
=
\begin{matrix}
-1 & \,\;\;3 \\
\,\;\;2 & -4
\end{matrix}
</math>
}}
The alignment by default is {{LaTeX/Parameter|c}}, but it can be any column type valid in {{LaTeX/Environment|array}} environment.
However matrices are usually enclosed in delimiters of some kind, and while it is possible to use the [[#Automatic sizing|<code>\left</code> and <code>\right</code> commands]], there are various other predefined environments which automatically include delimiters:
{|class="wikitable"
! Environment name
! Surrounding delimiter
! Notes
|-
| {{LaTeX/Environment|pmatrix}}{{efn|name="amsmath"}}
| <math>( \, ) </math>
| centers columns by default
|-
| {{LaTeX/Environment|pmatrix*}}{{efn|name="mathtools"}}
| <math>( \, ) </math>
| allows to specify alignment of columns in optional parameter
|-
| {{LaTeX/Environment|bmatrix}}{{efn|name="amsmath"}}
| <math>[ \, ] </math>
| centers columns by default
|-
| {{LaTeX/Environment|bmatrix*}}{{efn|name="mathtools"}}
| <math>[ \, ] </math>
| allows to specify alignment of columns in optional parameter
|-
| {{LaTeX/Environment|Bmatrix}}{{efn|name="amsmath"}}
| <math>\{ \, \} </math>
| centers columns by default
|-
| {{LaTeX/Environment|Bmatrix*}}{{efn|name="mathtools"}}
| <math>\{ \, \} </math>
| allows to specify alignment of columns in optional parameter
|-
| {{LaTeX/Environment|vmatrix}}{{efn|name="amsmath"}}
| <math>| \, | </math>
| centers columns by default
|-
| {{LaTeX/Environment|vmatrix*}}{{efn|name="mathtools"}}
| <math>| \, | </math>
| allows to specify alignment of columns in optional parameter
|-
| {{LaTeX/Environment|Vmatrix}}{{efn|name="amsmath"}}
| <math>\| \, \| </math>
| centers columns by default
|-
| {{LaTeX/Environment|Vmatrix*}}{{efn|name="mathtools"}}
| <math>\| \, \| </math>
| allows to specify alignment of columns in optional parameter
|}
When writing down arbitrary sized matrices, it is common to use horizontal, vertical and diagonal triplets of dots (known as [[w:ellipsis|ellipses]]) to fill in certain columns and rows. These can be specified using the {{LaTeX/LaTeX|code=\cdots}}, {{LaTeX/LaTeX|code=\vdots}} and {{LaTeX/LaTeX|code=\ddots}} respectively:
{{LaTeX/Example|code=
A_{m,n} =
\begin{pmatrix}
a_{1,1} & a_{1,2} & \cdots & a_{1,n} \\
a_{2,1} & a_{2,2} & \cdots & a_{2,n} \\
\vdots & \vdots & \ddots & \vdots \\
a_{m,1} & a_{m,2} & \cdots & a_{m,n}
\end{pmatrix}
|render=<math>
A_{m,n} =
\begin{pmatrix}
a_{1,1} & a_{1,2} & \cdots & a_{1,n} \\
a_{2,1} & a_{2,2} & \cdots & a_{2,n} \\
\vdots & \vdots & \ddots & \vdots \\
a_{m,1} & a_{m,2} & \cdots & a_{m,n}
\end{pmatrix}
</math>
}}
In some cases, you may want to have finer control of the alignment within each column, or to insert lines between columns or rows. This can be achieved using the {{LaTeX/Environment|array}} environment, which is essentially a math-mode version of the [[../Tables#The tabular environment|<code>tabular</code> environment]], which requires that the columns be pre-specified:
{{LaTeX/Example|code=
\begin{array}{c{{!}}c}
1 & 2 \\
\hline
3 & 4
\end{array}
|render=<math>
\begin{array}{c|c}
1 & 2 \\
\hline
3 & 4
\end{array}
</math>
}}
You may see that the AMS matrix class of environments doesn't leave enough space when used together with fractions resulting in output similar to this:
<math>
M = \begin{bmatrix}
\frac{5}{6} & \frac{1}{6} & 0\\
\frac{5}{6} & 0 & \frac{1}{6}\\
0 & \frac{5}{6} & \frac{1}{6}
\end{bmatrix}
</math>
To counteract this problem, add additional leading space with the optional parameter to the {{LaTeX/LaTeX|code=\\}} command:
{{LaTeX/Example|code=
M = \begin{bmatrix}
\frac{5}{6} & \frac{1}{6} & 0 \\[0.3em]
\frac{5}{6} & 0 & \frac{1}{6} \\[0.3em]
0 & \frac{5}{6} & \frac{1}{6}
\end{bmatrix}
|render=<math>
M = \begin{bmatrix}
\frac{5}{6} & \frac{1}{6} & 0 \\[0.3em]
\frac{5}{6} & 0 & \frac{1}{6} \\[0.3em]
0 & \frac{5}{6} & \frac{1}{6}
\end{bmatrix}</math>
}}
If you need "border" or "indexes" on your matrix, plain TeX provides the macro {{LaTeX/LaTeX|code=\bordermatrix}}
{{LaTeX/Example|code=
M = \bordermatrix{~ & x & y \cr
A & 1 & 0 \cr
B & 0 & 1 \cr}
|render=[[Image:bordermatrix.png|150px]]
}}
=== Matrices in running text ===
To insert a small matrix without increasing leading in the line containing it, use {{LaTeX/Environment|smallmatrix}} environment:
{{LaTeX/Example|code=
A matrix in text must be set smaller:
$\bigl(\begin{smallmatrix}
a&b \\ c&d
\end{smallmatrix} \bigr)$
to not increase leading in a portion of text.
|render=[[Image:LaTeX-smallmatrix.png]]
}}
== Adding text to equations ==
The math environment differs from the text environment in the representation of text. Here is an example of trying to represent text within the math environment:
{{LaTeX/Example|code=
50 apples \times 100 apples = lots of apples^2
|render=<math>
50 apples \times 100 apples = lots of apples^2
\,</math>
}}
There are two noticeable problems: there are no spaces between words or numbers, and the letters are italicized and more spaced out than normal. Both issues are simply artifacts of the maths mode, in that it treats it as a mathematical expression: spaces are ignored (LaTeX spaces mathematics according to its own rules), and each character is a separate element (so are not positioned as closely as normal text).
There are a number of ways that text can be added properly. The typical way is to wrap the text with the {{LaTeX/LaTeX|code=\text{...}<!---->}} command{{efn|name="amsmath"}} (a similar command is {{LaTeX/LaTeX|code=\mbox{...}<!---->}}, though this causes problems with subscripts, and has a less descriptive name). Let's see what happens when the above equation code is adapted:
{{LaTeX/Example|code=
50 \text{apples} \times 100 \text{apples}
= \text{lots of apples}^2
|render=
<math>
50 \text{apples} \times 100 \text{apples} = \text{lots of apples}^2
\,</math>
}}
The text looks better. However, there are no gaps between the numbers and the words. Unfortunately, you are required to explicitly add these. There are many ways to add spaces between math elements, but for the sake of simplicity we may simply insert space characters into the {{LaTeX/LaTeX|code=\text}} commands.
{{LaTeX/Example|code=
50 \text{ apples} \times 100 \text{ apples}
= \text{lots of apples}^2
|render=
<math>
50 \text{ apples} \times 100 \text{ apples} = \text{lots of apples}^2
\,</math>
}}
== Formatting mathematics symbols ==
:''See also: [[w:Mathematical Alphanumeric Symbols]], [[w:Help:Displaying a formula#Alphabets and typefaces]] and [[w:Wikipedia:LaTeX symbols#Fonts]]''
We can now format text; what about formatting mathematical expressions? There are a set of formatting commands very similar to the font formatting ones just used, except that they are specifically aimed at text in math mode (requires {{LaTeX/Package|amsfonts}})
{|class="wikitable" latexfontsize="scriptsize"
! width="15%"|LaTeX command
! width="35%"|Sample
! Description
! Common use
|-
| {{LaTeX/LaTeX|code=\mathnormal{…} }}<br/><small>(or simply omit any command)</small>
| <math>ABCDEF~abcdef~123456\,</math>
| The default math font
| Most mathematical notation
|-
| {{LaTeX/LaTeX|code=\mathrm{…} }}
| <math>\mathrm{ABCDEF~abcdef~123456}\,</math>
| This is the default or normal font, unitalicised
| Units of measurement, one word functions
|-
| {{LaTeX/LaTeX|code=\mathit{…} }}
| <math>\mathit{ABCDEF~abcdef~123456}\,</math>
| Italicised font
| Multi-letter function or variable names. Compared to <code>\mathnormal</code>, words are spaced more naturally and numbers are italicized as well.
|-
| {{LaTeX/LaTeX|code=\mathbf{…} }}
| <math>\mathbf{ABCDEF~abcdef~123456}\,</math>
| Bold font
| Vectors
|-
| {{LaTeX/LaTeX|code=\mathsf{…} }}
| <math>\mathsf{ABCDEF~abcdef~123456}\,</math>
| [[w:sans-serif|Sans-serif]]
| Categories
|-
| {{LaTeX/LaTeX|code=\mathtt{…} }}
| <math>\mathtt{ABCDEF~abcdef~123456}\,</math>
| [[w:Monospace font|Monospace (fixed-width) font]]
|
|-
| {{LaTeX/LaTeX|code=\mathfrak{…} }}<br/><small>(requires the {{LaTeX/Package|amsfonts}} or {{LaTeX/Package|amssymb}} package{{efn|name="mathalfa"}})</small>
| <math>\mathfrak{ABCDEF~abcdef~123456}\,</math>
| [[w:Fraktur (script)|Fraktur]]
| Almost canonical font for Lie algebras, [[w:Ideal (ring theory)|ideals]] in ring theory
|-
| {{LaTeX/LaTeX|code=\mathcal{…} }}
| <math>\mathcal{ABCDEF}\,</math>
| Calligraphy (uppercase only{{efn|name="mathalfa"}})
| Often used for sheaves/schemes and categories, used to denote [[w:en:Cryptography|cryptological]] concepts like an ''alphabet of definition'' (<math>\mathcal{A}</math>), ''message space'' (<math>\mathcal{M}</math>), ''ciphertext space'' (<math>\mathcal{C}</math>) and ''[[w:key space|key space]]'' (<math>\mathcal{K}</math>); [[w:Kleene's O|Kleene's <math>\mathcal{O}</math>]]; [[w:Description logic#Naming Convention|naming convention in description logic]]; [[w:Laplace transform|Laplace transform]] (<math>\mathcal{L}</math>) and [[w:Fourier transform|Fourier transform]] (<math>\mathcal{F}</math>)
|-
| {{LaTeX/LaTeX|code=\mathbb{…} }}<br/><small>(requires the {{LaTeX/Package|amsfonts}} or {{LaTeX/Package|amssymb}} package{{efn|name="mathalfa"}})</small>
| <math>\mathbb{ABCDEF}\,</math>
| [[w:Blackboard bold|Blackboard bold]] (uppercase only{{efn|name="mathalfa"}})
| Used to denote special sets (e.g. real numbers)
|-
| {{LaTeX/LaTeX|code=\mathscr{…} }}<br/><small>(requires the {{LaTeX/Package|mathrsfs}} package{{efn|name="mathalfa"}})</small>
| [[File:Mathscr (A-F).png]]
| [[w:Script (typefaces)|Script]] (uppercase only{{efn|name="mathalfa"}})
| An alternative font for categories and sheaves.
|}
These formatting commands can be wrapped around the entire equation, and not just on the textual elements: they only format letters, numbers, and uppercase Greek, and other math commands are unaffected.
To bold lowercase Greek or other symbols use the {{LaTeX/LaTeX|code=\boldsymbol}} command{{efn|name="amsmath"}}; this will only work if there exists a bold version of the symbol in the current font. As a last resort there is the {{LaTeX/LaTeX|code=\pmb}} command{{efn|name="amsmath"}} (poor man's bold): this prints multiple versions of the character slightly offset against each other.
{{LaTeX/Example|code=
\boldsymbol{\beta} = (\beta_1,\beta_2,\dotsc,\beta_n)
|render=
<math>
\boldsymbol{\beta} = (\beta_1,\beta_2,\dotsc,\beta_n)
\,</math>
}}
To change the size of the fonts in math mode, see [[../Advanced Mathematics#Changing font size|Changing font size]].
=== Accents ===
So what to do when you run out of symbols and fonts? Well, the next step is to use accents:
{|
| <code>a'</code> or <code>a^{\prime}</code> ||width="15%"| <math>a'\,</math>
| style="padding-left:20px" | <code><nowiki>a''</nowiki></code> || <math>a''\,</math>
|-
| <code>\hat{a}</code> || <math>\hat{a} \,</math>
| style="padding-left:20px" | <code>\bar{a}</code> || <math>\bar{a} \,</math>
|-
| <code>\grave{a}</code> || <math>\grave{a} \,</math>
| style="padding-left:20px" | <code>\acute{a}</code> || <math>\acute{a} \,</math>
|-
| <code>\dot{a}</code> || <math>\dot{a} \,</math>
| style="padding-left:20px" | <code>\ddot{a}</code> || <math>\ddot{a} \,</math>
|-
| <code>\not{a}</code> || <math>\not{a} \,</math>
| style="padding-left:20px" | <code>\mathring{a}</code> || å
|-
| <code>\overrightarrow{AB}</code> || <math>\overrightarrow{AB} \,</math>
| <code>\overleftarrow{AB}</code> || <math>\overleftarrow{AB} \,</math>
|-
| <code><nowiki>a'''</nowiki></code> || <math>a'''\,</math>
| style="padding-left:20px" | <code><nowiki>a''''</nowiki></code> || <math>a''''\,</math>
|-
| <code>\overline{aaa}</code> || <math>\overline{aaa} \,</math>
| style="padding-left:20px" | <code>\check{a}</code> || <math>\check{a} \,</math>
|-
| <code>\breve{a}</code> || <math>\breve{a} \,</math>
| style="padding-left:20px" | <code>\vec{a}</code> || <math>\vec{a} \,</math>
|-
| <code>\dddot{a}</code>{{efn|name="amsmath"}} ||
| style="padding-left:20px" | <code>\ddddot{a}</code>{{efn|name="amsmath"}} ||
|-
| <code>\widehat{AAA}</code> || <math>\widehat{AAA} \,</math>
| style="padding-left:20px" | <code>\widetilde{AAA}</code> || <math>\widetilde{AAA}</math>
|-
| <code>\stackrel\frown{AAA}</code> || <math>\stackrel\frown{AAA}</math>
|-
| <code>\tilde{a}</code> || <math>\tilde{a} \,</math>
| style="padding-left:20px" | <code>\underline{a}</code> || <math>\underline{a} \,</math>
|}
== Color ==
The package {{LaTeX/Package|xcolor}}, described in [[../Colors#Adding_the_color_package|Colors]], allows us to add color to our equations. For example,
{{LaTeX/Example|code=
k = {\color{red}x} \mathbin{\color{blue}-} 2
|render=<math>
k = {\color{red}x} \mathbin{\color{blue}-} 2
</math>
}}
The only problem is that this disrupts the default {{LaTeX}} formatting around the {{LaTeX/LaTeX|code=-}} operator. To fix this, we enclose it in a {{LaTeX/LaTeX|code=\mathbin}} environment, since {{LaTeX/LaTeX|code=-}} is a binary operator. This process is described [http://tex.stackexchange.com/questions/21598/how-to-color-math-symbols here].
==Plus and minus signs==
LaTeX deals with the + and − signs in two possible ways. The most common is as a binary operator. When two maths elements appear on either side of the sign, it is assumed to be a binary operator, and as such, allocates some space to either side of the sign. The alternative way is a sign designation. This is when you state whether a mathematical quantity is either positive or negative. This is common for the latter, as in math, such elements are assumed to be positive unless a − is prefixed to it. In this instance, you want the sign to appear close to the appropriate element to show their association. If you put a + or a − with nothing before it but you want it to be handled like a binary operator you can add an ''invisible'' character before the operator using {{LaTeX/LaTeX|code={}<!---->}}. This can be useful if you are writing multiple-line formulas, and a new line could start with a − or +, for example, then you can fix some strange alignments adding the invisible character where necessary.
A plus-minus sign is written as:
{{LaTeX/Example|code=
\pm
|render=<math>
\pm
</math>
}}
Similarly, there exists also a minus-plus sign:
{{LaTeX/Example|code=
\mp
|render=<math>
\mp
</math>
}}
== Controlling horizontal spacing ==
LaTeX is obviously pretty good at typesetting maths—it was one of the chief aims of the core TeX system that LaTeX extends. However, it can't always be relied upon to accurately interpret formulas in the way you did. It has to make certain assumptions when there are ambiguous expressions. The result tends to be slightly incorrect horizontal spacing. In these events, the output is still satisfactory, yet any perfectionists will no doubt wish to ''fine-tune'' their formulas to ensure spacing is correct. These are generally very subtle adjustments.
There are other occasions where LaTeX has done its job correctly, but you just want to add some space, maybe to add a comment of some kind. For example, in the following equation, it is preferable to ensure there is a decent amount of space between the maths and the text.
{{LaTeX/Example|code=
\[ f(n) =
\begin{cases}
n/2 & \quad \text{if } n \text{ is even}\\
-(n+1)/2 & \quad \text{if } n \text{ is odd}
\end{cases}
\]
|render=
<math>
f(n) =
\begin{cases}
n/2 & \quad \text{if } n \text{ is even}\\
-(n+1)/2 & \quad \text{if } n \text{ is odd}
\end{cases}
</math>
}}
This code produces errors with Miktex 2.9 and does not yield the results seen on the right.
Use \mathrm instead of just \text.
(Note that this particular example can be expressed in more elegant code by the {{LaTeX/Environment|cases}} construct provided by the {{LaTeX/Package|amsmath}} package described in [[LaTeX/Advanced_Mathematics#The_cases_environment|Advanced Mathematics]] chapter.)
LaTeX has defined two commands that can be used anywhere in documents (not just maths) to insert some horizontal space. They are {{LaTeX/LaTeX|code=\quad}} and {{LaTeX/LaTeX|code=\qquad}}
A {{LaTeX/LaTeX|code=\quad}} is a space equal to the current font size. So, if you are using an 11pt font, then the space provided by {{LaTeX/LaTeX|code=\quad}} will also be 11pt (horizontally, of course.) The {{LaTeX/LaTeX|code=\qquad}} gives twice that amount. As you can see from the code from the above example, {{LaTeX/LaTeX|code=\quad}}s were used to add some separation between the maths and the text.
OK, so back to the fine tuning as mentioned at the beginning of the document. A good example would be displaying the simple equation for the indefinite integral of ''y'' with respect to ''x'':
<math>\int y\, \mathrm{d}x</math>
If you were to try this, you may write:
{{LaTeX/Example|code=
\int y \mathrm{d}x
|render=
<math>\int y \mathrm{d}x</math>
}}
However, this doesn't give the correct result. LaTeX doesn't respect the white-space left in the code to signify that the ''y'' and the d''x'' are independent entities. Instead, it lumps them altogether. A {{LaTeX/LaTeX|code=\quad}} would clearly be overkill in this situation—what is needed are some small spaces to be utilized in this type of instance, and that's what LaTeX provides:
{| class="wikitable"
! Command
! Description
! Size
|-
| {{LaTeX/LaTeX|code=\,}}
| small space
| 3/18 of a quad
|-
| {{LaTeX/LaTeX|code=\:}}
| medium space
| 4/18 of a quad
|-
| {{LaTeX/LaTeX|code=\;}}
| large space
| 5/18 of a quad
|-
| {{LaTeX/LaTeX|code=\!}}
| negative space
| -3/18 of a quad
|}
NB you can use more than one command in a sequence to achieve a greater space if necessary.
So, to rectify the current problem:
{{LaTeX/Example|code=
\int y\, \mathrm{d}x
|render=
<math>\int y\, \mathrm{d}x</math>
}}
{{LaTeX/Example|code=
\int y\: \mathrm{d}x
|render=
<math>\int y\;\;\!\! \mathrm{d}x</math>
}}
{{LaTeX/Example|code=
\int y\; \mathrm{d}x
|render=
<math>\int y\; \mathrm{d}x</math>
}}
The negative space may seem like an odd thing to use, however, it wouldn't be there if it didn't have ''some'' use! Take the following example:
{{LaTeX/Example|code=\partial\frac{x-y}z|render=<math>\partial\frac{x-y}z</math>}}
X and Y are like rotations.{{LaTeX/Example|code=
\left(
\begin{array}{c}
n \\
r
\end{array}
\right) = \frac{n!}{r!(n-r)!}
|render=
<math>\left(
\begin{matrix}
n \\
r
\end{matrix}
\right) = \frac{n!}{r!(n-r)!}</math>
}}
The matrix-like expression for representing binomial coefficients is too padded. There is too much space between the brackets and the actual contents within. This can easily be corrected by adding a few negative spaces after the left bracket and before the right bracket.
{{LaTeX/Example|code=\Re|render=<math>\Re</math>}}{{LaTeX/Example|code=
\left(\!
\begin{array}{c}
n \\
r
\end{array}
\!\right) = \frac{n!}{r!(n-r)!}
|render=
<math>\left(\!
\begin{matrix}
n \\
r
\end{matrix}
\!\right) = \frac{n!}{r!(n-r)!}
</math>
}}
In any case, adding some spaces manually should be avoided whenever possible: it makes the source code more complex and it's against the basic principles of a What You See is What You Mean approach. The best thing to do is to define some commands using all the spaces you want and then, when you use your command, you don't have to add any other space. Later, if you change your mind about the length of the horizontal space, you can easily change it modifying only the command you defined before. Let us use an example: you want the ''d'' of a ''dx'' in an integral to be in roman font and a small space away from the rest. If you want to type an integral like {{LaTeX/LaTeX|code=\int x \, \mathrm{d} x}}, you can define a command like this:
{{LaTeX/Usage|code=
\newcommand{\dd}{\mathop{}\,\mathrm{d}<!---->}
}}
in the preamble of your document. We have chosen {{LaTeX/LaTeX|code=\dd}} just because it reminds the "d" it replaces and it is fast to type. Doing so, the code for your integral becomes {{LaTeX/LaTeX|code=\int x \dd x}}. Now, whenever you write an integral, you just have to use the {{LaTeX/LaTeX|code=\dd}} instead of the "d", and all your integrals will have the same style. If you change your mind, you just have to change the definition in the preamble, and all your integrals will be changed accordingly.
== Manually Specifying Formula Style ==
To manually display a fragment of a formula using text style, surround the fragment with curly braces and prefix the fragment with {{LaTeX/LaTeX|code=\textstyle}}. The braces are required because the {{LaTeX/LaTeX|code=\textstyle}} macro changes the state of the renderer, rendering all subsequent mathematics in text style. The braces limit this change of state to just the fragment enclosed within. For example, to use text style for just the summation symbol in a sum, one would enter
{{LaTeX/Usage|code=
\begin{equation}
C^i_j = {\textstyle \sum_k} A^i_k B^k_j
\end{equation}
}}
The same thing as a command would look like this:
{{LaTeX/Usage|code=
\newcommand{\tsum}[1]{{\textstyle \sum_{#1}}}
}}
Note the extra braces. Just one set around the expression won't be enough. That would cause all math after {{LaTeX/LaTeX|code=\tsum k}} to be displayed using text style.
To display part of a formula using display style, do the same thing, but use {{LaTeX/LaTeX|code=\displaystyle}} instead.
==Advanced Mathematics: AMS Math package==
The AMS ([[Wikipedia:American Mathematical Society|American Mathematical Society]]) mathematics package is a powerful package that creates a higher layer of abstraction over mathematical LaTeX language; if you use it it will make your life easier. Some commands {{LaTeX/Package|amsmath}} introduces will make other plain LaTeX commands obsolete: in order to keep consistency in the final output you'd better use {{LaTeX/Package|amsmath}} commands whenever possible. If you do so, you will get an elegant output without worrying about alignment and other details, keeping your source code readable. If you want to use it, you have to add this in the preamble:
{{LaTeX/Usage|code=
\usepackage{amsmath}
}}
===Introducing dots in formulas===
{{LaTeX/Package|amsmath}} defines also the {{LaTeX/LaTeX|code=\dots}} command, that is a generalization of the existing {{LaTeX/LaTeX|code=\ldots}}. You can use {{LaTeX/LaTeX|code=\dots}} in both text and math mode and LaTeX will replace it with three dots "…" but it will decide according to the context whether to put it on the bottom (like {{LaTeX/LaTeX|code=\ldots}}) or centered (like {{LaTeX/LaTeX|code=\cdots}}).
===Dots===
LaTeX gives you several commands to insert dots (ellipses) in your formulae. This can be particularly useful if you have to type big matrices omitting elements. First of all, here are the main dots-related commands LaTeX provides:
{| class="wikitable"
! Code !! Output !! Comment
|-
| {{LaTeX/LaTeX|code=\dots}} || <math>\dots</math> || generic dots (ellipsis), to be used in text (outside formulae as well). It automatically manages whitespaces before and after itself according to the context, it's a higher level command.
|-
| {{LaTeX/LaTeX|code=\ldots}}|| <math>\ldots</math> || the output is similar to the previous one, but there is no automatic whitespace management; it works at a lower level.
|-
| {{LaTeX/LaTeX|code=\cdots}} || <math>\cdots</math> || These dots are centered relative to the height of a letter. There is also the binary multiplication operator, <code>\cdot</code>, mentioned below.
|-
| {{LaTeX/LaTeX|code=\vdots}} || <math>\vdots</math> || vertical dots
|-
| {{LaTeX/LaTeX|code=\ddots}} || <math>\ddots</math> || diagonal dots
|-
| {{LaTeX/LaTeX|code=\iddots}} || || inverse diagonal dots (requires the {{LaTeX/Package|mathdots}} package)
|-
| {{LaTeX/LaTeX|code=\hdotsfor{n}<!---->}} || <math>\ldots \ldots</math>|| to be used in matrices, it creates a row of dots spanning ''n'' columns.
|}
Instead of using {{LaTeX/LaTeX|code=\ldots}} and {{LaTeX/LaTeX|code=\cdots}}, you should use the semantically oriented commands. It makes it possible to adapt your document to different conventions on the fly, in case (for example) you have to submit it to a publisher who insists on following house tradition in this respect. The default treatment for the various kinds follows American Mathematical Society conventions.
{| class="wikitable"
! Code !! Output !! Comment
|-
| {{LaTeX/LaTeX|code=A_1,A_2,\dotsc,}} || [[File:LaTeX Dotsc.png]] || for "dots with commas"
|-
| {{LaTeX/LaTeX|code=A_1+\dotsb+A_N}} || [[File:LaTeX Dotsb.png]] || for "dots with binary operators/relations"
|-
| {{LaTeX/LaTeX|code=A_1 \dotsm A_N}} || [[File:LaTeX Dotsm.png]] || for "multiplication dots"
|-
| {{LaTeX/LaTeX|code=\int_a^b \dotsi}} || [[File:LaTeX Dotsi.png]] || for "dots with integrals"
|-
| {{LaTeX/LaTeX|code=A_1\dotso A_N}} || [[File:LaTeX Dotso.png]] || for "other dots" (none of the above)
|}
===Write an equation with the align environment===
How to write an equation with the align environment with the {{LaTeX/Package|amsmath}} package is described in [[LaTeX/Advanced_Mathematics#align_and_align.2A|Advanced Mathematics]].
==List of mathematical symbols==
All the pre-defined mathematical symbols from the \TeX\ package are listed below. More symbols are available from extra packages.
{| class="wikitable" latexfontsize="scriptsize"
|+ Relation Symbols
|-
!scope="col"| Symbol !!scope="col"| Script
|rowspan="11"|
!scope="col"| Symbol !!scope="col"| Script
|rowspan="10"|
!scope="col"| Symbol !!scope="col"| Script
|rowspan="10"|
!scope="col"| Symbol !!scope="col"| Script
|rowspan="10"|
!scope="col"| Symbol !!scope="col"| Script
|-
| <math><\,</math>||<code><</code>
| <math>>\,</math>||<code>></code>
| <math>=\,</math>||<code>=</code>
| <math>\parallel\,</math>||<code>\parallel</code>
| <math>\nparallel\,</math>||<code>\nparallel</code>
|-
| <math>\leq\,</math>||<code>\leq</code>
| <math>\geq\,</math>||<code>\geq</code>
| <math>\doteq\,</math>||<code>\doteq</code>
| <math>\asymp\,</math>||<code>\asymp</code>
| <math>\bowtie\,</math>||<code>\bowtie</code>
|-
| <math>\ll\,</math>||<code>\ll</code>
| <math>\gg\,</math>||<code>\gg</code>
| <math>\equiv\,</math>||<code>\equiv</code>
| <math>\vdash\,</math>||<code>\vdash</code>
| <math>\dashv\,</math>||<code>\dashv</code>
|-
| <math>\subset\,</math>||<code>\subset</code>
| <math>\supset\,</math>||<code>\supset</code>
| <math>\approx\,</math>||<code>\approx</code>
| <math>\in\,</math>||<code>\in</code>
| <math>\ni\,</math>||<code>\ni</code>
|-
| <math>\subseteq\,</math>||<code>\subseteq</code>
| <math>\supseteq\,</math>||<code>\supseteq</code>
| <math>\cong\,</math>||<code>\cong</code>
| <math>\smile\,</math>||<code>\smile</code>
| <math>\frown\,</math>||<code>\frown</code>
|-
| <math>\nsubseteq\,</math>||<code>\nsubseteq</code>
| <math>\nsupseteq\,</math>||<code>\nsupseteq</code>
| <math>\simeq\,</math>||<code>\simeq</code>
| <math>\models\,</math>||<code>\models</code>
| <math>\notin\,</math>||<code>\notin</code>
|-
| <math>\sqsubset\,</math>||<code>\sqsubset</code>
| <math>\sqsupset\,</math>||<code>\sqsupset</code>
| <math>\sim\,</math>||<code>\sim</code>
| <math>\perp\,</math>||<code>\perp</code>
| <math>\mid\,</math>||<code>\mid</code>
|-
| <math>\sqsubseteq\,</math>||<code>\sqsubseteq</code>
| <math>\sqsupseteq\,</math>||<code>\sqsupseteq</code>
| <math>\propto\,</math>||<code>\propto</code>
| <math>\prec\,</math>||<code>\prec</code>
| <math>\succ\,</math>||<code>\succ</code>
|-
| <math>\preceq\,</math>||<code>\preceq</code>
| <math>\succeq\,</math>||<code>\succeq</code>
| <math>\neq\,</math>||<code>\neq</code>
| <math>\sphericalangle\,</math>||<code>\sphericalangle</code>
| <math>\measuredangle\,</math>||<code>\measuredangle</code>
|-
| <math>\therefore\,</math>||<code>\therefore</code>
| <math>\because\,</math>||<code>\because</code>
|}
{| class="wikitable" latexfontsize="scriptsize"
|+ Binary Operations
|-
!scope="col"| Symbol !!scope="col"| Script
|rowspan="9"|
!scope="col"| Symbol !!scope="col"| Script
|rowspan="9"|
!scope="col"| Symbol !!scope="col"| Script
|rowspan="9"|
!scope="col"| Symbol !!scope="col"| Script
|-
| <math>\pm\,</math> || <code>\pm</code>
| <math>\cap\,</math> || <code>\cap</code>
| <math>\diamond\,</math> || <code>\diamond</code>
| <math>\oplus\,</math> || <code>\oplus</code>
|-
| <math>\mp\,</math> || <code>\mp</code>
| <math>\cup\,</math> || <code>\cup</code>
| <math>\bigtriangleup\,</math> || <code>\bigtriangleup</code>
| <math>\ominus\,</math> || <code>\ominus</code>
|-
| <math>\times\,</math> || <code>\times</code>
| <math>\uplus\,</math> || <code>\uplus</code>
| <math>\bigtriangledown\,</math> || <code>\bigtriangledown</code>
| <math>\otimes\,</math> || <code>\otimes</code>
|-
| <math>\div\,</math> || <code>\div</code>
| <math>\sqcap\,</math> || <code>\sqcap</code>
| <math>\triangleleft\,</math> || <code>\triangleleft</code>
| <math>\oslash\,</math> || <code>\oslash</code>
|-
| <math>\ast\,</math> || <code>\ast</code>
| <math>\sqcup\,</math> || <code>\sqcup</code>
| <math>\triangleright\,</math> || <code>\triangleright</code>
| <math>\odot\,</math> || <code>\odot</code>
|-
| <math>\star\,</math> || <code>\star</code>
| <math>\vee\,</math> || <code>\vee</code>
| <math>\bigcirc\,</math> || <code>\bigcirc</code>
| <math>\circ\,</math> || <code>\circ</code>
|-
| <math>\dagger\,</math> || <code>\dagger</code>
| <math>\wedge\,</math> || <code>\wedge</code>
| <math>\bullet\,</math> || <code>\bullet</code>
| <math>\setminus\,</math> || <code>\setminus</code>
|-
| <math>\ddagger\,</math> || <code>\ddagger</code>
| <math>\cdot\,</math> || <code>\cdot</code>
| <math>\wr\,</math> || <code>\wr</code>
| <math>\amalg\,</math> || <code>\amalg</code>
|}
{| class="wikitable" latexfontsize="scriptsize"
|+ Set and/or Logic Notation
|-
!scope="col"| Symbol !!scope="col"| Script
| rowspan="16" |
!scope="col"| Symbol !!scope="col"| Script
|-
| <math>\exists\,</math> || <code>\exists</code>
| <math>\rightarrow\,</math> || <code>\rightarrow</code> or <code>\to</code>
|-
| <math>\nexists\,</math> || <code>\nexists</code>
| <math>\leftarrow\,</math> || <code>\leftarrow</code> or <code>\gets</code>
|-
| <math>\forall\,</math> || <code>\forall</code>
| <math>\mapsto\,</math> || <code>\mapsto</code>
|-
| <math>\neg\,</math> || <code>\neg</code>
| <math>\implies\,</math> || <code>\implies</code>
|-
|<math>\cap</math>
|<code>\cap</code>
|
|
|-
|<math>\cup</math>
|<code>\cup</code>
|
|
|-
| <math>\subset\,</math>|| <code>\subset</code>
|⟸
|<code>\impliedby</code>
|-
| <math>\supset\,</math>|| <code>\supset</code>
|<math>\Rightarrow\,</math>||<code>\Rightarrow</code> or <code>\implies</code>
|-
| <math>\in</math>||<code>\in</code>
|<math>\leftrightarrow\,</math>||<code>\leftrightarrow</code>
|-
| <math>\notin\,</math>|| <code>\notin</code>
|<math>\iff\,</math>||<code>\iff</code>
|-
| <math>\ni\,</math>|| <code>\ni</code>
|<math>\Leftrightarrow\,</math>||<code>\Leftrightarrow</code> (preferred for equivalence (iff))
|-
| <math>\land\,</math>|| <code>\land</code>
|<math>\top\,</math>||<code>\top</code>
|-
| <math>\lor\,</math>|| <code>\lor</code>
|<math>\bot\,</math>||<code>\bot</code>
|-
| <math>\angle\,</math> || <code>\angle</code>
|<math>\emptyset\,</math> and <math>\varnothing\,</math>||<code>\emptyset</code> and <code>\varnothing</code>{{ref|symbolpackage}}
|-
|
|
|<math>\rightleftharpoons\,</math>
|<code>\rightleftharpoons</code>
|}
{| class="wikitable" latexfontsize="scriptsize"
|+ Delimiters
|-
!scope="col"| Symbol !!scope="col"| Script
|rowspan="5"|
!scope="col"| Symbol !!scope="col"| Script
|rowspan="5"|
!scope="col"| Symbol !!scope="col"| Script
|rowspan="5"|
!scope="col"| Symbol !!scope="col"| Script
|-
| <math>|\,</math> || <code><nowiki>|</nowiki></code> or <code>\mid</code> (difference in spacing)
| <math>\|\,</math> || <code>\<nowiki>|</nowiki></code>
| <math>/\,</math> || <code>/</code>
| <math>\backslash\,</math> || <code>\backslash</code>
|-
| <math>\{\,</math> || <code>\{</code>
| <math>\}\,</math> || <code>\}</code>
| <math>\langle\,</math> || <code>\langle</code>
| <math>\rangle\,</math> || <code>\rangle</code>
|-
| <math>\uparrow\,</math> || <code>\uparrow</code>
| <math>\Uparrow\,</math> || <code>\Uparrow</code>
| <math>\lceil\,</math> || <code>\lceil</code>
| <math>\rceil\,</math> || <code>\rceil</code>
|-
| <math>\downarrow\,</math> || <code>\downarrow</code>
| <math>\Downarrow\,</math> || <code>\Downarrow</code>
| <math>\lfloor\,</math> || <code>\lfloor</code>
| <math>\rfloor\,</math> || <code>\rfloor</code>
|}
Note: To use the Greek Letters in LaTeX that have the same appearance in the Latin alphabet, just use Latin: e.g., A instead of Alpha, B instead of Beta, etc.
{| class="wikitable" latexfontsize="scriptsize"
|+ Greek Letters
|-
!scope="col"| Symbol !!scope="col"| Script
|rowspan="13"|
!scope="col"| Symbol !!scope="col"| Script
|-
| <math>\Alpha\,</math> and <math>\alpha\,</math>|| <code>A</code> and <code>\alpha</code>
| <math>\Nu\,</math> and <math>\nu\,</math>|| <code>N</code> and <code>\nu</code>
|-
| <math>\Beta\,</math> and <math>\beta\,</math>|| <code>B</code> and <code>\beta</code>
| <math>\Xi\,</math> and <math>\xi\,</math>|| <code>\Xi</code> and <code>\xi</code>
|-
| <math>\Gamma\,</math> and <math>\gamma\,</math>|| <code>\Gamma</code> and <code>\gamma</code>
| <math>\Omicron\,</math> and <math>\omicron\,</math>|| <code>O</code> and <code>o</code>
|-
| <math>\Delta\,</math> and <math>\delta\,</math>|| <code>\Delta</code> and <code>\delta</code>
| <math>\Pi\,</math>, <math>\pi\,</math> and <math>\varpi</math>|| <code>\Pi</code>, <code>\pi</code> and <code>\varpi</code>
|-
| <math>\Epsilon\,</math>, <math>\epsilon\,</math> and <math>\varepsilon\,</math>|| <code>E</code>, <code>\epsilon</code> and <code>\varepsilon</code>
| <math>\Rho\,</math>, <math>\rho\,</math> and <math>\varrho\,</math>|| <code>P</code>, <code>\rho</code> and <code>\varrho</code>
|-
| <math>\Zeta\,</math> and <math>\zeta\,</math>|| <code>Z</code> and <code>\zeta</code>
| <math>\Sigma\,</math>, <math>\sigma\,</math> and <math>\varsigma\,</math>|| <code>\Sigma</code>, <code>\sigma</code> and <code>\varsigma</code>
|-
| <math>\Eta\,</math> and <math>\eta\,</math>|| <code>H</code> and <code>\eta</code>
| <math>\Tau\,</math> and <math>\tau\,</math>|| <code>T</code> and <code>\tau</code>
|-
| <math>\Theta\,</math>, <math>\theta\,</math> and <math>\vartheta\,</math>|| <code>\Theta</code>, <code>\theta</code> and <code>\vartheta</code>
| <math>\mbox{Y}\,</math>, <math>\Upsilon\,</math> and <math>\upsilon\,</math>|| <code>Y</code>, <code>\Upsilon</code> and <code>\upsilon</code>
|-
| <math>\Iota\,</math> and <math>\iota\,</math>|| <code>I</code> and <code>\iota</code>
| <math>\Phi\,</math>, <math>\phi\,</math>, and <math>\varphi\,</math>|| <code>\Phi</code>, <code>\phi</code> and <code>\varphi</code>
|-
| <math>\Kappa\,</math>, <math>\kappa\,</math> and <math>\varkappa\,</math> || <code>K</code>, <code>\kappa</code> and <code>\varkappa</code>
| <math>\Chi\,</math> and <math>\chi\,</math>|| <code>X</code> and <code>\chi</code>
|-
| <math>\Lambda\,</math> and <math>\lambda\,</math>|| <code>\Lambda</code> and <code>\lambda</code>
| <math>\Psi\,</math> and <math>\psi\,</math>|| <code>\Psi</code> and <code>\psi</code>
|-
| <math>\Mu\,</math> and <math>\mu\,</math>|| <code>M</code> and <code>\mu</code>
| <math>\Omega\,</math> and <math>\omega\,</math>|| <code>\Omega</code> and <code>\omega</code>
|}
{| class="wikitable" latexfontsize="scriptsize"
|+ Other symbols
|-
!scope="col"| Symbol !!scope="col"| Script
|rowspan="4"|
!scope="col"| Symbol !!scope="col"| Script
|rowspan="4"|
!scope="col"| Symbol !!scope="col"| Script
|rowspan="4"|
!scope="col"| Symbol !!scope="col"| Script
|rowspan="4"|
!scope="col"| Symbol !!scope="col"| Script
|-
| <math>\partial\,</math> || <code>\partial</code>
| <math>\imath\,</math> || <code>\imath</code>
| <math>\Re\,</math> || <code>\Re</code>
| <math>\nabla\,</math> || <code>\nabla</code>
| <math>\aleph\,</math> || <code>\aleph</code>
|-
| <math>\eth\,</math> || <code>\eth</code>
| <math>\jmath\,</math> || <code>\jmath</code>
| <math>\Im\,</math> || <code>\Im</code>
| <math>\Box\,</math> || <code>\Box</code>
| <math>\beth\,</math> || <code>\beth</code>
|-
| <math>\hbar\,</math> || <code>\hbar</code>
| <math>\ell\,</math> || <code>\ell</code>
| <math>\wp\,</math> || <code>\wp</code>
| <math>\infty\,</math> || <code>\infty</code>
| <math>\gimel\,</math> || <code>\gimel</code>
|}
{{note|symbolpackage}}Not predefined in LATEX 2. Use one of the packages latexsym, amsfonts, amssymb, txfonts, pxfonts, or wasysym
{| class="wikitable" latexfontsize="scriptsize"
|+Trigonometric Functions
|-
!scope="col"| Symbol !!scope="col"| Script
|rowspan="5"|
!scope="col"| Symbol !!scope="col"| Script
|rowspan="5"|
!scope="col"| Symbol !!scope="col"| Script
|rowspan="5"|
!scope="col"| Symbol !!scope="col"| Script
|-
| <math>\sin\,</math> || <code>\sin</code>
| <math>\arcsin\,</math> || <code>\arcsin</code>
| <math>\sinh\,</math> || <code>\sinh</code>
| <math>\sec\,</math> || <code>\sec</code>
|-
| <math>\cos\,</math> || <code>\cos</code>
| <math>\arccos\,</math> || <code>\arccos</code>
| <math>\cosh\,</math> || <code>\cosh</code>
| <math>\csc\,</math> || <code>\csc</code>
|-
| <math>\tan\,</math> || <code>\tan</code>
| <math>\arctan\,</math> || <code>\arctan</code>
| <math>\tanh\,</math> || <code>\tanh</code>
| ||
|-
| <math>\cot\,</math> || <code>\cot</code>
| <math>\arccot\,</math> || <code>\arccot</code>
| <math>\coth\,</math> || <code>\coth</code>
| ||
|}
If LaTeX does not include a command for the mathematical operator you want to use, for example <code>\cis</code> (<strong>c</strong>osine plus <strong>i</strong> times <strong>s</strong>ine), add to your preamble:
\DeclareMathOperator\cis{cis}
You can then use <code>\cis</code> in the document just like <code>\cos</code> or any other mathematical operator.
<!-- Sections remaining: Table 3 onwards from symbols.pdf -->
{{clear}}
== Summary ==
As you begin to see, typesetting math can be tricky at times. However, because LaTeX provides so much control, you can get professional quality mathematics typesetting with relatively little effort (once you've had a bit of practice, of course!). It is possible to elaborate further on the nitty-gritty of mathematics because the possibilities seem endless. However, with this tutorial, you should be able to get along with it sufficiently.
{{TODO|
* introduce symbols from [http://www.andy-roberts.net/res/writing/latex/symbols.pdf]
* add symbols from [http://www.ctan.org/tex-archive/macros/latex/contrib/wasysym/wasysym.pdf]
* consider adding symbols from [http://www.ctan.org/tex-archive/info/symbols/comprehensive/symbols-letter.pdf] -- the list of nearly all symbols available for LaTeX
* Consider, instead of using the symbols from the above mentioned, using what has already been introduced in [http://en.wikipedia.org/wiki/Math_markup] instead of retyping the tables
* How to box an equation within an align environment
* Color in equations
}}
== References ==
{{reflist}}
== Notes ==
{{notelist|refs=
{{efn|name="amsmath"|requires the {{LaTeX/Package|amsmath}} package}}
{{efn|name="mathtools"|requires the {{LaTeX/Package|mathtools}} package}}
{{efn|name="mathalfa"|1=The {{LaTeX/Package|mathalpha}} package allows for specifying a broader variety of fonts to be used in the <code>\mathfrak{}</code>, <code>\mathbb{}</code>, <code>\mathcal{}</code> and <code>\mathscr{}</code> commands. For example, the command <code>\usepackage[bb=pazo]{mathalpha}</code> makes it so <code>\mathbb{}</code> uses the "pazo" font. {{LaTeX/Package|mathalpha}}'s [http://mirrors.ctan.org/macros/latex/contrib/mathalpha/doc/mathalpha-doc.pdf documentation] gives a comparison of the different font options; some have lowercase letters, Greek letters or numerals where the default does not.}}
}}
==Further reading==
* [[meta:Help:Displaying a formula]]: Wikimedia uses a subset of LaTeX commands.
==External links==
* [http://detexify.kirelabs.org detexify]: applet for looking up LaTeX symbols by drawing them
* [http://mirrors.ctan.org/macros/latex/required/amsmath/amsmath.pdf <code>amsmath</code> documentation]
* [http://www.thestudentroom.co.uk/wiki/LaTeX LaTeX - The Student Room]
* [http://www.ctan.org/tex-archive/info/symbols/comprehensive The Comprehensive LaTeX Symbol List]
* [https://mathvault.ca/wp-content/uploads/Comprehensive-List-of-Mathematical-Symbols.pdf Comprehensive List of Mathematical Symbols]
<noinclude>
== Examples ==
<math>\Re</math>=\Re <math>\overbrace{ 1+2+\cdots+100 }^{5050}</math>=\overbrace{ 1+2+\cdots }^{5050}{{LaTeX/Bottom|Rules and Struts|Advanced Mathematics}}
</noinclude>
== Templates ==
LaTeX/Example LaTeX/LaTeX
{{LaTeX/LaTeX|code=ABC}}
{{LaTeX/Example|code=ABC…|render=ABC…}}
== Pit ==
<math id="https://en.wikipedia.org/partial">\partial</math>
[[pl:LaTeX/Matematyka]]
qvcb10uwpgq7romd4d45yssyh1svfq8
4641165
4641163
2026-06-25T18:24:56Z
NDG
3510220
Reverted edits by [[Special:Contribs/~2026-36819-09|~2026-36819-09]] ([[User talk:~2026-36819-09|talk]]) to last version by Mazbel: test edits, please use the sandbox
4636377
wikitext
text/x-wiki
<noinclude>{{LaTeX/Top}}
</noinclude>
One of the greatest motivating forces for Donald Knuth when he began developing the original TeX system was to create something that allowed simple construction of mathematical formulas, while looking professional when printed. The fact that he succeeded was most probably why TeX (and later on, LaTeX) became so popular within the scientific community. Typesetting mathematics is one of LaTeX's greatest strengths. It is also a large topic due to the existence of so much mathematical notation.
If your document requires only a few simple mathematical formulas, plain LaTeX has most of the tools that you will ever need. If you are writing a scientific document that contains numerous complex formulas, the {{LaTeX/Package|amsmath}} package<ref>http://www.ams.org/publications/authors/tex/amslatex</ref> introduces several new commands that are more powerful and flexible than the ones provided by basic LaTeX. The {{LaTeX/Package|mathtools}} package fixes some {{LaTeX/Package|amsmath}} quirks and adds some useful settings, symbols, and environments to amsmath.<ref>http://www.ctan.org/tex-archive/macros/latex/contrib/mathtools/mathtools.pdf</ref> To use either package, include:
<syntaxhighlight lang="latex">
\usepackage{amsmath}
</syntaxhighlight>
or
<syntaxhighlight lang="latex">
\usepackage{mathtools}
</syntaxhighlight>
in the preamble of the document. The {{LaTeX/Package|mathtools}} package loads the {{LaTeX/Package|amsmath}} package and hence there is no need to <code>\usepackage{amsmath}</code> in the preamble if {{LaTeX/Package|mathtools}} is used.
== Mathematics environments ==
LaTeX needs to know when the text is mathematical. This is because LaTeX typesets math notation differently from normal text. Therefore, special environments have been declared for this purpose. They can be distinguished into two categories depending on how they are presented:
* ''text'' — text formulas are displayed inline, that is, within the body of text where it is declared, for example, I can say that <math>a+a=2a</math> within this sentence.
* ''displayed'' — displayed formulas are on a line by themselves.
As math requires special environments, there are naturally the appropriate environment names you can use in the standard way. Unlike most other environments, however, there are some handy shorthands for declaring your formulas. The following table summarizes them:
{| class="wikitable" latexfontsize="scriptsize"
!width="15%"|Type
!Inline (within text) formulas
!Displayed equations
!Displayed and automatically numbered equations
|-
!Environment
|{{LaTeX/LaTeX|code=math}}
|{{LaTeX/LaTeX|code=displaymath}}
|{{LaTeX/LaTeX|code=equation}}
|-
! width="15%"|LaTeX shorthand
|{{LaTeX/LaTeX|code=\(...\) }}
|{{LaTeX/LaTeX|code=\[...\]}}
|
|-
!width="15%"|TeX shorthand
|{{LaTeX/LaTeX|code=$...$}}
|{{LaTeX/LaTeX|code=$$...$$ }}
|
|-
!width="20%"|Comment
|
|
|{{LaTeX/LaTeX|code=equation*}} (starred version) suppresses numbering, but requires amsmath
|}
'''Suggestion''': Using the {{LaTeX/LaTeX|code=$$...$$}} should be avoided, as it may cause problems, particularly with the AMS-LaTeX macros. Furthermore, should a problem occur, the error messages may not be helpful.
The {{LaTeX/LaTeX|code=equation*}} and {{LaTeX/LaTeX|code=displaymath}} environments are functionally equivalent.
If you are typing text normally, you are said to be in ''text mode'', but while you are typing within one of those mathematical environments, you are said to be in ''math mode'', that has some differences compared to the ''text mode'':
# Most spaces and line breaks do not have any significance, as all spaces are either derived logically from the mathematical expressions or have to be specified with special commands such as {{LaTeX/LaTeX|code=\quad}}
# Empty lines are not allowed. Only one paragraph per formula.
# Each letter is considered to be the name of a variable and will be typeset as such. If you want to typeset normal text within a formula (normal upright font with normal spacing), then you have to enter the text using [[#Adding text to equations|dedicated commands.]]
=== Inserting "Displayed" maths inside blocks of text ===
In order for some operators, such as {{LaTeX/LaTeX|code=\lim}} or {{LaTeX/LaTeX|code=\sum}}, to be displayed correctly inside some math environments (read {{LaTeX/LaTeX|code=$......$}}), it might be convenient to write the {{LaTeX/LaTeX|code=\displaystyle}} class inside the environment. Doing so might cause the line to be taller, but will cause exponents and indices to be displayed correctly for some math operators. For example, the {{LaTeX/LaTeX|code=$\sum$}} will print a smaller Σ and {{LaTeX/LaTeX|code=$\displaystyle \sum$}} will print a bigger one <math>\displaystyle \sum</math>, like in equations.{{efn|name="amsmath"}} It is possible to force this behaviour for all math environments by declaring {{LaTeX/LaTeX|code=\everymath{\displaystyle} }} in the preamble (i.e. before {{LaTeX/LaTeX|code=\begin{document} }}).
== Symbols ==
Mathematics has many symbols! The following is a set of symbols that can be accessed directly from the keyboard:
+ - = ! / ( ) [ ] < > | ' : *
Beyond those listed above, distinct commands must be issued in order to display the desired symbols. There are many examples such as Greek letters, set and relations symbols, arrows, binary operators, etc.
For example:
{{LaTeX/Example|code=
\forall x \in X, \quad \exists y \leq \epsilon
|render=<math>
\forall x \in X, \quad \exists y \leq \epsilon
\,</math>}}
Fortunately, there's a tool that can greatly simplify the search for the command for a specific symbol. Look for "Detexify" in the [[#External links|external links]] section below. Another option would be to look in "The Comprehensive LaTeX Symbol List" in the [[#External links|external links]] section below.
==Greek letters==
Greek letters are commonly used in mathematics, and they are very easy to type in ''math mode''. You just have to type the name of the letter after a backslash: if the first letter is lowercase, you will get a lowercase Greek letter, if the first letter is uppercase (and only the first letter), then you will get an uppercase letter. Note that some uppercase Greek letters look like Latin ones, so they are not provided by LaTeX (e.g. uppercase ''Alpha'' and ''Beta'' are just "A" and "B", respectively).
Lowercase epsilon, theta, kappa, phi, pi, rho, and sigma are provided in two different versions. The alternate, or ''var''iant, version is created by adding "var" before the name of the letter:
{{LaTeX/Example|code=
\alpha, \Alpha, \beta, \Beta, \gamma, \Gamma, \pi, \Pi, \phi, \varphi, \mu, \Phi
|render=<math>\alpha, \Alpha, \beta, \Beta, \gamma, \Gamma, \pi, \Pi, \phi, \varphi, \mu, \Phi</math>}}
Scroll down to [[#List of mathematical symbols]] for a complete list of Greek symbols.
== Operators ==
An operator is a function that is written as a word: e.g. trigonometric functions (sin, cos, tan), logarithms and exponentials (log, exp), limits (lim), as well as trace and determinant (tr, det). LaTeX has many of these defined as commands:
{{LaTeX/Example|code=
\cos (2\theta) = \cos^2 \theta - \sin^2 \theta
|render=<math>\cos (2\theta) = \cos^2 \theta - \sin^2 \theta \,</math>
}}
For certain operators such as [[w:Limit (mathematics)|limits]], the subscript is placed underneath the operator:
{{LaTeX/Example|code=
\lim\limits_{x \to \infty} \exp(-x) = 0
|render=<math>\lim_{x \to \infty} \exp(-x) = 0</math>}}
For the [[w:Modular arithmetic|modular operator]] there are two commands: {{LaTeX/LaTeX|code=\bmod}} and {{LaTeX/LaTeX|code=\pmod}}:
{{LaTeX/Example|code=
a \bmod b
|render=<math>
a \, \bmod \, b
\,</math>}}
{{LaTeX/Example|code=
x \equiv a \pmod{b}
|render=<math>
x \equiv a \pmod b
\,</math>}}
To use operators that are not pre-defined, such as [[w:argmax|argmax]], see [[../Advanced Mathematics#Custom operators|custom operators]]
== Powers and indices ==
Powers and indices are equivalent to superscripts and subscripts in normal text mode. The caret (<code>^</code>; [[w:Caret|also known as the circumflex accent]]) character is used to raise something, and the underscore (<code>_</code>) is for lowering. If an expression containing more than one character is raised or lowered, it should be grouped using curly braces (<code>{</code> and <code>}</code>).
{{LaTeX/Example|code=
k_{n+1} = n^2 + k_n^2 - k_{n-1}
|render=<math>
k_{n+1} = n^2 + k_n^2 - k_{n-1}
\,</math>}}
For powers with more than one digit, surround the power with {}.
{{LaTeX/Example|code=
x^{1.01}
|render=<math>
x^{1.01}
\,</math>}}
An underscore (<code>_</code>) can be used with a vertical bar (<math> | </math>) to denote evaluation using subscript notation in mathematics:
{{LaTeX/Example|code=
f(n) = n^5 + 4n^2 + 2 {{!}}_{n=17}
|render=<math>
f(n) = n^5 + 4n^2 + 2 |_{n=17}
\,</math>}}
== Fractions and Binomials ==
A fraction is created using the {{LaTeX/LaTeX|code=\frac{numerator}{denominator}<!---->}} command (for those who need their memories refreshed, that's the ''top'' and ''bottom'' respectively!). Likewise, the [[w:Binomial coefficient|binomial coefficient]] (a.k.a, the Choose function) may be written using the {{LaTeX/LaTeX|code=\binom}} command:{{efn|name="amsmath"}}
{{LaTeX/Example|code=
\frac{n!}{k!(n-k)!} = \binom{n}{k}
|render=
<math>
\frac{n!}{k!(n-k)!} = \binom{n}{k}
</math>
}}
You can embed fractions within fractions:
{{LaTeX/Example|code=
\frac{\frac{1}{x}+\frac{1}{y}<!---->}{y-z}
|render=
<math>
\frac{\frac{1}{x}+\frac{1}{y}}{y-z}
</math>
}}
Note that when appearing inside another fraction, or in inline text <math>\tfrac{a}{b}</math>, a fraction is noticeably smaller than in displayed mathematics. The {{LaTeX/LaTeX|code=\tfrac}} and {{LaTeX/LaTeX|code=\dfrac}} commands{{efn|name="amsmath"}} force the use of the respective styles, {{LaTeX/LaTeX|code=\textstyle}} and {{LaTeX/LaTeX|code=\displaystyle}}. Similarly, the {{LaTeX/LaTeX|code=\tbinom}} and {{LaTeX/LaTeX|code=\dbinom}} commands typeset the binomial coefficient.
For relatively simple fractions, especially within the text, it may be more aesthetically pleasing to use [[#Powers and indices|powers and indices]] instead:
{{LaTeX/Example|code=
^3/_7
|render=<math>
^3/_7
\,</math>
}}
If this looks a little "loose" (i.e., overspaced), a tightened version can be defined by inserting some negative space
{{LaTeX/Example|code=
%running fraction with slash - requires math mode.
\newcommand*\rfrac[2]{{}^{#1}\!/_{#2}}
\rfrac{3}{7}
|render=<math>
{{}^{3}\!/_{7}}
</math>
}}
If you use them throughout the document, usage of {{LaTeX/Package|xfrac}} package is recommended.
This package provides {{LaTeX/LaTeX|code=\sfrac}} command to create slanted fractions. Usage:
{{LaTeX/Example|code=
Take $\sfrac{1}{2}$ cup of sugar, \dots
3\times\sfrac{1}{2}=1\sfrac{1}{2}
Take ${}^1/_2$ cup of sugar, \dots
3\times{}^1/_2=1{}^1/_2
|render=[[Image:LaTeX-xfrac-example.png|400px]]}}
If fractions are used as an exponent, curly braces have to be used around the {{LaTeX/LaTeX|code=\sfrac}} command:
$x^\frac{1}{2}$ % no error
$x^\sfrac{1}{2}$ % error
$x^{\sfrac{1}{2}}$ % no error
{{LaTeX/Example|code=
$x^\frac{1}{2}$ % no error
|render=
<math>
t^\frac{1}{2}
</math>
}}
In some cases, using the package alone will result in errors about certain font shapes not being available. In that case, the {{LaTeX/Package|lmodern}} and {{LaTeX/Package|fix-cm}} packages need to be added as well.
Alternatively, the {{LaTeX/Package|nicefrac}} package provides the {{LaTeX/LaTeX|code=\nicefrac}} command, whose usage is similar to {{LaTeX/LaTeX|code=\sfrac}}.
=== Continued fractions ===
Continued fractions should be written using {{LaTeX/LaTeX|code=\cfrac}} command:{{efn|name="amsmath"}}
{{LaTeX/Example|code=
\begin{equation}
x = a_0 + \cfrac{1}{a_1
+ \cfrac{1}{a_2
+ \cfrac{1}{a_3 + \cfrac{1}{a_4} } } }
\end{equation}
|render=
<math> x = a_0 + \cfrac{1}{a_1
+ \cfrac{1}{a_2
+ \cfrac{1}{a_3 + \cfrac{1}{a_4}}}}
</math>
}}
=== Multiplication of two numbers ===
To make multiplication visually similar to a fraction, a nested array can be used. For example, multiplication of numbers written one below the other can be typeset as follows:
{{LaTeX/Example|code=
\begin{equation}
\frac{
\begin{array}[b]{r}
\left( x_4.12 x_217 \right)\\
\times \left( x'_1 x'_2 \right)
\end{array}
}{
\left( y_1y_2y_3y_4 \right)
}
\end{equation}
|render=
<math>\frac{
\begin{array}[b]{r}
\left( x_1 x_2 \right)\\
\times \left( x'_1 x'_2 \right)
\end{array}
}{
\left( y_1y_2y_3y_4 \right)
}
</math>
}}
== Roots ==
The {{LaTeX/LaTeX|code=\sqrt}} command creates a square root surrounding an expression. It accepts an optional argument specified in square brackets (<code>[</code> and <code>]</code>) to change magnitude:
{{LaTeX/Example|code=
\sqrt{\frac{a}{b}<!---->}
|render=
<math>
\sqrt{\frac{a}{b}}
</math>
}}
{{LaTeX/Example|code=
\sqrt[n]{1+x+x^2+x^3+\dots+x^n}
|render=<math>
\sqrt[n]{1+x+x^2+x^3+\dots+x^n}
</math>
}}
Some people prefer writing the square root "closing" it over its content. This method arguably makes it more clear what is in the scope of the root sign. This habit is not normally used while writing with the computer, but if you still want to change the output of the square root, LaTeX gives you this possibility. Just add the following code in the preamble of your document:
{{LaTeX/Example|code=
% New definition of square root:
% it renames \sqrt as \oldsqrt
\let\oldsqrt\sqrt
% it defines the new \sqrt in terms of the old one
\def\sqrt{\mathpalette\DHLhksqrt}
\def\DHLhksqrt#1#2{%
\setbox0=\hbox{$#1\oldsqrt{#2\,}$}\dimen0=\ht0
\advance\dimen0-0.2\ht0
\setbox2=\hbox{\vrule height\ht0 depth -\dimen0}%
{\box0\lower0.4pt\box2}<!---->}
|render=[[Image:Latex_new_squareroot.png|thumb|right|250px|The new style is on left, the old one on right]]
}}
This TeX code first renames the {{LaTeX/LaTeX|code=\sqrt}} command as {{LaTeX/LaTeX|code=\oldsqrt}}, then redefines {{LaTeX/LaTeX|code=\sqrt}} in terms of the old one, adding something more. The new square root can be seen in the picture on the left, compared to the old one on the right. Unfortunately this code won't work if you want to use multiple roots: if you try to write <math>\sqrt[b]{a}</math> as {{LaTeX/LaTeX|code=\sqrt[b]{a}<!---->}} after you used the code above, you'll just get a wrong output. In other words, you can redefine the square root this way only if you are not going to use multiple roots in the whole document.
An alternative piece of TeX code that does allow multiple roots is
{{LaTeX/Example|code=
\usepackage{letltxmacro}
\makeatletter
\let\oldr@@t\r@@t
\def\r@@t#1#2{%
\setbox0=\hbox{$\oldr@@t#1{#2\,}$}\dimen0=\ht0
\advance\dimen0-0.2\ht0
\setbox2=\hbox{\vrule height\ht0 depth -\dimen0}%
{\box0\lower0.4pt\box2}<!---->}
\LetLtxMacro{\oldsqrt}{\sqrt}
\renewcommand*{\sqrt}[2][\ ]{\oldsqrt[#1]{#2} <!---->}
\makeatother
$\sqrt[a]{b} \quad \oldsqrt[a]{b}$
|render=[[Image:LaTeX example sqrt.png]]
}}
However, this requires the {{LaTeX/LaTeX|code=\usepackage{letltxmacro}<!---->}} package.
== Sums and integrals ==
The {{LaTeX/LaTeX|code=\sum}} and {{LaTeX/LaTeX|code=\int}} commands insert the sum and integral symbols respectively, with limits specified using the caret (<code>^</code>) and underscore (<code>_</code>). The typical notation for sums is:
{{LaTeX/Example|code=
\sum_{i=1}^{10} t_i
|render=<math>
\textstyle\sum_{i=1}^{10} t_i
\,</math>
}}
or
{{LaTeX/Example|code=
\displaystyle\sum_{i=1}^{10} t_i
|render=<math>
\displaystyle\sum_{i=1}^{10} t_i
\,</math>
}}
The limits for the integrals follow the same notation. It's also important to represent the integration variables with an upright <math>\mathrm{d}</math>, which in math mode is obtained through the {{LaTeX/LaTeX|code=\mathrm{}|}} command, and with a small space separating it from the integrand, which is attained with the {{LaTeX/LaTeX|code=\,}} command.
{{LaTeX/Example|code=
\int_0^\infty \mathrm{e}^{-x}\,\mathrm{d}x
|render=<math>
\int_0^\infty \mathrm{e}^{-x}\,\mathrm{d}x
\,</math>
}}
There are many other "big" commands which operate in a similar manner:
{|
| <code>\sum</code> ||width="5%"| <math>\sum \,</math>
|style="padding-left:20px"|
| <code>\prod</code> ||width="5%"| <math>\prod</math>
|style="padding-left:20px"|
| <code>\coprod</code> ||width="5%"| <math>\coprod</math>
|-
| <code>\bigoplus</code> || <math>\bigoplus</math>
|style="padding-left:20px"|
| <code>\bigotimes</code> || <math>\bigotimes</math>
|style="padding-left:20px"|
| <code>\bigodot</code> || <math>\bigodot</math>
|-
| <code>\bigcup</code> || <math>\bigcup</math>
|style="padding-left:20px"|
| <code>\bigcap</code> || <math>\bigcap</math>
|style="padding-left:20px"|
| <code>\biguplus</code> || <math>\biguplus</math>
|-
| <code>\bigsqcup</code> || <math>\bigsqcup</math>
|style="padding-left:20px"|
| <code>\bigvee</code> || <math>\bigvee</math>
|style="padding-left:20px"|
| <code>\bigwedge</code> || <math>\bigwedge</math>
|-
| <code>\int</code> || <math>\int</math>
|style="padding-left:20px"|
| <code>\oint</code> || <math>\oint</math>
|style="padding-left:20px"|
| <code>\iint</code>{{efn|name="amsmath"}} || <math>\iint</math>
|-
| <code>\iiint</code>{{efn|name="amsmath"}} || <math>\iiint</math>
|style="padding-left:20px"|
| <code>\iiiint</code>{{efn|name="amsmath"}} || <math>\iiiint</math>
|style="padding-left:20px"|
| <code>\idotsint</code>{{efn|name="amsmath"}} || <math>\int \! \cdots \! \int</math>
|}
For more integral symbols, including those not included by default in the Computer Modern font, try the {{LaTeX/Package|esint}} package.
The {{LaTeX/LaTeX|code=\substack}} command{{efn|name="amsmath"}} allows the use of {{LaTeX/LaTeX|code=\\}} to write the limits over multiple lines:
{{LaTeX/Example|code=
\sum_{\substack{
0<i<m \\
0<j<n
}<!---->}
P(i,j)
|render=<math>
\sum_{\overset{\scriptstyle 0<i<m} {\scriptstyle 0<j<n}} P(i,j)
\,</math>
}}
If you want the limits of an integral to be specified above and below the symbol (like the sum), use the {{LaTeX/LaTeX|code=\limits}} command:
{{LaTeX/Example|code=
\int\limits_a^b
|render=<math>
\int\limits_b^c
\,</math>
}}
However, if you want this to apply to all integrals, it is preferable to specify the {{LaTeX/Parameter|intlimits}} option when loading the {{LaTeX/Package|amsmath}} package:
{{LaTeX/Usage|code=
\usepackage[intlimits]{amsmath}
}}
Subscripts and superscripts in other contexts, as well as other parameters to {{LaTeX/Package|amsmath}} package related to them, are described in [[LaTeX/Advanced_Mathematics#Advanced_formatting|Advanced Mathematics]] chapter.
For bigger integrals, you may use personal declarations, or the {{LaTeX/Package|bigints}} package <ref name=LM> http://hdl.handle.net/2268/6219</ref>.
== Brackets, braces and delimiters ==
<small>''How to use braces in multi line equations is described in the [[LaTeX/Advanced_Mathematics#Braces_spanning_multiple_lines|Advanced Mathematics]] chapter.''</small>
The use of delimiters such as brackets soon becomes important when dealing with anything but the most trivial equations. Without them, formulas can become ambiguous. Also, special types of mathematical structures, such as matrices, typically rely on delimiters to enclose them.
There are a variety of delimiters available for use in LaTeX:
{{LaTeX/Example|code=
( a ), [ b ], \{ c \}, {{!}} d {{!}}, \{{!}} e \{{!}},
\langle f \rangle, \lfloor g \rfloor,
\lceil h \rceil, \ulcorner i \urcorner,
/ j \backslash
|render=<math>
( a ), [ b ], \{ c \}, | d |, \| e \|, \langle f \rangle, \lfloor g \rfloor, \lceil h \rceil, \ulcorner i \urcorner,
/ j \backslash
</math>
}}
where {{LaTeX/LaTeX|code=\lbrack}} and {{LaTeX/LaTeX|code=\rbrack}} may be used in place of [ and ].
=== Automatic sizing ===
Very often, mathematical features will differ in size, in which case the delimiters surrounding the expression should vary accordingly. This can be done automatically using the {{LaTeX/LaTeX|code=\left}}, {{LaTeX/LaTeX|code=\right}}, and {{LaTeX/LaTeX|code=\middle}} commands. Any of the previous delimiters may be used in combination with these:
{{LaTeX/Example|code=
\left(\frac{x^2}{y^3}\right)
|render=<math>
\left(\frac{x^2}{y^3}\right)
\,</math>
}}
{{LaTeX/Example|code=
P\left(A=2\middle{{!}}\frac{A^2}{B}>4\right)
|
render=[[Image:Latex_example_middle.png|150px]]
}}
Curly braces are defined differently by using {{LaTeX/LaTeX|code=\left\{}} and {{LaTeX/LaTeX|code=\right\} }},
{{LaTeX/Example|code=
\left\{\frac{x^2}{y^3}\right\}
|render=<math>
\left\{\frac{x^2}{y^3}\right\}
\,</math>
}}
If a delimiter on only one side of an expression is required, then an invisible delimiter on the other side may be denoted using a period (<code>.</code>).
{{LaTeX/Example|code=
\left.\frac{x^3}{3}\right{{!}}_0^1
|render=<math>
\left.\frac{x^3}{3}\right|_0^1
\,</math>
}}
=== Manual sizing ===
In certain cases, the sizing produced by the {{LaTeX/LaTeX|code=\left}} and {{LaTeX/LaTeX|code=\right}} commands may not be desirable, or you may simply want finer control over the delimiter sizes. In this case, the {{LaTeX/LaTeX|code=\big}}, {{LaTeX/LaTeX|code=\Big}}, {{LaTeX/LaTeX|code=\bigg}} and {{LaTeX/LaTeX|code=\Bigg}} modifier commands may be used:
{{LaTeX/Example|code=
( \big( \Big( \bigg( \Bigg(
|render=<math>
( \big( \Big( \bigg( \Bigg(
\,</math>
}}
These commands are primarily useful when dealing with nested delimiters. For example, when typesetting
{{LaTeX/Example|code=
\frac{\mathrm d}{\mathrm d x} \left( k g(x) \right)
|render=<math>
\frac{\mathrm d}{\mathrm d x} \left( k g(x) \right)
</math>
}}
we notice that the {{LaTeX/LaTeX|code=\left}} and {{LaTeX/LaTeX|code=\right}} commands produce the same size delimiters as those nested within it. This can be difficult to read. To fix this, we write
{{LaTeX/Example|code=
\frac{\mathrm d}{\mathrm d x} \big( k g(x) \big)
|render=<math>
\frac{\mathrm d}{\mathrm d x} \big( k g(x) \big)
</math>
}}
Manual sizing can also be useful when an equation is too large, trails off the end of the page, and must be separated into two lines using an align command. Although the commands {{LaTeX/LaTeX|code=\left.}} and {{LaTeX/LaTeX|code=\right.}} can be used to balance the delimiters on each line, this may lead to wrong delimiter sizes. Furthermore, manual sizing can be used to avoid overly large delimiters — if an {{LaTeX/LaTeX|code=\underbrace}} or a similar command appears between the delimiters.
== Matrices and arrays ==
A basic matrix may be created using the {{LaTeX/Environment|matrix}} environment{{efn|name="amsmath"}}: in common with other table-like structures, entries are specified by row, with columns separated using an ampersand ({{LaTeX/LaTeX|code=&}}) and new rows separated with a double backslash ({{LaTeX/LaTeX|code=\\}})
{{LaTeX/Example|code=
\[
\begin{matrix}
a & b & c \\
d & e & f \\
g & h & i
\end{matrix}
\]
|render=<math>
\begin{matrix}
a & b & c \\
d & e & f \\
g & h & i
\end{matrix}
</math>
}}
To specify alignment of columns in the table, use starred version{{efn|name="mathtools"}}:
{{LaTeX/Example|code=
\begin{matrix}
-1 & 3 \\
2 & -4
\end{matrix}
=
\begin{matrix*}[r]
-1 & 3 \\
2 & -4
\end{matrix*}
|render=
<math>
\begin{matrix}
-1 & 3 \\
2 & -4
\end{matrix}
=
\begin{matrix}
-1 & \,\;\;3 \\
\,\;\;2 & -4
\end{matrix}
</math>
}}
The alignment by default is {{LaTeX/Parameter|c}}, but it can be any column type valid in {{LaTeX/Environment|array}} environment.
However matrices are usually enclosed in delimiters of some kind, and while it is possible to use the [[#Automatic sizing|<code>\left</code> and <code>\right</code> commands]], there are various other predefined environments which automatically include delimiters:
{|class="wikitable"
! Environment name
! Surrounding delimiter
! Notes
|-
| {{LaTeX/Environment|pmatrix}}{{efn|name="amsmath"}}
| <math>( \, ) </math>
| centers columns by default
|-
| {{LaTeX/Environment|pmatrix*}}{{efn|name="mathtools"}}
| <math>( \, ) </math>
| allows to specify alignment of columns in optional parameter
|-
| {{LaTeX/Environment|bmatrix}}{{efn|name="amsmath"}}
| <math>[ \, ] </math>
| centers columns by default
|-
| {{LaTeX/Environment|bmatrix*}}{{efn|name="mathtools"}}
| <math>[ \, ] </math>
| allows to specify alignment of columns in optional parameter
|-
| {{LaTeX/Environment|Bmatrix}}{{efn|name="amsmath"}}
| <math>\{ \, \} </math>
| centers columns by default
|-
| {{LaTeX/Environment|Bmatrix*}}{{efn|name="mathtools"}}
| <math>\{ \, \} </math>
| allows to specify alignment of columns in optional parameter
|-
| {{LaTeX/Environment|vmatrix}}{{efn|name="amsmath"}}
| <math>| \, | </math>
| centers columns by default
|-
| {{LaTeX/Environment|vmatrix*}}{{efn|name="mathtools"}}
| <math>| \, | </math>
| allows to specify alignment of columns in optional parameter
|-
| {{LaTeX/Environment|Vmatrix}}{{efn|name="amsmath"}}
| <math>\| \, \| </math>
| centers columns by default
|-
| {{LaTeX/Environment|Vmatrix*}}{{efn|name="mathtools"}}
| <math>\| \, \| </math>
| allows to specify alignment of columns in optional parameter
|}
When writing down arbitrary sized matrices, it is common to use horizontal, vertical and diagonal triplets of dots (known as [[w:ellipsis|ellipses]]) to fill in certain columns and rows. These can be specified using the {{LaTeX/LaTeX|code=\cdots}}, {{LaTeX/LaTeX|code=\vdots}} and {{LaTeX/LaTeX|code=\ddots}} respectively:
{{LaTeX/Example|code=
A_{m,n} =
\begin{pmatrix}
a_{1,1} & a_{1,2} & \cdots & a_{1,n} \\
a_{2,1} & a_{2,2} & \cdots & a_{2,n} \\
\vdots & \vdots & \ddots & \vdots \\
a_{m,1} & a_{m,2} & \cdots & a_{m,n}
\end{pmatrix}
|render=<math>
A_{m,n} =
\begin{pmatrix}
a_{1,1} & a_{1,2} & \cdots & a_{1,n} \\
a_{2,1} & a_{2,2} & \cdots & a_{2,n} \\
\vdots & \vdots & \ddots & \vdots \\
a_{m,1} & a_{m,2} & \cdots & a_{m,n}
\end{pmatrix}
</math>
}}
In some cases, you may want to have finer control of the alignment within each column, or to insert lines between columns or rows. This can be achieved using the {{LaTeX/Environment|array}} environment, which is essentially a math-mode version of the [[../Tables#The tabular environment|<code>tabular</code> environment]], which requires that the columns be pre-specified:
{{LaTeX/Example|code=
\begin{array}{c{{!}}c}
1 & 2 \\
\hline
3 & 4
\end{array}
|render=<math>
\begin{array}{c|c}
1 & 2 \\
\hline
3 & 4
\end{array}
</math>
}}
You may see that the AMS matrix class of environments doesn't leave enough space when used together with fractions resulting in output similar to this:
<math>
M = \begin{bmatrix}
\frac{5}{6} & \frac{1}{6} & 0\\
\frac{5}{6} & 0 & \frac{1}{6}\\
0 & \frac{5}{6} & \frac{1}{6}
\end{bmatrix}
</math>
To counteract this problem, add additional leading space with the optional parameter to the {{LaTeX/LaTeX|code=\\}} command:
{{LaTeX/Example|code=
M = \begin{bmatrix}
\frac{5}{6} & \frac{1}{6} & 0 \\[0.3em]
\frac{5}{6} & 0 & \frac{1}{6} \\[0.3em]
0 & \frac{5}{6} & \frac{1}{6}
\end{bmatrix}
|render=<math>
M = \begin{bmatrix}
\frac{5}{6} & \frac{1}{6} & 0 \\[0.3em]
\frac{5}{6} & 0 & \frac{1}{6} \\[0.3em]
0 & \frac{5}{6} & \frac{1}{6}
\end{bmatrix}</math>
}}
If you need "border" or "indexes" on your matrix, plain TeX provides the macro {{LaTeX/LaTeX|code=\bordermatrix}}
{{LaTeX/Example|code=
M = \bordermatrix{~ & x & y \cr
A & 1 & 0 \cr
B & 0 & 1 \cr}
|render=[[Image:bordermatrix.png|150px]]
}}
=== Matrices in running text ===
To insert a small matrix without increasing leading in the line containing it, use {{LaTeX/Environment|smallmatrix}} environment:
{{LaTeX/Example|code=
A matrix in text must be set smaller:
$\bigl(\begin{smallmatrix}
a&b \\ c&d
\end{smallmatrix} \bigr)$
to not increase leading in a portion of text.
|render=[[Image:LaTeX-smallmatrix.png]]
}}
== Adding text to equations ==
The math environment differs from the text environment in the representation of text. Here is an example of trying to represent text within the math environment:
{{LaTeX/Example|code=
50 apples \times 100 apples = lots of apples^2
|render=<math>
50 apples \times 100 apples = lots of apples^2
\,</math>
}}
There are two noticeable problems: there are no spaces between words or numbers, and the letters are italicized and more spaced out than normal. Both issues are simply artifacts of the maths mode, in that it treats it as a mathematical expression: spaces are ignored (LaTeX spaces mathematics according to its own rules), and each character is a separate element (so are not positioned as closely as normal text).
There are a number of ways that text can be added properly. The typical way is to wrap the text with the {{LaTeX/LaTeX|code=\text{...}<!---->}} command{{efn|name="amsmath"}} (a similar command is {{LaTeX/LaTeX|code=\mbox{...}<!---->}}, though this causes problems with subscripts, and has a less descriptive name). Let's see what happens when the above equation code is adapted:
{{LaTeX/Example|code=
50 \text{apples} \times 100 \text{apples}
= \text{lots of apples}^2
|render=
<math>
50 \text{apples} \times 100 \text{apples} = \text{lots of apples}^2
\,</math>
}}
The text looks better. However, there are no gaps between the numbers and the words. Unfortunately, you are required to explicitly add these. There are many ways to add spaces between math elements, but for the sake of simplicity we may simply insert space characters into the {{LaTeX/LaTeX|code=\text}} commands.
{{LaTeX/Example|code=
50 \text{ apples} \times 100 \text{ apples}
= \text{lots of apples}^2
|render=
<math>
50 \text{ apples} \times 100 \text{ apples} = \text{lots of apples}^2
\,</math>
}}
== Formatting mathematics symbols ==
:''See also: [[w:Mathematical Alphanumeric Symbols]], [[w:Help:Displaying a formula#Alphabets and typefaces]] and [[w:Wikipedia:LaTeX symbols#Fonts]]''
We can now format text; what about formatting mathematical expressions? There are a set of formatting commands very similar to the font formatting ones just used, except that they are specifically aimed at text in math mode (requires {{LaTeX/Package|amsfonts}})
{|class="wikitable" latexfontsize="scriptsize"
! width="15%"|LaTeX command
! width="35%"|Sample
! Description
! Common use
|-
| {{LaTeX/LaTeX|code=\mathnormal{…} }}<br/><small>(or simply omit any command)</small>
| <math>ABCDEF~abcdef~123456\,</math>
| The default math font
| Most mathematical notation
|-
| {{LaTeX/LaTeX|code=\mathrm{…} }}
| <math>\mathrm{ABCDEF~abcdef~123456}\,</math>
| This is the default or normal font, unitalicised
| Units of measurement, one word functions
|-
| {{LaTeX/LaTeX|code=\mathit{…} }}
| <math>\mathit{ABCDEF~abcdef~123456}\,</math>
| Italicised font
| Multi-letter function or variable names. Compared to <code>\mathnormal</code>, words are spaced more naturally and numbers are italicized as well.
|-
| {{LaTeX/LaTeX|code=\mathbf{…} }}
| <math>\mathbf{ABCDEF~abcdef~123456}\,</math>
| Bold font
| Vectors
|-
| {{LaTeX/LaTeX|code=\mathsf{…} }}
| <math>\mathsf{ABCDEF~abcdef~123456}\,</math>
| [[w:sans-serif|Sans-serif]]
| Categories
|-
| {{LaTeX/LaTeX|code=\mathtt{…} }}
| <math>\mathtt{ABCDEF~abcdef~123456}\,</math>
| [[w:Monospace font|Monospace (fixed-width) font]]
|
|-
| {{LaTeX/LaTeX|code=\mathfrak{…} }}<br/><small>(requires the {{LaTeX/Package|amsfonts}} or {{LaTeX/Package|amssymb}} package{{efn|name="mathalfa"}})</small>
| <math>\mathfrak{ABCDEF~abcdef~123456}\,</math>
| [[w:Fraktur (script)|Fraktur]]
| Almost canonical font for Lie algebras, [[w:Ideal (ring theory)|ideals]] in ring theory
|-
| {{LaTeX/LaTeX|code=\mathcal{…} }}
| <math>\mathcal{ABCDEF}\,</math>
| Calligraphy (uppercase only{{efn|name="mathalfa"}})
| Often used for sheaves/schemes and categories, used to denote [[w:en:Cryptography|cryptological]] concepts like an ''alphabet of definition'' (<math>\mathcal{A}</math>), ''message space'' (<math>\mathcal{M}</math>), ''ciphertext space'' (<math>\mathcal{C}</math>) and ''[[w:key space|key space]]'' (<math>\mathcal{K}</math>); [[w:Kleene's O|Kleene's <math>\mathcal{O}</math>]]; [[w:Description logic#Naming Convention|naming convention in description logic]]; [[w:Laplace transform|Laplace transform]] (<math>\mathcal{L}</math>) and [[w:Fourier transform|Fourier transform]] (<math>\mathcal{F}</math>)
|-
| {{LaTeX/LaTeX|code=\mathbb{…} }}<br/><small>(requires the {{LaTeX/Package|amsfonts}} or {{LaTeX/Package|amssymb}} package{{efn|name="mathalfa"}})</small>
| <math>\mathbb{ABCDEF}\,</math>
| [[w:Blackboard bold|Blackboard bold]] (uppercase only{{efn|name="mathalfa"}})
| Used to denote special sets (e.g. real numbers)
|-
| {{LaTeX/LaTeX|code=\mathscr{…} }}<br/><small>(requires the {{LaTeX/Package|mathrsfs}} package{{efn|name="mathalfa"}})</small>
| [[File:Mathscr (A-F).png]]
| [[w:Script (typefaces)|Script]] (uppercase only{{efn|name="mathalfa"}})
| An alternative font for categories and sheaves.
|}
These formatting commands can be wrapped around the entire equation, and not just on the textual elements: they only format letters, numbers, and uppercase Greek, and other math commands are unaffected.
To bold lowercase Greek or other symbols use the {{LaTeX/LaTeX|code=\boldsymbol}} command{{efn|name="amsmath"}}; this will only work if there exists a bold version of the symbol in the current font. As a last resort there is the {{LaTeX/LaTeX|code=\pmb}} command{{efn|name="amsmath"}} (poor man's bold): this prints multiple versions of the character slightly offset against each other.
{{LaTeX/Example|code=
\boldsymbol{\beta} = (\beta_1,\beta_2,\dotsc,\beta_n)
|render=
<math>
\boldsymbol{\beta} = (\beta_1,\beta_2,\dotsc,\beta_n)
\,</math>
}}
To change the size of the fonts in math mode, see [[../Advanced Mathematics#Changing font size|Changing font size]].
=== Accents ===
So what to do when you run out of symbols and fonts? Well, the next step is to use accents:
{|
| <code>a'</code> or <code>a^{\prime}</code> ||width="15%"| <math>a'\,</math>
| style="padding-left:20px" | <code><nowiki>a''</nowiki></code> || <math>a''\,</math>
|-
| <code>\hat{a}</code> || <math>\hat{a} \,</math>
| style="padding-left:20px" | <code>\bar{a}</code> || <math>\bar{a} \,</math>
|-
| <code>\grave{a}</code> || <math>\grave{a} \,</math>
| style="padding-left:20px" | <code>\acute{a}</code> || <math>\acute{a} \,</math>
|-
| <code>\dot{a}</code> || <math>\dot{a} \,</math>
| style="padding-left:20px" | <code>\ddot{a}</code> || <math>\ddot{a} \,</math>
|-
| <code>\not{a}</code> || <math>\not{a} \,</math>
| style="padding-left:20px" | <code>\mathring{a}</code> || å
|-
| <code>\overrightarrow{AB}</code> || <math>\overrightarrow{AB} \,</math>
| <code>\overleftarrow{AB}</code> || <math>\overleftarrow{AB} \,</math>
|-
| <code><nowiki>a'''</nowiki></code> || <math>a'''\,</math>
| style="padding-left:20px" | <code><nowiki>a''''</nowiki></code> || <math>a''''\,</math>
|-
| <code>\overline{aaa}</code> || <math>\overline{aaa} \,</math>
| style="padding-left:20px" | <code>\check{a}</code> || <math>\check{a} \,</math>
|-
| <code>\breve{a}</code> || <math>\breve{a} \,</math>
| style="padding-left:20px" | <code>\vec{a}</code> || <math>\vec{a} \,</math>
|-
| <code>\dddot{a}</code>{{efn|name="amsmath"}} ||
| style="padding-left:20px" | <code>\ddddot{a}</code>{{efn|name="amsmath"}} ||
|-
| <code>\widehat{AAA}</code> || <math>\widehat{AAA} \,</math>
| style="padding-left:20px" | <code>\widetilde{AAA}</code> || <math>\widetilde{AAA}</math>
|-
| <code>\stackrel\frown{AAA}</code> || <math>\stackrel\frown{AAA}</math>
|-
| <code>\tilde{a}</code> || <math>\tilde{a} \,</math>
| style="padding-left:20px" | <code>\underline{a}</code> || <math>\underline{a} \,</math>
|}
== Color ==
The package {{LaTeX/Package|xcolor}}, described in [[../Colors#Adding_the_color_package|Colors]], allows us to add color to our equations. For example,
{{LaTeX/Example|code=
k = {\color{red}x} \mathbin{\color{blue}-} 2
|render=<math>
k = {\color{red}x} \mathbin{\color{blue}-} 2
</math>
}}
The only problem is that this disrupts the default {{LaTeX}} formatting around the {{LaTeX/LaTeX|code=-}} operator. To fix this, we enclose it in a {{LaTeX/LaTeX|code=\mathbin}} environment, since {{LaTeX/LaTeX|code=-}} is a binary operator. This process is described [http://tex.stackexchange.com/questions/21598/how-to-color-math-symbols here].
==Plus and minus signs==
LaTeX deals with the + and − signs in two possible ways. The most common is as a binary operator. When two maths elements appear on either side of the sign, it is assumed to be a binary operator, and as such, allocates some space to either side of the sign. The alternative way is a sign designation. This is when you state whether a mathematical quantity is either positive or negative. This is common for the latter, as in math, such elements are assumed to be positive unless a − is prefixed to it. In this instance, you want the sign to appear close to the appropriate element to show their association. If you put a + or a − with nothing before it but you want it to be handled like a binary operator you can add an ''invisible'' character before the operator using {{LaTeX/LaTeX|code={}<!---->}}. This can be useful if you are writing multiple-line formulas, and a new line could start with a − or +, for example, then you can fix some strange alignments adding the invisible character where necessary.
A plus-minus sign is written as:
{{LaTeX/Example|code=
\pm
|render=<math>
\pm
</math>
}}
Similarly, there exists also a minus-plus sign:
{{LaTeX/Example|code=
\mp
|render=<math>
\mp
</math>
}}
== Controlling horizontal spacing ==
LaTeX is obviously pretty good at typesetting maths—it was one of the chief aims of the core TeX system that LaTeX extends. However, it can't always be relied upon to accurately interpret formulas in the way you did. It has to make certain assumptions when there are ambiguous expressions. The result tends to be slightly incorrect horizontal spacing. In these events, the output is still satisfactory, yet any perfectionists will no doubt wish to ''fine-tune'' their formulas to ensure spacing is correct. These are generally very subtle adjustments.
There are other occasions where LaTeX has done its job correctly, but you just want to add some space, maybe to add a comment of some kind. For example, in the following equation, it is preferable to ensure there is a decent amount of space between the maths and the text.
{{LaTeX/Example|code=
\[ f(n) =
\begin{cases}
n/2 & \quad \text{if } n \text{ is even}\\
-(n+1)/2 & \quad \text{if } n \text{ is odd}
\end{cases}
\]
|render=
<math>
f(n) =
\begin{cases}
n/2 & \quad \text{if } n \text{ is even}\\
-(n+1)/2 & \quad \text{if } n \text{ is odd}
\end{cases}
</math>
}}
This code produces errors with Miktex 2.9 and does not yield the results seen on the right.
Use \mathrm instead of just \text.
(Note that this particular example can be expressed in more elegant code by the {{LaTeX/Environment|cases}} construct provided by the {{LaTeX/Package|amsmath}} package described in [[LaTeX/Advanced_Mathematics#The_cases_environment|Advanced Mathematics]] chapter.)
LaTeX has defined two commands that can be used anywhere in documents (not just maths) to insert some horizontal space. They are {{LaTeX/LaTeX|code=\quad}} and {{LaTeX/LaTeX|code=\qquad}}
A {{LaTeX/LaTeX|code=\quad}} is a space equal to the current font size. So, if you are using an 11pt font, then the space provided by {{LaTeX/LaTeX|code=\quad}} will also be 11pt (horizontally, of course.) The {{LaTeX/LaTeX|code=\qquad}} gives twice that amount. As you can see from the code from the above example, {{LaTeX/LaTeX|code=\quad}}s were used to add some separation between the maths and the text.
OK, so back to the fine tuning as mentioned at the beginning of the document. A good example would be displaying the simple equation for the indefinite integral of ''y'' with respect to ''x'':
<math>\int y\, \mathrm{d}x</math>
If you were to try this, you may write:
{{LaTeX/Example|code=
\int y \mathrm{d}x
|render=
<math>\int y \mathrm{d}x</math>
}}
However, this doesn't give the correct result. LaTeX doesn't respect the white-space left in the code to signify that the ''y'' and the d''x'' are independent entities. Instead, it lumps them altogether. A {{LaTeX/LaTeX|code=\quad}} would clearly be overkill in this situation—what is needed are some small spaces to be utilized in this type of instance, and that's what LaTeX provides:
{| class="wikitable"
! Command
! Description
! Size
|-
| {{LaTeX/LaTeX|code=\,}}
| small space
| 3/18 of a quad
|-
| {{LaTeX/LaTeX|code=\:}}
| medium space
| 4/18 of a quad
|-
| {{LaTeX/LaTeX|code=\;}}
| large space
| 5/18 of a quad
|-
| {{LaTeX/LaTeX|code=\!}}
| negative space
| -3/18 of a quad
|}
NB you can use more than one command in a sequence to achieve a greater space if necessary.
So, to rectify the current problem:
{{LaTeX/Example|code=
\int y\, \mathrm{d}x
|render=
<math>\int y\, \mathrm{d}x</math>
}}
{{LaTeX/Example|code=
\int y\: \mathrm{d}x
|render=
<math>\int y\;\;\!\! \mathrm{d}x</math>
}}
{{LaTeX/Example|code=
\int y\; \mathrm{d}x
|render=
<math>\int y\; \mathrm{d}x</math>
}}
The negative space may seem like an odd thing to use, however, it wouldn't be there if it didn't have ''some'' use! Take the following example:
{{LaTeX/Example|code=\partial\frac{x-y}z|render=<math>\partial\frac{x-y}z</math>}}
X and Y are like rotations.{{LaTeX/Example|code=
\left(
\begin{array}{c}
n \\
r
\end{array}
\right) = \frac{n!}{r!(n-r)!}
|render=
<math>\left(
\begin{matrix}
n \\
r
\end{matrix}
\right) = \frac{n!}{r!(n-r)!}</math>
}}
The matrix-like expression for representing binomial coefficients is too padded. There is too much space between the brackets and the actual contents within. This can easily be corrected by adding a few negative spaces after the left bracket and before the right bracket.
{{LaTeX/Example|code=\Re|render=<math>\Re</math>}}{{LaTeX/Example|code=
\left(\!
\begin{array}{c}
n \\
r
\end{array}
\!\right) = \frac{n!}{r!(n-r)!}
|render=
<math>\left(\!
\begin{matrix}
n \\
r
\end{matrix}
\!\right) = \frac{n!}{r!(n-r)!}
</math>
}}
In any case, adding some spaces manually should be avoided whenever possible: it makes the source code more complex and it's against the basic principles of a What You See is What You Mean approach. The best thing to do is to define some commands using all the spaces you want and then, when you use your command, you don't have to add any other space. Later, if you change your mind about the length of the horizontal space, you can easily change it modifying only the command you defined before. Let us use an example: you want the ''d'' of a ''dx'' in an integral to be in roman font and a small space away from the rest. If you want to type an integral like {{LaTeX/LaTeX|code=\int x \, \mathrm{d} x}}, you can define a command like this:
{{LaTeX/Usage|code=
\newcommand{\dd}{\mathop{}\,\mathrm{d}<!---->}
}}
in the preamble of your document. We have chosen {{LaTeX/LaTeX|code=\dd}} just because it reminds the "d" it replaces and it is fast to type. Doing so, the code for your integral becomes {{LaTeX/LaTeX|code=\int x \dd x}}. Now, whenever you write an integral, you just have to use the {{LaTeX/LaTeX|code=\dd}} instead of the "d", and all your integrals will have the same style. If you change your mind, you just have to change the definition in the preamble, and all your integrals will be changed accordingly.
== Manually Specifying Formula Style ==
To manually display a fragment of a formula using text style, surround the fragment with curly braces and prefix the fragment with {{LaTeX/LaTeX|code=\textstyle}}. The braces are required because the {{LaTeX/LaTeX|code=\textstyle}} macro changes the state of the renderer, rendering all subsequent mathematics in text style. The braces limit this change of state to just the fragment enclosed within. For example, to use text style for just the summation symbol in a sum, one would enter
{{LaTeX/Usage|code=
\begin{equation}
C^i_j = {\textstyle \sum_k} A^i_k B^k_j
\end{equation}
}}
The same thing as a command would look like this:
{{LaTeX/Usage|code=
\newcommand{\tsum}[1]{{\textstyle \sum_{#1}}}
}}
Note the extra braces. Just one set around the expression won't be enough. That would cause all math after {{LaTeX/LaTeX|code=\tsum k}} to be displayed using text style.
To display part of a formula using display style, do the same thing, but use {{LaTeX/LaTeX|code=\displaystyle}} instead.
==Advanced Mathematics: AMS Math package==
The AMS ([[Wikipedia:American Mathematical Society|American Mathematical Society]]) mathematics package is a powerful package that creates a higher layer of abstraction over mathematical LaTeX language; if you use it it will make your life easier. Some commands {{LaTeX/Package|amsmath}} introduces will make other plain LaTeX commands obsolete: in order to keep consistency in the final output you'd better use {{LaTeX/Package|amsmath}} commands whenever possible. If you do so, you will get an elegant output without worrying about alignment and other details, keeping your source code readable. If you want to use it, you have to add this in the preamble:
{{LaTeX/Usage|code=
\usepackage{amsmath}
}}
===Introducing dots in formulas===
{{LaTeX/Package|amsmath}} defines also the {{LaTeX/LaTeX|code=\dots}} command, that is a generalization of the existing {{LaTeX/LaTeX|code=\ldots}}. You can use {{LaTeX/LaTeX|code=\dots}} in both text and math mode and LaTeX will replace it with three dots "…" but it will decide according to the context whether to put it on the bottom (like {{LaTeX/LaTeX|code=\ldots}}) or centered (like {{LaTeX/LaTeX|code=\cdots}}).
===Dots===
LaTeX gives you several commands to insert dots (ellipses) in your formulae. This can be particularly useful if you have to type big matrices omitting elements. First of all, here are the main dots-related commands LaTeX provides:
{| class="wikitable"
! Code !! Output !! Comment
|-
| {{LaTeX/LaTeX|code=\dots}} || <math>\dots</math> || generic dots (ellipsis), to be used in text (outside formulae as well). It automatically manages whitespaces before and after itself according to the context, it's a higher level command.
|-
| {{LaTeX/LaTeX|code=\ldots}}|| <math>\ldots</math> || the output is similar to the previous one, but there is no automatic whitespace management; it works at a lower level.
|-
| {{LaTeX/LaTeX|code=\cdots}} || <math>\cdots</math> || These dots are centered relative to the height of a letter. There is also the binary multiplication operator, <code>\cdot</code>, mentioned below.
|-
| {{LaTeX/LaTeX|code=\vdots}} || <math>\vdots</math> || vertical dots
|-
| {{LaTeX/LaTeX|code=\ddots}} || <math>\ddots</math> || diagonal dots
|-
| {{LaTeX/LaTeX|code=\iddots}} || || inverse diagonal dots (requires the {{LaTeX/Package|mathdots}} package)
|-
| {{LaTeX/LaTeX|code=\hdotsfor{n}<!---->}} || <math>\ldots \ldots</math>|| to be used in matrices, it creates a row of dots spanning ''n'' columns.
|}
Instead of using {{LaTeX/LaTeX|code=\ldots}} and {{LaTeX/LaTeX|code=\cdots}}, you should use the semantically oriented commands. It makes it possible to adapt your document to different conventions on the fly, in case (for example) you have to submit it to a publisher who insists on following house tradition in this respect. The default treatment for the various kinds follows American Mathematical Society conventions.
{| class="wikitable"
! Code !! Output !! Comment
|-
| {{LaTeX/LaTeX|code=A_1,A_2,\dotsc,}} || [[File:LaTeX Dotsc.png]] || for "dots with commas"
|-
| {{LaTeX/LaTeX|code=A_1+\dotsb+A_N}} || [[File:LaTeX Dotsb.png]] || for "dots with binary operators/relations"
|-
| {{LaTeX/LaTeX|code=A_1 \dotsm A_N}} || [[File:LaTeX Dotsm.png]] || for "multiplication dots"
|-
| {{LaTeX/LaTeX|code=\int_a^b \dotsi}} || [[File:LaTeX Dotsi.png]] || for "dots with integrals"
|-
| {{LaTeX/LaTeX|code=A_1\dotso A_N}} || [[File:LaTeX Dotso.png]] || for "other dots" (none of the above)
|}
===Write an equation with the align environment===
How to write an equation with the align environment with the {{LaTeX/Package|amsmath}} package is described in [[LaTeX/Advanced_Mathematics#align_and_align.2A|Advanced Mathematics]].
==List of mathematical symbols==
All the pre-defined mathematical symbols from the \TeX\ package are listed below. More symbols are available from extra packages.
{| class="wikitable" latexfontsize="scriptsize"
|+ Relation Symbols
|-
!scope="col"| Symbol !!scope="col"| Script
|rowspan="11"|
!scope="col"| Symbol !!scope="col"| Script
|rowspan="10"|
!scope="col"| Symbol !!scope="col"| Script
|rowspan="10"|
!scope="col"| Symbol !!scope="col"| Script
|rowspan="10"|
!scope="col"| Symbol !!scope="col"| Script
|-
| <math><\,</math>||<code><</code>
| <math>>\,</math>||<code>></code>
| <math>=\,</math>||<code>=</code>
| <math>\parallel\,</math>||<code>\parallel</code>
| <math>\nparallel\,</math>||<code>\nparallel</code>
|-
| <math>\leq\,</math>||<code>\leq</code>
| <math>\geq\,</math>||<code>\geq</code>
| <math>\doteq\,</math>||<code>\doteq</code>
| <math>\asymp\,</math>||<code>\asymp</code>
| <math>\bowtie\,</math>||<code>\bowtie</code>
|-
| <math>\ll\,</math>||<code>\ll</code>
| <math>\gg\,</math>||<code>\gg</code>
| <math>\equiv\,</math>||<code>\equiv</code>
| <math>\vdash\,</math>||<code>\vdash</code>
| <math>\dashv\,</math>||<code>\dashv</code>
|-
| <math>\subset\,</math>||<code>\subset</code>
| <math>\supset\,</math>||<code>\supset</code>
| <math>\approx\,</math>||<code>\approx</code>
| <math>\in\,</math>||<code>\in</code>
| <math>\ni\,</math>||<code>\ni</code>
|-
| <math>\subseteq\,</math>||<code>\subseteq</code>
| <math>\supseteq\,</math>||<code>\supseteq</code>
| <math>\cong\,</math>||<code>\cong</code>
| <math>\smile\,</math>||<code>\smile</code>
| <math>\frown\,</math>||<code>\frown</code>
|-
| <math>\nsubseteq\,</math>||<code>\nsubseteq</code>
| <math>\nsupseteq\,</math>||<code>\nsupseteq</code>
| <math>\simeq\,</math>||<code>\simeq</code>
| <math>\models\,</math>||<code>\models</code>
| <math>\notin\,</math>||<code>\notin</code>
|-
| <math>\sqsubset\,</math>||<code>\sqsubset</code>
| <math>\sqsupset\,</math>||<code>\sqsupset</code>
| <math>\sim\,</math>||<code>\sim</code>
| <math>\perp\,</math>||<code>\perp</code>
| <math>\mid\,</math>||<code>\mid</code>
|-
| <math>\sqsubseteq\,</math>||<code>\sqsubseteq</code>
| <math>\sqsupseteq\,</math>||<code>\sqsupseteq</code>
| <math>\propto\,</math>||<code>\propto</code>
| <math>\prec\,</math>||<code>\prec</code>
| <math>\succ\,</math>||<code>\succ</code>
|-
| <math>\preceq\,</math>||<code>\preceq</code>
| <math>\succeq\,</math>||<code>\succeq</code>
| <math>\neq\,</math>||<code>\neq</code>
| <math>\sphericalangle\,</math>||<code>\sphericalangle</code>
| <math>\measuredangle\,</math>||<code>\measuredangle</code>
|-
| <math>\therefore\,</math>||<code>\therefore</code>
| <math>\because\,</math>||<code>\because</code>
|}
{| class="wikitable" latexfontsize="scriptsize"
|+ Binary Operations
|-
!scope="col"| Symbol !!scope="col"| Script
|rowspan="9"|
!scope="col"| Symbol !!scope="col"| Script
|rowspan="9"|
!scope="col"| Symbol !!scope="col"| Script
|rowspan="9"|
!scope="col"| Symbol !!scope="col"| Script
|-
| <math>\pm\,</math> || <code>\pm</code>
| <math>\cap\,</math> || <code>\cap</code>
| <math>\diamond\,</math> || <code>\diamond</code>
| <math>\oplus\,</math> || <code>\oplus</code>
|-
| <math>\mp\,</math> || <code>\mp</code>
| <math>\cup\,</math> || <code>\cup</code>
| <math>\bigtriangleup\,</math> || <code>\bigtriangleup</code>
| <math>\ominus\,</math> || <code>\ominus</code>
|-
| <math>\times\,</math> || <code>\times</code>
| <math>\uplus\,</math> || <code>\uplus</code>
| <math>\bigtriangledown\,</math> || <code>\bigtriangledown</code>
| <math>\otimes\,</math> || <code>\otimes</code>
|-
| <math>\div\,</math> || <code>\div</code>
| <math>\sqcap\,</math> || <code>\sqcap</code>
| <math>\triangleleft\,</math> || <code>\triangleleft</code>
| <math>\oslash\,</math> || <code>\oslash</code>
|-
| <math>\ast\,</math> || <code>\ast</code>
| <math>\sqcup\,</math> || <code>\sqcup</code>
| <math>\triangleright\,</math> || <code>\triangleright</code>
| <math>\odot\,</math> || <code>\odot</code>
|-
| <math>\star\,</math> || <code>\star</code>
| <math>\vee\,</math> || <code>\vee</code>
| <math>\bigcirc\,</math> || <code>\bigcirc</code>
| <math>\circ\,</math> || <code>\circ</code>
|-
| <math>\dagger\,</math> || <code>\dagger</code>
| <math>\wedge\,</math> || <code>\wedge</code>
| <math>\bullet\,</math> || <code>\bullet</code>
| <math>\setminus\,</math> || <code>\setminus</code>
|-
| <math>\ddagger\,</math> || <code>\ddagger</code>
| <math>\cdot\,</math> || <code>\cdot</code>
| <math>\wr\,</math> || <code>\wr</code>
| <math>\amalg\,</math> || <code>\amalg</code>
|}
{| class="wikitable" latexfontsize="scriptsize"
|+ Set and/or Logic Notation
|-
!scope="col"| Symbol !!scope="col"| Script
| rowspan="16" |
!scope="col"| Symbol !!scope="col"| Script
|-
| <math>\exists\,</math> || <code>\exists</code>
| <math>\rightarrow\,</math> || <code>\rightarrow</code> or <code>\to</code>
|-
| <math>\nexists\,</math> || <code>\nexists</code>
| <math>\leftarrow\,</math> || <code>\leftarrow</code> or <code>\gets</code>
|-
| <math>\forall\,</math> || <code>\forall</code>
| <math>\mapsto\,</math> || <code>\mapsto</code>
|-
| <math>\neg\,</math> || <code>\neg</code>
| <math>\implies\,</math> || <code>\implies</code>
|-
|<math>\cap</math>
|<code>\cap</code>
|
|
|-
|<math>\cup</math>
|<code>\cup</code>
|
|
|-
| <math>\subset\,</math>|| <code>\subset</code>
|⟸
|<code>\impliedby</code>
|-
| <math>\supset\,</math>|| <code>\supset</code>
|<math>\Rightarrow\,</math>||<code>\Rightarrow</code> or <code>\implies</code>
|-
| <math>\in</math>||<code>\in</code>
|<math>\leftrightarrow\,</math>||<code>\leftrightarrow</code>
|-
| <math>\notin\,</math>|| <code>\notin</code>
|<math>\iff\,</math>||<code>\iff</code>
|-
| <math>\ni\,</math>|| <code>\ni</code>
|<math>\Leftrightarrow\,</math>||<code>\Leftrightarrow</code> (preferred for equivalence (iff))
|-
| <math>\land\,</math>|| <code>\land</code>
|<math>\top\,</math>||<code>\top</code>
|-
| <math>\lor\,</math>|| <code>\lor</code>
|<math>\bot\,</math>||<code>\bot</code>
|-
| <math>\angle\,</math> || <code>\angle</code>
|<math>\emptyset\,</math> and <math>\varnothing\,</math>||<code>\emptyset</code> and <code>\varnothing</code>{{ref|symbolpackage}}
|-
|
|
|<math>\rightleftharpoons\,</math>
|<code>\rightleftharpoons</code>
|}
{| class="wikitable" latexfontsize="scriptsize"
|+ Delimiters
|-
!scope="col"| Symbol !!scope="col"| Script
|rowspan="5"|
!scope="col"| Symbol !!scope="col"| Script
|rowspan="5"|
!scope="col"| Symbol !!scope="col"| Script
|rowspan="5"|
!scope="col"| Symbol !!scope="col"| Script
|-
| <math>|\,</math> || <code><nowiki>|</nowiki></code> or <code>\mid</code> (difference in spacing)
| <math>\|\,</math> || <code>\<nowiki>|</nowiki></code>
| <math>/\,</math> || <code>/</code>
| <math>\backslash\,</math> || <code>\backslash</code>
|-
| <math>\{\,</math> || <code>\{</code>
| <math>\}\,</math> || <code>\}</code>
| <math>\langle\,</math> || <code>\langle</code>
| <math>\rangle\,</math> || <code>\rangle</code>
|-
| <math>\uparrow\,</math> || <code>\uparrow</code>
| <math>\Uparrow\,</math> || <code>\Uparrow</code>
| <math>\lceil\,</math> || <code>\lceil</code>
| <math>\rceil\,</math> || <code>\rceil</code>
|-
| <math>\downarrow\,</math> || <code>\downarrow</code>
| <math>\Downarrow\,</math> || <code>\Downarrow</code>
| <math>\lfloor\,</math> || <code>\lfloor</code>
| <math>\rfloor\,</math> || <code>\rfloor</code>
|}
Note: To use the Greek Letters in LaTeX that have the same appearance in the Latin alphabet, just use Latin: e.g., A instead of Alpha, B instead of Beta, etc.
{| class="wikitable" latexfontsize="scriptsize"
|+ Greek Letters
|-
!scope="col"| Symbol !!scope="col"| Script
|rowspan="13"|
!scope="col"| Symbol !!scope="col"| Script
|-
| <math>\Alpha\,</math> and <math>\alpha\,</math>|| <code>A</code> and <code>\alpha</code>
| <math>\Nu\,</math> and <math>\nu\,</math>|| <code>N</code> and <code>\nu</code>
|-
| <math>\Beta\,</math> and <math>\beta\,</math>|| <code>B</code> and <code>\beta</code>
| <math>\Xi\,</math> and <math>\xi\,</math>|| <code>\Xi</code> and <code>\xi</code>
|-
| <math>\Gamma\,</math> and <math>\gamma\,</math>|| <code>\Gamma</code> and <code>\gamma</code>
| <math>\Omicron\,</math> and <math>\omicron\,</math>|| <code>O</code> and <code>o</code>
|-
| <math>\Delta\,</math> and <math>\delta\,</math>|| <code>\Delta</code> and <code>\delta</code>
| <math>\Pi\,</math>, <math>\pi\,</math> and <math>\varpi</math>|| <code>\Pi</code>, <code>\pi</code> and <code>\varpi</code>
|-
| <math>\Epsilon\,</math>, <math>\epsilon\,</math> and <math>\varepsilon\,</math>|| <code>E</code>, <code>\epsilon</code> and <code>\varepsilon</code>
| <math>\Rho\,</math>, <math>\rho\,</math> and <math>\varrho\,</math>|| <code>P</code>, <code>\rho</code> and <code>\varrho</code>
|-
| <math>\Zeta\,</math> and <math>\zeta\,</math>|| <code>Z</code> and <code>\zeta</code>
| <math>\Sigma\,</math>, <math>\sigma\,</math> and <math>\varsigma\,</math>|| <code>\Sigma</code>, <code>\sigma</code> and <code>\varsigma</code>
|-
| <math>\Eta\,</math> and <math>\eta\,</math>|| <code>H</code> and <code>\eta</code>
| <math>\Tau\,</math> and <math>\tau\,</math>|| <code>T</code> and <code>\tau</code>
|-
| <math>\Theta\,</math>, <math>\theta\,</math> and <math>\vartheta\,</math>|| <code>\Theta</code>, <code>\theta</code> and <code>\vartheta</code>
| <math>\mbox{Y}\,</math>, <math>\Upsilon\,</math> and <math>\upsilon\,</math>|| <code>Y</code>, <code>\Upsilon</code> and <code>\upsilon</code>
|-
| <math>\Iota\,</math> and <math>\iota\,</math>|| <code>I</code> and <code>\iota</code>
| <math>\Phi\,</math>, <math>\phi\,</math>, and <math>\varphi\,</math>|| <code>\Phi</code>, <code>\phi</code> and <code>\varphi</code>
|-
| <math>\Kappa\,</math>, <math>\kappa\,</math> and <math>\varkappa\,</math> || <code>K</code>, <code>\kappa</code> and <code>\varkappa</code>
| <math>\Chi\,</math> and <math>\chi\,</math>|| <code>X</code> and <code>\chi</code>
|-
| <math>\Lambda\,</math> and <math>\lambda\,</math>|| <code>\Lambda</code> and <code>\lambda</code>
| <math>\Psi\,</math> and <math>\psi\,</math>|| <code>\Psi</code> and <code>\psi</code>
|-
| <math>\Mu\,</math> and <math>\mu\,</math>|| <code>M</code> and <code>\mu</code>
| <math>\Omega\,</math> and <math>\omega\,</math>|| <code>\Omega</code> and <code>\omega</code>
|}
{| class="wikitable" latexfontsize="scriptsize"
|+ Other symbols
|-
!scope="col"| Symbol !!scope="col"| Script
|rowspan="4"|
!scope="col"| Symbol !!scope="col"| Script
|rowspan="4"|
!scope="col"| Symbol !!scope="col"| Script
|rowspan="4"|
!scope="col"| Symbol !!scope="col"| Script
|rowspan="4"|
!scope="col"| Symbol !!scope="col"| Script
|-
| <math>\partial\,</math> || <code>\partial</code>
| <math>\imath\,</math> || <code>\imath</code>
| <math>\Re\,</math> || <code>\Re</code>
| <math>\nabla\,</math> || <code>\nabla</code>
| <math>\aleph\,</math> || <code>\aleph</code>
|-
| <math>\eth\,</math> || <code>\eth</code>
| <math>\jmath\,</math> || <code>\jmath</code>
| <math>\Im\,</math> || <code>\Im</code>
| <math>\Box\,</math> || <code>\Box</code>
| <math>\beth\,</math> || <code>\beth</code>
|-
| <math>\hbar\,</math> || <code>\hbar</code>
| <math>\ell\,</math> || <code>\ell</code>
| <math>\wp\,</math> || <code>\wp</code>
| <math>\infty\,</math> || <code>\infty</code>
| <math>\gimel\,</math> || <code>\gimel</code>
|}
{{note|symbolpackage}}Not predefined in LATEX 2. Use one of the packages latexsym, amsfonts, amssymb, txfonts, pxfonts, or wasysym
{| class="wikitable" latexfontsize="scriptsize"
|+Trigonometric Functions
|-
!scope="col"| Symbol !!scope="col"| Script
|rowspan="5"|
!scope="col"| Symbol !!scope="col"| Script
|rowspan="5"|
!scope="col"| Symbol !!scope="col"| Script
|rowspan="5"|
!scope="col"| Symbol !!scope="col"| Script
|-
| <math>\sin\,</math> || <code>\sin</code>
| <math>\arcsin\,</math> || <code>\arcsin</code>
| <math>\sinh\,</math> || <code>\sinh</code>
| <math>\sec\,</math> || <code>\sec</code>
|-
| <math>\cos\,</math> || <code>\cos</code>
| <math>\arccos\,</math> || <code>\arccos</code>
| <math>\cosh\,</math> || <code>\cosh</code>
| <math>\csc\,</math> || <code>\csc</code>
|-
| <math>\tan\,</math> || <code>\tan</code>
| <math>\arctan\,</math> || <code>\arctan</code>
| <math>\tanh\,</math> || <code>\tanh</code>
| ||
|-
| <math>\cot\,</math> || <code>\cot</code>
| <math>\arccot\,</math> || <code>\arccot</code>
| <math>\coth\,</math> || <code>\coth</code>
| ||
|}
If LaTeX does not include a command for the mathematical operator you want to use, for example <code>\cis</code> (<strong>c</strong>osine plus <strong>i</strong> times <strong>s</strong>ine), add to your preamble:
\DeclareMathOperator\cis{cis}
You can then use <code>\cis</code> in the document just like <code>\cos</code> or any other mathematical operator.
<!-- Sections remaining: Table 3 onwards from symbols.pdf -->
{{clear}}
== Summary ==
As you begin to see, typesetting math can be tricky at times. However, because LaTeX provides so much control, you can get professional quality mathematics typesetting with relatively little effort (once you've had a bit of practice, of course!). It is possible to elaborate further on the nitty-gritty of mathematics because the possibilities seem endless. However, with this tutorial, you should be able to get along with it sufficiently.
{{TODO|
* introduce symbols from [http://www.andy-roberts.net/res/writing/latex/symbols.pdf]
* add symbols from [http://www.ctan.org/tex-archive/macros/latex/contrib/wasysym/wasysym.pdf]
* consider adding symbols from [http://www.ctan.org/tex-archive/info/symbols/comprehensive/symbols-letter.pdf] -- the list of nearly all symbols available for LaTeX
* Consider, instead of using the symbols from the above mentioned, using what has already been introduced in [http://en.wikipedia.org/wiki/Math_markup] instead of retyping the tables
* How to box an equation within an align environment
* Color in equations
}}
== References ==
{{reflist}}
== Notes ==
{{notelist|refs=
{{efn|name="amsmath"|requires the {{LaTeX/Package|amsmath}} package}}
{{efn|name="mathtools"|requires the {{LaTeX/Package|mathtools}} package}}
{{efn|name="mathalfa"|1=The {{LaTeX/Package|mathalpha}} package allows for specifying a broader variety of fonts to be used in the <code>\mathfrak{}</code>, <code>\mathbb{}</code>, <code>\mathcal{}</code> and <code>\mathscr{}</code> commands. For example, the command <code>\usepackage[bb=pazo]{mathalpha}</code> makes it so <code>\mathbb{}</code> uses the "pazo" font. {{LaTeX/Package|mathalpha}}'s [http://mirrors.ctan.org/macros/latex/contrib/mathalpha/doc/mathalpha-doc.pdf documentation] gives a comparison of the different font options; some have lowercase letters, Greek letters or numerals where the default does not.}}
}}
==Further reading==
* [[meta:Help:Displaying a formula]]: Wikimedia uses a subset of LaTeX commands.
==External links==
* [http://detexify.kirelabs.org detexify]: applet for looking up LaTeX symbols by drawing them
* [http://mirrors.ctan.org/macros/latex/required/amsmath/amsmath.pdf <code>amsmath</code> documentation]
* [http://www.thestudentroom.co.uk/wiki/LaTeX LaTeX - The Student Room]
* [http://www.ctan.org/tex-archive/info/symbols/comprehensive The Comprehensive LaTeX Symbol List]
* [https://mathvault.ca/wp-content/uploads/Comprehensive-List-of-Mathematical-Symbols.pdf Comprehensive List of Mathematical Symbols]
<noinclude>
== Examples ==
<math>\Re</math>=\Re <math>\overbrace{ 1+2+\cdots+100 }^{5050}</math>=\overbrace{ 1+2+\cdots }^{5050}{{LaTeX/Bottom|Rules and Struts|Advanced Mathematics}}
</noinclude>
== Templates ==
LaTeX/Example LaTeX/LaTeX
{{LaTeX/LaTeX|code=ABC}}
{{LaTeX/Example|code=ABC…|render=ABC…}}
== Pit ==
<math id="https://en.wikipedia.org/partial">\partial</math>
[[pl:LaTeX/Matematyka]]
16sitdqp0ah1g4xvfg96c1b9td1qvg3
Chinese (Mandarin)/Pronunciation of Finals
0
65984
4641213
4385590
2026-06-26T05:06:38Z
~2026-36857-17
3609953
/* Pronunciation of finals */
4641213
wikitext
text/x-wiki
{{Chinese Intro TOC}}
{{Chinese (Mandarin)TOC}}
==Pronunciation of finals==
{| class="wikitable" style="font-size: 95%"
! colspan="2" |'''Pinyin'''||'''[[w:International Phonetic Alphabet|IPA]]'''||'''Final-only form'''||'''Description'''
|-
! rowspan="8" |'''Single finals'''
||'''a'''||{{IPA|[a:]}}||a|| as in "f'''a'''ther"
|-
|'''o'''
|[ɔ:]
|o
|as in "g'''o'''t" in British English, but not in American English.
|-
||'''e'''||{{IPA|[ɤə]}}||e|| a backward, unrounded vowel: first place the tongue between [ŋ] and [ə] to produce [ɤ], and then lower the tongue to slide to [ə]
a bit like English "d'''uh'''", but not as "op'''e'''n"
|-
|'''(ê)'''
|{{IPA|[e]}}
|ê
|as in "g'''e'''t"
|-
|'''i'''
|[i:]
|yi
|as in "h'''e'''"
|-
|'''(-i)'''
|{{IPA|[ɻ̩]}}, {{IPA|[ɹ̩]}}
|
|''i'' is a buzzed continuation of the consonant when it appears after these initials: ''z-'', ''c-, s-, zh-, ch-, sh-'' and ''r-''
|-
|'''u'''
|[u:]
|wu
|as in "wh'''o'''"
|-
|'''ü'''
|[y:]
|yu
|as in German "'''ü'''ben" or French "l'''u'''ne" (to get this sound, say "ee" with rounded lips)
|-
! rowspan="18" |'''Plural finals'''
||'''ai'''||{{IPA|[ai̯]}}||ai|| like "'''eye'''", but a bit lighter
|-
||'''ei'''||{{IPA|[ei̯]}}||ei|| as in "s'''ay'''"
|-
|'''ui'''
|[uei̯]
|wei
|like "'''way'''", but a bit lighter
|-
||'''ao'''||{{IPA|[au̯]}}||ao|| like "c'''ow'''", the ''a'' is much more audible than the ''o''
|-
||'''ou'''||{{IPA|[ou̯]}}||ou|| as in "s'''o'''", "d'''ough'''"
|-
|'''iu'''
|[iəu̯]
|you
|as in "L'''eo'''"
|-
|'''ie'''
|{{IPA|[i̯e]}}
|ye
|like "'''ye'''t"
|-
|'''üe'''
|{{IPA|[y̯e]}}
|yue
|as pinyin ''ü'' + ''ê''
|-
|'''er'''
|{{IPA|[aɚ̯]}}
|er
|as in "b'''ar'''" in American English (the ''r'' is always pronounced) (this final doesn't combine with any initials)
|-
||'''an'''||{{IPA|[an]}}||an|| as in "st'''un'''", "f'''un'''"
|-
||'''en'''||{{IPA|[ən]}}||en|| as in "tak'''en'''"
|-
|'''in'''
|{{IPA|[in]}}
|yin
|as in "'''in'''"
|-
|'''un'''
|{{IPA|[u̯ən]}}
|wen
|as pinyin ''u'' + ''en''
|-
|'''ün'''
|{{IPA|[yn]}}
|yun
|as pinyin ''ü'' + ''n''
|-
||'''ang'''||{{IPA|[aŋ]}}||ang|| as in "y'''oung'''", like "s'''ong'''" in American English
|-
||'''eng'''||{{IPA|[əŋ]}}||eng||replace the [n] in ''en'' with [ŋ]
|-
|'''ing'''
|{{IPA|[iŋ]}}
|ying
|as in "th'''ing'''"
|-
||'''ong'''||{{IPA|[ɔŋ]}}|| || replace the [n] in "y'''awn'''" with [ŋ]
|}
==Rolled finals==
Rolled finals (儿化音) are a phenomenon in spoken Mandarin. People from northern China like to roll their tongue when saying specific words (usually nouns and verbs) in daily dialogues. On the other hand, people from southern China rarely do that. Foreign Chinese learners are not quite suggested to learn so, as this is sometimes considered as a northern China '''accent''' instead of standard Mandarin. This table's purpose is to enable Chinese learners to recognize and understand them when hearing somebody using them.
<br />
{| class="wikitable" style="font-size: 95%"
|-
!'''Pinyin'''||'''[[w:International Phonetic Alphabet|IPA]]'''||'''Explanation'''
|-
|'''e'r'''||{{IPA|[ɤ˞]}}|| as '''e''' + '''er''' (not to be confused with the final ''er'' on its own, ''e'r'' only exists with an initial character before it)
|-
|'''ar,'''
'''air, anr'''
'''air, anr'''
|{{IPA|[aɚ̯]}}|| as '''ai''' + '''er''', '''an''' + '''er'''
|-
|'''aor'''||{{IPA|[au̯˞]}}|| as '''ao''' + '''er'''
|-
|'''our'''||{{IPA|[ou̯˞]}}|| as '''ou''' + '''er'''
|-
|'''angr'''||{{IPA|[ãɚ̯̃]}}|| as '''ang''' + '''er'''
|-
|'''iar, ianr'''||{{IPA|[i̯aɚ̯]}}|| as '''ia''' + '''er''', '''ian''' + '''er'''
|-
|'''inr, ir'''||{{IPA|[i̯ɚ]}}|| as '''in''' + '''er''', '''i''' + '''er'''
|-
|'''ingr'''||{{IPA|[i̯ɚ̃]}}|| as '''ing''' + '''er'''
|-
|'''ur'''||{{IPA|[u˞]}}|| as '''u''' + '''er'''
|-
|'''uor'''||{{IPA|[u̯o˞]}}|| as '''uo''' + '''er'''
|-
|'''uir'''||{{IPA|[u̯ɚ]}}|| as '''ui''' + '''er'''
|-
|'''ongr'''||{{IPA|[ʊ̃˞]}}|| as '''ong''' + '''er'''
|-
|'''ür'''||{{IPA|[y̯ɚ]}}|| as '''ü''' + '''er'''
|}
{{Chinese Intro TOC}}
{{Chinese (Mandarin)TOC}}
{{BookCat}}
j5huip79kdmp9nmiogfsz9khrbth2a1
Cognitive Psychology and Cognitive Neuroscience/Behavioural and Neuroscience Methods
0
73448
4641198
3776787
2026-06-26T00:00:26Z
~2026-36999-85
3609912
/* PET */ Fixed spelling from "Altsheimer" to "Alzheimer"
4641198
wikitext
text/x-wiki
<noinclude>
{|
|-
| align="left" |[[Cognitive Psychology and Cognitive Neuroscience/Evolutionary Perspective on Social Cognitions|Previous Chapter]]|| width="100%" align="center"|[[Cognitive Psychology and Cognitive Neuroscience|Overview]]|| align="right"|[[Cognitive Psychology and Cognitive Neuroscience/Motivation and Emotion|Next Chapter]]
|}
</noinclude>
==Introduction==
[[Image:Head CT scan.jpg|right|thumb|Ct-Scan]]
[[Image:Gehirn, lateral - Lobi + Stammhirn + Cerebellum eng.svg|left|thumb|human brain lobes]]
[[w:behaviour|Behavioural]] and [[w:Neuroscience|Neuroscientific]] methods are used to gain insight into how the [[w:brain|brain]] influences the way individuals think, feel, and act.
There are an array of methods, which can be used to analyze the brain and its relationship to behavior. Well-known techniques include EEG (electroencephalography) which records the brain’s electrical activity and fMRI (functional magnetic resonance imaging) which produces detailed images of brain structure and/or activity. Other methods, such as the [[w:lesion|lesion]] method, are lesser known, but still influential in today's neuroscience research.
Methods can be organized into the following categories: anatomical, physiological, and functional. Other techniques include modulating brain activity, analyzing behavior or computational modeling.
==Lesion method==
In the lesion method, patients with brain damage are examined to determine which brain structures are damaged and how this influences the patient's behavior. Researchers attempt to correlate a specific brain area to an observed behavior by using reported experiences and research observations. Researchers may conclude that the loss of functionality in a brain region causes behavioral changes or deficits in task performance. For example, a patient with a lesion in the parietal-temporal-occipital association area will exhibit [[w:agraphia|agraphia]], a condition in which he/she is not able to write, despite having no deficits in motor ability. If damage to a particular brain region (structure X) is shown to correlate with a specific change in behavior (behavior Y), researchers may deduce that structure X has a relation to behavior Y.
In humans, lesions are most often caused by tumors or strokes. Through current brain imaging technologies, it is possible to determine which area was damaged during a stroke. Loss of function in the stroke victim may then be correlated with that damaged brain area. While lesion studies in humans have provided key insights into brain organization and function, lesions studies in animals offer many advantages.
First, animals used in research are reared in controlled environmental conditions that limit variability between subjects. Secondly, researchers are able to measure task performance in the same animal, before and after a lesion. This allows for within-subject comparison. And third the control groups can be watched who either did not undergo surgery or who did have surgery in another brain area. These benefits also increase the accuracy of the hypothesis being tested which is more difficult in human research because the before-after comparison and control experiments drop out.
[[File:Phineas Gage injury - animation (frontal lobe).gif|right|220px|thumb|Visualization of iron rod passing through brain of Phineas Gage]]
To strengthen conclusions regarding a brain area and task performance, researchers may perform [[w:double dissociation|double dissociation]]. The goal of this method is to prove that two dissociations are independent. Through comparison of two patients with differing brain damage and contradictory disease patterns, researchers may localize different behaviors to each brain area. [[w:Broca area|Broca's area]] is a region of the brain is responsible for language processing, comprehension and speech production. Patients with a lesion in Broca's area will exhibit [[w:Broca's aphasia|Broca's aphasia]] or non-fluent aphasia. These patients are unable to speak fluently; a sentence produced by a patient with damage to the Broca's area may sound like: "I ... er ... wanted ... ah ... well ... I ... wanted to ... er ... go surfing ... and ..er ... well...". On the other hand, [[w:Wernicke area|Wernicke's area]] is responsible for speech comprehension. A patient with a lesion in this area has [[w:Wernicke's aphasia|Wernicke's aphasia]]. They may be able to produce language, but lack the ability to produce meaningful sentences. Patients may produce 'word salad': " I then did this chingo for some hours after my dazi went through meek and been sharko". Patients with Wernicke's aphasia are often unaware of speech deficits and may believe that they are speaking properly.
Certainly one of the famous "lesion" cases was that of [[w:Phineas Gage|Phineas Gage]]. On 13 September 1848 Gage, a railroad construction foreman, was using an iron rod to tamp an explosive charge into a body of rock when premature explosion of the charge blew the rod through his left jaw and out the top of his head. Miraculously, Gage survived, but reportedly underwent a dramatic personality change as a result of destruction of one or both of his [[w:frontal lobes|frontal lobes]]. The uniqueness of Gage case (and the ethical impossibility of repeating the treatment in other patients) makes it difficult to draw generalizations from it, but it does illustrate the core idea behind the lesion method. Further problems stem from the persistent distortions in published accounts of Gage—see the Wikipedia article [[w:Phineas Gage|Phineas Gage]].
==Techniques for Assessing Brain Anatomy / Physiological Function==
===CAT===
[[Image:Morbus_Bechterew.jpg|left|200px|thumb|X-ray picture.]]
CAT scanning was invented in 1972 by the British engineer Godfrey N. Hounsfield and the South African (later American) physicist Alan Cromack.
CAT (Computed Axial Tomography) is an x-ray procedure which combines many x-ray images with the aid of a computer to generate cross-sectional views, and when needed 3D images of the internal organs and structures of the human body. A large donut-shaped x-ray machine takes x-ray images at many different angles around the body. Those images are processed by a computer to produce cross-sectional picture of the body. In each of these pictures the body is seen as an x-ray ‘slice’ of the body, which is recorded on a film. This recorded image is called a [[w:tomography|tomogram]].
CAT scans are performed to analyze, for example, the head, where traumatic injuries (such as blood clots or skull fractures), tumors, and infections can be identified. In the spine the bony structure of the vertebrae can be accurately defined, as can the anatomy of the spinal cord. CAT scans are also extremely helpful in defining body organ anatomy, including visualizing the liver, gallbladder, pancreas, spleen, aorta, kidneys, uterus, and ovaries.
The amount of radiation a person receives during a CAT scan is minimal. In men and non-pregnant women it has not been shown to produce any adverse effects. However, doing a CAT test hides some risks. If the subject or the patient is pregnant it maybe recommended to do another type of exam to reduce the possible risk of exposing her fetus to radiation. Also in cases of [[w:asthma|asthma]] or [[w:allergies|allergies]] it is recommended to avoid this type of scanning. Since the CAT scan requires a contrast medium, there's a slight risk of an allergic reaction to the contrast medium. Having certain medical conditions; [[w:diabetes|Diabetes]], asthma, heart disease, kidney problems or thyroid conditions also increases the risk of a reaction to contrast medium.
===MRI===
Although CAT scanning was a breakthrough, in many cases it was substituted by magnetic resonance imaging (MRI), a method of looking inside the body without using [[w:x-rays|x-rays]], harmful dyes or surgery. Instead, radio waves and a strong magnetic field are used in order to provide remarkably clear and detailed pictures of internal organs and tissues.
[[Image:MRI head side.jpg|left|200px|thumb|MRI head side]]
'''History and Development of MRI'''
MRI is based on a physics phenomenon called nuclear magnetic resonance (NMR), which was discovered in the 1930s by Felix Bloch (working at Stanford University) and Edward Purcell (from Harvard University). In this resonance, magnetic field and radio waves cause atoms to give off tiny radio signals. In the year 1970, Raymond Damadian, a medical doctor and research scientist, discovered the basis for using magnetic resonance imaging as a tool for medical diagnosis. Four years later a patent was granted, which was the world's first patent issued in the field of MRI. In 1977, Dr. Damadian completed the construction of the first “whole-body” MRI scanner, which he called the ”Indomitable”.
The medical use of magnetic resonance imaging has developed rapidly. The first MRI equipment in healthcare was available at the beginning of the 1980s. In 2002, approximately 22,000 MRI scanners were in use worldwide, and more than 60 million MRI examinations were performed.
[[Image:Modern_3T_MRI.JPG|right|250px|thumb|A full size MRI-Scanner.]]
'''Common Uses of the MRI Procedure'''
Because of its detailed and clear pictures, MRI is widely used to diagnose sports-related injuries, especially those affecting the knee, elbow, shoulder, hip and wrist. Furthermore, MRI of the heart, aorta and blood vessels is a fast, non-invasive tool for diagnosing artery disease and heart problems. The doctors can even examine the size of the heart-chambers and determine the extent of damage caused by a heart disease or a heart attack. Organs like lungs, liver or spleen can also be examined in high detail with MRI. Because no radiation exposure is involved, MRI is often the preferred diagnostic tool for examination of the male and female reproductive systems, pelvis and hips and the bladder.
'''Risks'''
An undetected metal implant may be affected by the strong magnetic field. MRI is generally avoided in the first 12 weeks of pregnancy. Scientists usually use other methods of imaging, such as ultrasound, on pregnant women unless there is a strong medical reason to use MRI.
===PPT MRIII===
[[Image:DTI-sagittal-fibers.jpg|right|220px|thumb|Reconstruction of nerve fibers]]
There has been some further development of the MRI:
The DT-MRI (diffusion tensor magnetic resonance imaging) enables the measurement of the restricted [[w:diffusion|diffusion]] of water in tissue and gives a 3-dimensional image of it.
History:
The principle of using a magnetic field to measure diffusion was already described in 1965 by the chemist Edward O. Stejskal and John E. Tanner. After the development of the MRI, Michael Moseley introduced the principle into MR Imaging in 1984 and further fundamental work was done by Dennis LeBihan in 1985. In 1994 the engineer Peter J. Basser published optimized mathematical models of an older diffusion-tensor model.<ref name=Filler2009b> Filler, AG: The history, development, and impact of computed imaging in neurological diagnosis and neurosurgery: CT, MRI, DTI: [http://precedings.nature.com/documents/3267/version/4 Nature Precedings DOI: 10.1038/npre.2009.3267.4].</ref> This model is commonly used today and supported by all new MRI-devices.
The DT-MRI technique takes advantage of the fact that the mobility of water molecules in brain tissue is restricted by obstacles like cell membranes. In nerve fibers mobility is only possible alongside the axons. So measuring the diffusion gives rise to the course of the main nerve fibers. All the data of one diffusion-tensor are too much to process in a single image, so there are different techniques for visualization of different aspects of this data:
- Cross section images
- tractography (reconstruction of main nerve fibers)
- tensor glyphs (complete illustration of diffusion-tensor information)
The diffusion manner changes by patients with specific diseases of the central nervous system in a characteristic way, so they can be discerned by the diffusion-tensor technique. Diagnosis of apoplectic strokes and medical research of diseases involving changes of the white matter, like Alzheimer's disease or Multiple sclerosis are the main applications. Disadvantages of DT-MRI are that it is far more time consuming than ordinary MRI and produces
large amounts of data, which first have to be visualized by the different methods to be interpreted.
===fMRI===
The fMRI (Functional Magnetic Resonance) Imaging is based on the Nuclear magnetic resonance (NMR). The way this method works is the following: All atomic nuclei with an odd number of protons have a [[w:nuclear spin|nuclear spin]]. A strong magnetic field is put around the tested object which aligns all spins parallel or antiparallel to it. There is a resonance to an oscillating magnetic field at a specific frequency, which can be computed in dependence on the atom type (the nuclei’s usual spin is disturbed, which induces a voltage s (t), afterwards they return to the equilibrium state). At this level different tissues can be identified, but there is no information about their location. Consequently the magnetic field’s strength is gradually changed, thereby there is a correspondence between frequency and location and with the help of Fourier analysis we can get one-dimensional location information. Combining several such methods as the [[w:Fourier analysis|Fourier analysis]] it is possible to get a 3D image.
[[Image:Functional magnetic resonance imaging.jpg|left|270px|thumb|fMRI picture]]
The central idea for fMRI is to look at the areas with increased blood flow. [[w:hemoglobin|Hemoglobin]] disturbs the magnetic imaging, so areas with an increased blood oxygen level dependant (BOLD) can be identified. Higher BOLD signal intensities arise from decreases in the concentration of deoxygenated haemoglobin. An fMRI experiment usually lasts 1-2 hours. The subject will lie in the magnet and a particular form of stimulation will be set up and MRI images of the subject's brain are taken. In the first step a high resolution single scan is taken. This is used later as a background for highlighting the brain areas which were activated by the stimulus. In the next step a series of low resolution scans are taken over time, for example, 150 scans, one every 5 seconds. For some of these scans, the stimulus will be presented, and for some of the scans, the stimulus will be absent. The low resolution brain images in the two cases can be compared, to see which parts of the brain were activated by the stimulus. The rest of the analysis is done using a series of tools which correct distortions in the images, remove the effect of the subject moving their head during the experiment, and compare the low resolution images taken when the stimulus was off with those taken when it was on. The final statistical image shows up bright in those parts of the brain which were activated by this experiment. These activated areas are then shown as coloured blobs on top of the original high resolution scan. This image can also be rendered in 3D.
fMRI has moderately good [[w:spatial resolution|spatial resolution]] and bad temporal resolution since one fMRI frame is about 2 seconds long. However, the temporal response of the blood supply, which is the basis of fMRI, is poor relative to the electrical signals that define neuronal communication. Therefore, some research groups are working around this issue by combining fMRI with data collection techniques such as electroencephalography (EEG) or magneto encephalography (MEG), which has much higher temporal resolution but rather poorer spatial resolution.
===PET===
Positron emission tomography, also called PET imaging or a PET scan, is a diagnostic examination that involves the acquisition of physiologic images based on the detection of radiation from the emission of [[w:positrons|positrons]]. It is currently the most effective way to check for cancer recurrences. Positrons are tiny particles emitted from a [[w:radioactive|radioactive substance]] administered to the patient. This radiopharmaceutical is injected to the patient and its emissions are measured by a PET scanner. A PET scanner consists of an array of detectors that surround the patient. Using the gamma ray signals given off by the injected radionuclide, PET measures the amount of metabolic activity at a
site in the body and a computer reassembles the signals into images. PET's ability to measure [[w:metabolism|metabolism]] is very useful in diagnosing Alzheimer's disease, [[w:Parkinson|Parkinson's disease]], epilepsy and other neurological conditions, because it can precisely illustrate areas where brain activity differs from the norm. It is also one of the most accurate methods available to localize areas of the brain causing epileptic seizures and to determine if surgery is a treatment option. PET is often used in conjunction with an MRI or CT scan through "fusion" to give a full three-dimensional view of an organ.
==Electromagnetic Recording Methods==
The methods we have mentioned up to now examine the metabolic activity of the brain. But there are also other cases in which one wants to measure electrical activity of the brain or the magnetic fields produced by the electrical activity. The methods we discussed so far do a great job of identifying where activity is occurring in the brain. A disadvantage of these methods is that they do not measure brain activity on a millisecond-by-millisecond basis. This measuring can be done by electromagnetic recording methods, for example by single-cell recording or the Electroencephalography (EEG). These methods measure the brain activity really fast and over a longer period of time so that they can give a really good temporal resolution.
===Single cell===
When using the single-cell method an electrode is placed into a cell of the brain on which we want to focus our attention. Now, it is possible for the experimenter to record the electrical output of the cell that is contacted by the exposed electrode tip. That is useful for studying the underlying ion currents which are responsible for the cell’s [[w:resting potential|resting potential]]. The researchers’ goal is then to determine for example, if the cell responds to sensory information from only specific details of the world or from many stimuli. So we could determine whether the cell is sensitive to input in only one sensory modality or is multimodal in sensitivity. One can also find out which properties of a stimulus make cells in those regions fire. Furthermore we can find out if the animal’s attention towards a certain stimulus influences in the cell’s respond.
Single cell studies are not very helpful for studying the human brain, since it is too invasive to be a common method. Hence, this method is most often used in animals. There are just a few cases in which the single-cell recording is also applied in humans. People with [[w:epilepsy|epilepsy]] sometimes get removed the epileptic tissue. A week before surgery electrodes are implanted into the brain or get placed on the surface of the brain during the surgery to better isolate the source of seizure activity. So using this method one can decrease the possibility that useful tissues will be removed. Due to the limitations of this method in humans there are other methods which measure electrical activity. Those we are going to discuss next.
===EEG===
[[Image:EEG electrode places.svg|left|400px|thumb|Placement of electrodes]]
[[Image:Sleep EEG Stage 1.jpg|right|250px|thumb|EEG record during sleep]]
One of the most famous techniques to study brain activity is probably the Electroencephalography (EEG). Most people might know it as a technique which is used clinically to detect aberrant activity such as epilepsy and disorders.
Electroencephalogram (Electroencephalography, EEG) is obtained by electro-electron electroencephalography, which collects weak creatures produced by the human brain from the scalp and enlarges notes. Measuring electroencephalogram, and EEG measures, voltage fluctuations generated by the flow of ionic neurons in the brain. EEG is a diagnosis of a brain-related disease, but because it is susceptible to interference, it is usually used in combination with other methods.
EEG is most commonly used to diagnose epilepsy because epilepsy can cause abnormal EEG readings. It is also used to diagnose sleep disorders, coma, cerebrovascular disease, etc., and brain death. Brain waves have been used in first-line methods to diagnose tumors, strokes, and other focal brain diseases, but this has been reduced with the advent of high-resolution anatomical imaging techniques, such as nuclear magnetic resonance (MRI). And computed tomography (CT). Unlike CT and MRI, EEGs have a higher temporal resolution. Therefore, although spatial resolution of EEG is limited, it is still a valuable tool for research and diagnostics, especially when determining studies that require time resolution in the millisecond range
{| border="1" cellspacing="0" cellpadding="5" align="center"
! Name
! Frequency (Hz)
! About
|-
|
* Delta(δ)
* Theta(θ)
* Alpha(α)
* Beta(β)Low Range
* Beta(β) Middle Range
* Beta(β) High Range
* Gamma(γ)
* Lambda(λ)
* P300
|
* 0.1~3 Hz
* 4~7Hz
* 8~12Hz
* 12.5 ~ 16 Hz
* 16.5 ~ 20 Hz
* 20.5 ~ 28 Hz
* 25 ~ 100 Hz(normally 40Hz)
* according to the power generated
* according to the power generated
|
* Deep sleep and no dreams
* When adults are under stress, especially disappointment or frustration
* Relax, calm, close your eyes, but when you are awake
* Relax but concentrate
* Thinking, dealing with receiving external messages (hearing or thinking)
* Excitement, anxiety
* Raise awareness, happiness, stress reduction, meditation
* Induced by 100ms after the eye is stimulated by light (also known as P100)
* Induced after seeing or hearing something imagined in the brain 300ms later
|}
In an experimental way this technique is used to show the brain activity in certain psychological states, such as alertness or drowsiness. To measure the brain activity mental electrodes are placed on the scalp. Each electrode, also known as lead, makes a recording of its own. Next, a reference is needed which provides a baseline, to compare this value with each of the recording electrodes. This electrode must not cover muscles because its contractions are induced by electrical signals. Usually it is placed at the “mastoid bone” which is located behind the ear.
During the EEG electrodes are places like this. Over the right hemisphere electrodes are labelled with even numbers. Odd numbers are used for those on the left hemisphere. Those on the midline are labelled with a z. The capital letters stands for the location of the electrode(C=central, F=frontal, Fop= frontal pole, O= occipital, P= parietal and T= temporal).
After placing each electrode at the right position, the [[w:electrical potential|electrical potential]] can be measured. This electrical potential has a particular voltage and furthermore a particular frequency. Accordingly, to a person’s state the frequency and form of the EEG signal can differ. If a person is awake, beta activity can be recognized, which means that the frequency is relatively fast. Just before someone falls asleep one can observe alpha activity, which has a slower frequency. The slowest frequencies are called delta activity, which occur during sleep.
Patients who suffer epilepsy show an increase of the amplitude of firing that can be observed on the EEG record. In addition EEG can also be used to help answering experimental questions. In the case of emotion for example, one can see that there is a greater alpha suppression over the right frontal areas than over the left ones, in the case of depression. One can conclude from this, that depression is accompanied by greater activation of right frontal regions than of left frontal regions.
The disadvantage of EEG is that the [[w:electric conductivity|electric conductivity]], and therefore the measured electrical potentials vary widely from person to person and, also during time. This is because all tissues (brain matter, blood, bones etc.) have other conductivities for electrical signals. That is why it is sometimes not clear from which exact brain-region the electrical signal comes from.
===ERP===
Whereas EEG recordings provide a continuous measure of brain activity, event-related potentials (ERPs) are recordings which are linked to the occurrence of an event. A presentation of a stimulus for example would be such an event. When a stimulus is presented, the electrodes, which are placed on a person’s scalp, record changes in the brain generated by the thousands of neurons under the electrodes.
By measuring the brain's response to an event we can learn how different types of information are processed. Representing the word eats or bake for example causes a positive potential at about 200msec. From this one can conclude, that our brain processes these words 200 ms after presenting it. This positive potential is followed by a negative one at about 400ms. This one is also called N400 (whereas N stands for negative and 400 for the time). So in general one can say that there is a letter P or N to denote whether the deflection of the electrical signal is positive or negative. And a number, which represent, on average, how many hundreds of milliseconds after stimulus presentation the component appears.
The event-related- potential shows special interest for researchers, because different components of the response indicate different aspects of cognitive processing. For example, presenting the sentences “The cats won’t eat” and “The cat won’t bake”, the N400 response for the word “eat” is smaller than for the word “bake”. From this one can draw the conclusion that our brain needs 400 ms to register information about a word’s meaning. Furthermore, one can figure out where this activity occurs in the brain, namely if one looks at the position on the scalp of the electrodes that pick up the largest response.
===MEG===
Magnetoencephalography (MEG) is related to electroencephalography (EEG). However, instead of recording electrical potentials on the scalp, it uses magnetic potentials near the scalp to index brain activity. To locate a dipole, the magnetic field can be used, because the dipole shows excellently the intensity of the magnetic field. By using devices called SQUIDs (superconducting quantum interference device) one can record these magnetic fields.
MEG is mainly used to localize the source of epileptic activity and to locate primary sensory cortices. This is helpful because by locating them they can be avoided during neurological intervention.
Furthermore, MEG can be used to understand more about the [[w:neurophysiology|neurophysiology]] underlying psychiatric disorders such as [[w:schizophrenia|schizophrenia]]. In addition, MEG can also be used to examine a variety of cognitive processes, such as language, object recognition and spatial processing among others, in people who are neurologically intact.
MEG has some advantages over EEG. First, magnetic fields are less influenced than electrical currents by conduction through brain tissues, cerebral spinal fluid, the skull and scalp. Second, the strength of the magnetic field can tell us information about how deep within the brain the source is located. However, MEG also has some disadvantages. The magnetic field in the brain is about 100 million times smaller than that of the earth. Due to this, shielded rooms, made out of aluminum, are required. This makes MEG more expensive. Another disadvantage is that MEG cannot detect activity of cells with certain orientations within the brain. For example, magnetic fields created by cells with long axes radial to the surface will be invisible.
==Techniques for Modulating Brain Activity==
===TMS===
'''History:'''
Transcranial magnetic stimulation (TMS) is an important technique for modulating brain activity. The first modern TMS device was developed by Antony Baker in the year 1985 in Sheffield after 8 years of research. The field has developed rapidly since then with many researchers using TMS in order to study a variety of brain functions. Today, researchers also try to develop clinical applications of TMS, because there are long lasting effects on the brain activity it has been considered as a possible alternative to antidepressant medication.
'''Method:'''
UMTS utilizes the principle of electromagnetic induction to an isolated brain region. A wire-coil electromagnet is held upon the fixed head of the subject. When inducing small, localized, and reversible changes in the living brain tissue, especially the directly under laying parts of the motor cortex can be effected. By altering the firing-patterns of the neurons, the influenced brain area is disabled. The repetitive TMS (rTMS) describes, as the name reveals, the application of many short electrical stimulations with a high frequency and is more common than TMS. The effects of this procedure last up to weeks and the method is in most cases used in combination with measuring methods, for example: to study the effects in detail.
'''Application:'''
The TMS-method gives more evidence about the functionality of certain brain areas than measuring methods on their own. It was a very helpful method in mapping the motor cortex. For example: While rTMS is applied to the prefrontal cortex, the patient is not able to build up short term memory. That determines the prefrontal cortex, to be directly involved in the process of short term memory. By contrast measuring methods on their own, can only investigate a correlation between the processes. Since even earlier researches were aware that TMS could cause suppression of visual perception, speech arrest, and paraesthesias, TMS has been used to map specific brain functions in areas other than motor cortex. Several groups have applied TMS to the study of visual information processing, language production, memory, attention, reaction time and even more subtle brain functions such as mood and emotion. Yet long time effects of TMS on the brain have not been investigated properly, Therefore experiments are not yet made in deeper brain regions like the hypothalamus or the hippocampus on humans. Although the potential utility of TMS as a treatment tool in various neuropsychiatric disorders is rapidly increasing, its use in depression is the most extensively studied clinical applications to date. For instance in the year 1994, George and Wassermann hypothesized that intermittent stimulation of important prefrontal cortical brain regions might also cause downstream changes in neuronal function that would result in an antidepressant response. Here again, the methods effects are not clear enough to use it in clinical treatments today. Although it is too early at this point to tell whether TMS has long lasting therapeutic effects, this tool has clearly opened up new hopes for clinical exploration and treatment of various psychiatric conditions. Further work in understanding normal mental phenomena and how TMS affects these areas appears to be crucial for advancement. A critically important area that will ultimately guide clinical parameters is to combine TMS with functional imaging to directly monitor TMS effects on the brain. Since it appears that TMS at different frequencies has divergent effects on brain activity, TMS with functional brain imaging will be helpful to better delineate not only the behavioral neuropsychology of various psychiatric syndromes, but also some
of the pathophysiologic circuits in the brain.
===tDCS===
'''transcranial Direct Current Stimulation:'''
The principle of tDCS is similar to the technique of TMS. Like TMS this is a non-invasive and painless method of stimulation. The excitability of brain regions is modulated by the application of a weak electrical current.
'''History and development:'''
It was first observed that electrical current applied to the skull lead to an alleviation of pain. Scribonius Largus, the court physician to the Roman emperor Claudius, found that the current released by the electric ray has positive effects on headaches. In the Middle Ages the same property of another fish, the electrical catfish, was used to treat epilepsy. Around 1800, the so-called galvanism (it was concerned with effects of today’s electrophysiology) came up. Scientists like Giovanni Aldini experimented with electrical effects on the brain. A medical application of his findings was the treatment of melancholy. During the twentieth century among neurologists and psychiatrists electrical stimulation was a controversial but nevertheless wide spread method for the treatment of several kinds of mental disorders (e.g. Electroconvulsive therapy by Ugo Cerletti).
'''Mechanism:'''
The tDCS works by fixation of two electrodes on the skull. About 50 percent of the direct current applied to the skull reaches the brain. The current applied by a direct current battery usually is around 1 to 2 mA. The modulation of activity of the brain regions is dependent on the value of current, on the duration of stimulation and on the direction of current flow. While the former two mainly have an effect on the strength of modulation and its permanence beyond the actual stimulation, the latter differentiates the modulation itself. The direction of the current (anodic or cathodic) is defined by the polarity and position of the electrodes. Within tDCS two distinct ways of stimulation exist. With the anodal stimulation the anode is put near the brain region to be stimulated and analogue for the cathodal stimulation the cathode is placed near the target region. The effect of the anodal stimulation is that the positive charge leads to depolarization in the membrane potential of the applied brain regions, whereas hyperpolarisation occurs in the case of cathodal stimulation due to the negative charge applied. The brain activity thereby is modulated. Anodal stimulation leads to a generally higher activity in the stimulated brain region. This result can also be verified with MRI scans, where an increased blood flow in the target region indicates a successful anodal stimulation.
'''Applications:'''
From the description of the TMS method it is should be obvious that there are various fields of appliances. They reach from identifying and pulling together brain regions with cognitive functions to the treatment of mental disorders. Compared to TMS it is an advantage of tDCS to not only is able to modulate brain activity by decreasing it but also to have the possibility to increase the activity of a target brain region. Therefore the method could provide an even better suitable treatment of mental disorders such as depression. The tDCS method has also already proven helpful for apoplectic stroke patients by advancing the motor skills.
==Behavioural Methods==
Besides using methods to measure the brain’s physiology and anatomy, it is also important to have techniques for analyzing behaviour in order to get a better insight on cognition. Compared to the neuroscientific methods, which concentrate on neuronal activity of the brain regions, behavioural methods focus on overt behaviour of a test person. This can be realized by well defined behavioural methods (e.g. eye-tracking), test batteries (e.g. IQ-test) or measurements which are designed to answer specific questions concerning the behaviour of humans. Furthermore, behavioural methods are often used in combination with all kinds of neuroscientific methods mentioned above. Whenever there is an overt reaction on a stimulus (e.g. picture) these behavioural methods can be useful. Another goal of a behavioural test is to examine in what terms damage of the central nervous system influences cognitive abilities.
===A Concept of a behavioural test===
The tests are performed to give an answer to certain questions about human behaviour. In order to find an answer to that question, a test strategy has to be developed. First it has to be carefully considered, how to design the test in the best way, so that the measurement results provide an accurate answer to the initial question. How can the test be conducted so that founding variables are minimal and the focus really is on the problem? When an appropriate test arrangement is found, the defining of test variables is the next part. The test is now conducted and probably repeated until a sufficient amount of data is collected. The next step is the evaluation of the resulting data, with the suitable methods of statistics. If the test reveals a significant result, it might be the case that further questions arise about neuronal activity underlying the behaviour. Then neuroscientific methods are useful to investigate correlating brain activities. Methods, which proved to provide good evidence to a certain recurrent question about cognitive abilities of subjects, can bring together in a test battery.
'''Example:'''
Question: Does a noisy surrounding affect the ability to solve a certain problem?
Possible test design: Expose half of the subject to a silent environment while solving the same task as the other half in a noisy environment. In this example founding variables might be different cognitive abilities of the participants. Test variables could be the time needed to solve the problem and the loudness of the noise etc.
If statistical evaluation shows significance: Probable further questions: How does noise affect the brain activities on a neuronal level?
'''Are you interested in doing a behavioural test on your own, visit:''' the socialpsychology.org website.<ref>
[http://www.socialpsychology.org/expts.htm Socialpsychology.org]</ref>
===Test batteries===
A neuropsychological assessment utilizes test batteries that give an overview on a person’s cognitive strengths and weaknesses by analyzing various cognitive abilities. A neuropsychological test battery is used by a neuropsychologist to assess brain dysfunctions that can rise from developmental, neurological or psychiatric issues. Such batteries can appraise various mental functions and the overall intelligence of a person.
Firstly, there are test batteries designed to assess whether a person suffers from a brain damage or not. They generally work well in discriminating those with brain damage from neurologically impaired patients, but worse when it comes to discriminating them from those with psychiatric disorders. The most popular test, '''Halstead-Reitan battery''', assesses abilities ranging from basic sensory processing to complex reasoning. Furthermore, the Halstead-Reitan battery provides information on the cause of the damage, the brain areas that were harmed, and the stage the damage has reached. Such information is valuable in developing a rehabilitation program. Another test battery, the '''Luria-Nebraska battery''', is twice as fast to administer as the Halstead-Reitan. Its subtests are ordered according to twelve content scales (e.g. motor functions, reading, memory etc.). These two test batteries do not focus only on the absolute level of performance, but look at the qualitative manner of performance as well. This allows for a more comprehensive understanding of the cognitive impairment.
Another type of test batteries, the so-called IQ tests, aims to measure the overall cognitive performance of an individual. The most commonly used tests for estimating intelligence are the '''Wechsler family intelligence tests'''. Age-appropriate test versions exist for small children from age 2 years and 6 months, school-aged children, and adults. For example, the Wechsler Intelligence Scale for Children, fifth edition (WISC-V) measures various cognitive abilities in children between 6 and 16 years of age. The test consists of multiple subtests that form five different main indexes of cognitive performance. These main constructs are verbal reasoning skills, inductive reasoning skills, visuo-spatial processing, processing speed and working memory. Performance is analyzed both compared to a normative sample of similarly aged peers and within the test subject, assessing personal strengths and weaknesses.
===The Eye Tracking Procedure===
Another important procedure for analyzing behavior and cognition is Eye-tracking. This is a procedure of measuring either where we are looking (the point of gaze) or the motion of an eye relative to the head. There are different techniques for measuring the movement of the eyes and the instrument that does the tracking is called the tracker. The first non-intrusive tracker was invented by George Buswell.
The eye tracking is a study with a long history, starting back in the 1800s. In 1879 Louis Emile Javal noticed that reading does not involve smooth sweeping of the eye along the text but rather series of short stops which are called fixations. This observation is one of the first attempts to examine the eye’s directions of interest. The book of Alfred L. Yarbus which he published in 1967 after an important eye tracking research is one of the most quoted eye tracking publications ever. The eye tracking procedure is not that complicated. Video based eye trackers are frequently used. A camera focuses on one or both eyes and records the movements while the viewer looks at some stimulus. The most modern eye trackers use contrast to locate the center of the pupil and create corneal reflections using infrared or near-infrared non-collimated light.
There are also two general types of eye tracking techniques. The first one – the Bright Pupil is an effect close to the red eye effect and it appears when the illuminator source is onset from the optical path while when the source is offset from the optical path, the pupil appears to be dark (Dark Pupil). The Bright Pupil creates great contrast between the iris and the pupil which allows tracking in light conditions from dark to very bright but it is not effective for outdoor tracking. There are also different eye tracking setup techniques. Some are head mounted, some require the head to be stable, and some automatically track the head during motion. The sampling rate of the most of them is 30 Hz. But when we have rapid eye movement, for example during reading, the tracker must run at 240, 350 or even 1000-1250 Hz in order to capture the details of the movement. Eye movements are divided to fixations and saccades. When the eye movement pauses in a certain position there is a fixation and saccade when it moves to another position. The resulting series of fixations and saccades is called a scan path. Interestingly most information from the eye is received during a fixation and not during a saccade. Fixation lasts about 200 ms during reading a text and about 350 ms during viewing of a scene and a saccade towards new goal takes about 200 ms. Scan paths are used in analyzing cognitive intent, interest and salience.
Eye tracking has a wide range of application – it is used to study a variety of cognitive processes, mostly visual perception and language processing. It is also used in human-computer interactions. It is also helpful for marketing and medical research. In recent years the eye tracking has generated a great deal of interest in the commercial sector. The commercial eye tracking studies present a target stimulus to consumers while a tracker is used to record the movement of the eye. Some of the latest applications are in the field of the automotive design. Eye tracking can analyze a driver’s level of attentiveness while driving and prevent drowsiness from causing accidents.
==Modeling Brain-Behaviour==
Another major method, which is used in cognitive neuroscience, is the use of [[w:neural networks|neural networks]] (computer modelling techniques) in order to simulate the action of the brain and its processes. These models help researchers to test [[w:theory|theories]] of [[w:neuropsychology|neuropsychological]] functioning and to derive principles viewing brain-behaviour relationships.
[[Image:Neuronal_Network_scheme.JPG|right|500px|thumb|A basic neural network.]]
In order to simulate '''mental functions''' in humans, a variety of '''computational models''' can be used. The basic component of most such models is a “unit”, which one can imagine as showing neuron-like behaviour. These units receive input from other units, which are summed to produce a net input. The net input to a unit is then transformed into that unit’s output, mostly utilizing a [[w:sigmoid function|sigmoid function]]. These units are connected together forming layers. Most models consist of an input layer, an output layer and a “hidden” layer as you can see on the right side. The input layer simulates the taking up of information from the outside world, the output layer simulates the response of the system and the “hidden” layer is responsible for the transformations, which are necessary to perform the computation under investigation. The units of different layers are connected via connection weights, which show the degree of influence that a unit in one level has on the unit in another one.
The most interesting and important about these models is that they are able to "learn" without being provided specific rules. This ability to “learn” can be compared to the human ability e.g. to learn the [[w:native language|native language]], because there is nobody who tells one “the rules” in order to be able to learn this one. The computational models learn by extracting the regularity of relationships with repeated exposure. This exposure occurs then via “training” in which input patterns are provided over and over again. The adjustment of “the connection weights between units” as already mentioned above is responsible for learning within the system. Learning occurs because of changes in the interrelationships between units, which occurrence is thought to be similar in the [[w:nervous system|nervous system]].
==References==
<references/>
* Ward, Jamie (2006) The Student's Guide to Cognitive Neuroscience New York: Psychology Press
* Banich,Marie T. (2004). Cognitive Neurosciene and Neuropsychology. Housthon Mifflin Company. {{ISBN|0618122109}}
* Gazzangia, Michael S.(2000). Cognitive Neuroscience. Blackwell Publishers. {{ISBN|0631216596}}
* [http://www.sparknotes.com/psychology/neuro/brainanatomy/language.html 27.06.07 Sparknotes.com]
* (1) 4 April 2001 / Accepted: 12 July 2002 / Published: 26 June 2003 Springer-Verlag 2003. Fumiko Maeda • Alvaro Pascual-Leone. Transcranial magnetic stimulation: studying motor neurophysiology of psychiatric disorders
* (2) a report by Drs Risto J Ilmoniemi and Jari Karhu Director, BioMag Laboratory, Helsinki University Central Hospital, and Managing Director, Nexstim Ltd
* (3) Repetitive Transcranial Magnetic Stimulation as Treatment of Poststroke Depression: A Preliminary Study Ricardo E. Jorge, Robert G. Robinson, Amane Tateno, Kenji Narushima, Laura Acion, David Moser, Stephan Arndt, and Eran Chemerinski
* Moates, Danny R. An Introduction to cognitive psychology. B:HRH 4229-724 0
{{BookCat}}
ceta04d7l293bjh443ezbrmutkhcldh
Wikibooks:Reading room/General
4
112405
4641125
4641017
2026-06-25T13:30:31Z
MediaWiki message delivery
1188004
/* Deployment of Legal and Safety Contacts Link in the Footer of Your Wiki */ new section
4641125
wikitext
text/x-wiki
__NEWSECTIONLINK__ {{Discussion Rooms}} {{Shortcut|WB:CHAT|WB:RR/G|WB:GENERAL}} {{TOC left|limit=3}}
{{User:MiszaBot/config
|archive = Wikibooks:Reading room/Archives/%(year)d/%(monthname)s
|algo = old(60d)
|counter = 1
|minthreadstoarchive = 1
|minthreadsleft = 1
|key = 7a0ac23cf8049e4d9ff70cabb5649d1a
}}
Welcome to the '''General reading room'''. On this page, Wikibookians are free to talk about the Wikibooks project in general. For proposals for improving Wikibooks, see the [[../Proposals/]] reading room.
{{clear}}
[[Category:Reading room]]
== Discussion at [[Wikibooks talk:Reviewers]] ==
I started a discussion on whether we should introduce an inactivity criteria for reviewers (and possibly autoreviewed users), at [[Wikibooks talk:Reviewers#Inactivity criteria]]. Any participation would be appreciated. Thank you. [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 15:17, 18 May 2026 (UTC)
== May 2026 Wikimedia Café meetups regarding the Wikimedia Foundation Annual Plan ==
<div class="border-box" style="background-color: var(--background-color-warning-subtle, #f8eaba); max-width: 875px; padding: 5px; border: 1px solid black; margin: 5px; color: var(--clr-dark)">
<div class="box" style="float:left; padding-top: 15px; padding-right: 15px;">[[File:Wikimedia Café logo in plain SVG format.svg|75px|alt=The logo for the Wikimedia Café]]</div>
Hello! There will be two '''[https://meta.wikimedia.org/wiki/Wikimedia_Caf%C3%A9 Wikimedia Café]''' discussion opportunities during the last weekend of May. Both sessions will focus on the [https://meta.wikimedia.org/wiki/Wikimedia_Foundation_Annual_Plan/2026-2027 the 2026-2027 Wikimedia Foundation Annual Plan]. Participants may attend either or both sessions.
#'''Saturday, 30 May 2026 at 15:00 UTC''' ([https://zonestamp.toolforge.org/1780153200 timestamp converter]), at a time friendly to the Americas, Africa, and Europe
#'''Sunday, 31 May 2026 at 05:00 UTC''' ([https://zonestamp.toolforge.org/1780203600 timestamp converter]), at a time friendly to Asia and the Pacific
Café participants are highly encouraged to read in advance [https://en.wikipedia.org/wiki/User:Sohom_Datta/annual_plan_guide at least this summary of the plan]. Optionally, Café participants are encouraged to read portions of the plan that interest them and [https://meta.wikimedia.org/wiki/Talk:Wikimedia_Foundation_Annual_Plan/2026-2027 ask questions or provide feedback on the Annual Plan talk page].
Please see the Café page for more information, including [https://meta.wikimedia.org/wiki/Wikimedia_Caf%C3%A9#May_2026_meetings_with_a_focus_on_Wikimedia_Foundation_Annual_Plan/2026-2027 tables of timestamp conversions for both sessions], [https://meta.wikimedia.org/wiki/Wikimedia_Caf%C3%A9#Agenda._This_will_be_an_approximately_1_hour_Caf%C3%A9_session,_and_is_extendible_for_an_additional_30_minutes_if_needed. the agenda], and [https://meta.wikimedia.org/wiki/Wikimedia_Caf%C3%A9#How_to_attend_the_session how to register]!
<br />
[[File:Buntstifte Eberhard Faber crop 64h.jpg|860px|alt=cropped image of colored pencils]]</div>
<span style="white-space:nowrap;">[[User:Pine|<span style="color:#01796f; text-shadow:#00BFFF 0 0 1.0em">↠Pine</span>]] [[User talk:Pine|<span style="color:DeepSkyBlue">(<b style="color:#FFDF00;text-shadow:#FFDF00 0 0 1.0em">✉</b>)</span>]]</span> 19:44, 21 May 2026 (UTC)
== Vote now in the 2026 U4C election ==
<section begin="announcement-content" />
Eligible voters are asked to participate in the 2026 [[m:Special:MyLanguage/Universal_Code_of_Conduct/Coordinating_Committee|Universal Code of Conduct Coordinating Committee]] election. More information–including an eligibility check, voting process information, candidate information, and a link to the vote–are available on Meta at the [[m:Special:MyLanguage/Universal_Code_of_Conduct/Coordinating_Committee/Election/2026|2026 Election information page]]. The vote closes on 2 June 2026 at [https://zonestamp.toolforge.org/1780358400 00:00 UTC].
Please vote if your account is eligible. Results will be available by 14 June 2026. -- In cooperation with the U4C,<section end="announcement-content" />
[[m:User:Keegan (WMF)|Keegan (WMF)]] ([[m:User talk:Keegan (WMF)|talk]]) 17:14, 27 May 2026 (UTC)
<!-- Message sent by User:Keegan (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=30513860 -->
== Discussion at WB:TECH ==
I started a discussion whether we should keep the FlaggedRevs comment box hidden at [[Wikibooks:Reading room/Technical Assistance#Is this CSS code necessary?]], but I am notifying here due to a lack of participation over there. Thank you. [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 22:41, 30 May 2026 (UTC)
== Template:Printable testing ==
Is there any way to use Template:Printable so that it creates a printable version of a ''different'' page? I've been wanting to see what it looks like without having to create a subpage. <span style="color:#FF0000">[[User:User97104|User]]</span><span style="color:#FF0000">[[User talk:User97104|97104]] </span><span style="color:#FF0000">[[Special:Contributions/User97104|(fixes)]]</span> 23:59, 8 June 2026 (UTC)
== June 2026 Wikimedia Café meetups regarding the English Wikipedia Editor Reflections project ==
<div class="border-box" style="background-color: var(--background-color-warning-subtle, #f8eaba); max-width: 875px; padding: 5px; border: 1px solid black; margin: 5px; color: var(--clr-dark)">
<div class="box" style="float:left; padding-top: 10px; padding-right: 10px; padding-left: 10px; padding-bottom: 10px;">[[File:Wikimedia Café logo in plain SVG format.svg|60px|alt=The logo for the Wikimedia Café]]</div>
Hello! There will be two '''[https://meta.wikimedia.org/wiki/Wikimedia_Caf%C3%A9 Wikimedia Café]''' discussion opportunities during the last weekend of June. Both sessions will focus on the [https://en.wikipedia.org/wiki/Wikipedia:Editor_reflections English Wikipedia Editor Reflections project]. The featured guest in the Café will be [https://en.wikipedia.org/wiki/User:Clovermoss User:Clovermoss]. Participants may attend either or both sessions.
#'''27 June 2026 15:00 UTC''' ([https://zonestamp.toolforge.org/1782572400 timestamp converter]), at a time friendly to the Americas, Africa, and Europe
#'''28 June 2026 03:00 UTC''' ([https://zonestamp.toolforge.org/1782615600 timestamp converter]), at a time friendly to Asia and the Pacific
Please see the Café page for more information, including [https://meta.wikimedia.org/wiki/Wikimedia_Caf%C3%A9#How_to_attend_the_session how to register]!
<br />
[[File:Buntstifte Eberhard Faber crop 64h.jpg|860px|alt=cropped image of colored pencils]]</div>
<span style="white-space:nowrap;">[[User:Pine|<span style="color:#01796f; text-shadow:#00BFFF 0 0 1.0em">↠Pine</span>]] [[User talk:Pine|<span style="color:DeepSkyBlue">(<b style="color:#FFDF00;text-shadow:#FFDF00 0 0 1.0em">✉</b>)</span>]]</span> 04:09, 15 June 2026 (UTC)
== Images lost in Engineering Acoustics ==
Hello,
I just made an updated PDF version of the wiki book on Engineering Acoustics.
During this processes I realized that 19 Images are missing. I left the respective chapters out of the PDF version. You can find the missing files by opening https://en.wikibooks.org/wiki/Engineering_Acoustics/Print_version in your web browser and search for the text File: . I am not sure why they were deleted. But possibly they were moved to Wikimedia Commons first and deleted after that. I could try to restore the from the 16 years old PDF version but I lack any authorship information so I think we need to redraw all of them. Furthermore I realized that some of the rest of the images in the wiki book have got a very poor resolution
Yours 18:22, 18 June 2026 (UTC) [[User:Dirk Hünniger|Dirk Hünniger]] ([[User talk:Dirk Hünniger|discuss]] • [[Special:Contributions/Dirk Hünniger|contribs]]) 18:22, 18 June 2026 (UTC)
== Citing WikiBooks? ==
Wikipedia has a page for Citing Wikipedia, but I haven't found one here, so I have a few questions:
# How would I cite Wikibooks in an essay?
# Do I need to cite sources on Wikibooks? If so, how?
[[User:BlazeFlames|BlazeFlames]] ([[User talk:BlazeFlames|discuss]] • [[Special:Contributions/BlazeFlames|contribs]]) 22:48, 18 June 2026 (UTC)
:# This should give you a good method: https://www.scribbr.com/citing-sources/how-to-cite-wikipedia/
:# Generally, no. We have [[Wikibooks:Policies and guidelines|no policy that requires or prohibits citing sources]] and we have a [[Help:Editing#References|help page on how to do it]], with a [[Wikibooks:Templates/Sources|number of templates]] to standardize the process. There is definitely value in citing sources, so I don't want to discourage it.
:―[[User:Koavf|Justin (<span style="color:grey">ko'''a'''<span style="color:black">v</span>f</span>)]]<span style="color:red">❤[[User talk:Koavf|T]]☮[[Special:Contributions/Koavf|C]]☺[[Special:Emailuser/Koavf|M]]☯</span> 09:10, 19 June 2026 (UTC)
== Unhide the FlaggedRevs comment box? ==
:''Reposted from [[Wikibooks:Reading room/Archives/2026/April#Is this CSS code necessary?]] as the former link had no participation.''
I propose unhiding the FlaggedRevs comment box (via MediaWiki:Common.css) because it might be useful to add in a comment when reverting with the FlaggedRevs reversion, unlike rollback. It might also be useful in cases to add a comment on what the user edited when accepting a revision. Thoughts? [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 21:17, 20 June 2026 (UTC)
== RFC about AI-generated content in Wikimedia Commons ==
<bdi lang="en" dir="ltr"> You are invited to participate in a [[c:Commons:Requests for comment/Policy update for AI content|request for comment on Wikimedia Commons about a policy update for AI content]]. This may affect files that are uploaded to Wikimedia Commons for use on this project. Thank you. [[m:User:Codename Noreste|Codename Noreste]] ([[m:User talk:Codename Noreste|discuss]])</bdi> 17:11, 23 June 2026 (UTC)
<!-- Message sent by User:Codename Noreste@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=Distribution_list/Global_message_delivery&oldid=30513860 -->
== Deployment of Legal and Safety Contacts Link in the Footer of Your Wiki ==
<section begin="Message"/>
'''Legal & Safety Contacts'''
Hello community, the Wikimedia Foundation has provided a [[wmf:Special:MyLanguage/Legal:Wikimedia Foundation Legal and Safety Contact Information|single legal and safety contact page]], to be linked in the footer of your wiki, to ensure access to accurate legal information. This is a regulatory requirement. We have already rolled out links to English, German, Italian, Spanish and other wikis and we will deploy to your wiki soon. [[m:Special:MyLanguage/Wikimedia_Foundation_Legal_and_Safety_Contacts_FAQ|Please read more on the project page]] and leave any comments in this thread or on the [[m:Special:MyLanguage/Talk:Wikimedia Foundation Legal and Safety Contacts FAQ|talk page]].
<section end="Message"/>
-- [[User:Sannita (WMF)|User:Sannita (WMF)]] ([[User talk:Sannita (WMF)|talk]]) 13:30, 25 June 2026 (UTC)
<!-- Message sent by User:Sannita (WMF)@metawiki using the list at https://meta.wikimedia.org/w/index.php?title=User:Sannita_(WMF)/Mass_sending_test&oldid=30731267 -->
em7daaqm2gclv3ct6bw8b33rl4kusjj
Wikibooks:Reading room/Administrative Assistance
4
140081
4641119
4641058
2026-06-25T12:29:18Z
MathXplore
3097823
Reporting Vantagemdm1
4641119
wikitext
text/x-wiki
__NEWSECTIONLINK__ {{Discussion Rooms}} {{shortcut|WB:AN|WB:AA}} {{TOC left}}
{{User:MiszaBot/config
|archive = Wikibooks:Reading room/Administrative Assistance/Archives/%(year)d/%(monthname)s
|algo = old(14d)
|counter = 1
|minthreadstoarchive = 1
|minthreadsleft = 1
}}
{{ombox|type=content|text='''To request a rename or usurpation''', go to the global request page at Meta [[meta:SRUC|here]].<br />''Please do not post those requests here!''}}
{{Clear}}
Welcome to the '''Administrative Assistance reading room'''. You can request assistance from [[WB:ADMIN|administrators]] for handling a variety of problems here and alert them about problems which may require special actions not normally used during regular content editing. Please be patient as administrators are often quite busy with either their own projects or trying to perform general maintenance and cleanup.
You can deal with most vandalism yourself: [[Wikibooks:Dealing with vandalism|fix it]], then [[Wikibooks:Templates/User_notices|warn the user]]. If there is repeated vandalism by one user, lots of vandalism on a single page, or vandalism from many users, tell an admin here, or in [irc://irc.freenode.net/wikibooks #wikibooks] (say <code>!admin</code> to get attention).
For more general questions and assistance that doesn't require an administrator, please use the [[WB:HELP|Assistance Reading Room]].
{{clear}}
[[Category:Reading room]]
== ShaneWarne1 reported by MathXplore ==
* {{userlinks|ShaneWarne1}}
Spam <!-- USERREPORTED:/ShaneWarne1/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 12:45, 11 June 2026 (UTC)
: Globally locked by M7. [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 22:12, 11 June 2026 (UTC)
== Nsysgroup reported by MathXplore ==
* {{userlinks|Nsysgroup}}
Spam <!-- USERREPORTED:/Nsysgroup/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 13:36, 11 June 2026 (UTC)
:{{done}} by [[User:Codename Noreste|Codename Noreste]] —[[User:Kittycataclysm|Kittycataclysm]] ([[User talk:Kittycataclysm|discuss]] • [[Special:Contributions/Kittycataclysm|contribs]]) 00:21, 13 June 2026 (UTC)
== "Smithjack123" reported by MathXplore ==
* {{userlinks|"Smithjack123"}}
Spam <!-- USERREPORTED:/"Smithjack123"/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 12:25, 15 June 2026 (UTC)
: {{done}}. [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 15:02, 15 June 2026 (UTC)
== RS-Top SEO Services reported by MathXplore ==
* {{userlinks|RS-Top SEO Services}}
Spam <!-- USERREPORTED:/RS-Top SEO Services/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 13:15, 17 June 2026 (UTC)
:{{done}} —[[User:Kittycataclysm|Kittycataclysm]] ([[User talk:Kittycataclysm|discuss]] • [[Special:Contributions/Kittycataclysm|contribs]]) 13:30, 17 June 2026 (UTC)
== Acemq7 reported by MathXplore ==
* {{userlinks|Acemq7}}
Spam <!-- USERREPORTED:/Acemq7/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 22:27, 17 June 2026 (UTC)
: {{done}}. [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 00:03, 18 June 2026 (UTC)
== Hcrobotics2026 reported by MathXplore ==
* {{userlinks|Hcrobotics2026}}
Link spam, [[Special:AbuseLog/312962]] <!-- USERREPORTED:/Hcrobotics2026/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 02:21, 21 June 2026 (UTC)
: {{done}}. [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 03:10, 21 June 2026 (UTC)
== Templebhard reported by MathXplore ==
* {{userlinks|Templebhard}}
Spam <!-- USERREPORTED:/Templebhard/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 12:06, 22 June 2026 (UTC)
== Vantagemdm1 reported by MathXplore ==
* {{userlinks|Vantagemdm1}}
Link spam, [[Special:AbuseLog/313018]] <!-- USERREPORTED:/Vantagemdm1/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 12:29, 25 June 2026 (UTC)
nc9cfxafsbo3m3yz3ooi4tbgrn2hjak
4641135
4641119
2026-06-25T15:22:18Z
Codename Noreste
3441010
/* Templebhard reported by MathXplore */ reply: {{done}}. (-) ([[mw:c:Special:MyLanguage/User:JWBTH/CD|CD]])
4641135
wikitext
text/x-wiki
__NEWSECTIONLINK__ {{Discussion Rooms}} {{shortcut|WB:AN|WB:AA}} {{TOC left}}
{{User:MiszaBot/config
|archive = Wikibooks:Reading room/Administrative Assistance/Archives/%(year)d/%(monthname)s
|algo = old(14d)
|counter = 1
|minthreadstoarchive = 1
|minthreadsleft = 1
}}
{{ombox|type=content|text='''To request a rename or usurpation''', go to the global request page at Meta [[meta:SRUC|here]].<br />''Please do not post those requests here!''}}
{{Clear}}
Welcome to the '''Administrative Assistance reading room'''. You can request assistance from [[WB:ADMIN|administrators]] for handling a variety of problems here and alert them about problems which may require special actions not normally used during regular content editing. Please be patient as administrators are often quite busy with either their own projects or trying to perform general maintenance and cleanup.
You can deal with most vandalism yourself: [[Wikibooks:Dealing with vandalism|fix it]], then [[Wikibooks:Templates/User_notices|warn the user]]. If there is repeated vandalism by one user, lots of vandalism on a single page, or vandalism from many users, tell an admin here, or in [irc://irc.freenode.net/wikibooks #wikibooks] (say <code>!admin</code> to get attention).
For more general questions and assistance that doesn't require an administrator, please use the [[WB:HELP|Assistance Reading Room]].
{{clear}}
[[Category:Reading room]]
== ShaneWarne1 reported by MathXplore ==
* {{userlinks|ShaneWarne1}}
Spam <!-- USERREPORTED:/ShaneWarne1/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 12:45, 11 June 2026 (UTC)
: Globally locked by M7. [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 22:12, 11 June 2026 (UTC)
== Nsysgroup reported by MathXplore ==
* {{userlinks|Nsysgroup}}
Spam <!-- USERREPORTED:/Nsysgroup/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 13:36, 11 June 2026 (UTC)
:{{done}} by [[User:Codename Noreste|Codename Noreste]] —[[User:Kittycataclysm|Kittycataclysm]] ([[User talk:Kittycataclysm|discuss]] • [[Special:Contributions/Kittycataclysm|contribs]]) 00:21, 13 June 2026 (UTC)
== "Smithjack123" reported by MathXplore ==
* {{userlinks|"Smithjack123"}}
Spam <!-- USERREPORTED:/"Smithjack123"/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 12:25, 15 June 2026 (UTC)
: {{done}}. [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 15:02, 15 June 2026 (UTC)
== RS-Top SEO Services reported by MathXplore ==
* {{userlinks|RS-Top SEO Services}}
Spam <!-- USERREPORTED:/RS-Top SEO Services/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 13:15, 17 June 2026 (UTC)
:{{done}} —[[User:Kittycataclysm|Kittycataclysm]] ([[User talk:Kittycataclysm|discuss]] • [[Special:Contributions/Kittycataclysm|contribs]]) 13:30, 17 June 2026 (UTC)
== Acemq7 reported by MathXplore ==
* {{userlinks|Acemq7}}
Spam <!-- USERREPORTED:/Acemq7/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 22:27, 17 June 2026 (UTC)
: {{done}}. [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 00:03, 18 June 2026 (UTC)
== Hcrobotics2026 reported by MathXplore ==
* {{userlinks|Hcrobotics2026}}
Link spam, [[Special:AbuseLog/312962]] <!-- USERREPORTED:/Hcrobotics2026/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 02:21, 21 June 2026 (UTC)
: {{done}}. [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 03:10, 21 June 2026 (UTC)
== Templebhard reported by MathXplore ==
* {{userlinks|Templebhard}}
Spam <!-- USERREPORTED:/Templebhard/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 12:06, 22 June 2026 (UTC)
: {{done}}. [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 15:22, 25 June 2026 (UTC)
== Vantagemdm1 reported by MathXplore ==
* {{userlinks|Vantagemdm1}}
Link spam, [[Special:AbuseLog/313018]] <!-- USERREPORTED:/Vantagemdm1/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 12:29, 25 June 2026 (UTC)
gofvpx1cgluy0v2nvcfurqbl7i3ksop
4641136
4641135
2026-06-25T15:23:01Z
Codename Noreste
3441010
/* Vantagemdm1 reported by MathXplore */ reply: {{done}}. (-) ([[mw:c:Special:MyLanguage/User:JWBTH/CD|CD]])
4641136
wikitext
text/x-wiki
__NEWSECTIONLINK__ {{Discussion Rooms}} {{shortcut|WB:AN|WB:AA}} {{TOC left}}
{{User:MiszaBot/config
|archive = Wikibooks:Reading room/Administrative Assistance/Archives/%(year)d/%(monthname)s
|algo = old(14d)
|counter = 1
|minthreadstoarchive = 1
|minthreadsleft = 1
}}
{{ombox|type=content|text='''To request a rename or usurpation''', go to the global request page at Meta [[meta:SRUC|here]].<br />''Please do not post those requests here!''}}
{{Clear}}
Welcome to the '''Administrative Assistance reading room'''. You can request assistance from [[WB:ADMIN|administrators]] for handling a variety of problems here and alert them about problems which may require special actions not normally used during regular content editing. Please be patient as administrators are often quite busy with either their own projects or trying to perform general maintenance and cleanup.
You can deal with most vandalism yourself: [[Wikibooks:Dealing with vandalism|fix it]], then [[Wikibooks:Templates/User_notices|warn the user]]. If there is repeated vandalism by one user, lots of vandalism on a single page, or vandalism from many users, tell an admin here, or in [irc://irc.freenode.net/wikibooks #wikibooks] (say <code>!admin</code> to get attention).
For more general questions and assistance that doesn't require an administrator, please use the [[WB:HELP|Assistance Reading Room]].
{{clear}}
[[Category:Reading room]]
== ShaneWarne1 reported by MathXplore ==
* {{userlinks|ShaneWarne1}}
Spam <!-- USERREPORTED:/ShaneWarne1/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 12:45, 11 June 2026 (UTC)
: Globally locked by M7. [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 22:12, 11 June 2026 (UTC)
== Nsysgroup reported by MathXplore ==
* {{userlinks|Nsysgroup}}
Spam <!-- USERREPORTED:/Nsysgroup/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 13:36, 11 June 2026 (UTC)
:{{done}} by [[User:Codename Noreste|Codename Noreste]] —[[User:Kittycataclysm|Kittycataclysm]] ([[User talk:Kittycataclysm|discuss]] • [[Special:Contributions/Kittycataclysm|contribs]]) 00:21, 13 June 2026 (UTC)
== "Smithjack123" reported by MathXplore ==
* {{userlinks|"Smithjack123"}}
Spam <!-- USERREPORTED:/"Smithjack123"/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 12:25, 15 June 2026 (UTC)
: {{done}}. [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 15:02, 15 June 2026 (UTC)
== RS-Top SEO Services reported by MathXplore ==
* {{userlinks|RS-Top SEO Services}}
Spam <!-- USERREPORTED:/RS-Top SEO Services/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 13:15, 17 June 2026 (UTC)
:{{done}} —[[User:Kittycataclysm|Kittycataclysm]] ([[User talk:Kittycataclysm|discuss]] • [[Special:Contributions/Kittycataclysm|contribs]]) 13:30, 17 June 2026 (UTC)
== Acemq7 reported by MathXplore ==
* {{userlinks|Acemq7}}
Spam <!-- USERREPORTED:/Acemq7/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 22:27, 17 June 2026 (UTC)
: {{done}}. [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 00:03, 18 June 2026 (UTC)
== Hcrobotics2026 reported by MathXplore ==
* {{userlinks|Hcrobotics2026}}
Link spam, [[Special:AbuseLog/312962]] <!-- USERREPORTED:/Hcrobotics2026/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 02:21, 21 June 2026 (UTC)
: {{done}}. [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 03:10, 21 June 2026 (UTC)
== Templebhard reported by MathXplore ==
* {{userlinks|Templebhard}}
Spam <!-- USERREPORTED:/Templebhard/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 12:06, 22 June 2026 (UTC)
: {{done}}. [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 15:22, 25 June 2026 (UTC)
== Vantagemdm1 reported by MathXplore ==
* {{userlinks|Vantagemdm1}}
Link spam, [[Special:AbuseLog/313018]] <!-- USERREPORTED:/Vantagemdm1/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 12:29, 25 June 2026 (UTC)
: {{done}}. [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 15:23, 25 June 2026 (UTC)
5m229s36oztqklec651zw9ck592kdr4
4641173
4641136
2026-06-25T19:04:43Z
Pppery
3090521
Restore
4641173
wikitext
text/x-wiki
__NEWSECTIONLINK__ {{Discussion Rooms}} {{shortcut|WB:AN|WB:AA}} {{TOC left}}
{{User:MiszaBot/config
|archive = Wikibooks:Reading room/Administrative Assistance/Archives/%(year)d/%(monthname)s
|algo = old(14d)
|counter = 1
|minthreadstoarchive = 1
|minthreadsleft = 1
}}
{{ombox|type=content|text='''To request a rename or usurpation''', go to the global request page at Meta [[meta:SRUC|here]].<br />''Please do not post those requests here!''}}
{{Clear}}
Welcome to the '''Administrative Assistance reading room'''. You can request assistance from [[WB:ADMIN|administrators]] for handling a variety of problems here and alert them about problems which may require special actions not normally used during regular content editing. Please be patient as administrators are often quite busy with either their own projects or trying to perform general maintenance and cleanup.
You can deal with most vandalism yourself: [[Wikibooks:Dealing with vandalism|fix it]], then [[Wikibooks:Templates/User_notices|warn the user]]. If there is repeated vandalism by one user, lots of vandalism on a single page, or vandalism from many users, tell an admin here, or in [irc://irc.freenode.net/wikibooks #wikibooks] (say <code>!admin</code> to get attention).
For more general questions and assistance that doesn't require an administrator, please use the [[WB:HELP|Assistance Reading Room]].
{{clear}}
[[Category:Reading room]]
== ShaneWarne1 reported by MathXplore ==
* {{userlinks|ShaneWarne1}}
Spam <!-- USERREPORTED:/ShaneWarne1/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 12:45, 11 June 2026 (UTC)
: Globally locked by M7. [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 22:12, 11 June 2026 (UTC)
== Nsysgroup reported by MathXplore ==
* {{userlinks|Nsysgroup}}
Spam <!-- USERREPORTED:/Nsysgroup/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 13:36, 11 June 2026 (UTC)
:{{done}} by [[User:Codename Noreste|Codename Noreste]] —[[User:Kittycataclysm|Kittycataclysm]] ([[User talk:Kittycataclysm|discuss]] • [[Special:Contributions/Kittycataclysm|contribs]]) 00:21, 13 June 2026 (UTC)
== "Smithjack123" reported by MathXplore ==
* {{userlinks|"Smithjack123"}}
Spam <!-- USERREPORTED:/"Smithjack123"/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 12:25, 15 June 2026 (UTC)
: {{done}}. [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 15:02, 15 June 2026 (UTC)
== RS-Top SEO Services reported by MathXplore ==
* {{userlinks|RS-Top SEO Services}}
Spam <!-- USERREPORTED:/RS-Top SEO Services/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 13:15, 17 June 2026 (UTC)
:{{done}} —[[User:Kittycataclysm|Kittycataclysm]] ([[User talk:Kittycataclysm|discuss]] • [[Special:Contributions/Kittycataclysm|contribs]]) 13:30, 17 June 2026 (UTC)
== Acemq7 reported by MathXplore ==
* {{userlinks|Acemq7}}
Spam <!-- USERREPORTED:/Acemq7/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 22:27, 17 June 2026 (UTC)
: {{done}}. [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 00:03, 18 June 2026 (UTC)
== Hcrobotics2026 reported by MathXplore ==
* {{userlinks|Hcrobotics2026}}
Link spam, [[Special:AbuseLog/312962]] <!-- USERREPORTED:/Hcrobotics2026/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 02:21, 21 June 2026 (UTC)
: {{done}}. [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 03:10, 21 June 2026 (UTC)
== Templebhard reported by MathXplore ==
* {{userlinks|Templebhard}}
Spam <!-- USERREPORTED:/Templebhard/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 12:06, 22 June 2026 (UTC)
: {{done}}. [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 15:22, 25 June 2026 (UTC)
== Vantagemdm1 reported by MathXplore ==
* {{userlinks|Vantagemdm1}}
Link spam, [[Special:AbuseLog/313018]] <!-- USERREPORTED:/Vantagemdm1/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 12:29, 25 June 2026 (UTC)
: {{done}}. [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 15:23, 25 June 2026 (UTC)
== [[:Category:Wikibooks fully protected edit requests]] needs a clean out ==
Has several unhandled requests dating back to December. Thanks. [[User:Pppery|Pppery]] ([[User talk:Pppery|discuss]] • [[Special:Contributions/Pppery|contribs]]) 04:56, 7 June 2026 (UTC)
: Restored from archive since this stlll hasn't been dealt with. [[User:Pppery|Pppery]] ([[User talk:Pppery|discuss]] • [[Special:Contributions/Pppery|contribs]]) 19:04, 25 June 2026 (UTC)
onz69ga8ids9qjlemudicgrnnhnoke7
4641225
4641173
2026-06-26T08:10:24Z
ArchiverBot
1227662
Bot: Archiving 1 thread (older than 14 days) to [[Wikibooks:Reading room/Administrative Assistance/Archives/2026/June]]
4641225
wikitext
text/x-wiki
__NEWSECTIONLINK__ {{Discussion Rooms}} {{shortcut|WB:AN|WB:AA}} {{TOC left}}
{{User:MiszaBot/config
|archive = Wikibooks:Reading room/Administrative Assistance/Archives/%(year)d/%(monthname)s
|algo = old(14d)
|counter = 1
|minthreadstoarchive = 1
|minthreadsleft = 1
}}
{{ombox|type=content|text='''To request a rename or usurpation''', go to the global request page at Meta [[meta:SRUC|here]].<br />''Please do not post those requests here!''}}
{{Clear}}
Welcome to the '''Administrative Assistance reading room'''. You can request assistance from [[WB:ADMIN|administrators]] for handling a variety of problems here and alert them about problems which may require special actions not normally used during regular content editing. Please be patient as administrators are often quite busy with either their own projects or trying to perform general maintenance and cleanup.
You can deal with most vandalism yourself: [[Wikibooks:Dealing with vandalism|fix it]], then [[Wikibooks:Templates/User_notices|warn the user]]. If there is repeated vandalism by one user, lots of vandalism on a single page, or vandalism from many users, tell an admin here, or in [irc://irc.freenode.net/wikibooks #wikibooks] (say <code>!admin</code> to get attention).
For more general questions and assistance that doesn't require an administrator, please use the [[WB:HELP|Assistance Reading Room]].
{{clear}}
[[Category:Reading room]]
== Nsysgroup reported by MathXplore ==
* {{userlinks|Nsysgroup}}
Spam <!-- USERREPORTED:/Nsysgroup/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 13:36, 11 June 2026 (UTC)
:{{done}} by [[User:Codename Noreste|Codename Noreste]] —[[User:Kittycataclysm|Kittycataclysm]] ([[User talk:Kittycataclysm|discuss]] • [[Special:Contributions/Kittycataclysm|contribs]]) 00:21, 13 June 2026 (UTC)
== "Smithjack123" reported by MathXplore ==
* {{userlinks|"Smithjack123"}}
Spam <!-- USERREPORTED:/"Smithjack123"/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 12:25, 15 June 2026 (UTC)
: {{done}}. [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 15:02, 15 June 2026 (UTC)
== RS-Top SEO Services reported by MathXplore ==
* {{userlinks|RS-Top SEO Services}}
Spam <!-- USERREPORTED:/RS-Top SEO Services/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 13:15, 17 June 2026 (UTC)
:{{done}} —[[User:Kittycataclysm|Kittycataclysm]] ([[User talk:Kittycataclysm|discuss]] • [[Special:Contributions/Kittycataclysm|contribs]]) 13:30, 17 June 2026 (UTC)
== Acemq7 reported by MathXplore ==
* {{userlinks|Acemq7}}
Spam <!-- USERREPORTED:/Acemq7/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 22:27, 17 June 2026 (UTC)
: {{done}}. [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 00:03, 18 June 2026 (UTC)
== Hcrobotics2026 reported by MathXplore ==
* {{userlinks|Hcrobotics2026}}
Link spam, [[Special:AbuseLog/312962]] <!-- USERREPORTED:/Hcrobotics2026/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 02:21, 21 June 2026 (UTC)
: {{done}}. [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 03:10, 21 June 2026 (UTC)
== Templebhard reported by MathXplore ==
* {{userlinks|Templebhard}}
Spam <!-- USERREPORTED:/Templebhard/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 12:06, 22 June 2026 (UTC)
: {{done}}. [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 15:22, 25 June 2026 (UTC)
== Vantagemdm1 reported by MathXplore ==
* {{userlinks|Vantagemdm1}}
Link spam, [[Special:AbuseLog/313018]] <!-- USERREPORTED:/Vantagemdm1/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 12:29, 25 June 2026 (UTC)
: {{done}}. [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 15:23, 25 June 2026 (UTC)
== [[:Category:Wikibooks fully protected edit requests]] needs a clean out ==
Has several unhandled requests dating back to December. Thanks. [[User:Pppery|Pppery]] ([[User talk:Pppery|discuss]] • [[Special:Contributions/Pppery|contribs]]) 04:56, 7 June 2026 (UTC)
: Restored from archive since this stlll hasn't been dealt with. [[User:Pppery|Pppery]] ([[User talk:Pppery|discuss]] • [[Special:Contributions/Pppery|contribs]]) 19:04, 25 June 2026 (UTC)
nn8uyhgdxgk5aquammc8p9681vfsys3
Mandarin Chinese Grammar for Pimsleur Students
0
163529
4641191
4460307
2026-06-25T22:41:30Z
Noeiel17
3495772
fixed inaccurate language categorization
4641191
wikitext
text/x-wiki
This book is designed specially for users who study Mandarin Chinese with the Pimsleur audio program. It is not a textbook for the program but a collection of information that might come in handy for Pimsleur students, like a systematic grammar overview (which the audio program does not provide).
Another goal is to provide some access to written Chinese (simplified Chinese) resp. to the Pinyin system. Since most Chinese are not really familiar with the Pinyin romanization, it cannot be used in written communication. Still, even for students who decide not to spend time to study the Chinese writing, it is highly recommendable to acquire knowledge of the Pinyin writing. At some point, every student needs to go beyond the vocabulary and the grammar that the Pimsleur program provides, and look up information in a dictionary or textbook. Without knowledge of at least the Pinyin writing, this is hardly possible.
== Table of contents ==
*Nouns
**[[Mandarin Chinese Grammar for Pimsleur Students/Pronouns|Pronouns]]
**[[Mandarin Chinese Grammar for Pimsleur Students/Nouns|Nouns]]
**[[Mandarin Chinese Grammar for Pimsleur Students/Proper nouns|Proper nouns]]
*Verbs
**[[Mandarin Chinese Grammar for Pimsleur Students/Activity verbs|Activity verbs]]
**[[Mandarin Chinese Grammar for Pimsleur Students/Adjectival stative verbs|Adjectival stative verbs]]
**[[Mandarin Chinese Grammar for Pimsleur Students/Non-adjectival stative verbs|Non-adjectival stative verbs]]
**[[Mandarin Chinese Grammar for Pimsleur Students/Yes/No answers|Yes/No answers]]
**[[Mandarin Chinese Grammar for Pimsleur Students/Past tense|Past tense]]
**[[Mandarin Chinese Grammar for Pimsleur Students/Future tense|Future tense]]
*[[Mandarin Chinese Grammar for Pimsleur Students/Negation|Negation]]
*[[Mandarin Chinese Grammar for Pimsleur Students/Questions|Questions]]
*[[Mandarin Chinese Grammar for Pimsleur Students/Adverbs|Adverbs]]
*[[Mandarin Chinese Grammar for Pimsleur Students/Conjunctions|Conjunctions]]
*[[Mandarin Chinese Grammar for Pimsleur Students/Prepositions|Prepositions]]
*[[Mandarin Chinese Grammar for Pimsleur Students/Numbers|Numbers]]
*[[Mandarin Chinese Grammar for Pimsleur Students/Phrases|Phrases]]
*[[Mandarin Chinese Grammar for Pimsleur Students/Lessons|Lessons]] (Summary of vocabulary in each lesson)
== Related Wikibooks ==
For comprehensive Chinese textbooks see:
*[[Chinese (Mandarin)]]
*[[Written Chinese]]
== Recommended Weblinks ==
*[http://www.learnchineseok.com/ LearnchineseOK.com] Web's biggest directory of free online resources for learning Mandarin Chinese language - hundreds and hundreds of entries include this one for the Wikibook "Mandarin Chinese Grammar for Pimsleur Students"
*[http://www.mdbg.net/chindict/chindict.php xuezhongwen.net] Online dictionary
**[http://www.pimsleurdirect.com/collections/pimsleur-chinese-mandarin Pimsleur Mandarin Chinese Courses]
{{Shelves|Chinese language}}
{{Categories|Category 4 Language}}
{{alphabetical|M}}
{{status|50%}}
__NOTOC__
37idk4punpb2zyl610yaz4pmz5qzhgl
4641192
4641191
2026-06-25T22:41:50Z
Noeiel17
3495772
fixed inaccurate language categorization
4641192
wikitext
text/x-wiki
This book is designed specially for users who study Mandarin Chinese with the Pimsleur audio program. It is not a textbook for the program but a collection of information that might come in handy for Pimsleur students, like a systematic grammar overview (which the audio program does not provide).
Another goal is to provide some access to written Chinese (simplified Chinese) resp. to the Pinyin system. Since most Chinese are not really familiar with the Pinyin romanization, it cannot be used in written communication. Still, even for students who decide not to spend time to study the Chinese writing, it is highly recommendable to acquire knowledge of the Pinyin writing. At some point, every student needs to go beyond the vocabulary and the grammar that the Pimsleur program provides, and look up information in a dictionary or textbook. Without knowledge of at least the Pinyin writing, this is hardly possible.
== Table of contents ==
*Nouns
**[[Mandarin Chinese Grammar for Pimsleur Students/Pronouns|Pronouns]]
**[[Mandarin Chinese Grammar for Pimsleur Students/Nouns|Nouns]]
**[[Mandarin Chinese Grammar for Pimsleur Students/Proper nouns|Proper nouns]]
*Verbs
**[[Mandarin Chinese Grammar for Pimsleur Students/Activity verbs|Activity verbs]]
**[[Mandarin Chinese Grammar for Pimsleur Students/Adjectival stative verbs|Adjectival stative verbs]]
**[[Mandarin Chinese Grammar for Pimsleur Students/Non-adjectival stative verbs|Non-adjectival stative verbs]]
**[[Mandarin Chinese Grammar for Pimsleur Students/Yes/No answers|Yes/No answers]]
**[[Mandarin Chinese Grammar for Pimsleur Students/Past tense|Past tense]]
**[[Mandarin Chinese Grammar for Pimsleur Students/Future tense|Future tense]]
*[[Mandarin Chinese Grammar for Pimsleur Students/Negation|Negation]]
*[[Mandarin Chinese Grammar for Pimsleur Students/Questions|Questions]]
*[[Mandarin Chinese Grammar for Pimsleur Students/Adverbs|Adverbs]]
*[[Mandarin Chinese Grammar for Pimsleur Students/Conjunctions|Conjunctions]]
*[[Mandarin Chinese Grammar for Pimsleur Students/Prepositions|Prepositions]]
*[[Mandarin Chinese Grammar for Pimsleur Students/Numbers|Numbers]]
*[[Mandarin Chinese Grammar for Pimsleur Students/Phrases|Phrases]]
*[[Mandarin Chinese Grammar for Pimsleur Students/Lessons|Lessons]] (Summary of vocabulary in each lesson)
== Related Wikibooks ==
For comprehensive Chinese textbooks see:
*[[Chinese (Mandarin)]]
*[[Written Chinese]]
== Recommended Weblinks ==
*[http://www.learnchineseok.com/ LearnchineseOK.com] Web's biggest directory of free online resources for learning Mandarin Chinese language - hundreds and hundreds of entries include this one for the Wikibook "Mandarin Chinese Grammar for Pimsleur Students"
*[http://www.mdbg.net/chindict/chindict.php xuezhongwen.net] Online dictionary
**[http://www.pimsleurdirect.com/collections/pimsleur-chinese-mandarin Pimsleur Mandarin Chinese Courses]
{{Shelves|Chinese language}}
{{Categories|Category 4 Languages}}
{{alphabetical|M}}
{{status|50%}}
__NOTOC__
4zqi6u4tenc077061ugee1xprrkevun
Economic Development
0
164506
4641230
3448818
2026-06-26T10:12:00Z
~2026-36871-82
3610021
/* */ for only oo
4641230
wikitext
text/x-wiki
{{Subpages}}
{{Expand}}
[[Image:HK ifc Overview.jpg|thumb|right|Two International Finance Centre designed by César Pelli in Hong Kong is the tallest building on the skyline complet in 1998 at the end of the Asian economic crisis. Multiple owners hold a stake and the building is occupied by influential local banks to corporations from across the globe including Ernst & Young and the Blackstone Group. To be fair, there are no naming rights to the building. Hong Kong since before its handover to China in 1997 is a leading example of Westernized values of economic development being exported globally. The territory has even influenced similar development in China's mainland.]]
A multitude of perspectives define and shape economic development as we proceed into the 21th Century. Economic development affects all realms of life, economic, political and philosophical. It is policy in practice and a goal in process, yet there is no end point. This book will help you explore and understand what is meant by this term and how it affects the world and your local environment.
Questions that will be explored include:
* How can economic development best be stimulated?
* What sort of business regulations are most conducive to quality economic development?
* How can regulations be developed to maximize the benefit for both the people of the state and the businesses and their customers?
It should be clarified, this book is not about the [[Principles of Economics]], nor to explain the mathematical formulas and functions which govern the actions of governments.
Though numbers will enter into the discussion, economic development is more a theory and philosophy of ''what'' works best and ''what'' is needed, as opposed to, ''how'' does it work and ''how'' should we manage our economies.
It is suggested of course that a reader should familiarize themselves with the principle measures of the economy and the financing actions of enterprise.
Lastly, this book does not attempt to provide an entire global examination of economic development as it uniquely occurs in each country, but to generalize and provide a basic view of its process as it occurs and changes in the Western world. As stated, economic development continues to be re-defined and each era marks a different interpretation as technology and circumstances change in the world. Hopefully this text will attempt to weave common elements together and present the situation as it exists today.
==What is economic development?==
'''Definition'''
Economic development has several definitions from local to global perspectives. Professor of Economics and Public Policy Alan Deardorff at the University of Michigan as part of his International Economics Glossary calls it: "Sustained increase in the economic standard of living of a country's population, normally accomplished by increasing its stocks of physical and human capital and improving its technology."<ref>[http://www-personal.umich.edu/~alandear/glossary/e.html International Economics Glossary ]</ref> At the local level, the term is brought to a more reachable level. For example the UrbanPlan curriculum states: "Economic development—A term generally applied to the expansion of a community’s property and sales tax base or the expansion of the number of jobs through office, retail, and industrial development."<ref>[http://www.urbanplan.org]</ref> An interesting Cornell article expands: "Economic development is typically measured in terms of jobs and income, but it also includes improvements in human development, education, health, choice, and environmental sustainability. Business and economic developers in the US are increasingly recognizing the importance of quality of life, which includes, environmental, and recreational amenities, as well as social infrastructure such as child care, in attracting and retaining businesses in a community."<ref>[http://government.cce.cornell.edu/doc/html/MethodologyGuide_TermsUsed.htm Cornell]</ref> In each of these definitions, the focus is on growth of the physical and social sphere of life. As well there is an inherent goal, that such growth achieves a greater "standard of living" or "quality of life." Important to note is that residential development is a separate component. Lastly, the field does presume one common fact, that what ''is'' there is not providing what that community needs.
'''In government structure'''
Economic development (ED) is seen both as a policy and a profession. In the United States, most local governments have an economic development authority that oversees and guides enterprise in states and cities. Many states have multiple layers of such groups. For example, a neighborhood might have its own non-profit to help small businesses establish storefronts. The municipality's economic development department would help major corporations locate into city limits. Most cities have metropolitan regions, and such regional authorities can promote entire areas of a state for new companies. The state's workforce and employment department would then overlap all of these, tracking job growth and ensuring Federal funds may be available for job programs and assistance. ED many times is an expected part of government function because cities and regions are constantly competing for jobs which no longer need a specific location.
'''As government policy'''
As policy, ED is frequently noted in the news as a function of a country's government to improve the welfare of its citizens by providing and literally building opportunities. The skyscrapers and dams being fervorently built in China's coastal cities and rural west have become a symbol of ED. The term started for American cities in the advent of suburbia in the 1970s but had not exactly entered American politics until the economic boon of the 1990s. ED has traditionally been applied to major projects such as a new industrial zone or enclosed shopping mall as well as waterworks projects and freeway expansion. However suburbia by the 1990s began to realize that the capitalist micro-economies of downtowns were not going to remake themselves and the term gained full footing to ensure stability in new cities by carefully planning and plotting the location of potential retail, services, and office. ED has also become familiar with medical and hospitality industries, seeing hospital campuses and hotels as valuable as an office tower. The main goal with ED as government policy is that jobs must grow in the end, much like how private companies ultimately wish to gain profits from new investment.
'''As a profession'''
As a profession, ED Directors and Business Specialists work with business owners and much like courting deals in the private sector, will try to provide opportunities to entrepreneurs. These may include qualifying special new business loans, offering tax breaks on a piece of land, or ensuring planning officials can compromise to approve a project. While ED personnel are generally "on the ground," they also do extensive research and quantitative analysis as to potential sites which may accommodate future employers. Regularly they perform many urban planning and community development functions such as identifying properly zoned areas for commercial or industrial and the accompanying codes and variances that could suit a business model. With these goals, ED staff may also influence planning decisions and encourage the establishment of Enterprise Tax Zones which specifically encourage businesses to locate in a particular geographic area.
===The city and the hinterland===
The basis for urban economies is in understanding the relationship of cities and the hinterland. The hinterland has been used since the 20th century by geographers to describe rural land, the "empty" and "wild" space between cities. Eugene van Cleef would better define it in "Hinterland and Umland," tracing its Germanic routes as the land extending from the coast.<ref>{{cite book|title=Hinterland and Umland|author=Eugene van Cleef|volume=Geographical Review, Vol. 31, No. 2 (Apr., 1941), pp. 308-311 (article consists of 4 pages)|publisher=Published by: American Geographical Society|url=http://www.jstor.org/pss/210211}}</ref> The best equivalent is "back country." Though with a slight negative connotation, the hinterland has become an appropriate term to describe land areas that do not necessarily have a city or urbanized function but are not necessarily rural lands. For example much of the central to western United States is unincorporated or not in use at all due to natural features. As well hinterland encompasses all natural lands even those in protected status.
The need to understand the relationship between the city (meaning both urbanized and metropolitan areas) and the hinterland, is helpful to understanding the cycle of urban economies and flow of investment and assets.
===Urban economies: cycle flow and assets===
Urban economies seen through input and output, are essentially machines in themselves. Urban means dense or close together and the proximity allows economic activity to blossom. Flour milling was an early American economic industry that was inherently urban. The multiple costs of each component limited millers to draw from local economies.
*'''Flour milling'''
**Administration
***Human resources
***Migrant workers (embassy)
***Sales
***Material buyers
**Workers
***Wages
****Restaurants
****Bars
****Shops
****Real estate (housing)
**Equipment
***Iron-fabricators
***Machine shop
***Civil engineers/city crew
**Production
***Materials
****Rail line jobs
****Truck drivers
***Packaging
****Flour sack makers
**Delivery
***Rail line jobs
***Truck drivers
**Sellers
***Bakers
===Metropolitan spheres of influence===
==Author resources==
The [[Economic Development/Author resources|Author resources]] page of this book lists some potential information sources for authors (and readers).
==Local development==
[[Image:Wal-Mart in Madison Heights.jpg|thumb|right|This Wal-Mart in Madison Heights, Virginia is one of nearly 2000 stores in smaller communities of the United States. By the 1990s, the "big box" store became a regular icon of economic development in rural areas where typical retail found in major cities would not establish. By the turn of the century, Wal-Mart's effects on these communities was marked by the downfall of local retail and criticized labor practices. Corporate expansion into undeveloped areas is an example of incompatibility between city and hinterland.]]
===Types of businesses===
===Infrastructure===
===Urban conditions===
===Regulations===
====Zoning code====
==Techniques==
===Private sector===
====Retail====
====Commercial====
====Industrial====
===Non-profit===
====Medical facilities====
====Arts and cultural institutions====
====Advocacy groups====
===Community groups===
====Neighborhood investment====
==References==
{{Wikipedia|Economic development}}
{{reflist}}
{{Shelves|Economics}}
{{Alphabetical|E}}
{{status|0%}}
szhi55s8ccuqdr6wo4ajxwwckeg5rif
Basic Geography/Geology
0
206153
4641209
4393908
2026-06-26T04:43:00Z
~2026-36797-04
3609952
/* Erosion */
4641209
wikitext
text/x-wiki
What is geology? Defined broadly, geology is the study of rocks. Geology has a number of topics: palaeontology (study of fossils), Plate Tectonics (Movement of the plates), Erosion (breaking down of rocks), and a whole number of different topics. The aim is to give you basic knowledge of geology. To know more, try looking round your local library and have a look at the References and External Links.
NOTE: There is a reasonable amount of confusion of how to classify geology: some classify it as a subject on its' own, others classify it as a form of science. I personally class it as a topic of geography.
==The basics==
It is vital in geology to understand the three ways rocks form:
===Sedimentary===
Sediments (such as teeth, rocks and sand) settle on the bottom of a riverbed. Over millions of years, these sediments compress together to form sedimentary rock. The sediments may have got to the riverbed in a number of ways: they could be from eroded cliffs, and gradually layers got deposited ('dumped' in one place by the forces of the currents) and compressed over time. Sedimentary rocks are layered into strata, with the newest rocks above the older. If a really strong force (such as movement of the plates) occurs, the layers, or strata, could be ordered differently: for example, the rocks may be older the further along the cliff you walk opposed to the height of the cliff. Different sediments form different sedimentary rocks: for example, sandstone is formed from sand sediments and mudstone is formed from mud sediments. Sedimentary rocks tend to be the 'weakest' of the three, as Igneous and Metamorphic rocks both undergo extreme pressures to form.
===Igneous===
These rocks are characteristic of their resistance to weathering and their crystals. Igneous rocks are formed in two ways: from molten rock (magma) underground or from lava (from an erupted volcano). Both forms involve lots of heat and pressure. You can tell which way Igneous rock formed by analysing the crystals. The Igneous rocks that have formed underground in the mantle tend to have quite large crystals, because rock takes a long time to cool underground, opposing being spewed out to sea- which cools the molten rock very quickly. Granite is a typical example of Igneous rock that has formed underground: it is very tough, has quite large crystals, and is very resistant to weathering. Dykes and Sills are formed when lava runs through other rocks, giving it characteristic layering.
===Metamorphic===
These rocks have undergone extreme pressures to form and, like Igneous rocks, are very tough and resistant to weathering. They are formed in a number of ways: a Sedimentary, Igneous or Metamorphic rock could come into contact with molten rock in the mantle, therefore altering its' composition. Metamorphic rocks tends to be common in mountainous regions: mountains form when plates push together, forming a subduction zone where one plate sinks under the other. The forces involved are unimaginable. Marble is a quite valuable example of Metamorphic rock, other rocks and minerals can be seen inside the Marble, as all kinds of rocks are caught in the process of metamorphism.
==The Plates==
Plate Tectonics is the movement of the Plates. The Continents of the Earth may seem immovable, but they have been moving throughout history and gradually still are. Perhaps the most famous past position of the continents is during the Triassic era, when all the continents were together, forming the Supercontinent Pangea. The past positions of the Plates can help Geologists solve a number of mysteries: like why the White Cliffs of Dover are exactly the same as those off a shore in France. When Plates meet they behave in a number of different ways. They could move apart, collide or move along the fault line that is caused by the meeting. Fault lines are the plate boundaries that rise when the two plates collide, forming jugged, rocky formations, a bit like when cars crash. They also cause Metamorphism, explaining why much of the world's mountains are made mainly of Metamorphic rock. India is currently further colliding with the Asian plate. The immense force of this collision is what formed the Himalayas, which Everest is in. However, the colliding of Plates can also lower land level, because one Plate always sinks in the process of Subduction (explained in Metamorphic section).
==Erosion==
I like to think of Erosion as the ''''Digesting of rocks'''<nowiki/>', because Erosion 'breaks down' rocks, making it an important part of forming Sedimentary rocks and therefore the Rock Cycle. The Sea is a big part of erosion: when the waves lash at the cliffs, the rock may dissolve, or it may break off the cliff, sometimes forming interesting patterns such as caves and arches, where the 'weaker' material is eroded first. Glaciers can erode rocks in the same way as the sea can, cracking rock in narrow gauges and valleys. Much of the valleys we see today were 'calved' by Glaciers. Ice is chemically less dense than liquid water, which is why it is always the top of rivers and lakes which freezes over first. If there is a chip in a rock, drops of rain can find its' way into the rock. If a really cold day follows, the water freezes, therefore expanding, which cracks open the rock. Examples include cracked rock near drainpipes. There was a significant amount of this form of Erosion during the Ice Age. Corrosion, or chemical weathering, is common where there is lots of pollution. Rain is slightly acidic, due to the dissolved carbon that it contains, which over time can roughen the sides of rock and monuments. Industrial chemicals (such as Sulphur) can also dissolve in the rain, further increasing the acidity. The power of river currents is a big part of erosion. The current in the river erodes away the bedrock, and loose rock travels with the river. It may be deposited which over time, may form sedimentary rocks. The erosive power of a river is revealed when it floods. The wind is a major force behind erosion, particularly in deserts where sand is forcefully flung onto rocks. The wind can also speed up other erosive forces (such as the sea). Biological weathering is common on about any old building. The process of biological weathering is similar to the erosion caused by freezing: as the plant grows, it may find itself trapped by rocks (such as in a patio). As the plant grows more and more the crack it is growing in expands further, damaging the rock. Last but not least is onion skin weathering. When the temperature cools, a rock will contract. When the temperature rises, rock expands. If these temperature changes are frequent and severe, the constant expanding and contracting makes the rock weaken and 'peel off' like layers of an onion. Onion Skin is common in Desert climates.
==Minerals==
Minerals are the elements or compounds we find in rock. Some minerals are worth lots as jewellery, others in industry. Oxygen and Silicon are the most abundant elements in minerals, making up over half the minerals on Earth. The atomic formation in minerals make them have different characteristics. Pollutants and impurities can change some of the characteristics of minerals: hence the wide variety of Quartz colours and the bluish tinge of copper on iron. One characteristic that is useful in telling minerals apart is the hardness scale, devised by Friedrich Mohs. The scale shows resistance to scratching by other minerals.Diamond is the hardest mineral and will scratch all other minerals, without getting scratched itself, Talc is at the other end of the scale, being the weakest mineral.
==Fossils==
Fossils are the preserved remains of an organism that lived in the past. As sediment settles in the seabed or riverbed, organisms may be trapped in the process, the sediment protecting the body from decay. It is only usually the teeth, shell, or bones of an organism that get preserved, and rarely do any organic remains preserve: they usually get replaced by minerals such as Pyrite. Fossils tell us many clues about Earth's history: such as the past position of the Plates or mass extinctions or disasters. Fossils can tell us how old a rock is. But to be a 'zone' fossil, the organism must be common throughout the globe, but at the same time, have a relatively short period of time on the planet e.g. an organism that lived for over 200 million years would not tell us the age of the rock accurately, unless the organism had many short-lived species.
==Quiz==
# Which rock type can be produced when other rocks erode?
# Which rock type is produced when other rocks melt;
# and how would the rocks melt;
# and why is the new rock not metamorphic?
==Answers==
# Sedimentary rock
# Igneous rock
# In the mantle
# Because not all Igneous rock is formed from other rock; metamorphic rocks are 'second-hand'.
==References==
Investigations: Rocks and Minerals, ''Jack Challoner and Rodney Walshaw''
'''Net-based ''' Rock and Mineral, ''DK, in association with Google''
{{BookCat}}
bse0qac8qcwiy0xize7iw6zqvhpiyna
Mandarin Chinese/Pinyin/Consonants
0
218301
4641210
3205856
2026-06-26T04:48:25Z
~2026-36857-17
3609953
4641210
wikitext
text/x-wiki
== Lesson ==
In pinyin, there are 23 consonants. Do not be alarmed by this number, many are pronounced as they are in English.
Here is a list.
b p m f<br>
d t n l<br>
g k h<br>
j q x<br>
zh ch sh r<br>
z c s<br>
w y<br>
Most of the pronunciations of all these consonants, are similar to those in English. However, there are some exceptions.
== Exceptions ==
* j - Sounds similar to the "'''gee'''" in the English word "'''gee'''se," but shorter and crisper.
* q - ch as in "'''ch'''eese"
* x - sh as in "'''sh'''eet"
* zh - j as in "'''j'''ack" or "'''J'''ohn"
* ch - sounds similar to an English "ch" but slightly deeper. It sounds like "chrr".
* sh - sounds similar to an English "sh" but slightly deeper. It sounds like "shrr".
* r - most like the "-'''ure'''" part of the English word "pleas'''ure'''," but with your tongue curled slightly further back. Sounds like "rer".("er" as in h'''er''')
* z - ds as in "ki'''ds'''" or "loa'''ds'''" and may appear at the beginning of the word, such as 早(zǎo,early)
* c - ts as in "ha'''ts'''", and may appear at the beginning of the word, such as 醋(cù,vinegar)
See, Chinese is easier than people say it is.
== In Short... ==
*23 consonants
*b p m f d t n l g k h j q x zh ch sh r z c s w y
*Most are like English
*Exceptions are j,q,x,zh,ch,sh,r,z and c.
{{BookCat}}
n72m2e7esqs4vuumbc0hna30ndbvc0t
User:Tommy Kronkvist
2
222668
4641130
4640927
2026-06-25T14:38:02Z
Tommy Kronkvist
107268
User statistics.
4641130
wikitext
text/x-wiki
<div style="margin: 0 0 1em 0;">{{userpage}}</div>
{{Userboxtop|toptext=Babel:}}
{{user language|sv|N}}{{user language|en|4}}{{user language|de|2}}{{user language|la|1}}
{{userboxbreak|toptext=WikiProjects:}}
{{User Chess}}
{{Userboxbottom}}
[[File:Sorbus torminalis Trunk and canopy.jpg|thumb|200px|left]]<br />
Most of my wiki contributions are made to [[:species:Main Page|Wikispecies]] where I'm an administrator, bureaucrat and interface admin,<small><sup>[https://species.wikimedia.org/w/index.php?title=Special:ListUsers&limit=1&username=Tommy_Kronkvist (verify)]</sup></small> as administrator and interface ditto at the Swedish version of [[wikivoyage:sv:Huvudsida|Wikivoyage]]<small><sup>(<span class="plainlinks">[https://sv.wikivoyage.org/w/index.php?title=Special:ListUsers&limit=1&username=Tommy_Kronkvist verify]</span>)</sup></small> and to the Swedish Wikimedia Chapter [[WMSE:|Wikimedia Sverige]], where I'm also an admin.<small><sup>(<span class="plainlinks">[https://se.wikimedia.org/w/index.php?title=Special:Användare&limit=1&username=Tommy_Kronkvist verify]</span>)</sup></small>
I've made a total of [[:meta:Special:CentralAuth/Tommy_Kronkvist|395,100 edits]] to 153 different Wikimedia sister projects, since August 2008 when I first registered my user account. (Data per June 25, 2026.)
Swedish is my mother tongue – even though I was born in Finland – but I feel fairly comfortable speaking and writing English and some German as well. Odd as it may seem, unfortunately I can't speak any Finnish.
My family name consists of two parts: ''kron'' – a short form of the Swedish word ''krona'' meaning 'crown', as in coronation crown or tree crown – and ''kvist'', meaning 'bough' or 'twig'. Hence the name ''Kronkvist'' refers to a twig in the canopy of a forest. I'm the fourth generation of Kronkvist's. Before that our family name was ''Mattus'', dating back from at least 1637. I've lived all over Sweden (for example in Stockholm and in the Gothenburg area) but nowadays reside in Uppsala, the fourth biggest city and former capital of Sweden.
e1o2rq354rh4ljediljw5vzquc1ocho
Chess Opening Theory/1. e4/1...c5/2. Nf3/2...d6/3. d4/3...cxd4/4. Nxd4/4...Nf6/5. Nc3/5...a6/6. Be3/6...e6/7. g4
0
228288
4641180
4640028
2026-06-25T21:10:54Z
SincereTuitt
3529278
The sequence given for the Keres attack was incorrect. 7. Bb5+ Bd7 8. Bxd7+ Qxd7 removes an attacker from g4 in the form of black's light squared bishop, but it also adds an attacker in the form of the queen. The provided continuation 9. Nb3 simply blunders the g4 pawn. I edited in the correct sequence 9.Nf5, alongisde the corrected analysis.
4641180
wikitext
text/x-wiki
{{Chess Opening Theory/Position|=
|Sicilian Defence, Perenyi Attack|
|rd|nd|bd|qd|kd|bd| |rd|=
| |pd| | | |pd|pd|pd|=
|pd| | |pd|pd|nd| | |=
| | | | | | | | |=
| | | |nl|pl| |pl| |=
| | |nl| |bl| | | |=
|pl|pl|pl| | |pl| |pl|=
|rl| | |ql|kl|bl| |rl|=
||
}}
= Sicilian Defence, Scheveningen Variation, Perenyi Attack =
The Perenyi Attack is similar in idea to its cousin the [[Chess Opening Theory/1. e4/1...c5/2. Nf3/2...d6/3. d4/3...cxd4/4. Nxd4/4...Nf6/5. Nc3/5...e6/6. g4|Keres Attack]] of the standard Scheveningen Variation. White mounts an aggressive pawn storm on the kingside, castling long and supporting with Be3 and Qd2. However, it usually arises from a transposition from the Najdorf rather than the normal Scheveningen move order. Compared to the Keres, white has his bishop already developed to the e3 square while black has a pawn on a6 rather than a7.
The differences are subtle but critical. Now, the standard line of the Perenyi attack follows with [[/7...e5|7...e5]]. This puts two attackers on the advanced g4 pawn (which only has the queen defending) and threatens the d4 knight. If this were the Keres, white could play the intermediate sequence 7. Bb5+ Bd7 8. Bxd7+ Qxd7, eliminating black's light squared bishop, a potential defender of the weak d5 square, and removing the guard from the f6 knight. White then continues with 9. Nf5, getting the knight out of danger and cutting off the queen's attack on the g4 pawn. Here, black would love to play 9...g6, chasing away the knight and then grabbing the g4 pawn, but it doesn't work. White could respond with either 10. Bg5, counterattacking the now undefending f6 knight, or 10. Ne3, defending the g4 pawn, and increasing white's hold on d5.
However, 8. Bb5+ is not an option here because of the a6 pawn. Therefore, white usually plays 8. Nf5, with the same idea of saving both the the knight and the g4 pawn. But here black plays the critical line 8...g6, which comes with much greater effect in this version, since now neither of the above-mentioned resources from the Keres attack are available. The knight on f6 is protected by the queen, so 9. Bg5 is ineffective, and 9. Be3 is impossible, since that square is occupied by white's bishop. At this point, play becomes very complex and sharp. White cannot move the knight away without losing the g4 pawn, and so usually chooses to sacrifice it. White can try to win back a knight with 9.g5 gxf5 10.gxf6, or sacrifice it with 9.g5 gxf5 10.exf5 Ng8 11.f6, boxing in black's kingside pieces. Alternatively, white can develop with 9.Bg2. This leads to a very complex line mostly found in top level chess: 9...gxf5 10. exf5 d5 11. Qe2 d4 12. O-O-O.
{{ChessMid}}
==References==
{{reflist}}
{{Wikipedia|Sicilian Defence, Scheveningen Variation}}
{{BCO2}}
{{Chess Opening Theory/Footer}}
sqm4xoisczvbsq2qipnwma526xu2n4u
Template talk:Policy
11
233864
4641201
4622642
2026-06-26T00:11:02Z
Codename Noreste
3441010
/* Protected edit request on 13 March 2026 */ Done.
4641201
wikitext
text/x-wiki
{{permprot}}
== Protected edit request on 13 March 2026 ==
{{edit fully-protected|Template:Policy|answered=yes}}
Add a blank {{!}}alt= parameter to the check icon so that screen readers do not attempt to read it: <syntaxhighlight lang="wikitext">| image = [[File:Green check.svg|30px|link=|alt=]]</syntaxhighlight> [[User:Lemondoge|Lemondoge]] ([[User talk:Lemondoge|discuss]] • [[Special:Contributions/Lemondoge|contribs]]) 16:53, 13 March 2026 (UTC)
:{{done}}. [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 00:10, 26 June 2026 (UTC)
2lna5jizqyi1kpk1gyt7urvb1h4vmv0
Intermediate Korean
0
237043
4641193
4460321
2026-06-25T22:42:19Z
Noeiel17
3495772
fixed inaccurate language categorization
4641193
wikitext
text/x-wiki
{| width="100%" style="border: 1px #ACACBB solid; padding: 10em 10em; background: #EAFEEA;"
|-
| style="font-size: 500%; font-family:Arial; text-align: center;" | <span style="color: #DECDCD">INTER</span><span style="color: #CBB">MEDIATE</span> KOREAN
|-
| style="font-size: 300%; font-family:돋움; san-serif; padding-top: 10px; font-weight:bold; text-align: center;" | <span style="color: #CBB">중 급</span> 한 국 어
|-
| {{Category 4 Language}}
|-
| style="padding-top: 3em; text-align: center;"| [[/Cover|Cover]]
|-
| style="padding-top: 1em; text-align: center;"| [[/About|About]]
|-
| style="padding-top: 2em; text-align: center;"| Contents
|-
| style="padding-top: 1em;text-align: center"| [[/The Korean Language|Chapter 0]] The Korean Language
|-
| style="text-align: center"|
{| style= "background: transparent; text-align: left; padding: 0em 10em" width="100%"
|-
|[[/Pronunciation|Chapter I]]
|Pronunciation
|[[/Demonstrative Expression|Chapter XII]]
|Demonstrative Expression
|-
|[[/Structure of Sentence|Chapter II]]
|Structure of Sentence
|[[/Modifier|Chapter XIII]]
|Modifier
|-
|[[/Conjugation|Chapter III]]
|Conjugation
|[[/Postposition|Chapter XIV]]
|Postposition
|-
|[[/Tense and Aspect|Chapter IV]]
|Tense and Aspect
|[[/Mood|Chapter XV]]
|Mood
|-
|[[/Voice|Chapter V]]
|Voice
|[[/Honorific|Chapter XVI]]
|Honorific
|-
|[[/Nounal Clause|Chapter VI]]
|Nounal Clause
|[[/Other Structures|Chapter XVII]]
|Other Structures
|-
|[[/Attributive Clause|Chapter VII]]
|Attributive Clause
|[[/Compound Word|Chapter XVIII]]
|Compound Word
|-
|[[/Adverbal Clause|Chapter VIII]]
|Adverbal Clause
|[[/Idiom|Chapter XIX]]
|Idiom
|-
|[[/Other Clauses|Chapter IX]]
|Other Clauses
|[[/Agreement|Chapter XX]]
|Agreement
|-
|[[/Auxilary Predicate|Chapter X]]
|Auxilary Predicate
|[[/Hangul Orthography|Chapter XXI]]
|Hangul Orthography
|-
|[[/Bound Noun|Chapter XI]]
|Bound Noun
|[[/Hanja|Chapter XXII]]
|Hanja
|}
|-
| style="padding-top: 2em; text-align: center;"| [[/Appendix|Appendix]]
|-
| style="padding-top: 2em; text-align: center;" | See Also
|-
| style="text-align: center;" |{{Wikipedia|Korean Language}} [[Korean]] <br/> [[Japanese]] <br/> [[Chinese]]
|}
{{alphabetical|I}}
{{Shelves|Korean language}}
{{status|0%}}
e1vudidjw70i04wvfmdw4ssibimcub1
Aros/Platforms/x86 Complete System HCL
0
237398
4641131
4641059
2026-06-25T14:40:21Z
Jeff1138
301139
4641131
wikitext
text/x-wiki
{{ArosNav}}
==Introduction==
This a list of computer hardware tested with mostly native AROS installs and, in the recommended sections, of virtual machines
With 64bit support it is recommended 8Gb ram is needed and that SSE 4.1 and AVX are supported in the CPU i.e. from year 2012 for Intel CPUs and 2013 for AMD CPUs. They are x86-64 instruction sets designed to perform the same operations on multiple data items simultaneously, a technique known as Single Instruction, Multiple Data (SIMD). This allows for increased performance in tasks involving parallel computation. SSE 4.1 is a 128-bit SIMD instruction set, while AVX introduced 256-bit SIMD, further enhancing performance. Some apps require these features to run well, like 3D, multimedia decoding or JIT (javascript) in Odyssey web browser. If not the apps may work slower or might fail.
If you have encountered differently (i.e. problems, incompatibilities, faults, annoyances, environment, errors, review of setup etc) please update this information.
Please bear in mind that AROS has only a few hardware driver developers, whilst Linux counts in the tens and Windows in the hundreds.
[[#Laptops]]
[[#Netbook]]
[[#Desktop Systems]]
[[#AMD Sockets]]
[[#Intel Sockets]]
[[#Recommended hardware (32-bit)]]
[[#Recommended hardware (64-bit)]]
=== Laptops ===
[[#top|...to the top]]
* 2006/2007 Dell Latitude D-series laptops - business class machines, good support in Aros, easy to replace wifi card
* 2006 some [https://www.techradar.com/reviews/pc-mac/laptops-portable-pcs/laptops-and-netbooks/toshiba-satellite-pro-a200-28550/review Satellite Pro A200]
* 2008 For the tiny carry anywhere, the early run of Acer Aspire netbooks
Rough estimate from taking a random laptop notebook what you can expect from a Native install of AROS
{| class="wikitable sortable" width="100%"
! width="10%" |Date
! width="5%" |Overall
! width="5%" |Gfx VESA
! width="5%" |Gfx 2D Acceleration
! width="10%" |Gfx 3D Acceleration
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="10%" |Wireless
! width="20%" |Comments
|-
| Before 2002 || Poor to OK || VESA 90% || 2D 10% || {{N/A}} || Audio 10% || 40% || Wired 70% || 2% || Max RAM 512MB
|-
| 2002-2005 || OK || VESA 95% || 2D 10% || 3D 0% || Audio 30% || 70% || Wired 50% || 10% || Max RAM 2GB (for 32bit)
|-
| 2005-2012 || Good || VESA 98% || 2D 60% || 3D 30% || Audio 40% || 80% || Wired 30% || 10% || Max RAM 3Gb (32bit) to 8GB (64bit)
|-
| 2013-2017 || OK || VESA 98% || 2D 30% || 3D 0% || Audio 30% || 60% || Wired 20% || 0% || Max RAM 8GB / 16GB better to go Intel / AMD Ryzen over AMD A series
|-
| 2018-2024 || OK || VESA 98% || 2D 20% || 3D 0% || Audio 40% || 60% || Wired 30% || 0% || Max RAM 32GB better 64bit options if has an internal dvd drive and working ethernet
|-
| 2025-202x || Poor || VESA 95% || 2D 0% || 3D 0% || Audio 0% || 0% || Wired 10% || 0% || Max RAM 64GB AI disruption of previous hardware
|-
|}
3D tests now conducted with apps found in Demos/AROS/Mesa and run at default size (may need to View As -> Show All to see them.
Any laptop with Windows 7(TM) 64bit or higher install, the bios and hard drive set in uefi/gpt mode (install of AROS incompatible)
Most vendor suppliers get OEM (original equipment manufacturers) to make their laptops. These brand name companies purchase their laptops from
*80% ODM (Original Design Manufacturer) such as Quanta, Compal, Wistron, Inventec, Foxconn (Hon Hai), Flextronics and Asus (now Pegatron)
*20% MiTAC, FIC, Arima, Uniwill, ECS, Tonfang Origin and Clevo
{| class="wikitable sortable" width="100%"
| <!--OK-->{{Yes|'''Works well'''}} || <!--May work-->{{Maybe|'''Works a little'''}} || <!--Not working-->{{No|'''Does not work'''}} || <!--Not applicable-->{{N/A|'''N/A not applicable'''}}
|-
|}
====Acer/Gateway/Emachines====
Company founded under the name of Multitech in Taiwan in 1976, renamed to Acer or Acer Group in 1987
Order of build quality (Lowest to highest)
<pre >
Packard Bell
Aspire
Extensa
TimeLine
Travelmate
</pre >
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="2%" |Ethernet
! width="5%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->Travelmate 505 506 507 508 Series || <!--Chipset-->P2 Celeron 466Mhz || <!--IDE-->{{Yes|boots}} || <!--SATA--> || <!--Gfx-->{{Maybe|use VESA Neo Magic Magic Graph 128XD (NM2160)}} || <!--Audio-->{{No|AC97 Crystal CS}} || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->1998 minimal support but no audio etc - 506T, 506DX, 507T, 507DX, 508T
|-
| <!--Name-->TravelMate 340 342 343 345 347 || <!--Chipset-->ALi M1621 with piii || <!--IDE--> || <!--SATA--> || <!--Gfx-->Trident Cyber 9525 || <!--Audio-->{{No|ESS ES1969 Solo-1}} || <!--USB-->2 ALi OHCI USB 1.1 || <!--Ethernet-->a few have Intel e100 || <!--Wireless-->{{N/A}} || <!--Test Distro--> || <!--Comments-->2000 32bit - 340T, 341T, 342T, 342TV, 343TV, 345T, 347TV
|-
| <!--Name-->TravelMate 350 351 352 353 || <!--Chipset-->Ali with piii || <!--IDE-->{{Yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->Trident Cyber Blade DSTN/Ai1 || <!--Audio-->{{No|ali5451}} || <!--USB-->2 USB 1.1 Ali M5237 OHCI || <!--Ethernet-->e100 || <!--Wireless-->Acer InviLink IEEE 802.11b || <!--Test Distro--> || <!--Comments-->2001 32bit very limited support but no support for PCMCIA O2 Micro OZ6933 - 350T, 351TEV, 352TEV, 353TEV
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->TravelMate 610 series 611 612 613 614 || <!--Chipset-->815 P3 || <!--IDE--> || <!--SATA-->{{N/A}} || <!--Gfx-->Intel 82815 cgc || <!--Audio-->AC97 || <!--USB-->USB 1.1 || <!--Ethernet-->Intel e100 pro || <!--Wireless-->{{N/A}} || <!--Test Distro--> || <!--Comments-->2001 32bit - 610TXVi 610T 611TXV 612TX 613TXC
|-
| Aspire 3003LM || SIS AMD 3000 1.8GHz || {{yes}} || {{N/A}} || {{maybe|SIS AGP M760GX (VESA only)}} || {{yes|AC97 SIS codec}} || 3 USB 2.0 || {{yes|SIS900}} || {{no|Broadcom BCM4318 AirForce One 54g}} || Icaros 1.2.4 || 2003 sempron
|-
| Travelmate 2310 Series ZL6 || Intel Celeron M 360 1.4GHz with SiS 661MX || {{yes}} || {{N/A}} || {{maybe|SiS Mirage M661MX (VESA only)}} || {{yes|SIS SI7012 AC97 with realtek ALC203 codec speakers only}} || || {{yes|SIS900}} || {{N/A|LM version has pci card slot but no antenna}} || 2017 Icaros 2.1.1 || 2004 32bit - No USB boot option but boot from DVD - reports of wifi losing connection (isolate/remove the metallic grounding foil ends of the antennas) - 2312LM_L -
|-
| <!--Name-->Aspire 3000 3002LMi 3500 5000 || <!--Chipset-->AMD CPU W-with SIS M760 || <!--IDE--> || <!--SATA--> || <!--Gfx-->SIS 760 || <!--Audio-->SIS || <!--USB--> || <!--Ethernet-->SIS 900 || <!--Wireless-->{{No|Broadcom BCM4318 swap for Atheros}} || <!--Test Distro--> || <!--Comments-->2005 32bit
|-
| <!--Name-->Aspire 3050 5020 5050 || <!--Chipset-->AMD Single and Turion MK-36 Dual and RS480 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Use VESA - RS482M Xpress 1100 or RS485M Xpress 1150 || <!--Audio-->HD Audio Realtek ALC883 || <!--USB--> || <!--Ethernet-->8139 || <!--Wireless-->Atheros 5006G or Broadcom BCM 4318 || <!--Test Distro--> || <!--Comments-->2005 32bit MK36 gets very hot
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->TravelMate 2410 2420 2430 series || <!--Chipset-->915GM || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel Mobile 915GMS 910GML || <!--Audio-->Intel AC97 ICH6 with ALC203 codec || <!--USB-->4 USB2.0 || <!--Ethernet-->Realtek RTL-8139 || <!--Wireless-->Atheros 5005GS || <!--Test Distro--> || <!--Comments-->2005 32bit 2428AWXMi -
|-
| <!--Name-->Acer Aspire 3610 - WISTRON MORAR 3614WLMI || <!--Chipset-->Intel 915 || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Yes|Intel GMA 2D and 3D}} || <!--Audio-->{{yes|[http://www.amiga.org/forums/showpost.php?p=644066&postcount=13 AC97]}} || <!--USB--> || <!--Ethernet-->{{yes|RTL 8139 8139C+}} || <!--Wireless-->{{Maybe|Atheros AR5001X+, AR5BMB5 or Broadcom 4318}} || <!--Test Distro--> Icaros 1.2.4 || <!--Comments-->2005 32bit with good support [http://ubuntuforums.org/showthread.php?p=6205188#post6205188 wifi issues]
|-
| <!--Name-->TravelMate 2480 series 2483 WXMi (HannStar J MV4 94V) 2483NWXCi Aspire 3680, 3690 || <!--Chipset-->940GML i943 with Celeron 430 1.77GHz - 14.1" || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes| }} || <!--Gfx-->{{Yes|2D and 3D openGL 1.x - Tunnel 181 gearbox 104 scores}} || <!--Audio-->{{Yes|HD Audio with ALC883 codec playback}} || <!--USB-->{{Yes|3 USB 2.0}} || <!--Ethernet-->{{No|Marvell 88E8038 yukon sky2}} || <!--Wireless-->{{No|Atheros 5k AR5005G AR5BMB5 mini pci}} suspect laptop hardware issues || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2006 Works well shame about the internet options - noisy fan - poor battery life - no boot option for TI based mass storage sd card - Max 2GB memory - LCD Inverter Board IV12090/T-LF -
|-
| <!--Name-->TravelMate 2490 series 2492WXMi || <!--Chipset-->940GML || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Yes|Intel 945 2D and 3D tunnel 164 gearbox 105}} || <!--Audio-->{{Yes|HD Audio}} || <!--USB--> || <!--Ethernet-->{{Maybe|Broadcom BCM4401}} || <!--Wireless-->{{No|Atheros AR5005GS suspect hardware issue}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2006 32bit - 15inch screen - strange curved up at ends keyboard style - overall plastic construction - Atheros AR5005G(s) -
|-
| <!--Name-->Gateway ML6227B MA7 || <!--Chipset-->Celeron M 520 1.6Ghz with 945GM || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{Yes|945GM 2D and 3D tunnel 169 gearbox 132}} || <!--Audio-->{{No|HDA Intel with STAC9250 codec}} || <!--USB--> || <!--Ethernet-->{{No|Marvell 88E8038}} || <!--Wireless-->{{No|8187L but swap ath5k mini pcie}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2006 15.4 ultrabrite widescreen - Wifi Switch on side Fn/F2 -
|-
| <!--Name-->Acer Aspire 5630-6796 6288 BL50 || <!--Chipset-->T5200 T5500 Intel® Core™2 Duo T7200 T7400 T7600 || <!--IDE-->{{Yes| }} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Yes|Intel® GMA 950 with S-Video out with 2D and 3D}} || <!--Audio-->{{Yes|HDAudio with ALC883? codec}} || <!--USB-->{{Yes|4 USB}} || <!--Ethernet-->{{yes|Broadcom BCM4401}} || <!--Wireless-->{{No|Intel 3945abg swap for Atheros 5K}} || <!--Test Distro-->Tiny AROS || <!--Comments-->2006 - 64bit 39.1 cm (15.4" 1280 x 800) - 2 DDR2-SDRAM slots max 4GB - green mobo?? -
|-
| <!--Name-->Acer Aspire 5633WMLI BL51 || <!--Chipset-->T5500 with Intel® 945PM/GM Express || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE mode}} || <!--Gfx-->{{Yes|Nvidia Go 7300 with 2D and 3D}} || <!--Audio-->{{Yes|HD Audio with Realtek codec}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{yes|Broadcom 440x}} || <!--Wireless-->{{No|Intel 3945 swap for Atheros 5k}} || <!--Test Distro-->Tiny Aros || <!--Comments-->2007 64 bit dual core2 - 15.4 WXGA screen - ddr2 max 4gb - OrbiCam no support - ENE chipset SD card - blue mobo?? -
|-
| <!--Name-->Acer Aspire 9410 9420 || <!--Chipset-->Intel Core Duo with 945PM Express || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes| }} || <!--Gfx-->{{Yes|2D NVIDIA GeForce Go 7300 - 128 MB VRAM G72M}} || <!--Audio-->{{Yes|Intel HD audio with codec}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{Yes|rtl8169 8111 }} || <!--Wireless-->{{No|Intel 3945ABG but could swap with atheros 5k}} || <!--Test Distro-->Icaros 2.3 || <!--Comments-->2007 32bit - 17in TFT 1,440 x 900 WXGA+ - 2 ddr2 sodimm slots max 4gb -
|-
| <!--Name-->eMachines E510 series KAL10 || <!--Chipset-->Intel Celeron M 560 2.13Ghz with PM965 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel x3100 || <!--Audio-->{{Yes|Intel with codec}} || <!--USB-->Intel || <!--Ethernet-->{{No|Broadcom BCM5906M}} || <!--Wireless-->{{No|Atheros G AR5BXB63 bios issue??}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2007 32bit very budget machine with InsydeH20 bios and F10 boot menu
|-
| <!--Name-->ACER Aspire 5920 [http://tim.id.au/laptops/acer/aspire%205920g.pdf 5920G] || <!--Chipset-->Santa Rosa Core 2 Duo T7300 T7500 later T9300 with GM965 and PM965(G) Express || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Maybe|use VESA for X3100M or 8600M GS (rev a1) 9500M GT 256MB vram (G) but some AMD/ATI RV635 M86 HD 3650}} || <!--Audio-->{{No|HD Audio with realtek alc268, [https://forums.opensuse.org/t/no-sound-on-acer-aspire-5920g/32392 ALC883] or Realtek ALC1200 / alc888s codec ICH8}} || <!--USB-->{{Yes|USB2 }} || <!--Ethernet-->{{No|Broadcom BCM5787M}} || <!--Wireless-->{{unk|Intel 3945ABG 4965 or Atheros 9k AR9285}} || <!--Test Distro-->Deadwood test iso 2023-01 2023-11 || <!--Comments-->2008 64bit boot with 'noacpi' or 'noioapic' - 15.4in 1280 x 800 pixels 16:10 - BMW Designworks ‘Gemstone’ design - over 3.0kg with options for 8-cell or 6-cell batteries - 2 SODIMM DDR2 667MT/s max 4GB - synaptics touchpad -
|-
| <!--Name-->Acer A0521 Ao721 || Athlon II Neo K125 + AMD M880G || {{N/A}} || {{maybe| }} || {{maybe|ATI Radeon HD 4225 (VESA only)}} || {{No|Conexant}} || {{Maybe| }} || {{no|AR8152 l1c}} || {{unk|AR9285 ath9k}} || AspireOS 1.7 || 2006 64bit possible
|-
| <!--Name--> Extensa 5630Z || <!--Chipset-->T6600 with Intel GL40 Express || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe|IDE mode}} || <!--Gfx--> {{Yes|Intel GMA 4500M HD (2D)}} || <!--Audio--> {{Yes|HD Audio}} || <!--USB--> {{Yes|USB 2.0}} || <!--Ethernet--> {{No|Broadcom BCM 5764M}} || <!--Wireless--> {{No|RaLink RT2860}} || <!--Test Distro--> || <!--Comments-->2008 64bit
|-
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Aspire 5250 series 5253 BZ400 BZ602 || <!--Chipset-->E350 || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{no|VESA 2D for AMD HD6310}} || <!--Audio-->{{yes|HDaudio for codec Conexant CX20584}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{no|Atheros AR8151}} || <!--Wireless-->{{no|Atheros 9k AR5B97}} || <!--Test Distro--> || <!--Comments-->2011 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name-->Aspire V5 V5-121 V5121 AO725 One 725 || <!--Chipset-->AMD C-70 C70 || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{no|VESA for AMD 6290G}} || <!--Audio-->{{no|Realtek ALC269 codec}} || <!--USB-->{{yes|2 x USB2}} || <!--Ethernet-->{{no|Broadcom}} || <!--Wireless-->{{no|Broadcom}} || <!--Test Distro--> || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name-->Aspire V5-122P MS2377 || <!--Chipset-->C-70 C70 with M55, AMD A4-1250 or A6 1450 up to 1.4Ghz || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->AMD 8210 || <!--Audio-->{{unk|HDaudio with codec}} || <!--USB-->{{maybe|FCH USB EHCI OHCI}} || <!--Ethernet-->{{Maybe|rtl8169 but LAN/VGA Combo Port Cable (AK.LAVGCA 001) or MiniCP port to Acer Converter Cable (Mini CP to VGA/LAN/USB) (NP.OTH11 00C) needed}} || <!--Wireless-->{{unk|Atheros 9k AR9565}} || <!--Test Distro-->Aros One || <!--Comments-->2012 64bit but no sse4 or avx - 26w battery internal, extension possible - 11.6in 1366 x 768 ips touchscreen - 7mm hd ssd - 2gb ddr3l soldered with 1 slot free max 4GB - bios hacking needed for virtualisation -
|-
| <!--Name-->Packard Bell EasyNote TE69 TE69KB 522 || <!--Chipset-->slow E1-2500, E2-3800 2c2t Dual or A4-5000 4c4t Quad both soldered BGA769 (FT3) on Hudson-2 FCH || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe|Use IDE mode}} setting AHCI to IDE mode - boots if UEFI set to Legacy || <!--Gfx-->{{Maybe|VESA 2D for ATI Radeon 8120 8240, 8320, 8330 or 8280 islands}} || <!--Audio-->{{Yes|HDAudio with ALC282 0x10ec, 0x0282 codec but not HDMI}} || <!--USB-->{{Yes|Bios, Boot, set Boot mode to Legacy, nothing from USB3}} || <!--Ethernet-->{{No|Atheros AR8171 AR8175 or Broadcom BCM57780}} || <!--Wireless-->{{unk|Atheros AR9565 0x1969 0x10a1}} || <!--Test Distro-->Aspire OS Xenon and AROS One 1.6 usb || <!--Comments-->2013 64bit with sse4.1 and AVX - 15.6in washed out screen big netbook - Boots with noacpi after using F2 to enter EFI firmware and f12 boot device - 2 ddr3 sodimm slots max 16Gb -
|-
| <!--Name-->ASPIRE Acer Aspire ES1-520 521 522 Series N15C4 ES1-523 || <!--Chipset-->AMD AMD E1-7010, A8-7410 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{partial|VESA for RADEON R5}} || <!--Audio-->{{no|Realtek ALC 233 or CX20752 HD AUDIO CODEC}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{no|Atheros AR8151 Gigabit or Broadcom 590x}} || <!--Wireless-->{{no|Realtek RTL8187 or 8812BU}} || <!--Test Distro-->Aros One || <!--Comments-->2015 64bit with sse4.1 and AVX - 2 ddr3l slots - keyboard connected to top case -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Nitro 5 an515-42 || <!--Chipset-->Ryzen 2500u || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->AMD rx560x || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2018 64bit -
|-
| <!--Name-->aspire 3 A315-41 || <!--Chipset-->Ryzen 2500u || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->AMD Vega || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2018 64bit -
|-
| <!--Name-->swift 3 sf315-41 || <!--Chipset-->Ryzen 2500u || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->AMD Vega || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2018 64bit -
|-
| <!--Name-->Acer Aspire 3 A315-23 || <!--Chipset-->AMD Ryzen 3020e, r3 3200u || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D for AMD || <!--Audio-->{{unk|HDAudio with codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe| }} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2019 64bit -
|-
| <!--Name-->Aspire 3, 5 A515-44-R0ZN || <!--Chipset-->AMD Ryzen 5 4500u || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D for AMD Radeon || <!--Audio-->{{unk|HDAudio with ALC codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2020 64bit - 14in or 15.6" 1080p - 19v round charging - [https://www.youtube.com/watch?v=vr0tC3QJWxk repair], 4gb soldered with 1 ddr4 sodimm slot -
|-
| <!--Name-->Swift 3 SF314-42 series N19C4 , Swift SF315-4 || <!--Chipset-->Ryzen 5 4500U, 7 4700U|| <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D for AMD || <!--Audio-->{{unk|HDAudio with codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2020 64bit 1080p - small round ac 19v 3.42A or usb-c - mobo FH4FR LA-J731P -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->Acer Swift 3 SF314-43, Swift SF315-41 || <!--Chipset-->Ryzen 7 5700U || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D for AMD || <!--Audio-->{{unk|HDAudio with codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2021 64bit 1080p - small round ac or usb-c -
|-
| <!--Name-->Aspire 5 A515-45 || <!--Chipset-->r7 5700U || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->AMD || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2021 64bit - 15.6in 1080p - asus round ac -
|-
| <!--Name-->Aspire 5 A515-47 || <!--Chipset-->ryzen 5 5625U, || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->AMD || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2021 64bit - 15.6in 1080p - asus round ac -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
====Asus====
[[#top|...to the top]]
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->Asus L8400-K Medion MD9467 || <!--Chipset-->Intel desktop 850MHz || <!--IDE--> || <!--SATA--> || <!--Gfx-->S3 Savage MX || <!--Audio-->{{No|ESS allegro 1988}} || <!--USB--> || <!--Ethernet-->Realtek 8139 || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2001 32bit
|-
| <!--Name-->Asus L2000 L2400 L2D Series Medion 9675 || <!--Chipset-->Athlon 4 mobile || <!--IDE--> || <!--SATA--> || <!--Gfx-->use vesa sis630 || <!--Audio-->{{No|sis7018}} || <!--USB--> || <!--Ethernet-->sis900 || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2002 32bit
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->x51R X51RL || <!--Chipset-->Duo T2250 T2330 with RS480 || <!--IDE--> || <!--SATA-->{{N/A}} || <!--Gfx-->{{Maybe|use VESA RC410 [Radeon Xpress 200M]}} || <!--Audio-->{{Yes|HD with codec}} || <!--USB-->{{Maybe|boots and detects}} || <!--Ethernet-->{{Yes|RTL-8139}} || <!--Wireless-->{{No|Atheros AR5006EG AR5111 ath5k AzureWave AW-GE780 - could be ATI Chipset}} || <!--Test Distro-->Icaros 2.2, deadwood 2021, || <!--Comments-->2003 32bit 15.4 WXGA - 19v barrel - ESC boot select - F2 bios -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Asus R2H Ultra Mobile PC UMPC || <!--Chipset-->Celeron 900Mhz 910GML || <!--IDE--> || <!--SATA--> || <!--Gfx-->GMA900 || <!--Audio-->Ac97 ALC880 || <!--USB--> || <!--Ethernet-->realtek 8169 8101e || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2004 32bit [https://www.youtube.com/watch?v=Jm4fOrqyj3g boots]
|-
| <!--Name-->Asus A3 series A3F Ergo Ensis 211 RM || <!--Chipset-->P-M 1.6GHz to Core Duo with 950 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel 945 || <!--Audio-->Ac97 ALC655 || <!--USB--> || <!--Ethernet-->Realtek 8100CL 10/100 || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2004 32bit only
|-
| <!--Name-->Z33 || <!--Chipset-->915 || <!--IDE--> || <!--SATA--> || <!--Gfx-->915GM || <!--Audio-->HD Audio ALC880 || <!--USB--> || <!--Ethernet-->Realtek 8139 || <!--Wireless-->Intel 2915ABG || <!--Test Distro--> || <!--Comments-->2005 32bit Z33A Z33AE N5M N5A
|-
| Z70A Z70V Z70Va M6A z7000 z7000a || i915 + ICH6 || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{yes|mobile 915GML}} || <!--Audio-->{{no|ICH6 HD Audio}} || <!--USB-->{{yes|USB2.0}} || <!--Ethernet-->{{no|Marvell 88E8001}} || {{no|Intel PRO 2200BG Fn / F2}} || Icaros 1.3 || 2005 32bit
|-
| [http://www.progweb.com/en/2010/09/linux-sur-un-portable-asus-a6jm/ A6jm] A6JC || 945GM || IDE || SATA || {{yes|nVidia GeForce Go 7600 G70}} || {{no|HD Audio}} || {{yes|USB}} || {{yes|RTL8111 8168B}} || {{no|Intel 3945 ABG}} || Icaros 1.2.4 || 2006 32bit only
|-
| <!--Name-->F3Jc || <!--Chipset-->945PM || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->G72M Quadro NVS 110M, GeForce Go 7300 || <!--Audio-->D audio || <!--USB--> || <!--Ethernet-->realtek 8169 8111 || <!--Wireless-->Intel 3945 || <!--Test Distro--> || <!--Comments-->2007 32bit -
|-
| <!--Name-->X50GL F5GL || <!--Chipset-->T5800 with 965 || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe}} || <!--Gfx-->{{Maybe|use VESA 2d - Nvidia 8200M G84 runs hot}} || <!--Audio-->{{No|HD Audio MCP79 with codec}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No|MCP79}} || <!--Wireless-->{{No|Atheros AR5B91 AW-NE77}} || <!--Test Distro-->Icaros 2.2 || <!--Comments-->2008 64bit not much support no display with nouveau - 19v barrel - ddr2 max 4gb -
|-
| <!--Name-->ASUS G50 & G51 series G50V G50Vt G51V G51VX G51J G51Jx G50VT X1 X5 ROG || <!--Chipset-->AMD64 with MCP71 || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes}} || <!--Gfx-->nVidia GeForce 9800M GS (G94M) up to GT200 [GeForce GTX 260M] (G92M) || <!--Audio-->Nvidia HD Audio with codec || <!--USB--> || <!--Ethernet-->{{No|Atheros L1C atl1c}} || <!--Wireless-->Atheros G or Intel || <!--Test Distro-->Icaros 2.3 || <!--Comments-->2009 64bit not all GPUs are failing but a much higher % failing early, 8x00 and 9x00 G84, G86, G92, G94, and G96 series chips dying - ddr2 max 4gb -
|-
| <!--Name-->M50V M50 series || <!--Chipset-->Intel Core 2 Duo P8400 or T9400 with Intel PM45 ICH9 || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|BIOS set to compatibility IDE mode}} || <!--Gfx-->NVIDIA GeForce 9600M GS or 9650M GT || <!--Audio-->HDAudio with Realtek ALC663 || <!--USB-->USB2 || <!--Ethernet-->{{Yes|rtl8169 realtek 8169 8111C}} || <!--Wireless-->{{unk|Intel 5100 or Atheros AR928X}}|| <!--Test Distro-->AROS One 2.0 USB || <!--Comments-->2009 64bit - 15.40 inch 16:10, 1680 x 1050 glossy - the "Infusion" design - heavy 3kg - ddr2 ram max 4gb -
|-
| <!--Name-->Series F9 F9E F9dc F9f F9j F9s || <!--Chipset-->965GM || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{maybe|Vesa}} || <!--Audio-->{{yes|HD Audio ALC660 playback}} || <!--USB-->{{yes|works}} || <!--Ethernet-->{{yes|RTL8169 }} || <!--Wireless-->{{no|intel 3495 not working}} || <!--Test Distro-->Icaros 1.41 || <!--Comments-->2009 64bit - ddr2 max 4gb -
|-
| P52F SO006X || i3-370M || IDE || SATA || {{yes|nVidia G92 [GeForce 9800 GT] (2D)}} || {{no|Intel HD Audio}} || {{yes|2 USB2.0}} || {{no|Atheros AR8121 AR8113 AR8114 (l1e)}} || {{dunno}} || Icaros 1.3 || 2010 64bit - ddr3 slot -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Asus
* X53U MB Ver K53U or K52U Asus K53U MB Ver K53U
* A53U XT2 X53B MB ver: K53BY (compal)
|| <!--Chipset-->Slow atom like speed E-350 (2011), E-450 (2011) on AMD M780G, much slower C-50 C50 (2012), C-60 C60 on the AMD A50M dark brown plastic build || <!--IDE-->{{N/A|}} || <!--SATA-->{{yes|Set IN Bios IDE MODE}} || <!--Gfx-->{{Maybe|use VESA ATi 6310M, 6320M later 6250M or 6290M}} || <!--Audio-->{{Yes|HD audio with alc269 codec Altec Lansing® Speakers}} || <!--USB-->{{Yes|3 x USB2}} || <!--Ethernet-->{{Unk|rtl8169 with RTL8111 phy}} || <!--Wireless-->{{unk|Atheros half height ar9285}} || <!--Test Distro-->2016 Icaros 2.1.2 and 2018 AROS One 1.6 USB || <!--Comments-->2011 64bit does not support AVX or SSE 4.1 - 15.6in 1368 x 768 dull 50% srgb screen - f2 bios setup, esc boot drive - 5200 or 7800 mAh battery covers ASUS K53S K53E X54C X53S K84L X53SV X54HR K53F X53U laptops - 2 DDR3L slots max 8Gb - 19v barrel 5.5 / 2.5 mm -
|-
| <!--Name-->Asus K53T, Asus A53Z X53Z
|| <!--Chipset-->AMD A4-3305M on AMD M780G, A6-3420M dark brown plastic build || <!--IDE-->{{N/A|}} || <!--SATA-->{{yes|Set IN Bios IDE MODE}} || <!--Gfx-->{{Maybe|VESA 2D for AMD 6520G, 7670M}} || <!--Audio-->{{Yes|HD audio with codec}} || <!--USB-->{{Yes|3 x USB2}} || <!--Ethernet-->{{Yes|rtl8169 with RTL8111 phy}} || <!--Wireless-->{{No|Atheros half height}} || <!--Test Distro-->AROS One USB || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 - 15.6in 1368 x 768 dull 50% srgb screen - f2 bios setup, esc boot drive - 2 DDR3L slots max 8Gb - 19v barrel 5.5 / 2.5 mm - Altec Lansing® Speakers -
|-
| <!--Name-->X55U X401U X501U 1225B || <!--Chipset-->slow C-60 C60, C-70 C70 or E1 1200 E2 1800 || <!--IDE--> || <!--SATA--> || <!--Gfx-->6290G || <!--Audio-->{{No| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->Realtek 8111 8169 || <!--Wireless-->{{unk| Atheros AR9485}} || <!--Test Distro--> || <!--Comments-->2013 64bit does not support AVX or SSE 4.1 - 11.6" display - ram soldered -
|-
| <!--Name-->Asus A43TA A53TA K53TA XE2 A73T || <!--Chipset-->AMD A4-3300M, A6 3400M (laptop chip) || <!--IDE-->{{N/A|}} || <!--SATA-->{{yes|Set IN Bios IDE MODE}} || <!--Gfx-->{{Maybe|use VESA AMD Radeon HD 6520G Integrated + HD 6470M (1GB GDDR3)}} || <!--Audio-->{{yes| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{Unk|}} || <!--Wireless-->{{No|Atheros}} || <!--Test Distro--> || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 - f2 bios setup, esc boot drive -
|-
| <!--Name-->X102BA || <!--Chipset-->Llano E1 1200 || <!--IDE-->{{N/A}} || <!--SATA-->{{yes|ide bios setting}} || <!--Gfx-->Radeon HD 8180 || <!--Audio-->{{No| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->RTL8101E RTL8102E || <!--Wireless-->{{unk| Qualcomm Atheros AR9485}} || <!--Test Distro--> || <!--Comments-->2013 64bit does not support AVX or SSE 4.1 - 10.1” Touchscreen - special asus 45w ac adapter -
|-
| <!--Name-->K55N, K75DE || <!--Chipset-->AMD a6 4400M A8 4500M || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->AMD 7640G || <!--Audio-->HD Audio with ALC codec none through ATi Trinity HDMI || <!--USB-->{{maybe| }} || <!--Ethernet-->rtl8169 || <!--Wireless-->{{unk| Atheros AR9485}} || <!--Test Distro--> || <!--Comments-->2013 64bit does support AVX or SSE 4.1 - 17.3-inch -
|-
| <!--Name-->X452EA X552EA F552E || <!--Chipset-->AMD E1 2100 or A4 5000M A8 4500M A10 4600M with A || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{Maybe|use VESA for AMD ATI Sun XT Radeon HD 8330 8670A 8670M 8690M}} || <!--Audio-->{{Yes|AMD FCH Azalia rev 02 with ALC898 codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{{Yes|Realtek RTL8111 8168 8411}} || <!--Wireless-->{{unk|Atheros AR9485}} || <!--Test Distro-->2016 Icaros 2.1 || <!--Comments-->2013 64bit may support avx kabini trinity -
|-
| <!--Name-->Asus X555Y || <!--Chipset-->AMD A6-7210 A8-7410 || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|2.5" and mSATA form factors using SATA Rev 3.0 interface }} || <!--Gfx-->{{Maybe|VESA 2D for AMD R5}} || <!--Audio-->{{unk|HD Audio codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{Maybe|rtl8169 Realtek}} || <!--Wireless-->{{no| }}Realtek || <!--Test Distro--> || <!--Comments-->2015 64bit does support AVX or SSE 4.1 - 4gb soldered with 1 ddr3 slot - silver-colored plastic - internal battery -
|-
| <!--Name-->Asus X555B X555DG X555S X555U X555YI X555LAB || <!--Chipset-->Intel Core i5-4210U to || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|2.5" and mSATA form factors using SATA Rev 3.0 interface }} || <!--Gfx-->{{Maybe|VESA 2D for Intel}} || <!--Audio-->{{No|HDAudio with coxenant and realtek alc codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{Maybe|Realtek}} || <!--Wireless-->{{no| }}Realtek || <!--Test Distro--> || <!--Comments-->2015 64bit does support AVX or SSE 4.1 - 4gb soldered with 1 ddr3 slot - silver-colored plastic - internal battery -
|-
| <!--Name-->Asus X555D || <!--Chipset-->AMD A10-8700P || <!--IDE-->{{N/A}} || <!--SATA-->{{unk|2.5" and mSATA form factors using SATA Rev 3.0 interface }} || <!--Gfx-->{{Maybe|VESA 2D for AMD R6}} || <!--Audio-->{{unk|HD Audio codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|Realtek}} || <!--Wireless-->{{No|Realtek}} || <!--Test Distro--> || <!--Comments-->2016 64bit - 15.6in 1366 x 768 - 4gb soldered with 1 ddr3 slot - silver-coloured plastic - internal battery - keyboard swap problematic -
|-
| <!--Name-->ASUS X555Q || <!--Chipset-->AMD® Bristol Ridge A10-9600P 7th Gen, A12-9720p || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|2.5" and mSATA form factors using SATA Rev 3.0 interface}} || <!--Gfx-->{{Maybe|R5 + Radeon™ R6 M435DX Dual Graphics with VRAM GCN 3}} || <!--Audio-->{{unk| }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no|Realtek 8821AE}} || <!--Test Distro--> || <!--Comments-->2017 64bit - FHD 15.6 1920x1080 - 37W battery internal - 4gb soldered with 1 ddr3 slot - internal battery -
|-
| <!--Name-->ASUS M509ba || <!--Chipset-->AMD A9-9425 || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|2.5" and mSATA form factors using SATA Rev 3.0 interface}} || <!--Gfx-->{{Maybe|Vesa 2d for RADEON R5}} || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{No| }} || <!--Test Distro--> || <!--Comments-->2020 64bit - 15.6in 1366 x 768 - 1 ddr4 sodimm slot max 16Gb - 19VDC 2.37A Max 45W 4.0mm x 1.35mm - keyboard swap problematic -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->ExpertBook P1410, ASUS ExpertBook P1 P1510CD, Expertbook Y1511CD || <!--Chipset-->Ryzen 3 3200U, Ryzen 5 3500U || <!--IDE-->{{N/A}} || <!--SATA-->Nvme || <!--Gfx-->{{Maybe|Vesa 2d for AMD}} || <!--Audio-->{{unk|HDaudio with codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{No| }} || <!--Test Distro--> || <!--Comments-->2019 64bit 14in or 15.6in 768p to 1080p - keyboard swap problematic - 19V 3.42A asus barrel connector 4.0MM X 1.35MM 4phi -
|-
| <!--Name-->ASUSTeK ASUS EXPERTBOOK L1 L1400CDA, L1500CDA - 19v 3.42a 4.5phi Barrel with centre pin Outer 4.5mm Inner 3mm asus special untested EXA1203XH, EXA1203YH, EXA1208UH, PA-1650-30, PA-1650-78, PA-1650-93, ADP-65GD B, ADP-65DW B (Euro) || <!--Chipset-->'''tested''' Ryzen 5 3500U - '''untested''' Ryzen 3 3200U, 3250U || <!--IDE-->{{N/A}} || <!--SATA-->{{no|1 Nvme m.2 slot will not boot with sata3 m.2, optional 1 sata hdd with ribbon cable, no dvd drive}} || <!--Gfx-->{{Maybe|Vesa 2d for AMD vega 3, 8}} || <!--Audio-->{{unk|HDaudio 0x15de 0x15e3 with ALC256 codec 0x10ec 0x0256}} || <!--USB-->{{maybe|USB3 1 usb-c and 3 usb-a }} || <!--Ethernet-->{{maybe|rtl8169 Realtek RTL8111HSH-CG }} || <!--Wireless-->{{No| }} || <!--Test Distro-->3500U with AROS One 64bit 1.2 usb installed to m.2 sata on another machine || <!--Comments-->2019 64bit 14in or 15.6in 1080p - keyboard swap problematic - up to 8Gb ddr4 sodimm soldered on board and 1 slot - micro sd card slot on some models - 42Whr B31N1915 C31N1915 C31N2204 - hold down F2 and press power for bios setup -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
==== Dell ====
[[#top|...to the top]]
Order of build quality (Lowest to highest)
<pre >
Studio
Inspiron
Vostro
XPS
Alienware
Precision
Latitude
</pre >
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="10%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="5%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->Latitude CP 233GT, CPi d233xt d266xt D300XT a366xt, CPt S400GT S500GT S550GT S600GT S700ST, CPt C333GT C400GT || <!--Chipset-->Neo Magic || <!--IDE--> || <!--SATA--> || <!--Gfx-->Use VESA - Neo magic Magic Media 2160 2360 256ZX || <!--Audio-->{{No|crystal pnp 4237b or magic media 256zx sound nm2360}} || <!--USB-->USB 1.1 || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{N/A}} || <!--Test Distro--> || <!--Comments-->1998 32bit Low-Density 16-chip 144p 144-pin 32Mx64 3.3V SODIMM -
|-
| <!--Name-->Dell Latitude CPx H450GT H500GT H Series, CPt V433GT V466GT V600, Inspiron 5000 || <!--Chipset-->Intel 440BX with Pentium 3M (CPx) or Celeron (CPt) || <!--IDE-->{{{Yes| }} || <!--SATA-->{{N/A| }} || <!--Gfx-->{{Maybe|Use Vesa - ATi Rage Pro Mobility M1}} || <!--Audio-->{{No|ESS ES1978 Maestro 2E Canyon 3D}} || <!--USB-->{{Yes|1 slot 1.1 only}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{N/A| }} || <!--Test Distro-->NB May 2013 || <!--Comments-->1998 32bit - 3 pin PA-6 PA6 power adapter plug - CDROM DVD Cxxx family media bay accessories untested
|-
| <!--Name-->Latitude C500 C600 (Quanta TM6) Inspiron 4000 7500, CPx J Series || <!--Chipset-->440BX ZX/DX || <!--IDE-->{{yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{partial|ATI Rage 128Pro Mobility M3 (VESA only)}} || <!--Audio-->{{no|ES1983S Maestro 3i}} || <!--USB-->{{yes|USB 1.1 only}} || <!--Ethernet-->{{N/A|some models had mini pci e100}}|| <!--Wireless-->{{N/A|a few came with internal antenna wiring}} || <!--Test Distro--> || <!--Opinion-->1999 square 3 pin charger PA9 PA-9 - C/Dock II untested - C/Port untested - Parallel to Floppy cable untested - CPx J600GT J650GT J700GT J750GT J800GT J850GT
|-
| <!--Name-->Latitude C510 C610 Insprion 4100 PP01L 2600 || <!--Chipset-->i830 and 1GHz+ P3-M || <!--IDE-->{{yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{partial|use VESA - ATI Radeon Mobility M6}} || <!--Audio-->{{No|AC97 CS4205}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{yes|3Com Etherlink}} || <!--Wireless-->{{Maybe|internal antenna wiring for an Atheros mini pci card}} || <!--Test Distro--> || <!--Opinion-->2000 poor build quality - hard to find in good working order
|-
| <!--Name-->Latitude C400 || <!--Chipset-->Intel 830 || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|use VESA Intel 830 CGC}} || <!--Audio-->{{No|ac97 Crystal 4205}} || <!--USB--> || <!--Ethernet-->{{Yes|3Com 3c905C TX/TX-M}} || <!--Wireless-->{{N/A| }} || <!--Test Distro--> || <!--Comments-->2000 Slim for the time - no media bays
|-
| <!--Name-->Latitude C640 (Quanta TM8) C840 Inspiron 8k2 8200 i8200 precision m50 || <!--Chipset-->P4M with 845EP || <!--IDE--> || <!--SATA--> || <!--Gfx-->use VESA if ATi - use nouveau if 64mb Nvidia Gforce 4 440 Go || <!--Audio-->AC97 CS4205 || <!--USB--> || <!--Ethernet-->3com 905c || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2001 C640 had one fan so was noisy and hot - C840 had 2 fans and ran slightly cooler but fan noise louder
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| Latitude D400 || P-M 82845 || {{yes|82801 ide}} || {{N/A}} || {{partial|VESA only}} || {{yes|AC97 Audio playback only}} || {{maybe|USB 2.0}} || {{maybe|PRO 100 VM (KM)}} || {{no|BCM4318 AirForce one 54g replace with atheros 5k mini pci}} || <!--Test Distro--> Icaros 1.2.4 || 2003 32bit might boot from USB stick but won't boot from USB-DVD - no sd card slot - power plug style -
|-
| Latitude D500 / D505 PP10L, Inspiron 510m
|| 855GME
* revA00
* revA03
* revA06
| {{yes|IDE but needs the Dell adapter}} || {{N/A}} || {{partial|855GM Gfx (VESA only)}} || {{Yes|Intel AC97 with IDT STAC 9750 codec playback head phones only}} || {{maybe| }} || {{yes|Intel PRO 100 VE}} || {{no|Broadcom BCM4306 but exchange with atheros g in panel on laptop bottom}} || <!--Test Distro-->2016 Icaros 2.1.1 || 2003 - 14 / 15 inch XGA 4:3 screen - plastic build - no sd card slot - boots from bay optical drive - not powering on/off with ac adapter is a [http://www.geekzone.co.nz/forums.asp?forumid=37&topicid=30585 mobo fault of PC13 SMT 1206 ceramic cap hot] suggest [http://www.die4laser.com/D505fix/ 0.1uF 50V instead] - pc2700 333Mhz ram 1Gb max -
|-
| Latitude D505 (some) || VIA VT8237 VX700 || {{yes|IDE}} || || {{partial|VESA 2d on ATI RV350 Radeon 9550}} || {{no|VIA AC97 with codec}} || {{maybe|VIA USB glitchy}} || {{yes|VIA VT6102 Rhine-II}} || {{no|Intel 2200g Calexico2}} || <!--Test Distro--> || 2003 32bit little support - diagnostics pressing holding the Fn key, press the Power ON button (battery removed). Check the LEDs pattern - cmos battery behind flap in laptop battery slot -
|-
| <!--Name-->Inspiron 1000 || <!--Chipset-->SIS || <!--IDE--> || <!--SATA-->{{N/A}} || <!--Gfx-->{{maybe|use VESA SIS}} || <!--Audio-->{{Yes|AC97 SIS with AD1981B codec playback}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{Yes|SIS 900 but}} || <!--Wireless-->{{N/A}} || <!--Test Distro-->2016 Icaros 2.1 || <!--Comments-->2004 32bit [https://forum.level1techs.com/t/my-time-with-icaros-desktop-and-what-i-am-doing-as-a-dev-contributor-also-some-other-shit/113358 aremis using it]
|-
| <!--Name-->Inspiron 1100 PP07L || <!--Chipset-->845 || <!--IDE-->{{Yes| }} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Maybe|use VESA Intel 845G}} || <!--Audio-->{{Yes|AC'97 playback}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{Maybe|Broadcom 4401}} || <!--Wireless--> || <!--Test Distro-->Icaros 1.5 || <!--Comments-->2004
|-
| <!--Name-->Inspiron 8500 5150 || <!--Chipset-->P4 855GM || <!--IDE-->{{Yes| }} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Yes|Nvidia 5200 Go - VESA if intel gfx}} || <!--Audio-->{{Yes|MCP AC97 with SigmaTel 9750}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{Yes|Broadcom 440x}} || <!--Wireless-->{{No|Broadcom 4306 rev 02 use Atheros Mini PCI}} || <!--Test Distro-->Icaros 2.3 || <!--Comments-->2004 32bit P4 runs well but hot
|-
| Latitude X300 PP04S small, slim and light case
|| 855GME
* revA00 Intel ULV 1.2 Ghz
* revA01 Intel ULV 1.4Ghz
| {{yes|IDE internal and will boot cd/dvd through dock PR04S}} || {{N/A}} || {{partial|855GM Gfx (VESA only)}} || {{Yes|Intel AC97 with STAC 97xx codec but no audio out of the dock}} || {{maybe|works but dock usb ports and usb DVD PD01S not detected}} || {{No|Broadcom BCM5705M gigabit}} || {{no|Broadcom BCM4306 later intel - replace with atheros in the underside}} || <!--Test Distro-->2016 Icaros 2.1.1, 2020 AROS One 1.6 usb, || 2003 12.1" 1024 x 768 - 19.5v PA-10 or PA-12 dell - ACPI works but bad s3 ram suspend sleep - no sd card boot - 1Gb max sodimm ddr 2700
|-
| <!--Name-->Latitude D600 (Quanta JM2) PP05L - 600m
|| <!--Chipset-->82855 PM i855
* reva00
* revA01
* revA02
* revA03
* revA04
| <!--IDE--> {{yes}} || <!--SATA--> {{N/A}} || <!--Gfx-->{{Maybe|Use VESA - ATI Radeon RV250 Mobility FireGL 9000}} || <!--Audio-->{{Yes|AC97 - STAC 9750}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{no|Broadcom BCM5705}} || <!--Wireless-->{{no|Intel 2100 or Broadcom BCM4306 - swap for Atheros panel in base}} || <!--Test Distro-->2011 Icaros 1.3 and [http://www.amiga.org/forums/archive/index.php/t-62187.html 1.4.1 and 2016 2.1.1] || <!--Opinion-->2003 32bit 14inch using pc2100 memory with Caps light blinking is usually a memory error - Dell D505 D600 power up pressing the case docking port -
|-
| <!--Name-->Latitude D600 (Quanta JM2) || <!--Chipset-->82855 PM i855 || <!--IDE--> {{yes}} || <!--SATA--> {{N/A}} || <!--Gfx-->{{Yes|2D only vidia NV28 GeForce4 Ti 4200 Go 5200 Go 5650 Go}} || <!--Audio-->{{Yes|AC97 - STAC 9750}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{no|Broadcom BCM5705}} || <!--Wireless-->{{no|Broadcom BCM4306 mini pci - swap for Atheros}} || <!--Test Distro--> Icaros 1.3 and [http://www.amiga.org/forums/archive/index.php/t-62187.html 1.4.1] || <!--Opinion-->2003 32bit 14" - solder joints on the bios chip (press down f7/f8 keys) - RAM clean with eraser - memory cover plate maybe apply some pressure -
|-
| <!--Name-->D800 (Compal LA-1901) || <!--Chipset-->Intel 855 || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio-->AC97 || <!--USB-->{{maybe| }} || <!--Ethernet-->Broadcom 570x || <!--Wireless-->Broadcom 4309 || <!--Test Distro--> || <!--Comments-->2004 32bit - trackpoint type pointing device -
|-
| <!--Name-->D800 || <!--Chipset-->Intel 855 || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{No|Nvidia }} || <!--Audio-->AC97 || <!--USB-->{{maybe| }} || <!--Ethernet-->Broadcom 570x || <!--Wireless-->Broadcom 4309 || <!--Test Distro--> || <!--Comments-->2004 32bit 15inch 39cm
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Inspiron 1200 2200 PP10S Latitude 110L m350 1.3Ghz || <!--Chipset-->Intel 915GM || <!--IDE--> {{yes|UDMA boots cd or DVD and installs to HDisk}} || <!--SATA--> {{N/A}}|| <!--Gfx-->{{yes|Intel GMA900 (2D and 3D openGL 1.x) Gearbox 56}} || <!--Audio-->{{yes|Intel AC97 playback only}} || <!--USB-->{{maybe|USB 2.0}} || <!--Ethernet-->{{yes|Intel PRO 100 VE}} || <!--Wireless-->{{no|BroadCom BCM4318 - swap for Atheros mini PCI in base panel}} || <!--Test Distro-->Icaros 1.4.5 || <!--Comments-->2005 single core 32bit 14" 4:3 1024 768 XGA screen - heavy 6 lbs - PA16 barrel 19V 3.16A AC adapter - battery life 4cell 29WHr lasts 2 hours - 256mb soldered with 1 ddr pc2100 sodimm 1gb max -
|-
| <!--Name-->Inspiron 1300 business B130 home PP21L Latitude 120L B120 by Compal - Inspiron 630m || <!--Chipset-->Intel Celeron M360 1.4GHz, M370 1.50 GHz, M380 1.73GHz || <!--IDE-->{{Yes|boots cd or DVD and installs to HDisk}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Yes|GMA 915 2D and 3D openGL 1.x tunnel 172 gearbox 70}} || <!--Audio-->{{Yes|HD Audio playback ear phones only}} || <!--USB-->{{maybe|works but waiting boot fail with AROS One usb version}} || <!--Ethernet-->{{Yes|Broadcom 440x}} || <!--Wireless-->{{No|intel 2200 or BCM4318 swap for Atheros mini pci underside - one antenna lead for main wifi}} || <!--Test Distro-->2016 Icaros 2.1.2, 2020 AROS One 1.6 usb, || <!--Comments-->2005 32bit single core - 14.1″ XGA 4:3 or 15.4" WXGA wide 1280 x 800 matte - ddr2 sodimm ram 2gb max - PA-16 19v psu tip 7.4mm * 5mm - f10 boot select f1 f2 bios
|-
| Latitude X1 PP05S || PP-M GMA915 rev A00 1.1GHz non-pae || {{yes|ide 1.8in zif/ce under keyboard}} || {{N/A}} || {{Maybe|Vesa for Intel 915GM}} || {{yes|AC97 6.6 playback only with STAC codec}} || {{maybe|USB 2.0 but partial boot to blank screen}} || {{No|Broadcom 5751}} || {{no|Intel 2200BG - swap for Atheros mini pci under keyboard palm rest - disassembly of all laptop}} || <!--Test Distro-->Icaros 2.3 dvd iso image virtualbox'd onto usb, Aros One 1.5 and 1.8 usb (2022) || 2005 32bit 12.1" 4:3 1024 x 768 - sd slot not bootable - 256mb soldered to board and 1 sodimm max 1GB ddr2 under keyboard - F12 bios boot F2 - pa-17 pa17 19v octagonal psu port
|-
| Latitude D410 PP06S
*rev A00
*A01, A02
*A03
|| GMA915 1.6GHz Pentium® M 730, 1.7GHz, 750 1.86GHz & 760 2.0GHz, 770 2.13GHz || {{yes|caddy and adapter needed 2.5" - remove hdd and write}} || {{N/A}} || {{Yes|Intel 915GM 2D and 3D OpenGL 1.3 tunnel 170 and gearbox 75}} || {{yes|AC97 playback only with STAC 9751 codec}} || {{maybe|works but will not boot from USB-DVD or AROS One 1.5 usb version}} || {{No|Broadcom 5751}} || {{no|Intel 2915ABG or later 2200BG - swap for Atheros mini pci under keyboard}} || <!--Test Distro-->2015 Icaros 1.4, 2016 2.1.1 and AROS One 1.5 usb, || 2005 32bit 12.1" 4:3 1024 x 768 - no sd card slot - PR06S dock base
|-
| <!--Name-->Latitude D510 (Quanta DM1) || <!--Chipset-->915GM socket 479 || <!--IDE--> {{N/A}} || <!--SATA--> {{partial|IDE mode}}|| <!--Gfx-->{{yes|Intel GMA 915 2D and 3D}} || <!--Audio-->{{Yes|AC97 STAC 975x}} || <!--USB--> {{maybe|USB 2.0}} || <!--Ethernet-->{{no|Broadcom BCM5751}} || <!--Wireless-->{{no|Intel PRO Wireless 2200BG swap Atheros mini pci in base}} || <!--Test Distro--> || <!--Comments-->2005 14.1" 32bit single core Intel Celeron M 1.6GHz Pentium M 730 1.73Ghz - squarish 3:2 - issues with 3rd party battery 4 quick flashes of red led with 1 final green
|-
| <!--Name-->Latitude D610 (Quanta JM5B) PP11L
|| <!--Chipset-->910GML 915GM with mobile 1.6 to 2.26ghz
* Rev A0x
* Rev A0x
* Rev A07 1.73Ghz
| <!--IDE--> {{N/A}} || <!--SATA--> {{partial|IDE mode}}|| <!--Gfx-->{{yes|Intel GMA 915 2D and 3D tunnel 174 gearbox 74}} || <!--Audio-->{{yes|Intel AC97 speaker head phones playback only with stac codec}} || <!--USB--> {{maybe|USB 2.0}} || <!--Ethernet-->{{no|Broadcom BCM5751}} || <!--Wireless-->{{no|Intel 2200BG or Broadcom mini pci under keyboard, swap wifi card for atheros 5k}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2005 32bit 14" 1024 x 768 - very noisy clicky trackpad buttons - one dimm slot under keyboard and other in underside 2GB 533Mhz 667Mhz DDR2 max -
|-
| <!--Name-->Latitude D610 (Quanta JM5B) 0C4717 REV A05, 0K3879 REV.A00 || <!--Chipset-->915GM || <!--IDE--> {{N/A}} || <!--SATA--> {{partial|IDE mode}}|| <!--Gfx-->{{Maybe|Use VESA 2d - Ati X300 no radeon 2d}} || <!--Audio-->{{yes|Intel AC97}} || <!--USB--> {{maybe|USB 2.0}} || <!--Ethernet-->{{no|Broadcom NetXtreme 57xx Gigabit replace with Atheros 5k}} || <!--Wireless-->{{no|Intel PRO Wireless 2200BG mini pci use Atheros 5k}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2005 32bit 14" 1024 x 768 - very noisy clicky trackpad buttons - 19.5v psu
|-
| <!--Name-->Latitude D810 (Quanta ) || <!--Chipset-->915GM || <!--IDE-->{{Yes| }} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Maybe|Use VESA 2d - Ati X300 RV370 M22 later x600}} || <!--Audio-->{{yes|Intel AC97 stereo playback only idt 9751 codec}} || <!--USB--> {{maybe|USB 2.0 but no boot from usb on 1.5}} || <!--Ethernet-->{{no|Broadcom NetXtreme 57xx Gigabit}} || <!--Wireless-->{{no|Intel PRO Wireless 2200BG mini pci replace with Atheros 5k}} || <!--Test Distro-->2017 Icaros 2.1.1, aros one 1.5 || <!--Comments-->2005 32bit 15.4" F12 one time boot menu - 19.5v 90w psu ideal - battery not same as later dx20 ones -
|-
| <!--Name-->Inspiron 6000 6400, E1505 PP20L
*A00 Pentium M
*A0? Core Duo
|| <!--Chipset-->GM945 with PM 1.73Ghz, T2050 or T2060 || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe|}} || <!--Gfx-->{{Maybe|vesa 2d - Ati 9700, x1300 RV515 M52, x1400 or nvidia go 7300 on mxm board}} || <!--Audio-->{{yes|HD Audio IDT 9200}} || <!--USB-->{{Yes|usb boot }} || <!--Ethernet-->{{Yes|Broadcom BCM4401 B0}} || <!--Wireless-->{{No|Intel 2200 3945 - swap for Atheros 5k}} || <!--Test Distro-->2016 Icaros 2.1, AROS One 1.6 || <!--Comments-->2006 mostly 32bit - 15.4 inch glossy - 2 ddr2 sodimm slots - broadcom bcm92045 bluetooth detected but no support - 19.5v dell psu socket - f2 bios setup, f12 boot order -
|-
| <!--Name-->Inspirion E1705 9200 9300 9400 PP12L PP14L || <!--Chipset-->945GM || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->proprietary Dell card/socket format Nvidia 6800, ati X300 or nVidia 7900GS gpu 3d corrupt || <!--Audio-->{{Maybe| }} || <!--USB-->{{Maybe| }} || <!--Ethernet-->{{Maybe|Broadcom BCM4401}} || <!--Wireless-->Intel 3945 swap with Atheros 5k mini pcie || <!--Test Distro--> || <!--Comments-->2006 [http://amigaworld.net/modules/news/article.php?mode=flat&order=0&item_id=6481 increasing vertical lines issues] 32bit -
|-
| <!--Name-->Studio XPS M1210 || <!--Chipset-->GM945 with Core Duo to intel C2D T5500, T7400 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->nVidia G72M 7300 7400m || <!--Audio-->HD Audio IDT 92xx || <!--USB-->{{Maybe| }} || <!--Ethernet-->{{Maybe|Broadcom BCM4401 B0}} || <!--Wireless-->{{No|Broadcom BCM4311 - swap for Atheros 5k mini pci-e}} || <!--Test Distro--> || <!--Comments-->2006 64bit - 2 ddr2 slots max 4Gb -
|-
| <!--Name-->Inspiron 1501 PP23LA Latitude 131L || <!--Chipset-->AMD Sempron 1.8GHz Turion MK-36 or X2 1.6Ghz TL-50 or TL-56 on ATI RS480 || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|Use VESA 2d - ATI 1150 (x300) RS482M Mobility Radeon Xpress 200}} || <!--Audio-->{{Yes|HD audio with stac 92xx codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{Maybe|Broadcom bcm 4401}} || <!--Wireless-->{{No|Broadcom bcm4311 replace with Atheros 5k}} || <!--Test Distro-->Icaros 1.5 || <!--Comments-->2006 64bit 15.4 inch matt 16:10 1280x800 WXGA -
|-
| <!--Name-->Inspiron 6400 (Quanta FM1)
*A00 Pentium M
*A0? Core Duo
*A08 Core2 Duo
|| <!--Chipset-->GM945 with BGA479 (socket M) T2050 1.6Ghz, T2060 1.60Ghz, T2080 1.73Ghz much later T5500 1.66Ghz || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{Yes|GMA 2D and 3D}} || <!--Audio-->{{Yes|HD Audio with IDT 92xx codec}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{Yes|Broadcom BCM4401 B0}} || <!--Wireless-->{{No|Broadcom BCM4311 swap for Atheros 5k mini pci-e under keyboard}} || <!--Test Distro-->deadwood 2019-04-16 iso || <!--Comments-->2006 mostly 32bit - 15.4" glossy - sd card - front multimedia keys - dvd rw - generic dell keyboard - coin cr2032 bios battery under keyboard -
|-
| <!--Name-->Inspiron 640m PP19L XPS M140 e1405 || <!--Chipset-->Core Solo T2050, T2300 Duo 1.83GHz T2400 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel GMA 950 || <!--Audio-->HD Audio IDT || <!--USB--> || <!--Ethernet-->Broadcom BCM4401-B0 100Base || <!--Wireless-->{{No|Intel 3945 or Broadcom 43xx, swap for Atheros 5k - Wireless Internet ON or OFF press the Function key + F2}} || <!--Test Distro--> || <!--Comments-->2006 32 bit - 12.1 LCD CCFL WXGA 1280x800 up to 14.1 inch 16:10 1440x900 pixel, WXGA+ UltraSharp - supports also SSE3 on duos -
|-
| <!--Name-->Latitude D420 (Compal LA-3071P) PP09S
|| <!--Chipset-->945
* revA00 Solo 1.2Ghz ULV U1400
* revA01 Duo 1.06Ghz u2500
* revA02 Duo 1.2Ghz
| <!--IDE-->{{yes|ZIF/CE 1.8" slow under battery, ribbon cable}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{yes|Intel GMA950 - 2D and 3D opengl tunnel 138 gearbox 103}} || <!--Audio-->{{yes|HD Audio with STAC 92xx playback speakers head phones only)}} || <!--USB-->{{yes|2 and external usb optical drive works}} || <!--Ethernet-->{{no|Broadcom BCM5752}} || <!--Wireless-->{{No|Intel 3945 mini pcie - swap Atheros 5k in base panel}} || <!--Test Distro-->Icaros Desktop 1.4 || <!--Opinion-->2006 32bit only - 12.1" 1280x800 - PR09S dock base rev02 DVD-RW usb boots - 1GB DDR2 2Rx16 max in base panel - f2 setup f5 diagnostics f12 boot list -
|-
| <!--Name-->Latitude D520 PP17L
|| <!--Chipset-->
* 64bit rev A01, A02 945GM Core2 Duo 1.83Ghz to 2.3Ghz
* 32bit rev A00, A01 940GML Solo later Duo T2400
| <!--IDE-->{{yes| Philips SDR089, Philips CDD5263, TEAC DW224EV, Optiarc AD-5540A, HL-DL-ST GSAT21N, TSSTcorp TS-L632D}} || {{Yes|bios sata set to ide mode}} || {{Yes|Intel GMA 900 series 2D and OpenGL1 3D tunnel 210 gearbox 153 teapot 27}} || {{Yes|HD audio with STAC 9200 codec}} || {{Yes|Boots and detects USB2.0}} || {{Yes|Broadcom 4400}} || {{No|Broadcom BCM4312 BCM4321 Dell 1390 / 1490 mini pcie - easy to replace with atheros 5k in base panel}} || <!--Test Distro-->Icaros 1.4 and 2.2 and both AROS One 1.8 and AROS One x64 1.1 USB boot || 2006 mostly 64bit 4:3 aspect ratio 14.1 (XGA 1024x768) or later 15 inches (XGA+ 1400 by 1050) - F2 enter bios F12 choose boot - 19.5v dell tip pa-12 charger - bios coin cell cr2032 battery socketed in base panel -
|-
| <!--Name-->Latitude D620 (Compal LA-2792) PP18L
|| <!--Chipset-->945GMS
* rev A00 all Core Duo's 32 bit
* rev A0x all Core 2 Duo's 64 bit
| <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->Intel GMA 950 (2D and 3D tunnel gearbox opengl1 || <!--Audio-->{{yes|HD Audio playback}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{no|Broadcom BCM5752}} || <!--Wireless-->{{no|Intel 3945 mini pcie swap with Atheros 5k}} || <!--Test Distro-->AspireOS Xenon || <!--Opinion-->2006 64bit AROS capable with later revisions - 14" 1280 x 800
|-
| <!--Name-->Latitude D620
|| <!--Chipset-->Intel i945
* revA00 all Core Duo's 32 bit
* revA01 all Core 2 Duo's 64 bit
| <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->Nvidia 7300, 7600 NVS 110M G72 || <!--Audio-->{{dunno|HD Audio with STAC 9200 codec}} || <!--USB--> || <!--Ethernet-->{{No|Broadcom BCM5752}} || <!--Wireless--> {{dunno}} || <!--Test Distro--> || <!--Opinion-->2007 1440x900 screen - LA-2792P Rev.2.0 - DT785 UC218 Fan/ Heatsink (64bit) -
|-
| <!--Name-->Latitude D820 (Quanta JM6)
|| <!--Chipset-->945GMS 940GML
* rev A00
* rev A01
| <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Yes|Intel GMA 2D and 3D tunnel 195 - 100? gearbox 156}} || <!--Audio-->{{Yes|HD Audio with STAC 9200 playback}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No|Broadcom BCM5752}} || <!--Wireless-->{{No|BCM4310 replace with mini pcie atheros 5k}} || <!--Test Distro-->2016 Icaros 2.1.2 || <!--Opinion-->2007 widescreen 15 inch 1280 x 800 matte - -
|-
| <!--Name-->Latitude D820 (Quanta JM)
|| <!--Chipset-->945GMS 940GML
* revA00
* revA01
| <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Maybe|Nvidia NVS 110M 120M G72}} || <!--Audio-->{{Yes|HD Audio STAC 9200}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No|Broadcom BCM5752}} || <!--Wireless-->{{No|BCM4310 swap with Atheros 5k mini pcie}} || <!--Test Distro--> || <!--Opinion-->2007 64bit 15.4 1650x1050 WXGA or WSXGA+ or 1920x1200 WUXGA -
|-
| <!--Name-->Dell Latitude D531 15" || <!--Chipset-->AMD Turion X2 TL56 or TL60 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{Maybe|Use VESA - ATi xpress X1270}} || <!--Audio-->HD Audio with IDT codec || <!--USB-->{{Maybe| }} || <!--Ethernet-->{{No|Broadcom 57xx}} || <!--Wireless-->Intel 3945 or Dell Wireless 1390, 1505 or BCM4311 mini pcie || <!--Test Distro--> || <!--Comments-->2007 64bit possible - no trackpoint - fails and goes wrong often -
|-
| <!--Name-->Latitude D430 PP09S
|| <!--Chipset-->945 with Core2 Duo C2D U7500 1.06GHz U7600 1.2GHz U7700 1.33GHz
* rev A00
* rev A01
* rev A02
| <!--IDE-->ZIF PATA IDE 1.8inch under battery and ribbon cable - slow use USB instead || <!--SATA-->{{N/A}} || <!--Gfx-->{{yes|945GML 2D and 3D opengl 1.x 171 tunnel 105 gearbox}} || <!--Audio-->{{yes|STAC 92xx HD Audio speaker and ear phone - mono speaker}} || <!--USB-->{{yes|3 }} || <!--Ethernet-->{{no|Broadcom BCM5752}} || <!--Wireless-->{{no|Intel 4965 AGN or 3945 ABG mini pci-e underside with Atheros 5k mini pci-e}} || <!--Test Distro-->Aspire 1.8 || <!--Comments-->2007 64bit capable - sd card not supported - 19.5v PA12 power adapter - 12.1" 1280x800 matte - f2 setup f5 diagnostics f12 boot list -
|-
| <!--Name-->Latitude D530 || <!--Chipset-->GM965 + ICH8 || <!--IDE-->{{N/A}} || <!--SATA-->{{partial|IDE mode}}|| <!--Gfx-->{{partial|nVidia Quadro NVS 135M 2D 3d glitches G86}} || <!--Audio-->{{partial|HD Audio with STAC 9205 head phones only}} || <!--USB-->{{yes|USB 2.0}}|| <!--Ethernet-->{{no|Broadcom BCM5755M}} || <!--Wireless-->{{no|Intel PRO Wireless 3945ABG swap with Atheros 5k}} || <!--Test Distro-->Icaros 1.4.5 || <!--Comments-->2007 [http://amigaworld.net/modules/news/article.php?mode=flat&order=0&item_id=6481 ] cool air intake from underneath needed with pa-10 or pa-3e 90w psu required - standard 4:3 ratio aspect screen -
|-
| <!--Name-->Latitude D630 (Compal LA-3301P) PP18L
|| <!--Chipset-->GM965 + ICH8 T7250 2.0Ghz T7300
* revA00
* revA01
| <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{yes|Intel GMA X3100 (2D only, no external monitor)}} || <!--Audio-->{{yes|HD Audio STAC 9205 but speaker and head phones}} || <!--USB-->{{yes|4 USB 2.0}}|| <!--Ethernet-->{{no|Broadcom BCM5755M}} || <!--Wireless-->{{no|Broadcom BCM4312 swap with pci-e Atheros 5k under keyboard}} || <!--Test Distro--> || <!--Comments-->2007 64bit possible - F12 to choose boot option - 2 ddr2 sodimm max 4G - 4400mah 48Wh battery lasts 2 hours - 6600mah 73Wh lasts just over 3 hours
|-
| <!--Name-->Latitude D630
|| <!--Chipset-->GM965 + ICH8
* revA00 [http://amigaworld.net/modules/news/article.php?mode=flat&order=0&item_id=6481 ] GPU heatpad, no copper
* revA01 0DT785 heatsink
| <!--IDE-->{{N/A}} || <!--SATA-->{{partial|IDE mode}}|| <!--Gfx-->{{partial|use VESA as nVidia NVS 135M 3d corrupts 0.7 tunnel 0.25 gearbox G86}} || <!--Audio-->{{partial|HD Audio with STAC 9205 head phones only}} || <!--USB-->{{yes|USB 2.0}}|| <!--Ethernet-->{{no|Broadcom BCM5755M}} || <!--Wireless-->{{no|Intel PRO Wireless 3945ABG swap with Atheros 5k mini pcie}} || <!--Test Distro-->Icaros 1.4.5 || <!--Comments-->2007 64bit
|-
| <!--Name-->Latitude D830
|| <!--Chipset-->965GM with Core2
* revA00
* revA01
| <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{Yes|GM965 crestline 2d and 3d tunnel 115}} || <!--Audio-->{{Yes| }} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No| }} || <!--Wireless-->{{Maybe|replace with Atheros 5k mini pcie}} || <!--Test Distro-->Icaros || <!--Comments-->2007 15 inch 1280 x 900 but updating the LCD to WXGA or WSXGA+ could be better - 2 ddr2 sodimm -
|-
| <!--Name-->Latitude D830 || <!--Chipset-->ICH8, Core2 DUO T7800 @ 2.60GHz || <!--IDE-->{{N/A}} || <!--SATA-->Intel ICH8M Serial ATA || <!--Gfx-->nVidia Quadro NVS 140M G86 || <!--Audio-->{{yes|HD Audio with STAC 92XX codec}} || <!--USB-->{{yes|USB 2.0}} || <!--Ethernet-->Broadcom NetXtreme 57xx Gigabit || <!--Wireless-->Intel Wireless 4965AGN swap with Atheros 5k || <!--Test Distro-->Icaros 2.03 || <!--Comments-->2007 64bit 15." - FN,F2 or FN,F8 or FN,F12
|-
| <!--Name-->XPS M1710 || <!--Chipset-->945PM with T2400 T2600 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->proprietary Dell card socket format GTX 7950 || <!--Audio-->HD Audio with STAC 92XX codec || <!--USB--> || <!--Ethernet-->Intel 1000 or Broadcom BCM5752 || <!--Wireless-->Intel swap with Atheros 5k || <!--Test Distro-->Aros One 64bit || <!--Comments-->2007 64bit 17.3" workstation type WXGA+ screen 1920x1200 - 2 ddr-2 667Mhz sodimm slots,
|-
| <!--Name-->XPS M1730 || <!--Chipset-->965 with T7200 T7600 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->GTX 7950 || <!--Audio-->HD Audio with STAC 92XX codec || <!--USB--> || <!--Ethernet-->Intel 1000 || <!--Wireless-->Intel swap with Atheros 5k || <!--Test Distro--> || <!--Comments-->2008 64bit 17" workstation type WXGA+ screen manufactured by AU Optronics poor viewing angles, unevenly lit, light leakage, 2 ddr-2 800Mhz slots,
|-
| <!--Name-->Latitude E6410 P27LA, E6510 PP30LA, E6310 || <!--Chipset-->Intel Core i5-520M to i7-620M i7 820QM but no sse4.1 or AVX || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Maybe|NVidia NVS 3100M GT218 2D but 3D through external monitor}} || <!--Audio-->{{Maybe|HD Audio IDT 92HD81}} || <!--USB-->{{Yes|USB2 }} || <!--Ethernet-->{{No|Intel}} || <!--Wireless-->{{No|Broadcom or Intel 6200AGN or Link 6300}} || <!--Test Distro-->Icaros 1.3 || <!--Comments-->2010 64 bit - 14.1” WXGA+ up to 15.6in 15.6” FHD 1080p - 2 ddr3l 1333Mhz max 8Gb - 90w dell charger -
|-
| <!--Name-->Inspiron M5030 || <!--Chipset-->rev A01 AMD V120, V140 rev A0? V160 M880G || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE}} || <!--Gfx-->{{Maybe|VESA RS880M Radeon HD 4225, 4250}} || <!--Audio-->{{Yes|HD audio with ALC269q codec}} || <!--USB--> || <!--Ethernet-->{{No|Atheros AR8152 v2}} || <!--Wireless-->{{unk|Atheros AR9285}} || <!--Test Distro--> || <!--Comments-->2011 64bit does not support AVX or SSE 4.1 - DDR3 sodimm -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->E6420 E6520 ATG semi ruggized XFR || <!--Chipset-->sandy bridge i5 2520M 2540M or duo I7 || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|set to Bios UEFI mode AHCI}} || <!--Gfx-->{{Maybe|Intel HD 3000 with optional fermi Nvidia NVS 4200M GF119}} || <!--Audio-->{{Maybe|HD Audio with IDT 92HD90 BXX codec but not HDMI codec}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No|Intel}} || <!--Wireless-->{{No|Intel 6205}} || <!--Test Distro-->Icaros 2.03 || <!--Comments-->2011 64bit 15.6in - fan exhausts a lot of hot air when cpu taxed - VGA if Bios ATA set and Vesa only with Bios ACHI set -
|-
| <!--Name-->Inspiron M5040 || <!--Chipset-->slow amd E450, later C-50 C50 or C-60 C60 with A50M chipset || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|non efi sata in IDE mode but base plastic difficult to remove for access}} || <!--Gfx-->{{Maybe|use VESA AMD Radeon 6320, 6250 or 6290}} || <!--Audio-->{{Yes|HD Audio IDT}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{Yes|rtl8169 Realtek RTL8105E VB 10/100}} || <!--Wireless-->{{unk|Atheros AR9285}} || <!--Test Distro-->2016 icaros 2.1.1 and AROS USB 1.6 || <!--Comments-->2012 64bit 15INCH 1388 X 768 - f2 bios setup, f12 boot order - under removable keyboard via 4 top spring loaded catches is 1 ddr3l sodimm max 8gb and wifi -
|-
| Latitude e6230 E6330 E6430 || i3 3320M 3350M 2.8 GHz i5 3360M i7 3520M || {{N/A}} || {{partial|non RAID mode}} || {{partial|Intel HD 4000 (VESA only)}} || {{no|HD Audio}} || {{partial|Intel USB 3.0 (USB 1.1 2.0 only)}} || {{No|Intel 82579LM Gigabit}} || {{No|Broadcom BCM4313}} || <!--Test Distro-->Nightly Build 2014 09-27 || 2013 64bit Ivy Bridge - 12.5-inch 13.3-inch 14-inch screen - not great support, better under hosted -
|-
| <!--Name-->Dell Latitude 3330 || <!--Chipset-->Core i3 – 2375M to i5 – 3337U, Intel® Core i3 – 3227U, Celeron 1007U on HM77 || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->{{maybe|VESA 2d for intel Hd 2000 3000 vga hdmi}} || <!--Audio-->{{maybe|HDAudio with IDT 92HD93 Controller codec }} || <!--USB-->{{maybe|USB 3.0 (2), USB 2.0 PowerShare capable }} || <!--Ethernet-->{{no|Intel }} || <!--Wireless-->{{no|Intel }} || <!--Test Distro-->Deadwood usb3 test iso || <!--Comments-->2013 64bit, 13.3” HD 1366X768 16:9, 2 ddr3l slots max 8Gb, 720p HD video webcam,
|-
| <!--Name-->Inspiron 15 5565 5567 AMD versions, Inspiron 3595 || <!--Chipset-->AMD A6-9200u A9-9400 9425 A12-9700P Bristol Ridge || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata}} || <!--Gfx-->Radeon R5 R8 GCN 3 || <!--Audio-->{{No| }} || <!--USB-->{{partial| }} || <!--Ethernet-->{{maybe|Realtek 1GbE}} || <!--Wireless-->{{No| }} || <!--Test Distro--> || <!--Comments-->2017 64bit AVX2 - 15.6in 768p or 900p - there are intel versions avoid -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Latitude 5495, Inspiron 15 3585 || <!--Chipset-->Ryzen 2300U 2500U 2700U || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|NVMe or optional 2.5in sata if caddy and ribbon cable}} || <!--Gfx-->Radeon Vega 3 or 7 || <!--Audio-->{{No|HDAudio with Realtek ALC3246 aka ALC295 0x10ec, 0x0295 or ALC3263 aka ALC 0x10ec, 0x0 codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|Realtek}} || <!--Wireless-->{{No| }} || <!--Test Distro--> || <!--Comments-->2018 64bit - 14.0" FHD WVA 1080p (16:9) 220 nits or HD 768p - 2 ddr4 sodimm slots max 32gb - 68whr battery with 2pin cmos bios coin - DC 19.5V 4.62A (90W) or 19.5V 3.34W (65W) 5.0mm x 7.4mm PA12 charging adapter -
|-
| <!--Name-->Inspiron 3505, Vostro 3515 || <!--Chipset-->athlon 300u, Ryzen 3250u (2c4t) 3450u 3500u 3700u (4c8t), Athlon Silver (2c2t) Gold (2c4t) || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|up to 2 nvme with optional 2.5in sata ribbon connector}} || <!--Gfx-->{{Maybe|VESA 2D for Vega 8, 10}} || <!--Audio-->{{No|Realtek ALC3204, Cirrus Logic CS8409 (CS42L42 and SN005825)}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{No|RTL 8106E}} || <!--Wireless-->{{No|Realtek RTL8723DE}} || <!--Test Distro--> || <!--Comments-->2019 64-bit - 15.6inch - 2 ddr4 sodimm max 16G - avoid knocking usb-c charging whilst in use -
|-
| <!--Name-->Inspiron 5485 2-in-1 || <!--Chipset-->athlon 300u, Ryzen 3250u (2c4t) 3450u 3500u 3700u (4c8t), Athlon Silver (2c2t) Gold (2c4t) || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|nvme}} || <!--Gfx-->{{Maybe|VESA 2D for Vega 8, 10}} || <!--Audio-->{{No|Realtek ALC3204}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{No|Realtek RTL8723DE}} || <!--Test Distro--> || <!--Comments-->2019 64-bit - 14inch - 2 ddr4 sodimm max 16G - avoid knocking usb-c charging whilst in use -
|-
| <!--Name-->Latitude 3500, 3310, 3410, 3510, || <!--Chipset-->Intel Celeron-4205U, Pentium-5405U, Core i5 (8th Gen) i3-8145U, 8265U, i5-8365U || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|nvme}} || <!--Gfx-->{{Maybe|Vesa 2D for Intel UHD Graphics 610 or 620 hdmi}} || <!--Audio-->{{no|HDAudio with Realtek ALC}} || <!--USB-->{{maybe|USB3 usb-c usb-a}} || <!--Ethernet-->{{Maybe|rtl8169 RTL8111H}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2019 64bit - 14in or 15.6in 768p to 1080p 220nits - 65w - 2 ddr4 sodimm slots - rtc cr2032 cmos 2 pin -
|-
| <!--Name-->Inspiron 5405 || <!--Chipset-->AMD Ryzen 5 4500U || <!--IDE-->{{N/A}} || <!--SATA-->One M.2 2230/2280 nvme || <!--Gfx-->VESA 2D for AMD Radeon || <!--Audio-->{{No|HDAudio with Realtek ALC3204 codec}} || <!--USB-->{{maybe|USB3 }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{No| }} || <!--Test Distro--> || <!--Comments-->2020 64bit - 14" 1080p - dell round ac 19.50 VDC 4.50 mm x 2.90 mm 65W(19.5V-3.34A) round 4.5mm tip -
|-
| <!--Name-->Inspiron 5415, Inspiron 5515 || <!--Chipset-->AMD Ryzen 3 5300U, Ryzen 5 5500U, Ryzen 7 5700U || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|nvme}} || <!--Gfx-->VESA 2D for AMD Radeon || <!--Audio-->{{No|HDaudio with realtek ALC3254 codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2021 64bit 14" or 15.6in - avoid knocking usb-c charging whilst in use or use dell round ac 65W 4.5MM x 3.0MM - replacing keyboard not easy - 1 ddr4 sodimm -
|-
| <!--Name-->Vostro 3425, Vostro 3525, Vostro 5625 || <!--Chipset-->AMD Ryzen 3 5425U, Ryzen 5 5625U || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D for AMD Radeon || <!--Audio-->{{no|HDAudio with codec}} || <!--USB-->{{maybe|USB4}} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2021 64bit - 14in 15.6" to 16" FHD 1080p - dell round ac 65w 4.5MM x 3.0MM or avoid knocking usb-c charging whilst in use -
|-
| <!--Name-->Dell Inspiron 15 Model 3535, Inspiron 14 7435 || <!--Chipset-->AMD Ryzen 5 7520U, AMD Ryzen 5 7530U, 7 7730U || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->{{No| hdmi 1.4 but no gpmi}} || <!--Audio-->{{No|HDaudio with codec }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2024 64bit - 14.0" or 15.6" 1080p - dell round ac 65w 4.5MM x 3.0MM or usb-c charging - full sd card slot -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|}
====Fujitsu-Siemens====
[[#top|...to the top]]
Order of build quality (Lowest to highest)
<pre >
Amilo
Esprimo
Lifebook
</pre >
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="5%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->Fujitsu [http://www.labri.fr/perso/fleury/index.php?page=bug_transmeta FMV-Biblo Loox S73A (Japan P1100) LifeBook P1120 Biblo Loox T93C (Japan P2120) P2020] || <!--Chipset-->Transmeta Crusoe CPU TM5600 633MHz with Ali M1535 chipset || <!--IDE-->{{Yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->ATI Rage Mobility M with 4MB SDRAM || <!--Audio-->{{No|AC97 Ali M1535 + STAC9723 Codec}} || <!--USB-->USB 1.1 only || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{N/A}} || <!--Test Distro--> || <!--Comments-->1999 32bit 10" 1280 x 600 matte LCD - QuickPoint IV mouse - metal chassis with palm rest plastic - 15GB 2.5 inch drive and SR 8175 8X DVD-ROM drive -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Lifebook S7000 S7010 S7010D S2020 || <!--Chipset-->Pentium M 1.6 or 1.7GHz || <!--IDE-->{{Yes| }} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Maybe|use VESA - Intel 855}} || <!--Audio-->{{maybe|AC97 with STAC 9751T or 9767 codec}} || <!--USB--> || <!--Ethernet-->{{No|Broadcom}} || <!--Wireless-->{{No|Atheros, Broadcom or Intel 2200BG - FN,F10}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2002 32bit 14.1 inch with minimal support
|-
| <!--Name-->Lifebook e8010 || <!--Chipset--> || <!--IDE-->{{Yes| }} || <!--SATA--> || <!--Gfx-->{{Maybe|use VESA Intel 855GM}} || <!--Audio-->AC97 STAC9767 or ALC203 codec || <!--USB--> || <!--Ethernet-->{{No|Broadcom NetXtreme BCM5705M}} || <!--Wireless-->Intel PRO Wireless 2200BG || <!--Test Distro-->Icaros 1.3.1 || <!--Comments-->2002 32bit 15.1 inch
|-
| <!--Name-->Stylistic ST5000 ST5010 ST5011 ST5012 ST5020 ST5021 ST5022 || <!--Chipset-->1.0GHz P-M and later 1.1GHz on Intel 855GME || <!--IDE--> || <!--SATA-->{{N/A}} || <!--Gfx-->Intel 800 use VESA || <!--Audio-->Intel AC97 || <!--USB--> || <!--Ethernet-->Broadcom BCM5788 tg3 || <!--Wireless-->{{No|Intel 2200BG}} || <!--Test Distro--> || <!--Comments-->2003 32bit charged via a proprietary port power connector 16V 3.75A with wacom serial pen interface - indoor Screen transmissive 10.1 and later 12.1 XGA TFT -
|-
| <!--Name-->Amilo Pro V2010 || <!--Chipset-->VIA CN400 PM880 || <!--IDE--> || <!--SATA-->{{N/A}} || <!--Gfx-->{{No|S3 unichrome use VESA}} || <!--Audio-->{{No|VIA AC97 VT8237 with codec}} || <!--USB--> || <!--Ethernet-->Rhine 6102 6103 || <!--Wireless-->RaLink RT2500 || <!--Test Distro-->2017 Icaros 2.1.2 || <!--Comments-->2003 32bit boot mount - unknown bootstrap error then crashes
|-
| <!--Name-->Amilo Li 1705 CN896 || <!--Chipset--> with VIA P4M900 || <!--IDE--> || <!--SATA-->{{Maybe|IDE}} || <!--Gfx-->ATi || <!--Audio-->{{No|VIA VT8237 HD Audio with codec}} || <!--USB-->VT82xx 62xx || <!--Ethernet-->{{Yes|VIA Rhine}} || <!--Wireless-->{{No|Atheros G}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2005 32bit random freezes
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name--> Esprimo Mobile V5535 Skt mPGA 478MN
| <!--Chipset-->
| <!--IDE--> {{yes|IDE and EIDE}}
| <!--SATA--> {{maybe|IDE mode with SIS 5513}}
| <!--Gfx--> {{maybe|SiS 771 / 671 (VESA only)}}
| <!--Audio--> {{yes|HD Audio SIS968 SIS966 SI7012 with ALC268 codec}}
| <!--USB--> {{no|USB 1.1 and 2.0 issues}}
| <!--Ethernet--> {{no|SiS 191 gigabit}}
| <!--Wireless--> {{yes|Atheros AR5001 mini pci express}}
| <!--Test Distro-->aros one 1.5 usb
| <!--Comments-->2005 32bit 20v barrel - f2 setup f12 multi boot - random freezing short time after booting - chipset SIS 671MX -
|-
| <!--Name-->Amilo SI 1520 1521p || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Yes|GMA 2D}} || <!--Audio-->{{No|HD Audio Conexant codec}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{Yes|Intel Pro 100}} || <!--Wireless--> || <!--Test Distro-->Icaros 1.4.2 || <!--Comments-->2005 32bit - Set Bios option ATA Control Mode to Compatible
|-
| <!--Name-->Lifebook S7020 S7020D || <!--Chipset--> Pentium M 740 1.73MHz || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel 915 || <!--Audio-->HD Audio ALC260 codec || <!--USB-->{{Yes| }} || <!--Ethernet-->Broadcom BCM5751M Gigabit || <!--Wireless-->Intel PRO Wireless 2200BG or Atheros 5k || <!--Test Distro--> || <!--Comments-->2006 32bit
|-
| <!--Name-->Stylistic ST5030 ST5031 ST5032 || <!--Chipset-->1 to 1.2GHx Pentium M with 915GM || <!--IDE--> || <!--SATA-->{{N/A}} || <!--Gfx-->Intel 900 || <!--Audio--> || <!--USB-->{{Yes| }} || <!--Ethernet-->Marvell || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2006 32bit charged via a proprietary port power connector 6.0 x 4.4 mm round - 200 pin ddr2 ram
|-
| <!--Name-->Stylistic ST5110 ST5111 ST5112 || <!--Chipset-->945GM with 1.2GHz Core Duo and Core2 Duo || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->Intel 900 || <!--Audio-->HD audio with STAC9228 codec || <!--USB-->{{No| }} || <!--Ethernet--> || <!--Wireless-->Intel 3945 ABG or optional atheros || <!--Test Distro--> || <!--Comments-->2006 either 32 or 64 bit - charged via a proprietary port power connector 6.0 x 4.4 mm round - SigmaTel® touchscreen -
|-
| <!--Name-->E8110 S7110 E8210 || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Yes|945GM}} || <!--Audio-->{{Yes|HD Audio with ALC262 codec playback}} || <!--USB-->{{Yes}} || <!--Ethernet-->{{No|Marvell 88E8055 Gigabit}} || <!--Wireless-->{{No|Intel PRO Wireless 3945ABG}} || <!--Test Distro-->Icaros 2.0 || <!--Comments-->2006 32bit Core Duo
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || CHIPSET || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Lifebook PH521 || <!--Chipset-->AMD E-350 E-450 1.65GHz || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->HD 6310M 6320M || <!--Audio-->Realtek ALC269 || <!--USB-->{{No| }} || <!--Ethernet-->Realtek || <!--Wireless-->{{No|Atheros 802.11 bgn}} || <!--Test Distro--> || <!--Comments-->2011 64bit does not support AVX or SSE 4.1 - 11.6 inch 1366x768 pixels - DDR3 1066MHz -
|-
| <!--Name-->LIFEBOOK E752/E782/S752/S782 || <!--Chipset--> with Intel Core i3-2328M to i3-3110M || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->{{Maybe| }} || <!--Audio-->{{yes| }} || <!--USB-->{{yes| }} || <!--Ethernet-->{{no|Intel 82579V 1000 }} || <!--Wireless-->{{no|Intel Wireless 6205 may be able to swap for Atheros 5k }} || <!--Test Distro-->Aros One 64bit || <!--Comments-->2012 64bit
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
====HP Compaq====
[[#top|...to the top]]
Build quality (Lowest to highest)
<pre >
Presario
Pavilion
Omnibook
ProBook
Armada
Elitebook
</pre >
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->1c00 series Compaq Presario [http://users.utu.fi/sjsepp/linuxcompaqarmada100s.html Armada 100S made by Mitac], 1247 || <!--Chipset-->K6-II with PE133 MVP-4 || <!--IDE--> || <!--SATA--> || <!--Gfx-->use VESA - Trident Blade3D AGP sp16953 || <!--Audio-->VIA ac'97 audio [rev20] with AD1881A codec || <!--USB-->{{Maybe|usual VIA issues [rev10]}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{N/A}} || <!--Test Distro--> || <!--Comments-->1998 32bit 192MB max - PCcard Texas PC1211 no support - 1200 XL1 1200-XL1xx, XL101, XL103 XL105 XL106 XL109 XL110 XL111 XL116 XL118 XL119 XL125
|-
| <!--Name-->1c01 series Armada 110, Evo N150 || <!--Chipset-->Intel with VIA PLE133 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Use VESA - Trident Cyber Blade i1 chipset || <!--Audio-->VIA 686 rev20 82xxx 686a || <!--USB--> || <!--Ethernet-->Intel 82557 Pro 100 || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->1998 32bit max 192mb sodimm 100Mhz 133Mhz ram memory - 1200-XL405A 12XL405A XL502A 12XL502A 1600XL
|-
| Armada M300 M700 E500 || 440BX || {{Yes| }} || {{N/A}} || {{maybe|ATI Rage LT M1 Mobility (VESA only)}} || {{no|AC97 ESS Maestro 2E M2E ES1987 sound}} || {{yes|USB1.1 only}} || {{No|[http://perho.org/stuff/m300/index_en.html Intel PRO 100+ Mini PCI]}} || {{N/A}} || Aspire OS 2012, Nightly 30-01 2013 and 04-05 2013 || 1999 32bit - F10 bios options and Fn+F11 reset CMOS with 64mb ram already on board
|-
| <!--Name-->HP Omnibook XE3 || <!--Chipset-->Intel BX 600Mhz GC model 256mb or AMD GD 500Mhz || <!--IDE--> || <!--SATA--> || <!--Gfx-->Use VESA - S3 Inc. 86C270 294 Savage IX-MV (rev 11) || <!--Audio-->{{No|ESS ES1988 Allegro 1 (rev 12)}} || <!--USB-->Intel 82371AB PIIX4 USB (rev 01) || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{N/A}} || <!--Test Distro--> || <!--Comments-->2002 32bit no cardbus pcmcia support - no audio from Polk Audio Speakers -
|-
| <!--Name-->HP Omnibook XE3 || <!--Chipset-->82830 ICH3 P3-M 750MHz 800Mhz 900MHz || <!--IDE-->{{Yes| }} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Maybe|use VESA - CGC 830MG}} || <!--Audio-->{{No|ESS ES1988 Maestro 3i}} || <!--USB-->{{Yes|only one 1.1 port}} || <!--Ethernet-->{{Yes|e100 82557}} || <!--Wireless-->{{N/A|}} || <!--Test Distro-->Icaros 1.51 || <!--Comments-->2002 32bit Boots USB Stick via Plop boot floppy - Memory for GF 256-512mb, GS up 1GB
|-
| <!--Name-->TC1000 TC-1000 Tablet PC || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->NVIDIA NV11 [GeForce2 Go] (rev b2) || <!--Audio-->VIA AC97 Audio (rev 50) || <!--USB-->OHCI NEC USB 2.0 (rev 02) || <!--Ethernet-->Intel 82551 QM (rev 10) || <!--Wireless-->Atmel at76c506 802.11b || <!--Test Distro--> || <!--Comments-->2002 32bit Transmeta LongRun (rev 03) with VT82C686 - Texas Instruments TI PCI1520 PC card Cardbus
|-
| <!--Name-->HP Compaq R3000 ZV5000 (Compal LA-1851) || <!--Chipset-->Nvidia nForce 3 with AMD CPU || <!--IDE--> || <!--SATA--> || <!--Gfx-->Nvidia NV17 [GeForce4 420 Go 32M] || <!--Audio-->Nvidia || <!--USB--> || <!--Ethernet-->Broadcom or Realtek RTL8139 || <!--Wireless-->{{Maybe|Broadcom BCM4303 BCM4306 or Atheros bios locked}} || <!--Test Distro--> || <!--Comments-->2003 32bit - HPs have a setting to automatically disable wireless if a wired connection is detected
|-
| <!--Name-->Compaq [http://www.walterswebsite.us/drivers.htm Presario 700 series] || <!--Chipset-->VT8363 VT8365 [Apollo Pro KT133 KM133] || <!--IDE-->{{yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{maybe|VT8636A (S3 Savage TwisterK) (VESA only)}} || <!--Audio-->{{Maybe|VIA AC97 [rev50] with AD1886 codec}} || <!--USB-->{{maybe|VIA UHCI USB 1.1 [rev1a]}} || <!--Ethernet-->{{yes|RealTek RTL8139}} || <!--Wireless-->{{no|Broadcom BCM4306}} || <!--Test Distro--> || <!--Comments-->2003 32bit poor consumer grade level construction - jbl audio pro speakers - no support for cardbus pcmcia TI PCI1410 - 700A EA LA UK US Z 701AP EA BR FR 701Z 702US 703US AP JP audio sp18895 Sp19472
|-
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| N400c || P3-M 82845 || {{yes|82801 CAM IDE U100}} || {{N/A}} || {{maybe|Rage Mobility 128 (VESA only)}} || {{No|Maestro 3 allegro 1}} || {{yes|USB1.1}} || {{yes|Intel PRO 100 VM (KM)}} || {{N/A}} || Icaros 1.2.4 || 2003 32bit Has no optical disc drive
|-
| N410c || P3-M 82845 || {{yes|82801 CAM IDE U100}} || {{N/A}} || {{maybe|Radeon Mobility M7 LW 7500 (VESA only)}} || {{yes|Intel AC97 with AD1886 codec}} || {{yes|USB1.1}} || {{yes|Intel PRO 100 VM (KM)}} || {{N/A}} || Icaros 1.2.4 || 2003 32bit Has no optical disc drive
|-
| Evo N600c || Pentium 4 || {{yes|IDE}} || {{N/A}} || {{partial|ATI Radeon Mobility M7 (VESA only)}} || {{No|ESS ES1968 Maestro 2}} || {{yes|USB}} || {{yes|Intel PRO 100}} || {{dunno}} || Icaros 1.3 || 2003 32bit
|-
| Evo N610c || Pentium 4 || {{yes|IDE}} || {{N/A}} || {{partial|ATI Radeon Mobility M7 (VESA only)}} || {{yes|Intel ICH AC97 with AD1886 codec}} || {{yes|USB}} || {{yes|Intel PRO 100}} || {{dunno}} || Icaros 1.2.4 ||
|-
| N800c || P4 || {{Yes|IDE}} || {{N/A}} || {{partial|ATI Radeon Mobility 7500 (VESA only)}} || {{yes|AC97}} || {{yes|USB}} || {{yes|Intel PRO 100}} || {{N/A}} || Icaros 1.2.4 || 2003 32bit P4M CPU can get very warm
|-
| <!--Name-->NX7010 || <!--Chipset-->Intel || <!--IDE-->{{yes|IDE}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{partial|ATI mobility 7500 or 9000 Radeon 9200 64MB (VESA only)}} || <!--Audio-->{{yes|AC97 ADI codec}} || <!--USB-->{{yes|uhci (1.1) and ehci (2.0)}} || <!--Ethernet-->{{yes|Realtek 8139}} || <!--Wireless-->{{No|Intel 2200b bios locked}} || <!--Test Distro--> || <!--Comments-->2003 32bit
|-
| <!--Name-->Compaq Preasrio V5000 (Compal LA-2771) || <!--Chipset-->AMD Sempron 3000+ or Turion ML with SB400 || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|use VESA - Ati RS480M Xpress 200}} || <!--Audio-->{{No|AC97 ATI with Conexant CX 20468 codec}} || <!--USB--> || <!--Ethernet-->{{Yes|Realtek 8100 8101L 8139}} || <!--Wireless-->{{No|bcm4318 bios locked}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2004 64bit single core machine V5001 V5002 V5002EA V5003
|-
| <!--Name-->TC1100 TC-1100 Tablet PC || <!--Chipset-->855PM || <!--IDE--> || <!--SATA--> || <!--Gfx-->Nvidia Geforce4 Go || <!--Audio-->AC97 || <!--USB--> || <!--Ethernet-->{{Maybe|BCM 4400}} || <!--Wireless-->{{Maybe|Atheros wlan W400 W500 or ? bios locked}} || <!--Test Distro--> || <!--Comments-->2004 32bit
|-
| <!--Name-->NC6000 NC8000 NW8000 || <!--Chipset-->855PM with Pentium M 1.5 1.6 1.8GHz 2.0GHz || <!--IDE-->max 160 GB for NW 8000 || <!--SATA--> || <!--Gfx-->{{Maybe|Ati RV350 mobility 9600 M10 Fire GL T2 ISV use VESA 2D as no laptop display}} || <!--Audio-->{{Yes|Intel AC97 with ADI codec playback only}} || <!--USB-->{{Yes|2 ports}} || <!--Ethernet-->{{No|Broadcom BCM 5705M}} || <!--Wireless-->{{Maybe|mini pci Atheros 5212 BG W400 W500 or Intel - all bios locked}} || <!--Test Distro--> || <!--Comments-->2005 based [http://amigaworld.net/modules/newbb/viewtopic.php?topic_id=41916&forum=47 works] - Firewire TI TSB43AB22/A - 8 pound 2.5 kg travel weight - an SD slot as well as two PC Card slots - 15-inch UXGA screen (1,600 x 1,200) or 15" SXGA+ (1400 x 1050) (4:3 ratio)
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Compaq NC6110 NX6110 NC6120 NC6220 NC4200 NC8200 TC4200 || <!--Chipset-->GMA 915GML || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Yes|2D GMA 900}} || <!--Audio-->{{Yes|AC97 with ADI AD1981B playback}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{Unk|440x or BCM 5705M or 5751M}} || <!--Wireless-->{{No|Intel IPW 2200 bios locked}} || <!--Test Distro-->Icaros 1.5.2 || <!--Comments-->2005 32bit Sonoma based - Wifi with Atheros AR5007eg if apply hacked bios RISKY else use USB one - (INVENTEC ASPEN UMA MV) (INVENTEC ASPEN DIS PV) -
|-
| <!--Name-->Compaq C500 CTO aka HP G7000 || <!--Chipset-->Intel 945GM || <!--IDE--> || <!--SATA--> || <!--Gfx-->GMA 950 || <!--Audio-->HD Audio with realtek ALC262 codec || <!--USB--> || <!--Ethernet-->Realtek 8139 || <!--Wireless-->Broadcom BCM 4311 bios locked || <!--Test Distro--> || <!--Comments-->2005 32bit
|-
| <!--Name-->HP DV6000 || <!--Chipset-->945GMS || <!--IDE--> || <!--SATA--> || <!--Gfx-->GMA 950 || <!--Audio-->HD Audio IDT 92HD 91B || <!--USB--> || <!--Ethernet-->Intel PRO 100 VE || <!--Wireless-->{{No|Intel 3945 bios locked}} || <!--Test Distro--> || <!--Comments-->2006 32 bit only - Mosfet FDS6679 common cause of shorts giving no power to the tip. To reset adapter, unplug from AC (mains) and wait 15-30 sec. Then plug in again -
|-
| Presario F700 series, HP G6000 f730us F750 F750us F755US F756NR F765em || AMD Turion Mono MK-36 2.0Ghz NForce 560m or Twin X2 TK-55 with nForce 610m MCP67 || {{N/A| }} || {{Yes|but needs special sata adapt bit and caddy}} || {{Yes|GF Go 7000m 2D and 3D 640x350 to 1280x800 - ball solder issues due to poor cooling}} || {{Maybe| }} || {{Maybe|uhci and ehci boots}} || {{No|Nvidia }} || {{Yes|Atheros AR5007 bios locked}} || Icaros 1.3.1 and Aros One 1.6 USB || 2006 64bit - f9 boot device f10 bios setup - random freezes after a minutes use means internal ventilation maintenance needed each year essential - No sd card and overall limited phoenix bios options -
|-
| <!--Name-->Presario v6604au v6608au V3500 || <!--Chipset-->NVIDIA MCP67M with AMD Athlon64 X2 TK 55 amd 1.8ghz || <!--IDE--> || <!--SATA-->{{Yes|SATA 150}} || <!--Gfx-->NVIDIA GeForce Go 7150M 630i or C67 630M MCP67 || <!--Audio-->conexant codec || <!--USB--> || <!--Ethernet-->Nvidia or Realtek 10/100 || <!--Wireless-->{{No|Broadcom 4311 bios locked}} || <!--Test Distro--> || <!--Comments-->2006 64bit Altec Lansing Stereo Speakers - ball solder issues -
|-
| <!--Name-->Compaq presario v6610 v6615eo v6620us || <!--Chipset-->Turion 64 X2 mobile TK-55 / 1.8 GHz to athlon 64x2 @ 2.4ghz || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|SATA 150}} || <!--Gfx-->{{Yes|geforce 7150 or 7300m 2d and 3d}} || <!--Audio-->{{Yes|AMD HD Audio with IDT codec stereo playback only}} || <!--USB-->3 OHCI EHCI || <!--Ethernet-->{{Maybe| }} || <!--Wireless-->{{No|Broadcom bios locked}} || <!--Test Distro-->Icaros 1.3 - || <!--Comments-->2007 [http://amigaworld.net/modules/newbb/viewtopic.php?topic_id=40956&forum=48 works well] - 1 x ExpressCard/54 - SD Card slot - AO4407 test voltage of the Drain side (pins 5-8) with AC adapter and no battery, see 0 volts, connect the battery you should have 10-14v -
|-
| <!--Name-->v6630em v6642em || <!--Chipset-->nForce 630M with AMD Turion 64 X2 Mobile TL-58 || <!--IDE--> || <!--SATA--> || <!--Gfx-->NVIDIA GeForce 6150M or 7150M || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless-->{{No|Broadcom bios locked}} || <!--Test Distro--> || <!--Comments-->2007 64bit 15.4 in 1280 x 800 ( WXGA ) -
|-
| <!--Name-->HP Compaq NC6400 || <!--Chipset-->945GM Core Duo || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|GMA 950 2D issues and no 3d}} || <!--Audio-->{{No|HD Audio AD1981HD}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No|BCM }} || <!--Wireless-->{{No|Broadcom locked}} || <!--Test Distro-->Icaros || <!--Comments-->2007 - replaced with Atheros AR5007eg if apply hacked bios RISKY else use USB g -
* 32bit Core Duo T2400
* 64bit Core 2 Duo T5600 T7600
|-
| <!--Name-->HP Compaq NV NC6400 || <!--Chipset-->Core Duo + 945PM || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Maybe|use VESA Radeon x1300M (2D)}} || <!--Audio-->{{Maybe|HD Audio with ADI1981 low volume}} || <!--USB-->{{yes}} || <!--Ethernet-->{{no|BCM 5753M}} || <!--Wireless-->{{No|Intel 3945 ABG bios locked}} || <!--Test Distro--> Icaros 1.4.2 || <!--Opinion-->2007 Harmon Kardon speakers
|-
| <!--Name-->HP Compaq NC6320 || <!--Chipset-->945GM with
* 32bit Core Duo 1.83GHz T2400
* 64bit Core2 Duo 1.83GHz T5600
|| <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Yes|GMA 950 2D with a little 3D tunnel 213}} || <!--Audio-->{{Maybe|Intel HD Audio with AD1981HD codec}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No|BCM 5788}} || <!--Wireless-->{{No|Intel 3945 bios locked}} || <!--Test Distro-->Icaros 2 || <!--Comments-->2007 replaced with Atheros AR5007eg if applying hacked wifi bios RISKY!! else use USB - 14.1" or 15 inch XGA 1024x768 - noisy cpu fan for core2 - trackpad rhs acts as window scroller -
|-
| <!--Name-->HP NC4400 TC4400 Tablet || <!--Chipset-->Core Duo with 82945 chipset || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|bios F.07 limits to 100GB 120GB}} || <!--Gfx-->{{yes|2D and 3D 282 tunnel and gearbox 150}} || <!--Audio-->{{Yes|HD Audio with ADI 1981HD codec via ear phones}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{No|BCM 5753M}} || <!--Wireless-->{{No|Intel 3945 or BCM 4306 - Whitelist BIOS F.0C needed but risky}} || <!--Test Distro-->2017 Icaros 2.1.2 || <!--Comments-->2008 64 bit possible with Core2 - TI SD card reader non bootable - wacom serial digitiser pen not working -
* 32bit 1.86GHz core duo
* 64bit 2Ghz T7200, 2.16Ghz Core 2 Duo T7600 2.33GHz
|-
| <!--Name-->HP Pavilion DV2000 CTO || <!--Chipset-->945GMS || <!--IDE--> || <!--SATA--> || <!--Gfx-->GMA 950, X3100, Nvidia 8400M || <!--Audio-->HD Audio Conexant CX 20549 Venice || <!--USB--> || <!--Ethernet-->Nvidia MCP51 || <!--Wireless-->{{No|Broadcom BCM 4311 or Intel 3945 4965 ABG bios locked}} || <!--Test Distro--> || <!--Comments-->2008 Atheros AR5007eg if apply hacked bios RISKY
|-
| <!--Name-->Compaq Presario C700 || <!--Chipset-->GMA960 || <!--IDE--> || <!--SATA--> || <!--Gfx-->X3100 || <!--Audio-->HD Audio || <!--USB--> || <!--Ethernet-->RTL 8139 || <!--Wireless-->{{Maybe|Atheros AR5007 AR5001 AR242x}} || <!--Test Distro--> || <!--Comments-->2008
|-
| <!--Name-->Compaq 2510p 6510b 6710b 6910b || <!--Chipset-->GMA 965GM GL960 || <!--IDE-->{{yes| }} || <!--SATA--> || <!--Gfx-->{{yes|X3100 some 2d but slow software 3d only}} || <!--Audio-->{{maybe|HD Audio ADI AD1981 HD low volume on head phones}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{no|Intel 82566 or Broadcom BCM 5787M}} || <!--Wireless-->{{No|Intel 3945ABG or 4965ABG bios locked}} || <!--Test Distro-->Aspire OS Xenon 2014 || <!--Comments-->2008 no sd card boot support - F9 to choose boot option - [http://forums.mydigitallife.info/threads/7681-This-is-no-request-thread!-HP-COMPAQ-bioses-how-to-modify-the-bios/page111?p=333358#post333358 whitelist removal (risky) bios block for wifi card swap]
|-
| <!--Name-->CQ40 CQ41 || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|VESA Intel}} || <!--Audio-->HD Audio || <!--USB--> || <!--Ethernet-->Realtek RTL8101E || <!--Wireless-->{{No|Broadcom BC4310 bios locked}} || <!--Test Distro--> || <!--Comments-->2008
|-
| <!--Name-->Compaq Presario CQ35 CQ36 || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|VESA }} || <!--Audio--> || <!--USB--> || <!--Ethernet-->Realtek RTL8101E RTL8102E || <!--Wireless-->{{No|Broadcom BCM4312 bios locked}} || <!--Test Distro--> || <!--Comments-->2008 Compal LA-4743P -
|-
| <!--Name-->HP Compaq CQ42 CQ43 CQ45 || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|VESA }} || <!--Audio-->HD Audio with Coxenant codec || <!--USB--> || <!--Ethernet-->Realtek || <!--Wireless-->{{No|Realtek RTL8191SE, Realtek 8188CE}} || <!--Test Distro--> || <!--Comments-->2008 (Quanta AX1)
|-
| <!--Name-->Compaq Presario CQ50 CQ56 || <!--Chipset-->Nvidia MCP78S || <!--IDE--> || <!--SATA--> || <!--Gfx-->Geforce 8200M || <!--Audio-->nVidia HD Audio with codec || <!--USB--> || <!--Ethernet-->nvidia MCP77 || <!--Wireless-->{{unk|Atheros AR928X bios locked}} || <!--Test Distro--> || <!--Comments-->2008 [http://donovan6000.blogspot.co.uk/2013/06/insyde-bios-modding-wifi-and-wwan-whitelists.html bios modding risky] MCP72XE MCP72P MCP78U MCP78S
|-
| <!--Name-->CQ60 || <!--Chipset-->Single core Sempron to dual turion || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|VESA for Nvidia 8200M}} || <!--Audio-->{{yes|HD Audio}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{no| }} || <!--Wireless-->{{No| bios locked}} || <!--Test Distro--> || <!--Comments-->2008
|-
| <!--Name-->HP DV6700 || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{no|Vesa for Nvidia 8400M}} || <!--Audio-->{{no| }} || <!--USB-->{{no| }} || <!--Ethernet-->{{no| }} || <!--Wireless-->{{No|Intel }} || <!--Test Distro--> || <!--Comments-->2008 64bit -
|-
| <!--Name-->CQ60 || <!--Chipset-->Intel C2D || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|VESA for Nvidia 9200M}} || <!--Audio-->{{yes|HD Audio}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{no| }} || <!--Wireless-->{{No| bios locked}} || <!--Test Distro--> || <!--Comments-->2009 64bit -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->CQ57z || <!--Chipset-->AMD slow E-300 || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->{{Maybe|VESA ATi HD 6310 wrestler}} || <!--Audio-->{{unk| }} || <!--USB-->{{yes| }} || <!--Ethernet-->{{maybe|Realtek RTL8101 RTL8102}} || <!--Wireless-->{{No|RaLink RT5390}} || <!--Test Distro--> || <!--Comments-->2011 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name-->HP CQ58z 103SA E5K15EA || <!--Chipset-->AMD slow Dual-Core E1-1500 APU with A68M FCH || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->{{Maybe|VESA 2D for Radeon HD 7310}} || <!--Audio-->Realtek idt codec || <!--USB-->{{yes| }} || <!--Ethernet-->{{yes|Realtek 10/100 BASE-T}} || <!--Wireless-->{{No|Broadcom}} || <!--Test Distro--> || <!--Comments-->2011 64bit does not support AVX or SSE 4.1 - 39.6 cm (15.6") HD BrightView LED-backlit (1366 x 768)
|-
| <!--Name-->HP 635 DM1 || <!--Chipset-->AMD slow E-300, E-450 later E2-1800 on SB7x0 SB8x0 SB9x0 || <!--IDE-->{{N/A}} || <!--SATA-->ATI non efi SATA AHCI - IDE mode || <!--Gfx-->{{Maybe|use VESA 2D - AMD HD6310, 6320 to HD7340}} || <!--Audio-->{{Yes|Realtek ALC270A GR but not Wrestler HDMI Audio}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{Yes|rtl8169 driver covers Realtek RTL8101E RTL8102E}} || <!--Wireless-->{{unk|Atheros AR9285}} || <!--Test Distro--> || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 - 14" 1366 x 768 - f9 f10 - external battery - 2 stacked ddr3l sodimm slots max 16Gb under one base plate - removable keyboard -
|-
| <!--Name-->HP G6 2000-2b10NR 2000-2d10SX 2000-2d80NR || <!--Chipset-->AMD very slow E1-2000 E2-3000M on A50M (soldered) A4-3305A on A60M (socket) || <!--IDE-->{{N/A}} || <!--SATA-->2.5in || <!--Gfx-->{{Maybe|VESA AMD Radeon 6320, 6620G, 6520G, 6480G, 6380G}} || <!--Audio-->{{No| }} || <!--USB-->{{No| }} || <!--Ethernet-->{{maybe|Realtek 100 1000}} || <!--Wireless-->{{No|Realtek}} || <!--Test Distro--> || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 - 39.6-cm (15.6-in) HD LED BrightView (1366×768) - 1 or 2 ddr3l max 8G - 19VDC 3.42A Max 65W Tip 7.4mm x 5.0mm -
|-
| <!--Name-->HP ProBook 6465B || <!--Chipset-->AMD massively slow A6-3310MX or A6-3410MX with A60M || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->{{Maybe|VESA AMD 6480G or 6520G}} || <!--Audio-->{{No|IDT 92HD81B1X}} || <!--USB-->{{No| }} || <!--Ethernet-->{{maybe|rtl8169 Realtek 8111}} || <!--Wireless-->{{No|Intel AC 6205 or broadcom 4313 bios locked}} || <!--Test Distro--> || <!--Comments-->2013 64bit does not support AVX or SSE 4.1 - 13-inch or 14-inch runs hot -
|-
| <!--Name-->HP Elitebook 8470p 8570p || <!--Chipset-->Intel Quad i7-3840QM, i7-3610QM, i7-3520M, i5-3210M, i3-3130M, i3-2370M on Intel QM77 chipset || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|set the bios boot options to not fastboot and drive mode IDE rather than AHCI }} || <!--Gfx-->{{Maybe|Vesa 2d for HD4000 with some having switchable Radeon M2000 or 7570M}} || <!--Audio-->{{yes|HDAudio for IDT codec}} || <!--USB-->{{yes|USB2}} || <!--Ethernet-->{{No|Intel 82579LM }} || <!--Wireless-->{{No|Intel, Broadcom, Atheros}} || <!--Test Distro-->64 bit boots from CD* if safe mode 2 is used, although it is possible to remove the 'nodma' and 'debug' entries and boot || <!--Comments-->2013 64bit with SSE4.1 and AVX - 14in 1600 x 900 to 1366 x 768 - 2 DDR3L sodimm slots max 16Gb - TPM 1.2 - dual boot 32/64 bit is working fine -
|-
| <!--Name-->HP ProBook 6475b, Probook 4445s 4545s, HP Pavilion 15-b115sa, [https://support.hp.com/gb-en/document/c04015674#AbT6 HP mt41 Mobile Thin Client PC] || <!--Chipset-->AMD very slow A4 4300M, A6 4400M 4455M or A8 4500M with AMD A70M A76M FCH || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->{{Maybe|VESA 7420 7520G 7640G 7660G}} || <!--Audio-->{{no|HD Audio with idt or realtek codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{No|Realtek RTL8151FH-CG}} || <!--Wireless-->{{No|Intel 6205 or Broadcom BCM 43228 bios locked}} || <!--Test Distro--> || <!--Comments-->2014 64bit does support AVX or SSE 4.1 - 15.6-inch -
|-
| <!--Name-->HP ENVY 15-k112nl K1Y78EA || <!--Chipset-->Intel® Core™ i7 i7-4510U || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe| }} || <!--Gfx-->Intel HD4400 and/without NVIDIA® GeForce® GTX 850M || <!--Audio-->{{maybe| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{no| }} || <!--Wireless-->{{no| }} || <!--Test Distro-->Deadwood usb3 test iso || <!--Comments-->2014 64bit - 15.6" 768p to 1080p - 19.5V 3.33A/4.62A/6.15A 65W/90W/120W AC -
|-
| <!--Name-->HP ProBook 255 G1, 455 G1 F2P93UT#ABA, 645 G1, Envy 15-j151ea G7V80EA, Envy m6-1310sa (E4R01EA#ABU) || <!--Chipset-->AMD very slow Dual-Core E1-1500, or AMD Quad A4-4300M A8-4500M A10-4600M A4-5150M A6-5350M 2.9Ghz A10-5750M || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->{{Maybe|VESA 2D for 7310, 7420G 7520G 7640G 7660G 8350G 8450G or 8550G, 8650G, 8750G }} || <!--Audio-->{{No|HD Audio IDT 92HD91 codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|realtek}} || <!--Wireless-->{{No|Atheros}} || <!--Test Distro--> || <!--Comments-->2015 64bit does support AVX or SSE 4.1 - 14in and 15in 1366 x 768 - external battery - 2 ddr3l sodimm slots - 19.5v / 4.62A psu runs hot -
|-
| <!--Name-->HP ProBook 245 G4, 255 G2, 455 G2, 255 G3, 455 G3, 255 G4 80CB, 255 G5 82F6, 355 G2, HP Pavilion 15-p038na 15-g092sa 15-p091sa 15-G094S 15-p144na 15-p142na, 15-Af156sa || <!--Chipset-->AMD very slow A4-5000 A6-5200, E2-6110, E1-6010 E2-2000, E1-2100 E2-3800, A4-6210 A6-6310 A8-6410, E2-7110, A6-7310 A8-7410 APU on A68M || <!--IDE-->{{N/A}} || <!--SATA-->sata some with cdrw dvdrw || <!--Gfx-->{{Maybe|VESA Radeon R2 R4 R5}} || <!--Audio-->{{no|HD Audio ALC3201-GR}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 RTL8102E or Atheros 1GbE}} || <!--Wireless-->{{unk|Qualcomm Atheros AR9565}} || <!--Test Distro--> || <!--Comments-->2015 64bit most have SSE4 AVX but E2-2000 does not - 15.6-inch (1366 x 768) - 2 ddr3l sodimm slots - small 31Whr or 41Whr external battery covers 240 G4, 245 G4, 250 G4, 255 G4, 256 G4, 14G, 15G - keyboard repair swap requires removal of all components -
|-
| <!--Name-->HP Elitebook 725 G2, 745 G2, 755 G2 || <!--Chipset-->Amd Quad very slow A6-7050B A8-7150B 1.9GHz A10-7350B || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->{{Maybe|VESA on AMD R4 R5 Radeon R6 with DP and vga}} || <!--Audio-->{{No|HD audio with IDT 92HD91}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 PCIe GBE}} || <!--Wireless-->{{no|Broadcom or Atheros}} || <!--Test Distro--> || <!--Comments-->2016 64bit - 12.5-inch, 14" or 15.6in (all 1366 x 768) - 19.5V 65w 45W AC adapter - internal pull up tab battery under base which slides off - 2 ddr3l sodimm slots - keyboard swap requires removal of all components -
|-
| <!--Name-->HP ProBook 645 g2, Probook 445 G2, Probook 245 G2 most have cmos rtc battery || <!--Chipset-->AMD very slow A6-8600 A8-8700 a10- || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->{{Maybe|VESA 2D for Radeon R5 R6}} || <!--Audio-->{{No|HD Audio }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{No|Intel I219V 100/1000}} || <!--Wireless-->{{No|Intel or Qualcomm Atheros}} || <!--Test Distro--> || <!--Comments-->2016 64bit - 14in and 15.6-inch HD (1366 x 768) or FHD 1080p - 2 ddr3l sodimm slots max 16GB - internal battery - hp ac psu tip -
|-
| <!--Name-->HP Probook 455 G3 should have a cmos battery || <!--Chipset-->AMD slow A10-8700P || <!--IDE-->{{N/A}} || <!--SATA-->1 2.5in sata and most should have 9.5mm dvd-rw || <!--Gfx-->{{Maybe|VESA 2D for Radeon R5}} || <!--Audio-->{{No|HDAudio with Conexant CX7501 codec }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 Realtek RTL8111HSH-CG}} || <!--Wireless-->{{no|RTL8188EE }} || <!--Test Distro--> || <!--Comments-->2016 64bit - 2 ddr3l sodimm slots - keyboard swap problematic -
|-
| <!--Name-->HP Elitebook 725 G3, 745 G3, 755 G3, 725 G4, 745 G4, 755 G4, HP mt43 || <!--Chipset-->Amd slow A8-8600B, A10-8700B, A12-8800B to Quad A8 Pro 9600B to A10 9800 || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->{{Maybe|VESA on AMD R5 R6 R7 with DP and vga but screen is low res, dull colours, and blurry}} || <!--Audio-->{{No|HD audio with IDT codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{No|Broadcom 5762 PCIe GBE}} || <!--Wireless-->{{no|Realtek RTL8723BE-VB}} || <!--Test Distro--> || <!--Comments-->2016 64bit - 12.5-inch (1366 x 768) to 14" and 15.6in - 2 sodimm ddr3 - 19.5V 45W AC slim 4.5mm hp adapter - randomly shuts down and the noisy fans constantly on - keyboard swap problematic -
|-
| <!--Name-->HP ProBook 645 G3, 655 G3 should have a cmos rtc battery underside of mb || <!--Chipset-->AMD 8th Gen slow A10-8730B, A8-9600B (4c4t) A6-8530B (2c2t) || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->{{Maybe|VESA 2d for AMD R5}} || <!--Audio-->{{No|HD Audio}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 RTL8111HSH}} || <!--Wireless-->{{No|Intel or Realtek}} || <!--Test Distro--> || <!--Comments-->2016 64bit - 15.6in - 2 ddr4 sodimm slots - keyboard repair swap requires removal of all components -
|-
| <!--Name-->HP ProBook 250 G5 easy cmos and external main battery || <!--Chipset-->Intel i7-6500U, i5-6200U, i3-6100U to slow i3-6006U, N3710 all sse4.1 and avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe| }} || <!--Gfx-->{{maybe|VESA 2D for iGPU Intel HD405 to HD520 dGPU or AMD Radeon R5 430M}} || <!--Audio-->{{unk|HDAudio with Realtek ALC3227 (or ALC282) codec 0x0282 }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 rtl8111HSH}} || <!--Wireless-->{{no| }} || <!--Test Distro-->Deadwoods' latest usb3 test iso with noacpi || <!--Comments-->2016 64bit - 15.6 inch 768p - HP ac psu - 2 ddr4 sodimm slots -
|-
| <!--Name-->HP ProBook 250 G6 SL52 LA-E801P - easy cmos battery and external battery || <!--Chipset-->Intel tested '''7200U''' untested 7500U to slow N3060 || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|ahci on M.2 sata or 2.5in whichever installed with 1 m.2 permanent and internal dvdrw}} || <!--Gfx-->{{Maybe|VESA 2D for Intel Intel HD Graphics 620 or AMD Radeon 520}} || <!--Audio-->{{yes|HDAudio 0x8086, 0xa170 or 0x8086, 0x9dc8 with ALC3227 aka ALC282 codec 0x10EC, x0282}} || <!--USB-->{{maybe|intel sunrise point-lp USB3.0 xHCI}} || <!--Ethernet-->{{yes|rtl8169 Realtek RTL8111}} || <!--Wireless-->{{No|RTL8821CE or Intel wifi}} || <!--Test Distro-->Deadwoods' latest usb3 test iso with noacpi || <!--Comments-->2017 64bit 768p or 1080p - 19.5V 65W - 2 DDR4 sodimm slots max 16Gb - keyboard swap problematic - synaptics touchpad - poor hinges -
|-
| <!--Name-->HP Pavilion 14-BS, HP 15-BS LA-E802P cmos battery and external battery || <!--Chipset-->Intel i3-7200U to slow Celeron || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata 2.5in (possibly requires the drive cable and M.2 sata3, most have no cdrw dvdrw}} || <!--Gfx-->{{Maybe|VESA 2d for Intel}} || <!--Audio-->{{No|HDAudio 0x8086, 0x9d70 with ALC codec 0x10EC, x0}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|Realtek rtl8169}} || <!--Wireless-->{{No|RTL8188CTV, RTL8821CE or Intel Dual Band Wireless-AC 3168}} || <!--Test Distro-->Deadwoods' latest usb3 test iso || <!--Comments-->2017 64bit 768p all - 19.5V 65W - DDR4 slot max 8Gb - keyboard swap problematic - synaptics touchpad -
|-
| <!--Name-->HP 14-bw022na - cmos coin battery and external battery || <!--Chipset-->AMD very slow A6-9120 APU || <!--IDE-->{{N/A}} || <!--SATA-->m.2 sata || <!--Gfx-->{{Maybe|VESA 2D for R3}} || <!--Audio-->{{no|HDAudio VOID with conexant CX7501 codec}} || <!--USB-->{{maybe|USB3 not working but port on the right works}} || <!--Ethernet-->{{yes|Realtek GbE}} || <!--Wireless-->{{No|Realtek}} || <!--Test Distro-->Deadwoods' latest usb3 test iso with noacpi || <!--Comments-->2017 64bit 768p to 900p - keyboard swap problematic -
|-
| <!--Name-->HP Probook 455 G4, Probook 455 G5, cmos battery on underside of mb take off back cover and below wifi card || <!--Chipset-->AMD very slow A10-9600P APU, A9-9410, A6-9210 APU || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->{{Maybe|VESA Radeon R4, R5 or R6}} || <!--Audio-->{{No|HD }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|realtek 1GbE}} || <!--Wireless-->{{no|realtek or intel Wireless-AC 7265}} || <!--Test Distro--> || <!--Comments-->2017 64bit 15.6in 768p - 2 ddr4 sodimm slots - keyboard swap problematic - rr03xl battery -
|-
| <!--Name-->HP ProBook 255 G6 (), easy cmos and external battery || <!--Chipset-->AMD very slow E2-9000e, A9-9420, 9220P, A4-9125 (all 2c) AMD A6-9225 AMD A9-9425 || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata 2.5in (possibly requires the drive cable and M.2 sata3 and internal cdrw dvdrw}} || <!--Gfx-->{{Maybe|VESA 2d for R2 R3 R4}} || <!--Audio-->{{No|HDAudio 0x1022, 0x157a or 0x1002, 0x15b3 with ALC codec 0x10EC, x0}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|Realtek rtl8169}} || <!--Wireless-->{{No|RTL8188CTV, RTL8821CE or Intel Dual Band Wireless-AC 3168}} || <!--Test Distro--> || <!--Comments-->2017 64bit 768p all - 19.5V 65W - DDR4 slot max 8Gb - keyboard swap problematic - synaptics touchpad -
|-
| <!--Name-->HP ProBook 255 G7 (la-g078p) - no cmos battery so needs internal battery || <!--Chipset-->AMD very slow E2-9000e, A9-9420, 9220P, A4-9125 (all 2c) AMD A6-9225 AMD A9-9425 || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata 2.5in (possibly requires the drive cable and M.2 sata3, most have no internal cdrw dvdrw}} || <!--Gfx-->{{Maybe|VESA 2d for R2 R3 R4}} || <!--Audio-->{{No|HDAudio 0x1022, 0x157a or 0x1002, 0x15b3 with ALC codec 0x10EC, x0}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|Realtek rtl8169}} || <!--Wireless-->{{No|RTL8188CTV, RTL8821CE or Intel Dual Band Wireless-AC 3168}} || <!--Test Distro--> || <!--Comments-->2017 64bit 768p all - 19.5V 65W - DDR4 slot max 8Gb - keyboard swap problematic - synaptics touchpad -
|-
| <!--Name-->ProBook 245 g8 - no cmos rtc coin battery but uses internal battery || <!--Chipset-->AMD very slow A6-9225, A4-9125, A6-8350B, A4-5350B APU || <!--IDE-->{{N/A}} || <!--SATA-->m.2 sata || <!--Gfx-->{{Maybe|VESA R4 R6}} || <!--Audio-->{{no|HDAudio}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|Realtek GbE}} || <!--Wireless-->{{No|Realtek}} || <!--Test Distro-->Deadwoods' latest usb3 test iso || <!--Comments-->2017 64bit 768p - many later variants - keyboard swap problematic -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Probook 255 G7 84AE 7DE72EA 7DE73EA (epv51 la-g076p) - CMOS Error (502) replace main internal battery HT03XL to have bios remember settings || <!--Chipset-->Ryzen 3 2200U 2300U (2c4t), R5 2500U, R7 2700U (4c8t) Raven Ridge || <!--IDE-->{{N/A}} || <!--SATA-->{{no|M.2 (Sata or NVMe) and very optional 2.5in sata, most have mini sata port}} || <!--Gfx-->{{Maybe|VESA 2d 640p to 768p for AMD Vega 3, 6, or 8}} || <!--Audio-->{{unk|HDAudio 0x1022, 0x15e3 with ALC236 0x10ec, 0x0236 codec}} || <!--USB-->{{maybe|USB3 }} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no|Realtek RTL8821CE, 8822BE or Intel AC 8265}} || <!--Test Distro-->AROS x64 deadwoods' iso does not boot with cd/dvd and installed to 2.5in ssd, boots to grub choice, select but no further and reboots || <!--Comments-->2017 64bit - 12.5 to 15.6in 768p mostly to 1080p - 1 on smaller laptops or 2 ddr4 2400mhz sodimm slots on larger laptops max 16Gb - hp 4.5mm blue tip charging - keyboard swap problematic - esc boot options f9 boot order f10 bios - synaptics touchpad -
|-
| <!--Name-->HP EliteBook 725 G5, 735 G5, 745 G5, 755 G5, Probook 455 G6, ProBook 645 G6 || <!--Chipset-->Ryzen 3 2200U 2300U (2c4t), R5 2500U, R7 2700U (4c8t) Raven Ridge || <!--IDE-->{{N/A}} || <!--SATA-->{{no|M.2 (Sata or NVMe) and very optional 2.5in sata, some have mini sata port but no cdrw dvdrw}} || <!--Gfx-->{{Maybe|VESA 2d 640p to 768p for AMD Vega 3, 6, or 8}} || <!--Audio-->{{No|HDAudio 0x1022, 0x15e3 with ALC 0x10ec, 0x0 codec}} || <!--USB-->{{maybe|USB3 }} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no|Realtek RTL8821CE, 8822BE or Intel AC 8265}} || <!--Test Distro-->Deadwoods' latest usb3 test iso does not boot software error || <!--Comments-->2017 64bit - 12.5 to 15.6in 768p mostly to 1080p - 1 on smaller laptops or 2 ddr4 2400mhz sodimm slots on larger laptops max 16Gb - hp 4.5mm blue tip charging - keyboard swap problematic - esc boot options f9 boot order f10 bios - synaptics touchpad -
|-
| <!--Name-->HP 14-cm, 15-bw0, HP 15-db0043na, HP 15-db0996na, HP 15-db0997na, 17-ca0007na, 17-ca1, ProBook 645 G4 - no cmos battery || <!--Chipset-->Ryzen 2200U (2c 4t) 2500U (4c 8t) with AMD Carrizo FCH 51 || <!--IDE-->{{N/A}} || <!--SATA-->{{no|1 M.2 and 1 2.5in on some larger models and hdd port }} || <!--Gfx-->{{Maybe|VESA Radeon R5 and later Vega 3 or 7}} || <!--Audio-->{{No|HDaudio 0x1002, 0x103c or 0x1022, 0x157a with Realtek ALC3227 0x10ec, 0x0282 but ATI HDMI}} || <!--USB-->{{Maybe|USB3 USB boot drive stuck on kitty's eyes}} || <!--Ethernet-->rtl8169 RTL8111E || <!--Wireless-->{{No|RTL 8723DE 8821 bios locked}} || <!--Test Distro-->2020 Icaros 2.3 USB, Deadwoods' latest usb3 test iso does not boot software error || <!--Comments-->2018 64bit 2kg - screen is dim 14in, 15.6in or 17.3" 768p or 1080p - 65W 19.5V ac adapter - internal 3-cell 41 Wh Li-ion battery does not last long - 2 ddr4 sodimm slots - no DVD-Writer - keyboard swap problematic -
|-
| <!--Name-->HP ProBook 250 G7, 250 G8 - no cmos battery so needs internal battery and needs usb3 boot due to garbage bios boot options || <!--Chipset-->Intel 8235U 8265U || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|M.2 nvme not working, optional sata 2.5in requires LS-G072P and ribbon cable, if internal cdrw dvdrw partial boot}} || <!--Gfx-->{{Maybe|VESA 2D for Intel WhiskeyLake-U 620 GT2 UHD}} || <!--Audio-->{{No|HDAudio 0x8086, 0xa170 or 0x8086, 0x9dc8 with ALC236 codec 0x10EC, x0236}} || <!--USB-->{{maybe|Cannon Point-LP USB3.1 xHCI}} || <!--Ethernet-->{{maybe|rtl8169 Realtek RTL8111}} || <!--Wireless-->{{No|RTL8821CE or Intel Dual Band Wireless-AC 3168}} || <!--Test Distro-->Deadwoods' latest usb3 test iso does not boot stuck on kittys eyes || <!--Comments-->2018 64bit 1080p all - 19.5V 65W - DDR4 slot max 16Gb - keyboard swap problematic - synaptics touchpad -
|-
| <!--Name-->HP 255 G7 7DC73EA 2D200EA 87CE (fpp55 la-g07jp), - CMOS Error (502) replace 41.04Wh ht03xl hto3xl dynapack suzhou main battery to have bios remember settings || <!--Chipset-->'''tested''' R5 3500U (4c8t) '''untested''' mostly dual cores - AMD Athlon Gold 3150U (2c2t), Silver 3050U APU (2c2t), Ryzen 3 Pro 3145U APU, 3200U (2c4t) || <!--IDE-->{{N/A}} || <!--SATA-->{{no|1 m.2 NVMe or sata3 up to 2280, optional 2.5in sata, many have mini-sata slimline 6+7 internal port but no physical 9mm drive}} || <!--Gfx-->{{Maybe|VESA 2D from 640p to 1080p for AMD Vega 3, 6 or 8 with up to 2gb ram taken}} || <!--Audio-->{{unk|HDAudio 0x1022, 0x15e3 with realtek ALC236 codec 0x10ec, 0x0236}} || <!--USB-->{{maybe|USB3 but no usb-c}} || <!--Ethernet-->{{maybe|rtl8169 Realtek GbE RTL8111HSH}} || <!--Wireless-->{{No|Realtek 8822BE}} || <!--Test Distro-->2025 Aros One 32bit and 64bit burnt iso does not fully boot (stuck on kitty's eyes) and installed onto 2.5in on another compatible computer, sometimes has dosboot bootstrap error -6 || <!--Comments-->2018 64bit - 14in / 15.6in dim tn panel 768p or 1080p - 2 ddr4 sodimm slots max 16gb - hp 19.5V 45W 65W AC blue tip round 4.5 mm - keyboard swap problematic - synaptics touchpad - caps lock blinking 3 times then 2 quick pulses means ram or bios issue - f9 boot order f10 uefi - laptop needs usb3 to boot and use so avoid until usb3 arrives
|-
| <!--Name-->HP ProBook 450 G5 needs main battery for bios settings saved || <!--Chipset-->Intel i7-8550U, i5-8250U, i3-8130U, i7-7500U, i5-7200U, i3-7100U, i3-7020, i3-6006U all sse4.1 and avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe| }} || <!--Gfx-->{{maybe|VESA 2D for Intel UHD}} || <!--Audio-->{{unk|HDAudio with codec }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 rtl8111HSH}} || <!--Wireless-->{{no| }} || <!--Test Distro-->Deadwoods' latest usb3 test iso with noacpi || <!--Comments-->2018 64bit - 15.6 inch 768p or 1080p - HP ac psu, 1 ddr4 sodimm slot -
|-
| <!--Name-->[https://support.hp.com/gb-en/document/c06955717 ProBook 245 g8], Probook 445R G6, 455R G6, HP14-dk0599sa, pavilion 15-cw1511na 15-cw1507sa, HP 15s-eq1516sa no cmos battery || <!--Chipset-->AMD Athlon Gold 3150U (2c2t), Silver 3050U APU (2c2t), Ryzen 3 Pro 3145U APU, 3200U (2c4t) and 3500U (4c8t) || <!--IDE-->{{N/A}} || <!--SATA-->{{no|1 m.2 (NVMe or sata3 up to 2280), optional 2.5in sata but resets}} || <!--Gfx-->{{Maybe|VESA 2D from 640p to 1080p for AMD Vega 3, 6 or 8 with up to 2gb ram taken}} || <!--Audio-->{{unk|HDAudio 0x1022, 0x15e3 with realtek ALC codec 0x10ec, 0x0}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 Realtek GbE RTL8111HSH}} || <!--Wireless-->{{No|Realtek 8822BE}} || <!--Test Distro-->Aros || <!--Comments-->2018 64bit - 14in / 15.6in dim tn panel 768p or 1080p - 2 ddr4 sodimm slots max 16gb - hp 19.5V 45W 65W AC blue tip round 4.5 mm - keyboard swap problematic - synaptics touchpad - f9 boot order f10 uefi
|-
| <!--Name-->HP ProBook 450 G6 needs main battery for bios settings saved || <!--Chipset-->Intel i7-8565U, i5-8265U, i3-8165U all sse4.1 and avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe| }} || <!--Gfx-->{{maybe|VESA 2D for Intel UHD 620}} || <!--Audio-->{{unk|HDAudio with Realtek ALC3246 aka ALC295 codec }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 rtl8111HSH}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2019 64bit - 15.6 inch 768p or 1080p - 45W 19.5V HP ac psu - 2 ddr4 sodimm slots -
|-
| <!--Name-->Elitebook 735 G6 5VA23AV, Elitebook 745 G6, 255 g8, HP 15s-dy - no cmos battery || <!--Chipset-->AMD® Ryzen™ 5-3500U Ryzen 3-3300U AMD Ryzen 3-3250U AMD Athlon® Gold 3150U AMD Athlon Silver 3050U AMD 3020e || <!--IDE-->{{N/A}} || <!--SATA-->{{no|m.2 2280 nvme in legacy - hp sure start and secure boot disabled but still issues with gpt installs - LS-H323P LS-K201P}} || <!--Gfx-->{{Maybe|VESA for Vega 8, 5 or 3}} || <!--Audio-->{{No|HDAudio 6.34 ahi with realtek ALC codec 0x10EC, 0x0295}} || <!--USB-->{{maybe|USB3 type-A port boots stick partially to kitty eyes}} || <!--Ethernet-->{{Maybe|rtl8169 realtek RTL8111E or 8111H}} || <!--Wireless-->{{No|realtek or intel}} || <!--Test Distro-->2020 Icaros 2.3 onto USB and AROS One 1.8 USB, Deadwoods' latest usb3 test iso with noacpi || <!--Comments-->2019 64bit - 15.6in 1366x768 to 1920x1080 - 2 3200MHz DDR4 sodimms - 19.5V 2.31A or 20V 2.25 45W 4.5X3.0MM hp - esc bios setup, f9 boot device select - low travel keyboard - poor hw03xl or battery life - plastic hooked base with retained screws - touchpad? -
|-
| <!--Name-->HP ProBook 445 G7, 455 G7 || <!--Chipset-->Ryzen 3 4300U 5 4500U 4700U || <!--IDE-->{{N/A}} || <!--SATA-->1 sata and 1 nvme || <!--Gfx-->{{Maybe|VESA Vega 3}} || <!--Audio-->{{unk|HDAudio with realtek alc236 codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|realtek rtl8111ep}} || <!--Wireless-->{{No|realtek RTL8822CE or intel AC 9260 or Wi-Fi 6 AX200}} || <!--Test Distro-->Deadwoods' latest usb3 test iso || <!--Comments-->2020 64bit - 14 inch 768p or 1080p - 2 ddr4 sodimm slots - smart 45w 65w hp or usb-c charging - keyboard swap problematic - RE03XL battery -
|-
| <!--Name-->HP ProBook 450 G7 || <!--Chipset-->Intel || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe| }} || <!--Gfx-->{{maybe|VESA 2D for Intel UHD}} || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 rtl8111EP}} || <!--Wireless-->{{no| }} || <!--Test Distro-->Deadwoods' latest usb3 test iso with noacpi || <!--Comments-->2020 15.6 inch 768p or 1080p - 1 ddr4 sodimm slot -
|-
| <!--Name-->HP EliteBook 745 G7, 845 G7, HP 15-EH0006NA || <!--Chipset-->AMD Ryzen 3 4300U, 5 4500U, PRO 4650U || <!--IDE-->{{N/A}} || <!--SATA-->SSD M.2 || <!--Gfx-->{{Maybe|VESA AMD Radeon Vega 8}} || <!--Audio-->{{unk|Hdaudio with codec 0x10EC, 0x0257}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{No| }} || <!--Test Distro--> || <!--Comments-->2020 64bit - 15.6in 1080p - 1 ddr4 sodimm slot - Bang & Olufsen speakers - keyboard swap problematic -
|-
| <!--Name-->HP ProBook 255 G8, HP 245 G9, ProBook 255 G9 816C2EA#ABE, - no cmos battery only internal battery || <!--Chipset-->AMD RYZEN 3 5300u, 5425U, 5 5500U 5625U, 7 5700u || <!--IDE-->{{N/A}} || <!--SATA-->{{no|NVMe}} || <!--Gfx-->{{Maybe|VESA AMD Vega 6 or 8 hdmi 1.4B}} || <!--Audio-->{{unk|HDAudio}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 Realtek RTL8111HSH-CG GbE}} || <!--Wireless-->{{No|Realtek RTL8822CE or Intel}} || <!--Test Distro--> || <!--Comments-->2021 64bit - 14" to 15.6in 768p to 1080p poor gamut - 45 or 65w hp psu - 2 ddr4 sodimm slots max 16GB - keyboard swap problematic -
|-
| <!--Name-->HP ProBook 450 G9 || <!--Chipset--> || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe| }} || <!--Gfx-->{{maybe|VESA 2D for Intel Iris Xe}} || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 rtl8111H}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2020 15.6 inch - 1 ddr4 sodimm slot -
|-
| <!--Name-->HP EliteBook 645 g7, 835 G8, 845 g8, HP ENVY x360 13 15, HP 17-cp0021na || <!--Chipset-->AMD Ryzen 5 5650U, 7 5800U, R7 Pro 5850U || <!--IDE-->{{N/A}} || <!--SATA-->NVMe || <!--Gfx-->{{Maybe|VESA 2D for AMD Radeon}} || <!--Audio-->{{unk|HDAudio 0x, 0x with ALC3247 aka ALC236 codec 0x10ec, 0x0236}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{Maybe|Realtek 1Gbe on 645 only}} || <!--Wireless-->{{No| }} || <!--Test Distro--> || <!--Comments-->2021 64bit - 13.3" or 14" 1080p - poor screens low nits and srgb score - 845 gets hot ue to poor cooling - slim round hp ac - keyboard swap problematic -
|-
| <!--Name-->HP Dev One, HP ProBook 455 G8 || <!--Chipset-->AMD Ryzen 7 5800U, R7 5850U || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Maybe|VESA }} || <!--Audio-->{{unk| }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2021 64bit 15.6" 1080p - 2 internal sodimm slots - hp barrel charging -
|-
| <!--Name-->Elitebook 655 g9 669y1ut#aba, || <!--Chipset-->AMD Ryzen 5 PRO 5675U || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Maybe|VESA }} || <!--Audio-->{{unk| }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2021 64bit 15.6" 1080p - 1 or 2 internal sodimm slots - usb-c charging -
|-
| <!--Name-->HP probook 635 Aero G8 || <!--Chipset-->AMD Ryzen 5 5600U || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2921 64bit - 14in 1080p - 2 ddr4 slots - ec chip nuvoton NPCX797HA1B - bios winbond 250256JYEN -
|-
| <!--Name-->HP PROBOOK X360 435 G8 cmos battery || <!--Chipset-->RYZEN 5 5600U || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe| }} || <!--Gfx-->{{maybe|Vesa 2D }} || <!--Audio-->{{maybe|HDaudio with ALC236 codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no|RTL8822CE or Intel AX200}} || <!--Test Distro--> || <!--Comments-->2021 64bit - hp round ac plug -
|-
| <!--Name-->HP Elitebook 845 g9 || <!--Chipset-->AMD 6000 series 6850u || <!--IDE-->{{N/A}} || <!--SATA-->M.2 NVMe || <!--Gfx-->{{Maybe|VESA 2D for Vega 8}} || <!--Audio-->{{unk|HDaudio with codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no| }}Qualcomm Atheros || <!--Test Distro--> || <!--Comments-->2022 64bit aluminum case - 14in 1080p to 2140p 16:10 poor screen again - 2 internal ddr5 sodimm slots - usb-c ac charging avoid any knocks - keyboard swap problematic -
|-
| <!--Name-->HP ProBook 445 G10, 455 G10 || <!--Chipset-->AMD Ryzen 5 7530U || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D for AMD Vega 7 || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2023 64bit - 15.6in - hp round ac -
|-
| <!--Name-->Hp 455 G11 || <!--Chipset-->AMD Ryzen 3 7335U (4c8t), 5 7535U (6c12t), 7 7735U (8c16t) || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D for AMD Vega 7 || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 RTL8111HSH}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2023 64bit - 35.6 cm (14.0 in) 1920x1200 or 2560x1600 - usb-c 45w or 65w ac - 2 ddr5 sodimm slots max 32gb -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|}
====IBM/Lenovo====
[[#top|...to the top]]
Build quality (Lowest to highest)
<pre >
iSeries
Edge
Ideapad
Thinkpad - good cases and construction but electronic internals same as anyone else
</pre >
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->Thinkpad 390X 390E (2626) || <!--Chipset-->Neo Magic MM2200 with C400 P2-266 to P3 500MHz || <!--IDE--> || <!--SATA--> || <!--Gfx-->use VESA || <!--Audio-->{{No|256AV or ESS Solo-1}} || <!--USB--> || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{N/A}} || <!--Test Distro--> || <!--Comments-->1998 32bit
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Thinkpad 600x || <!--Chipset-->Intel 440BX || <!--IDE-->{{Maybe| }} || <!--SATA--> || <!--Gfx-->{{Maybe|use VESA Neomagic NM2360 MagicMedia 256ZX}} || <!--Audio-->{{No|Crystal CS4297A codec}} || <!--USB--> || <!--Ethernet-->{{N/A| }} || <!--Wireless-->{{N/A| }} || <!--Test Distro-->Icaros 1.3.1 || <!--Comments-->1998 32bit a little support - earlier 600 and 600e were Pentium 2 based
|-
| <!--Name-->Thinkpad X20 (2662-32U) X21 || <!--Chipset-->Intel 440 BX ZX DX || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio-->{{no|AC97 with Cirrus Logic Crystal cs4281}} || <!--USB-->1.1 || <!--Ethernet-->no mini pci intel e100 || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2002 32bit
|-
| Thinkpad T20 (2647) T21 (26) T22 || 440BX || {{Maybe| }} || {{N/A}} || {{partial|Savage IX-MV (VESA only)}} || {{no|Cirrus Logic CS 4614/22/ 24/30}} || {{yes|USB 1.1}} || {{yes|Intel PRO 100}} || {{N/A}} || Icaros 1.2.4 || 2002 32bit
|-
| <!--Name-->A21e (2628, 2655) A22e || <!--Chipset-->440MX || <!--IDE--> || <!--SATA--> || <!--Gfx-->Ati rage mobility || <!--Audio-->{{no|AC97 Cs4299 CS4229}} || <!--USB--> || <!--Ethernet-->intel e100 || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2002
|-
| Thinkpad T23 (2647) || i810 || {{yes|IDE}} || {{N/A}} || {{maybe|S3 Super Savage IX/C SDR (VESA only)}} || {{maybe|AC'97 CS4299}} || {{yes|USB 1.1}} || {{yes|Intel ICH3 PRO 100 VE}} || {{no|Realtek RTL8180L others with bios hacking risky}} || || 2003 32bit with some support
|-
| <!--Name-->Thinkpad X22 X23 X24 || <!--Chipset-->830 || <!--IDE--> || <!--SATA--> || <!--Gfx-->ATi Mobility M6 LY || <!--Audio-->Ac97 CS4299 || <!--USB-->2 x 1.1 || <!--Ethernet-->Intel Pro 100 || <!--Wireless-->Actiontec Harris Semi Intersil Prism 2.5 (X23 and X24 only) || <!--Test Distro--> || <!--Comments-->2003 32bit with slice Ultrabase X2 -
|-
| <!--Name-->A30 A30p || <!--Chipset-->830 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Ati Radeon M6 || <!--Audio-->AC97 CS 4299 || <!--USB--> || <!--Ethernet-->Intel Pro 100 ve || <!--Wireless-->{{No|Intel 2200 bios locked}} || <!--Test Distro--> || <!--Comments-->2003 32bit
|-
| <!--Name-->A31 A31p R31 R32 T30 || <!--Chipset-->830 || <!--IDE-->{{yes| }} || <!--SATA-->{{N/A| }} || <!--Gfx-->Ati Radeon 7500 or FireGL || <!--Audio-->{{yes|AC97 Intel with AD1881A codec}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{yes| Intel Pro 100 ve}} || <!--Wireless-->{{No|Intel bios locked}} || <!--Test Distro-->[https://forums.lenovo.com/t5/Android-Ecosystem-Developers/AROS-An-operation-system-inside-Android/td-p/1441741 Icaros 1.5.2] || <!--Comments-->2003 32bit Also tested with Icaros 2.0.3.
|-
| Thinkpad X30 (2673) X31 (2884-xx2) X31t || i830 || {{yes}} || {{N/A}} || {{maybe|VESA only Radeon M6 Mobility}} || {{yes|AC97 - AD1981B codec}} || {{yes|USB 1.1}} || {{yes|Intel PRO 100}} || {{no|Cisco Aironet or Intel 2915 but atheros with bios hacking}} || Icaros 1.4 || 2004 32bit sound bit distorted
|-
| <!--Name-->R50e R51 || <!--Chipset-->855M || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|Intel 855M use VESA}} || <!--Audio-->intel AC97 with AD1981B codec || <!--USB--> || <!--Ethernet-->{{Yes|Intel 100 VE}} || <!--Wireless-->{{No|Intel PRO Wireless 2200BG bios locked}} || <!--Test Distro--> || <!--Comments-->2004 32bit -
|-
| IBM Thinkpad T40 (2373) T41 T41p (2379) T42 T42p T43 T43p || Intel 8xx || {{partial|PIO}} || {{N/A}} || {{partial|ATI mobility 7500 9000 (VESA only)}} || {{yes|AC97 playback}} || {{yes|uhci 1.1 and ehci 2.0}} || {{no|e1000}} || {{Maybe|Intel 2200bg bios locked but possible AR5BMB-44 AR5212 FRU 39T0081 mini PCI}} || Icaros 1.2.4 || 2004 32bit 16v IBM plug - Centrino Needs ATA=nodma option - issues with the inner chip of the SMT BGA graphics chip
|-
| Thinkpad X32 || i855 || {{yes|40, 60 or 80GB 2.5" PATA HDD}} || {{N/A}} || {{maybe|VESA only ATI Mobility Radeon 7000 with 16MB}} || {{maybe| Intel AC'97 Audio with a AD1981B codec}} || {{yes|USB}} || {{no|Intel 1000}} || {{no|Intel 2200 but atheros with bios hacking}} || 2016 Icaros 2.1 || 2004 32bit - 12.1" TFT display with 1024x768 resolution; 256 or 512MB PC2700 memory standard (2GB max)
|-
| <!--Name-->Thinkpad X40 X40t by Quanta || <!--Chipset--> || <!--IDE--> || <!--SATA-->{{N/A}} || <!--Gfx-->{{maybe|Intel 800 (VESA only)}} || <!--Audio-->{{yes|AC97 AD1981B}} || <!--USB-->{{yes}} || <!--Ethernet-->{{no|Intel e1000}} || <!--Wireless-->{{Maybe|Intel but most atheros with bios hacking - difficult though}} || <!--Test Distro--> || <!--Comments-->2004 32bit last IBM design
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Thinkpad X41 (IBM) MT 1864 1865 2525 2526 2527 2528 x41t (Lenovo) MT 1866 1867 || <!--Chipset-->Intel with single core 1.5 1.6 and tablet 1.2GHz || <!--IDE-->{{yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Yes|Intel 915GML 2D}} || <!--Audio-->{{yes|AC97 AD1981B}} || <!--USB-->{{yes}} || <!--Ethernet-->{{no|Broadcom BCM5751M tg3}} || <!--Wireless-->{{Maybe|Intel or MiniPCI Wi-Fi Atheros AR5BMB FRU 39T0081 but ordinary atheros 54meg needs risky bios hacking}} || <!--Test Distro--> || <!--Comments-->2005 32bit - amongst first Lenovo design
|-
| <!--Name-->R52 (most 18xx) || <!--Chipset-->Intel 915 || <!--IDE-->{{Yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Yes|Intel 915GML 2D}} || <!--Audio-->{{yes|AC97 AD1981B}} || <!--USB-->{{yes}} || <!--Ethernet-->{{no|Broadcom}} || <!--Wireless-->{{no|Broadcom bios locked}} || <!--Test Distro--> || <!--Comments-->2005 32bit
|-
| <!--Name-->R52 1846, 1847, 1848, 1849, 1850, 1870 || <!--Chipset-->ATi 200m || <!--IDE-->{{Yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{No|ATI}} || <!--Audio-->{{yes|AC97 AD1981B}} || <!--USB-->{{yes}} || <!--Ethernet-->{{no|Broadcom BCM5751M tg3}} || <!--Wireless-->{{no|Broadcom bios locked}} || <!--Test Distro--> || <!--Comments-->2005 32bit
|-
| <!--Name-->Thinkpad T60 T60P
* 64bit - 6 or 8 is 16:10 on T60/p, eg. 8742-CTO 15.4"
* 32bit - 1 and 2 are 14", 15" 4:3, like 2007-YM3 or 1952-CTO
|| <!--Chipset-->*any* T60/p will take a Core 2 Duo CPU with newer BIOS || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->Intel GMA (2D) with "p" graphics card (ATi V5200 or V5250) || <!--Audio-->{{no|HD Audio}} || <!--USB-->{{yes}} || {{no|e1000e 82573L}} || <!--Wireless-->{{No|Intel ipw3945 ABG but atheros with Middleton's or Zender BIOS hacking risky}} || Icaros 1.4 || <!--Comments-->2006 -
|-
| <!--Name-->X60 x60s x60t tablet || <!--Chipset-->945GMS 940GML || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{yes|Intel GMA (2D)}} || <!--Audio-->{{no|AD1981 HD Audio}} || <!--USB-->{{yes}} || <!--Ethernet-->{{no|Intel}} || <!--Wireless-->{{no|Intel 3945 ABG or fru 39T5578 Atheros 5K AR5BXB6 ar5007eg with bios hacking}} || <!--Comments-->Icaros 1.4 || 2006 32bit - perhaps needs a zendered bios update but risky
|-
| <!--Name-->R60 R60e || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->intel 950 with optional radeon x1300 x1400 || <!--Audio-->HD Audio with 1981HD codec || <!--USB--> || <!--Ethernet-->Intel or Broadcom || <!--Wireless-->{{Maybe|Intel 3945 or atheros fru 39T5578 bios locked}} || <!--Test Distro--> || <!--Comments-->2006 32bit
|-
| Thinkpad T61 T61p without Middleton's or Zender BIOS || Core 2 Duo CPU T7300 T8300 || {{N/A}} || <!--SATA-->{{yes| }} || Intel GMA (2D), NVS 140m or Quadro FX 570M () || {{maybe|HD Audio with Analog Devices AD1984 or AD1984A HD Audio Codec routed to the line output}} || <!--USB-->{{yes}} || {{no|intel e1000e 82573L}} || {{No|Intel but atheros with bios hacking risky}} || Icaros 1.6, AROS One || 2007 64bit
|-
| <!--Name-->X61 x61s X61T Tablet || <!--Chipset-->Core Duo T8100 on i965 || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->{{yes|Intel GMA 3100 (2D) slow 3D}} || <!--Audio-->{{no|AD1984 HD Audio}} || <!--USB-->{{yes|USB 2.0}} || <!--Ethernet-->{{no|Intel 82566DM}} || <!--Wireless-->{{maybe|Atheros AR5212 (some revisions use Intel WLAN runs very hot) bios locked}} || <!--Test Distro--> || <!--Opinion-->2007 64bit ultrabook running very hot - ddr2 max 4gb -
|-
| <!--Name-->R61 R61i || <!--Chipset-->Intel 965 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->intel 965 || <!--Audio-->HD Audio with conexant codec || <!--USB--> || <!--Ethernet-->Broadcom BCM5787M || <!--Wireless-->{{No|Intel 3945 bios locked}} || <!--Test Distro--> || <!--Comments-->2008 64bit
|-
| Lenovo 3000 N200 || <!--Chipset-->Santa Rosa || {{N/A}} || <!--SATA-->{{maybe| }} || {{yes|Geforce 7300 (2D)}} || {{yes|ALC262 HD Audio}} || <!--USB-->{{yes}} || {{no|Broadcom}} || {{no|Intel 3945 bios locked}} || Icaros 1.4 || 2007 64bit 3D graphics parts are supported but buggy.
|-
| Lenovo 3000 N200 / V200 || GM965 ICH9-M with Intel Mobile Core 2 Duo T5450 || {{N/A}} || <!--SATA-->{{maybe| }} || {{yes|X3100 (2D)}} || {{Maybe|HD Audio ALC269VB or CX20549}} || {{yes| }} || {{no|BCM5906M}} || {{no|Intel 3965 / 4965AGN bios locked}} || Icaros 1.4.1 2.1 || 2007 64bits of laptop works
|-
| <!--Name-->X300 || <!--Chipset-->Core 2 Duo Merom SL7100 1.2GHz || <!--IDE-->{{N/A}} || <!--SATA-->1.8 inch || <!--Gfx-->{{maybe|Intel X3100}} || <!--Audio-->HD Audio AD1984A || <!--USB--> || <!--Ethernet-->Intel || <!--Wireless-->{{No|Intel 4965 bios locked}} || <!--Test Distro--> || <!--Comments-->2007 64bit 13.3" TFT 1440x900 (WXGA+) with LED backlight
|-
| <!--Name-->Thinkpad Edge 11″ AMD K325 || <!--Chipset-->M880G || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{maybe|VESA for ATI HD4200}} || <!--Audio-->{{maybe| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 8111}} || <!--Wireless-->{{no|8192CE (Realtek 8176) bios locked}} || <!--Test Distro--> || <!--Comments-->2007 little support
|-
| <!--Name-->Thinkpad X301 || <!--Chipset-->Core 2 Duo Penryn SU9400 Su9600 with GM45 chipset || <!--IDE-->{{N/A}} || <!--SATA-->1.8 inch micro SATA (uSATA) || <!--Gfx-->{{maybe|Intel X4500}} || <!--Audio-->AD1984A || <!--USB--> || <!--Ethernet-->Intel || <!--Wireless-->{{No|Intel 5xxx WiFi link 5100, 5150, 5300 and 5350 (WiMAX) bios locked}} || <!--Test Distro--> || <!--Comments-->2009 WXGA+ (1440×900) LED backlight display - 2774 or 4057 Alps and 2776 Synaptics touchpad - optical bay interface is Legacy IDE (PATA) - Addonics ADMS18SA, Lycom ST-170m
|-
| <!--Name-->X100e || <!--Chipset-->AMD Athlon Neo Single-Core (MV-40) and dual cores || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|2.5in tray in ide mode in bios}} || <!--Gfx-->{{Maybe|Vesa ATI HD3200}} || <!--Audio-->{{yes|HD Audio with CX20582 codec playback}} || <!--USB-->{{Maybe| }} || <!--Ethernet-->{{Yes|Realtek 8111}} || <!--Wireless-->{{no|Realtek r8192se bios locked}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2009 64bit 11.6in 1366 x 768 - 20v 65W round barrel - enter f1 setup f11 diagnostics f12 boot list - runs very warm -
|-
| <!--Name-->SL400 SL500 || Intel || {{N/A}} || {{Yes|IDE mode}} || {{Maybe|Nvidia 9400M}} || {{Maybe|ALC269}} || {{yes|USB 2.0}} || {{Maybe|RTL8169}} || {{Maybe| bios locked}} || ||
|-
| <!--Name-->SL410 SL510 || 965 || {{N/A}} || {{maybe|IDE mode}} || {{maybe|Intel GMA X4500M (some 2D)}} || {{yes|HD Audio with ALC269 codec - speaker and ear phones}} || {{yes|USB 2.0}} || {{yes|RTL8169}} || {{Maybe| bios locked}} || [http://www.amiga.org/forums/showpost.php?p=645774&postcount=28 Icaros 1.3] || 2009 64bit SL-410
|-
| <!--Name-->T400 ODM Wistron || <!--Chipset-->i || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE in BIOS}} || <!--Gfx-->{{Maybe|Intel 4500MHD works limited 2d no 3d - optional switchable Nvidia or ATi HD3470 untested}} || <!--Audio-->{{Yes|HD Audio with Codec CX20561 (T400)}} || <!--USB--> || <!--Ethernet-->{{no|Intel e1000e}} || <!--Wireless-->{{No|Intel Wifi Link 5100 (AGN) half height card with FRU 43Y6493 or 5300 bios locked}} || <!--Test Distro--> || <!--Comments-->2009 64bit 20v lenovo plug - non-free firmware required iwlwifi
|-
| <!--Name-->T400s || <!--Chipset-->i || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE in BIOS}} || <!--Gfx-->{{Maybe|VSEA for Intel 4500MHD works limited 2d no 3d}} || <!--Audio-->{{Maybe|HD Audio with CX20585}} || <!--USB--> || <!--Ethernet-->{{no|Intel e1000e}} || <!--Wireless-->{{No|Intel Wifi Link 5100 (AGN) half height card with FRU 43Y6493 or 5300 bios locked}} || <!--Test Distro--> || <!--Comments-->2009 64bit non-free firmware required iwlwifi
|-
| <!--Name-->Lenovo T500 T510 || <!--Chipset-->i || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE in BIOS}} || <!--Gfx-->{{maybe|VESA for switchable Intel / AMD HD 3640}} || <!--Audio-->{{maybe|Intel HD Audio with a CX20561 (t500) and CX20585 (T510) codec}} || <!--USB--> || <!--Ethernet-->{{no|Intel }} || <!--Wireless-->{{no|Intel or Lenovo branded unit Atheros AR5007EG AR5BHB63 bios locked}} || <!--Test Distro--> || <!--Comments-->2009 64bit
|-
| <!--Name-->X200 ODM Wistron [http://itgen.blogspot.co.uk/2008/12/installing-arch-linux-on-lenovo.html X200s] and x200t tablet model without [http://fsfe.soup.io/post/590865884/the-unconventionals-blog-English-Flashing-Libreboot-on Risky flash of the Libreboot BIOS] || <!--Chipset-->GM45 GS45 with slow Celeron, SU or faster SL Core 2 Duos CPUs || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE in BIOS}} || <!--Gfx-->{{maybe||Intel GMA 4500 MHD 2D but slow software 3D tunnel 10 gearbox 8 tests}} || <!--Audio-->{{yes|Intel HD Audio with Conexant CX20561 codec playback}} || <!--USB-->{{{Yes|USB 2.0 USB SD card reads and writes}} || <!--Ethernet-->{{no|Intel 82567LM Gigabit}} || <!--Wireless-->{{no|Intel Pro 5100 5150 5300 5350 AGN due to whitelist prevention bios locked}} || <!--Test Distro-->Icaros 2.0.1 || <!--Comments-->2009 64bit 12.1" CCFL (webcam version) or LED backlit (no webcam). no support for 54mm express cards or Authentec 2810 fingerprint reader - thinkpoint only no trackpad - thinklight -
|-
| <!--Name-->Lenovo T410 T410s T410si || <!--Chipset-->qm57 with i5 m || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE in BIOS}} || <!--Gfx-->{{maybe|use vesa Intel 5700MHD (Ironlake) core processor igp with optional Nvidia Quadro NVS 3100M}} || <!--Audio-->{{yes|HD Audio Conexant CX20585 codec playback}} || <!--USB-->{{Yes|2.0}} || <!--Ethernet-->{{no|Intel 82577lm gigabit}} || <!--Wireless-->{{unk|Intel n 6200 or Atheros AR9280 AR5BHB92 half size minipcie bios locked}} || <!--Test Distro-->Icaros 2.2 xmas || <!--Comments-->2009 64bit battery life much lower with Nvidia graphics version - no support firewire ricoh r5c832 - ricoh sd card - series 5 3400
|-
| <!--Name-->X201 X201s x201t || <!--Chipset-->QM57 Core i3 370m, i5 M520 2.4GHz or i7 620LM 2.0GHz || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE in BIOS}} || <!--Gfx-->{{Maybe|vesa 2d on Intel GMA HD}} || <!--Audio-->{{yes|Intel HD with [https://ae.amigalife.org/index.php?topic=94.0 Conexant 20585] codec}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{no|Intel}} || <!--Wireless-->{{No|bios locked}} || <!--Test Distro--> || <!--Comments-->2010 X201 arrandale power consumption limits battery life to 3-4 hours for 48Whr though to 6 on 72Whr - 12.5" WXGA
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Ideapad B470, B570, V370, V470, V570 || <!--Chipset-->Intel® Core™ i5 i5-2430M, i5-2450M, || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata}} || <!--Gfx-->Vesa 2d for Intel || <!--Audio-->HDaudio 0x8086, 0x1c20 with codec || <!--USB-->USB3 || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no|whitelisted}} || <!--Test Distro--> || <!--Comments-->2011 64bit - 14in or 15.6in 768p -
|-
| <!--Name-->T420 type 4180 4236, t420s , T520 4239 L520 || <!--Chipset-->i5 2540, 2520 or i7 2860QM 2620 has sse4.1 avx || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE in BIOS but not AHCI}} || <!--Gfx-->{{Maybe|Vesa 136 x 768 - Intel HD 3000 with optional NVS 4200M Nvidia optimus or Radeon HD 565v }} || <!--Audio-->{{Yes|HD Audio playback ear phones only with Conexant CX20672 codec - AHI 6.27}} || <!--USB-->{{Maybe| }} || <!--Ethernet-->{{No|Intel PRO 1000 82579LM}} || <!--Wireless-->{{No|Realtek 1x1, Intel Ultimate-N 6205 6250 2x2 6300 3x3 all bios locked}} || <!--Test Distro-->Icaros 2.2.2 add noacpi to grub boot options || <!--Comments-->2011 64bit - screen 1600x900 or 1366x768 - 2 ddr3l sodimm slots max 16gb -
|-
| <!--Name-->Thinkpad W520 || <!--Chipset--> has sse4.1 avx || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE in BIOS}} || <!--Gfx-->{{Maybe|VESA Intel HD 3000 with nvidia quadro 1000m 2000m optimus issues with Nvidia Intel hybrids}} || <!--Audio-->{{Maybe|Intel Hd with CX 20585 codec}} || <!--USB--> || <!--Ethernet-->{{No|Intel 82579 Lm}} || <!--Wireless-->{{No|Intel 6000s}} || <!--Test Distro--> || <!--Comments-->2011 64bit - 15.6" TFT display with 1366x768 (HD), 1600x900 (HD+) or 1920x1080 (FHD) resolution with LED backlight
|-
| <!--Name-->X220 x220t || <!--Chipset-->QM67 express, dual i5 2520M or i7 dual 2620M sse4.1 avx support || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE in BIOS but not AHCI}} || <!--Gfx-->{{Maybe|VESA 2D 1024 x 768 for Intel HD Graphics 3000}} || <!--Audio-->{{Yes|Intel HD playback with Conexant 20672 codec ear phones and speaker - AHI 6.27 6.34}} || <!--USB-->{{Yes|USB 2.0}} || <!--Ethernet-->{{No|Intel 82579LM}} || <!--Wireless-->{{No|Intel Centrino Advanced-N 6205 Wi-Fi bios locked}} || <!--Test Distro-->Icaros 2.3, Aros One USB 1.6 || <!--Comments-->2011 64bit possible - uses slimmer 7 mm storage sata devices - NEC USB 3.0 on i7's - unwanted trackpad gestures when palms rests on it - 2 ddr3 sodimm slots - external battery -
|-
| <!--Name-->Thinkpad X120e, x121e Quanta FL8A DAFL8AMB8D0 Rev D || <!--Chipset-->Hudson M1 with slow AMD E350 has no sse4.1 or avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata}} || <!--Gfx-->{{Maybe|VESA ATI 0x9802}} || <!--Audio-->{{Maybe|ATI SBx00 Azalia HD Audio}} || <!--USB-->USB 2.0 || <!--Ethernet-->RTL8169 RTL8111 || <!--Wireless-->{{no|Broadcom 0x0576 bios locked}} || <!--Test Distro--> || <!--Comments-->2011 64bit 11.6 inch screen - 1 inch think - chiclet keyboard
|-
| <!--Name-->Ideapad S205 G575 G585, Edge 11 E325 || <!--Chipset-->Slow E-350 later E-450 with A75 or AMD Athlon II Neo has no sse4.1 or avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata}} || <!--Gfx-->{{Maybe|VESA HD6310}} || <!--Audio-->{{Yes| }} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No|Atheros}} || <!--Wireless-->{{No|Broadcom}} || <!--Test Distro--> || <!--Comments-->2011 64bit does not support AVX or SSE 4.1 - removeable and plug in battery - 2pin CR2032 CMOS battery -
|-
| <!--Name-->Ideapad S206 || <!--Chipset-->AMD E300 1.3GHZ Dual has no sse4.1 or avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata}} || <!--Gfx-->{{Maybe|VESA }} || <!--Audio-->{{Maybe|Intel HD Audio with CX20672 codec}} || <!--USB-->{{Maybe|3.0}} || <!--Ethernet-->Broadcom 10/100 || <!--Wireless-->{{unk|Atheros AR9285}} || <!--Test Distro--> || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 - 11.6" and integrated battery - Conexant®
|-
| <!--Name-->Lenovo x130e or x131e edu || <!--Chipset-->Slow AMD E-300 or E-450 has no sse4.1 or avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata}} || <!--Gfx-->{{Maybe|VESA Radeon HD 6310 or 6320 }} || <!--Audio-->{{Maybe|HD Audio Realtek ALC269VC / ALC3202 codec}} || <!--USB-->{{Maybe|USB 30 and USB 20}} || <!--Ethernet-->{{maybe|Realtek RTL8111 RTL8168B}} || <!--Wireless-->{{No|Realtek RTL8188CE or Broadcom BCM43228 bios locked}} || <!--Test Distro--> || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 - rubber edged bumper for K12 education market - 2pin CR2032 CMOS battery -
|-
| <!--Name-->Thinkpad Edge E135 E335 || <!--Chipset-->amd dual E-300, E2-1800 or E2-2000 slow atom like A68M FCH has no sse4.1 or avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|SATA 3.0Gb/s 2.5" wide 7mm high}} || <!--Gfx-->{{Maybe|VESA radeon 6310 or 7340 vga or hdmi}} || <!--Audio-->{{Maybe|HDAudio with Realtek ALC3202 codec}} || <!--USB-->{{maybe|2 usb3, 1 powered usb2}} || <!--Ethernet-->{{maybe|rtl8169 8111f}} || <!--Wireless-->{{no|Realtek WLAN whitelist bios locked}} || <!--Test Distro--> || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 - 11.6 inch to 13.3in 1366x768 - Acrylonitrile-Butadiene-Styrene (ABS) plastic case - external battery - 20v 65w lenovo barrel ac - 2 ddr3 sodimm 8Gb max -
|-
| <!--Name-->ThinkPad Edge E525 E535 LENOVO IDEAPAD Z575 || <!--Chipset-->AMD A6-3420M A8-3500M later A8-4500M has no sse4.1 or avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata}} || <!--Gfx-->{{Maybe|VESA AMD 6620G later 7640G}} || <!--Audio-->{{No|HDAudio with Conexant codec}} || <!--USB-->{{Maybe|USB2 but not usb3}} || <!--Ethernet-->{{maybe|rtl8169 Realtek 8111}} || <!--Wireless-->{{No|Broadcom bios locked}} || <!--Test Distro--> || <!--Comments-->2013 64bit does not support AVX or SSE 4.1 - 15.6in 1368 x 768 matt - 65W 20v lenovo round psu - thick desktop replacement - ThinkPad Edge E520 E520S E525 E530 E545 E535 E530C Laptop Keyboard swap -
|-
| <!--Name-->T430 t430i T530 || <!--Chipset-->ivy bridge i5 3320 3230m on Intel QM77 has sse4.1 and avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata}} || <!--Gfx-->{{Maybe|VESA 1366 x 768 for Intel HD 4000 with optional Nvidia 5400M}} || <!--Audio-->{{Maybe|Intel HD with Realtek ALC3202 aka ALC269VC codec playback ear head phones - HDA 6.27}} || <!--USB-->{{Yes|USB 2 ports and usb2.0 devices thru usb 3.0 ports}} || <!--Ethernet-->{{No|Intel e1000}} || <!--Wireless-->{{unk|Intel or Atheros AR9285 bios locked}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2013 64bit fan noise and chiclet keyboard, synaptics trackpad - HD+ 768p -
|-
| <!--Name-->Thinkpad X230 x230t || <!--Chipset-->Intel QM67 express i5 has sse4.1 and avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata}} || <!--Gfx-->{{Maybe|VESA }} || <!--Audio-->{{Maybe|Intel HD with ALC269 aka ALC3202}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{no|Intel }} || <!--Wireless-->{{No|I}} || <!--Test Distro--> || <!--Comments-->2013 64bit - 12.2 in 1366 x 768 - 2 ddr3 sodimm slots - external battery -
|-
| <!--Name-->Thinkpad T440 t440s t440p T540 L440 L540 || <!--Chipset-->intel haswell 8 series Core i3 to i7 has sse4.1 and avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata}} || <!--Gfx-->{{Maybe|VESA - Intel 4600 or Nvidia}} || <!--Audio-->Intel HD with Realtek ALC3232 alc269 codec or ALC292 || <!--USB-->{{maybe| }} || <!--Ethernet-->{{No|Intel}} || <!--Wireless-->{{No|Intel AC 7260 bios locked}} || <!--Test Distro--> || <!--Comments-->2014 64bit - 14 and 15" models with glitchy trackpad and no physical buttons - keyboard repair not easy as well as 4 variants of key caps - 2pin CR2032 CMOS battery -
|-
| <!--Name-->Thinkpad X240 x240t ultrabook TN (20AL0081GE), HD IPS display without touch (20AL007NGE) and touch (20AL0076GE) but all 65% sRGB || <!--Chipset-->haswell i7-4600U i5 4200U 4210U 4300U i3-4100U - two batteries, one internal 3cell 45N1110 (45N1111) or 45N1112 (FRU 45N1113) and external 3 / 6cell 45N1126 (FRU 45N1127) || <!--IDE-->{{N/A}} || <!--SATA-->2.5in 7mm sata (torq t7), m.2 2242 in WWAN slot (m and b key NGFF Sata) || <!--Gfx-->{{Maybe|use VESA for Intel 4400 for vga or mini-dp}} || <!--Audio-->{{No|HDAudio 0x8086, 0x0a0c 0x8086, 0x9c20 with Realtek ALC3232 aka ALC292 0x10ec, 0x0292}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{no|Intel® 82577LM Gigabit (Hanksville) }} || <!--Wireless-->{{no|Realtek or Intel 7260n I218-V or I218-LM bios locked}} || <!--Test Distro-->AROS One USB || <!--Comments-->2014 64bit - 12.2in 1366 x 768 or 1080p - 1 ddr3l sodimm slot - no keyboard spill drainage and at least 2 variants of key caps - lenovo rectangle pwr ac - TPM 1.2 - Bluetooth 4.0 no support - bottom panel with 8 retained screws - 2pin CR2032 CMOS battery -
|-
| <!--Name-->ThinkPad Edge E545
* key cap swap with E440 E531 E540 L440 L450 T431S T440S T440P T540
* Keyboard swap L540 T540p W540 Edge E531 E540 W541 T550 W550S L560 P50S T560
|| <!--Chipset-->AMD Socket FS1r2 A6-5350M (2c2t) or A8-4500M, A8-5550M, A10-5750M (4c4t) with A76M FCH has sse4.1 and avx || <!--IDE-->{{N/A}} || <!--SATA-->2.5in 9.5mm - enter UEFI bios with Enter or ESC, config section, sata into compatibility and security, secure boot disabled - mini sata DVD burner PLSD DS8A9SH || <!--Gfx-->{{Maybe|VESA 2D for AMD 7640G, 8450G, 8550G, 8650G ?? Islands}} || <!--Audio-->{{no|VOID for HDAudio 6.34 0x1022, 0x780d with Conexant CX20590 Analog 0x14f1, 0x506e CX20671 codec 0x14f1, 0x5069 or audio over Trinity HDMI}} || <!--USB-->{{maybe|boots pen drives from yellow usb port but not from blue USB3 ones, issues with AMD usb3 hardware quirks}} || <!--Ethernet-->{{yes|rtl8169 1GbE 8111F}} || <!--Wireless-->{{No|Broadcom BCM43142 bios locked}} || <!--Test Distro-->AROS One 2.3 USB works with noacpi added to end of grub2 boot line but not booting on AROS One 64bit 1.1 via usb2 stick or iso burnt to dvd || <!--Comments-->2015 64bit - 15.6in 1366 x 768 matt - 20v 65w 90w round lenovo plug psu - 2 DDR3 SODIMM slots 16GB Max - external 6 Cell Li-Ion Battery 48Wh l11s6y01 45n1043 - 2pin CR2032 CMOS battery in wifi area jp1202 - amd v(tm) virtualization not working -
|-
|<!--Name-->AMD platform codes
*Beema: ABM,
*Carizzo-L: ACL,
*Carizzo: ACZ,
*Godavari: AGR,
*Kaveri: AKV,
*Stoney Ridge: ASR,
*Stoney Ridge: AST (NB),
|| <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
*Summit Ridge: ASU,
*Bristol Ridge-L: ABL,
*Bristol Ridge: ABR,
*Raven Ridge: ARR,
*Picasso: API
|-
| <!--Name-->[https://www.laptop-schematics.com/db/78/V%20series%20laptops%20(Lenovo)/ V110-14AST (14in) V110-15AST, V110-14ISK V110-15ISK 80TL (15")], || <!--Chipset-->AMD E1-9000, A6-9210 to A9-9410 all dual core and intel 6006u, 6100u, 6200u || <!--IDE-->{{N/A}} || <!--SATA-->1 2.5in sata most 7mm some 9.5mm || <!--Gfx-->{{Maybe|VESA 2D for AMD R2, R3, R5 or R6 or Intel Gfx}} || <!--Audio-->{{No|HDAudio with codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2016 64bit - 14in to 15.6in mostly 768p 220 nits - 20v 45W or 65W lenovo slim rectangle end ac - keyboard swap hard - integrated 24WHr battery - 4gb ddr4 ram soldered and 1 2133Mhz ddr4 slot max 12Gb - abs plastic -
|-
|<!--Name-->
*ThinkPad A275 12in (1 ddr4 1866MHz sodimm)
*Thinkpad A475 14in (2 ddr4 1866MHz sodimm) - both internal (main) and external (secondary) battery
|| <!--Chipset-->A10-8730B A10-9700B 2.500Ghz later A12-8830B A12-9800B all 4c4t (AVX2 on 9000s) || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe|7mm 2.5in sata with mbr and not gpt, setup in another machine - secure boot disabled, bios startup boot set to legacy then uefi - WWAN slot cannot use M.2 2242 sata with M and B key}} || <!--Gfx-->{{Maybe|VESA 2D for AMD R5 or R7}} || <!--Audio-->{{No|HDAudio 6.34 ahi 0x1022, 0x157a with ALC3268 aka ALC298 codec 0x10ec, 0x0298 - VOID even with QUERY / QUERYD added}} || <!--USB-->{{no|USB3 error on boot suspect AMD usb3 quirk}} || <!--Ethernet-->{{Yes|rtl8169 RTL8111EPV}} || <!--Wireless-->{{No|Realtek RTL8822BE WLAN whitelist locked cannot swap}} || <!--Test Distro-->{{maybe|AROSOne USB 32bit 1.8 with noacpi noapic noioapic added to grub2 boot line but Aros One 64bit 1.2 USB has krnPanic }} || <!--Comments-->2016 64bit 12 or 14in 768p - 45W or 65w lenovo rectangle ac adapter - F1 enter bios and F12 boot order - 6 retained screws and snap on base - 2100 error message no solution except using only efi/gpt bios option -
|-
|<!--Name-->320S-15AST, 320S-15ABR, ideapad Slim 1-11AST-05 81VR || <!--Chipset-->AMD A6-9220e, AMD A6-9225, A9-9425, A10-9600P 7th Gen || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata 2.5in}} || <!--Gfx-->{{maybe| Vesa 2D for AMD}} || <!--Audio-->{{No| }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{No|Qualcomm Atheros QCA9377 or Realtek RTL8821CE}} || <!--Test Distro--> || <!--Comments-->2018 64bit AVX2 - 14in or 15.6" 768p - 1 ddr4 sodimm slot - keyboard swap problematic -
|-
|<!--Name-->Lenovo Ideapad S145-14AST S145-15AST 81N3 || <!--Chipset-->AMD A6-9225, A9-9425, A10-9600P 7th Gen, AMD A12-9720P Mobo 5B20P11110 NMB341 Bristol Ridge || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata 2.5in}} || <!--Gfx-->{{Maybe|VESA Radeon 8670A 8670M 8690M GCN 3}} || <!--Audio-->{{No| }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{No|Qualcomm Atheros QCA9377 or Realtek RTL8821CE}} || <!--Test Distro--> || <!--Comments-->2018 64bit AVX2 - 14in or 15.6" 768p or 1080p - 1 ddr4 sodimm slot -
|-
|<!--Name-->Lenovo Ideapad V145-14AST V145-15AST, 81mt, Ideapad 310, Ideapad 320-15ABR, Ideapad 330-14AST 330-15AST 330-17AST || <!--Chipset-->AMD A6-9225, A9-9425 (2c2t), A10-9600P 7th Gen, AMD A12-9720P Mobo 5B20P11110 NMB341 Bristol Ridge || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata 2.5in with optional dvd}} || <!--Gfx-->{{Maybe|VESA Radeon 8670A 8670M 8690M GCN 3}} || <!--Audio-->{{unk|HDaudio with ALC3240-va3-cg aka ALC236? codec 0x10de, 0x0236}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{no|rtl8169 8106E 10/100 only}} || <!--Wireless-->{{No|Qualcomm Atheros QCA9377 or Realtek RTL8821CE}} || <!--Test Distro--> || <!--Comments-->2017 64bit AVX2 - 14in or 15.6" 768p or 1080p - 1 ddr4 sodimm slot - 45w 65w slim ac adapter -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
|<!--Name-->Lenovo V330-14ARR 81B1, V330-15ARR 81, 330-14ARR 81 330-15ARR 81D2 - battery internal about 30whr || <!--Chipset-->AMD Ryzen R3 2200U, 2300U or R5 2500U Raven Ridge || <!--IDE-->{{N/A}} || <!--SATA-->M.2 nvme/sata, optional 2.5in sata but no dvd || <!--Gfx-->{{Maybe|VESA Vega 3, 6 or 8 up to 1Gb of soldered ram memory taken}} || <!--Audio-->{{No|HDAudio 0x1002, 0x15de with Realtek® ALC5682I-VD codec 0x10de, 0x or coxenant CX11802 codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|Realtek 1GbE}} || <!--Wireless-->{{no|Realtek}} || <!--Test Distro--> || <!--Comments-->2018 64bit - 14" 768p 20mm thick 1.8kg - 20v 2.25a 45w ac round barrel - chiclet keyboard - 4Gb soldered and 1 ddr4 sodimm - TPM 2.0 in bios - 4GB soldered -
|-
|<!--Name-->Ideapad 330s-14ARR, 330s-15ARR, ideapad 330S-14IKB, 330S-15IKB, - battery internal about 30whr || <!--Chipset-->AMD Ryzen R3 2200U, 2300U or R5 2500U Raven Ridge || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|nvme}} || <!--Gfx-->{{Maybe|VESA 2D for AMD or Intel 610, 620 up to 1Gb of soldered ram memory taken}} || <!--Audio-->{{No|HD Audio with codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no|Realtek}} || <!--Test Distro--> || <!--Comments-->2018 64bit - 14" 20mm thick 1.8kg - 20v 2.25a 45w ac round barrel - chiclet keyboard - 4Gb soldered and 1 ddr4 sodimm - TPM 2.0 in bios - 4GB soldered -
|-
|<!--Name-->Thinkpad Edge E485 E585 - internal battery only || <!--Chipset-->AMD Ryzen R3 2300U R5 2500U R7 2700U || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|m.2 nvme optional 1 2.5in sata}} || <!--Gfx-->{{Maybe|VESA for Vega 3, 8 or 10}} || <!--Audio-->{{No|HDAudio with CX11852 codec }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 rtl8111GUS}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2018 64bit - 14in or 15.6in 768p or 1080p - USB-C 20V 2.25A 3.25A avoid knocking charging port as damages easily - 2 ddr4 sodimm slot max 2400Mhz 32GB - TPM 2.0 software -
|-
|<!--Name-->Thinkpad A285 - internal and external battery || <!--Chipset-->AMD Ryzen PRO 3 2200U 5 2500U || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|m.2 nvme/sata}} || <!--Gfx-->{{Maybe|VESA Vega up to 2Gb of soldered ram memory taken}} || <!--Audio-->{{unk|HD Audio with ALC ALC3287 codec aka ALC257 }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{No|Mini-Ethernet/Docking}} || <!--Wireless-->{{no|Realtek or Qualcomm - WLAN whitelist no more??}} || <!--Test Distro--> || <!--Comments-->2018 64bit - 12.5in 1080p - avoid usb-c port being lifted/moved whilst in use as damages laptop easily - soldered ram 8gb or 16gb - WWAN whitelist - keyboard swap problematic -
|-
|<!--Name-->Thinkpad A485 bios setting [https://github.com/PSPReverse/PSPTool AMD PSP Platform Security Processor Key] - internal and external battery || <!--Chipset-->AMD Ryzen PRO 5 2500U || <!--IDE-->{{N/A}} || <!--SATA-->sata port and m.2 nvme port || <!--Gfx-->{{Maybe|VESA Vega }} || <!--Audio-->{{unk|HD Audio with ALC ALC3287 codec aka ALC 257 }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 RTL8111GUL}} || <!--Wireless-->{{no|Realtek or Qualcomm wifi - WLAN whitelist no more??}} || <!--Test Distro--> || <!--Comments-->2018 64bit - 14in 768p, 1080p or 1440p - avoid usb-c port being lifted/moved whilst in use as damages laptop easily - 2 ddr4 sodimm slots max 32gb - WWAN whitelist - keyboard swap problematic -
|-
|<!--Name-->[https://www.diy-laptoprepair.com/forum/fix-Lenovo-V155-15-repair-guide-schematics.php Lenovo v155-15api 81V5] V155 (15" AMD) budget all plastic build - MS new protocol, HID over I2C so [https://askubuntu.com/questions/1033033/elantech-touchpad-does-not-work-i2c-hid i2c] [https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/drivers/input/mouse/elantech.c?h=v6.17 i2c] [https://www.kernel.org/doc/html/v4.16/input/devices/elantech.html PS2 hybrid trackpad] [https://cgit.freebsd.org/src/tree/sys/dev/atkbdc/psm.c?h=releng/14.3 elantech] [https://cvsweb.openbsd.org/cgi-bin/cvsweb/src/sys/dev/pckbc/?only_with_tag=OPENBSD_7_8_BASE i2c-hid] 04F3:3140 touchpad not working - internal sunwoda battery L18D3PF1, L18L3PF1, L18C3PF2 35Whr most dead after 5 years || <!--Chipset-->'''tested''' Ryzen 5 3500U and Ryzen 3 3200U - '''untested''' AMD Athlon 300U with bios winbond 25q64fwsiq soic 1.8v bios near nvme || <!--IDE-->{{N/A}} || <!--SATA-->1 M.2 nvme and usually 2.5in 7mm sata - install on mbr not gpt 2.5in in another compatible machine - mini sata dvd/cd da-8aesh11b will boot cd or dvd aros || <!--Gfx-->{{Maybe|VESA 2D to 1080p work for Vega 3 or 8 with up to 2Gb of soldered ram memory taken but hdmi 1.4b no output}} || <!--Audio-->{{Yes|HDAudio add 0x1022, 0x15E3 with ALC3287 aka Realtek ALC257 codec 0x10ec, 0x0257 with 32bit on external speaker and most of the time works on 64bit}} || <!--USB-->{{maybe|2 USB3.0, on left hand side, detected but no usb-c ports}} || <!--Ethernet-->{{yes|rtl8169 RTL8111GUS works well with 32bit and 64bit}} || <!--Wireless-->{{no|Realtek or Intel wifi}} || <!--Test Distro-->2025 AROS One 2.8 DVD 32bit and AROS One x64 1.1 and 1.2 iso DVD burnt || <!--Comments-->2019 64bit - 15.6in 768p or 1080p 200nits tn panel - 4Gb ddr4 2400MHz soldered with 1 dimm slot max 20Gb - round ac 20V 65W psu 4.0mm x 1.7mm - Fn+F2 to enter bios and F12 boot order - no sd card slot - 2pin cr2032 cmos coin battery -
|-
|<!--Name-->V15-ADA 82C700E4UK- elan touchpad not working - internal battery 34whr L16M2PB2 l16l2pb3 || <!--Chipset-->AMD r5 3500U || <!--IDE-->{{N/A}} || <!--SATA-->1x 2.5" HDD + 1x M.2 SSD NVMe near fan, no cd dvd || <!--Gfx-->{{Maybe|VESA 2D for Vega 3, 8 with up to 1080p with 2Gb of soldered ram memory taken}} || <!--Audio-->{{Yes|HD Audio 6.36 0x1022, 0x15E3 with R155189 ALC236 codec 0x10ec, 0x0236 on 32bit and on 64bit}} || <!--USB-->{{maybe|3 USB3, on left hand side,}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no|Realtek or Qualcomm wifi}} || <!--Test Distro-->2025 3500U with Aros One 32bit 2.8 installed to 2.5in drive on another machine and same for 64bit || <!--Comments-->2019 64bit - 14 or 15.6in 768p on low spec machines to 1080p - 4GB soldered with 1 ddr4 sodimm slot - 2pin cr2032 cmos coin battery - sd card slot - noisy fan -
|-
|<!--Name-->V15-ADA 82C7 - elan touchpad not working - internal battery 34whr L16M2PB2 l16l2pb3 || <!--Chipset-->AMD Athlon Silver 3020e, Ryzen 3 3050U, 3150U, 3250U || <!--IDE-->{{N/A}} || <!--SATA-->1x 2.5" HDD + 1x M.2 SSD NVme near fan, no cd dvd || <!--Gfx-->{{Maybe|VESA 2D for Vega 3, 8 with up to 1080p with 2Gb of soldered ram memory taken}} || <!--Audio-->{{No|HD Audio 6.36 0x1022, 0x15E3 with RTS5119 R155119 ALC230 codec}} || <!--USB-->{{maybe|3 USB3.0, on left hand side,}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no|Realtek or Qualcomm wifi}} || <!--Test Distro-->2025 Aros One 32bit 2.8 and 64bit || <!--Comments-->2019 64bit - 14 or 15.6in 768p on low spec machines to 1080p - 4GB soldered with 1 ddr4 sodimm slot - 2pin cr2032 cmos coin battery - sd card slot - for this mbd bios ram disable doesn't work - noisy fan -
|-
|<!--Name-->Lenovo V14-ADA 82C6, - elan touchpad not working - if blank black display, bios bug going from uefi->legacy so reset bios rhs push in with pin, then Down, ent, Right x3, ent, up, ent, right, ent x2 - internal battery 34whr L16M2PB2 l16l2pb3 || <!--Chipset-->'''tested''' 3250U - '''untested''' AMD Athlon Silver 3020e, Ryzen 3 3050U, 3150U - for this mbd GV451&GV551 NM-D151 bios ram disable doesn't work || <!--IDE-->{{N/A}} || <!--SATA-->1x 2.5" HDD if cbl + 1x M.2 SSD NVMe near fan, no cd dvd || <!--Gfx-->{{Maybe|VESA 2D for Vega 3 up to 1080p with 2Gb of soldered ram memory taken}} || <!--Audio-->{{no|HD Audio 6.36 0x1022, 0x15E3 with Realtek ALC3223 RTS5119 R185199 aka ALC230 codec 0x10ec, 0x0230 on 32bit and on 64bit}} || <!--USB-->{{maybe|3 USB3, on left hand side,}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no|Realtek or Qualcomm wifi}} || <!--Test Distro-->2025 AMD 3250U with Aros One 32bit 2.8 installed to 2.5in drive on another machine and same for 64bit || <!--Comments-->2019 64bit - 14 or 15.6in 768p on low spec machines to 1080p - 4GB soldered with 1 ddr4 sodimm slot - 2pin cr2032 cmos coin battery - sd card slot - F2 bios F12 select -
|-
|<!--Name-->IdeaPad 1 14ADA5 (low spec cpus) ideaPad 3 14ADA05, IdeaPad 3 15ADA05 81W100QVUK, IdeaPad 3 17ADA05 - elan touchpad not working - internal battery 34whr L16M2PB2 l16l2pb3 || <!--Chipset-->AMD Athlon Silver 3020e, Ryzen 3 3050U, 3150U, 3250U, Ryzen 5 3500U on mobo NM-C821 REV 0.2 1.0 || <!--IDE-->{{N/A}} || <!--SATA-->1x 2.5" HDD if cbl + 1x M.2 SSD NVMe near fan, no cd dvd || <!--Gfx-->{{Maybe|VESA 2D for Vega 3, 8 up to 1080p with 2Gb of soldered ram memory taken}} || <!--Audio-->{{no|HD Audio 6.36 0x1022, 0x15E3 with ALC230 codec 0x10ec, 0x0230 on 32bit and on 64bit}} || <!--USB-->{{maybe|3 USB3, on left hand side,}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no|Realtek or Qualcomm wifi}} || <!--Test Distro-->2025 Aros One 32bit 2.8 installed to 2.5in drive on another machine and same for 64bit || <!--Comments-->2019 64bit - 14 or 15.6in 768p on low spec machines to 1080p - 4GB soldered with 1 ddr4 sodimm slot - 2pin cr2032 cmos coin battery - sd card slot - F2 bios F12 boot select -
|-
|<!--Name-->Lenovo IdeaPad L340-15API 81LW001CUS L340-17API - elan trackpad not functioning - internal battery L18M3PF2 || <!--Chipset-->AMD Athlon 300U, Ryzen 3 3200U r5 3500U || <!--IDE-->{{N/A}} || <!--SATA-->1 M.2 nvme and usually 2.5in sata if ribbon cable present - mini sata dvd/cd da-8aesh11b || <!--Gfx-->{{Maybe|VESA 2D for Vega 3 or 8 with up to 2Gb of soldered ram memory taken - hdmi 1.4b}} || <!--Audio-->{{unk|HDAudio add 0x1022, 0x15E3 with Realtek ALC236 0x10ec, 0x0236}} || <!--USB-->{{maybe|USB3 not detected}} || <!--Ethernet-->{{maybe|rtl8169 RTL8111GUS}} || <!--Wireless-->{{no|Realtek or Intel wifi}} || <!--Test Distro-->AROS One 2.8 USB - install on mbr not gpt 2.5in in another compatible machine || <!--Comments-->2019 64bit - 15.6in 768p or 1080p 200nits - 4Gb ddr4 2400MHz soldered with 1 dimm slot max 20Gb - round ac 20V 65W psu 4.0mm x 1.7mm - Return or F1 to enter bios and F12 boot order - no sd card slot -
|-
|<!--Name-->[https://www.laptop-schematics.com/db/78/T%20series%20laptops%20(ThinkPad)/ ThinkPad T295 T495] || <!--Chipset-->Ryzen 3 3300U, R5 Pro 3500U or R7 3700U || <!--IDE-->{{N/A}} || <!--SATA-->1 NVMe up to 2280 || <!--Gfx-->{{Maybe|VESA Vega 6, 8 or 10 up to 2Gb of soldered ram memory taken}} || <!--Audio-->{{unk|HD Audio with Realtek® ALC3287 codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 Realtek RTL8111EPV}} || <!--Wireless-->{{No|Realtek RTL8822BE or Intel AC 9260}} || <!--Test Distro--> || <!--Comments-->2019 64bit - 14in 768p but mostly FHD 1080p 250 nits - internal battery - ram 8gb or 16gb 2400Mhz soldered with 1 ddr4 slot on T495 only - TPM 2.0 - usb-c charging avoid knock whilst in use - keyboard swap problematic -
|-
|<!--Name-->ThinkPad T495s (14in) X395 (13in) || <!--Chipset-->Ryzen 3 3300U, R5 Pro 3500U or R7 3700U || <!--IDE-->{{N/A}} || <!--SATA-->1 NVMe up to 2280 || <!--Gfx-->{{Maybe|VESA Vega 6, 8 or 10 up to 2Gb of soldered ram memory taken}} || <!--Audio-->{{unk|HD Audio with Realtek® ALC3287 codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{unk| needs Lenovo ThinkPad Ethernet Adapter Gen 2 SC10P42352 or SC10P42354}} || <!--Wireless-->{{No|Realtek RTL8822BE or Intel AC 9260 wifi}} || <!--Test Distro--> || <!--Comments-->2019 64bit - 13in or 14in 768p but mostly FHD 1080p 250 nits - internal battery - ram 8gb or 16gb 2400Mhz soldered - TPM 2.0 - usb-c charging avoid knock whilst in use - keyboard swap problematic -
|-
|<!--Name-->ThinkPad E14 Gen2, E15 Gen 2 (AMD) 20T8, - lenovo has a mobile phone PC Diagnostic App for error/beep codes || <!--Chipset-->AMD Ryzen 3 4300U, 5 4500U, 7 4700U || <!--IDE-->{{N/A}} || <!--SATA-->2 m.2 nvme, 1 2242 and 1 2280 || <!--Gfx-->{{Maybe|VESA 2D for AMD Radeon up to 2Gb of soldered ram memory taken}} || <!--Audio-->{{unk|HD Audio with ALC ALC3287 codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 RTL8111GUS}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2020 15.6in 1080p 220 nits - TPM 2.0 - usb-c charging of internal 45Whr battery - 4gb ddr4 3200Mhz soldered and 1 ddr4 sodimm slot max 20Gb - keyboard swap problematic - plastic bendy case -
|-
|<!--Name-->Lenovo ThinkPad T14 Gen 1, ThinkPad P14s Gen 1 (AMD) || <!--Chipset-->AMD Ryzen 3 4300u, 5 4500U, Ryzen 5 Pro 4650U, Ryzen 7 Pro 4750U || <!--IDE-->{{N/A}} || <!--SATA-->1 NVMe || <!--Gfx-->{{Maybe|VESA 2D for AMD Vega }} || <!--Audio-->{{unk|HDAudio with Realtek® ALC3287 0x10EC, 0x0257}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 RTL8111EPV (DASH models) or RTL8111HN}} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2020 64bit - USB-C charging avoid moving whilst in use - 14" or 15" 1080p - keyboard swap problematic - 8gb or 16gb 3200MHz soldered with 1 ddr4 sodimm slot - sd card slot -
|-
|<!--Name-->Thinkpad L14 Gen 1, L15 Gen 1, || <!--Chipset-->AMD Ryzen 3 4300u, 5 4500U, Ryzen 5 Pro 4650U, Ryzen 7 Pro 4750U || <!--IDE-->{{N/A}} || <!--SATA-->1 NVMe || <!--Gfx-->{{Maybe|VESA 2D for AMD Vega }} || <!--Audio-->{{unk|HDAudio with Realtek® ALC3287 0x10EC, 0x0257}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{no|rtl8169 needs dongle RTL8111EPV (DASH models) or RTL8111HN}} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2020 64bit - USB-C charger avoid moving whilst in use - 14" or 15" 1080p - keyboard swap problematic - 8gb or 16gb 3200MHz soldered with 1 ddr4 sodimm slot - sd card slot -
|-
|<!--Name-->Lenovo ThinkPad X13 Gen1 AMD, || <!--Chipset-->AMD RYZEN 3 4450U, 5 4650U or 7 4750U || <!--IDE-->{{N/A}} || <!--SATA-->One drive, up to 512GB M.2 2242 SSD or 1TB M.2 2280 SSD NVMe || <!--Gfx-->{{partial|VESA Radeon up to 2Gb of soldered ram memory taken}} || <!--Audio-->{{unk|HDAudio with Realtek® ALC3287 codec}} || <!--USB-->{{maybe| but USB-C ports can fail}} || <!--Ethernet-->{{no|Realtek RTL8111EPV, mini RJ-45 to RJ-45 via optional ThinkPad Ethernet Extension Adapter Gen 2}} || <!--Wireless-->{{no|Realtek Wi-Fi 6 RTL8852AE}} || <!--Test Distro--> || <!--Comments-->2020 13.3" HD 1366x768 to 1080p - USB-C port care needed as damages easily - Memory soldered to systemboard, no slots, dual-channel DDR4-3200 -
|-
|<!--Name-->Lenovo ThinkBook 14 G2, 15 G2 Are || <!--Chipset-->Ryzen 5 4500u, 7 4700U || <!--IDE-->{{N/A}} || <!--SATA-->14in has 2 m.2 nvme but 15in has 1 nvme and might have 2.5in sata metal caddy if smaller battery version || <!--Gfx-->VESA 2d for AMD Radeon up to 2Gb of soldered ram memory taken || <!--Audio-->{{unk|HDAudio with ALC???? codec 0x10EC, 0x0}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 }} || <!--Wireless-->{{No| wifi}} || <!--Test Distro--> || <!--Comments-->2020 64bit - 14in or 15in 1080p - usb-c charging but high failure rate on the charging port - 4gb or 8gb soldered with 1 ddr4 sodimm slot 3200mhz - hinge(s) issues -
|-
|<!--Name-->IdeaPad 5 14ARE05 (81YM), Ideapad 5 15ARE05 (), IdeaPad 3 17ARE05 (model 81W5) - elan touchpad MSFT0004:00 06CB:CD98 not working || <!--Chipset-->'''tested''' 4500u - '''untested''' AMD 3 4300U (4c4t), 4600U (6c12t), 7 4700u (8c16t) on AMD Promontory Bixby FCH || <!--IDE-->{{N/A}} || <!--SATA-->{{no|1x M.2 2242 slot and 1x M.2 2280 NVMe which will take sata m.2 will boot to grub then laptop reset after choice}} || <!--Gfx-->{{Maybe|VESA 2D for Vega 6 via hdmi output up to 2Gb of soldered ram memory taken}} || <!--Audio-->{{unk|HDAudio 6.36 0x1637 0x15e3 with Realtek ALC3287 aka ALC257 codec 0x10ec 0x0257}} || <!--USB-->{{maybe|USB 3.1 or 3.2 gen 1}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no|Intel ax200 wifi 6}} || <!--Test Distro-->4500u with AROS One 64bit 1.2 usb installed to m.2 sata on another machine || <!--Comments-->2020 64bit 14inch 768p or 1080p - round lenovo ac - 4gb, 8gb, or 16gb ddr4 3200Mhz ram soldered with 1 slot - keyboard swap problematic - integrated battery -
|-
|<!--Name-->Ideapad Flex 5 81X2, Lenovo Yoga 6 13ALC6 || <!--Chipset-->AMD R5 4500u, R7 4800U, R3 5300 R5 5500U || <!--IDE-->{{N/A}} || <!--SATA-->M.2 NVMe ssd || <!--Gfx-->{{Maybe|VESA AMD Vega up to 2Gb of soldered ram memory taken}} || <!--Audio-->{{unk|HD Audio with ALC? codec}} || <!--USB-->{{maybe|USB3.1 gen 1}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no|realtek ac wifi}} || <!--Test Distro--> || <!--Comments-->2020 64bit abs plastic case 14in convertible 1080p touch low nits - 65w usb-c psu ac - possible wacom esr note taking pen supplied - ram soldered DDR4 - keyboard swap problematic -
|-
|<!--Name-->ThinkPad T14 Gen 2, P14s Gen 2 || <!--Chipset-->AMD 5850U || <!--IDE-->{{N/A}} || <!--SATA-->NVme || <!--Gfx-->VESA 2D || <!--Audio-->{{unk|HDaudio with ALC3287-CG codec 0x10EC, 0x0}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{Maybe| }} || <!--Wireless-->{{No| }} || <!--Test Distro--> || <!--Comments-->2021 - usb-c power 90% failure rate on the charging port -
|-
|<!--Name-->Lenovo ThinkBook 14 G3, 15 G3 ACL, || <!--Chipset-->Ryzen 5 5500U || <!--IDE-->{{N/A}} || <!--SATA-->m.2 nvme || <!--Gfx-->VESA 2d for AMD Radeon || <!--Audio-->{{unk|HDAudio with ALC codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 }} || <!--Wireless-->{{No| }} || <!--Test Distro--> || <!--Comments-->2021 64bit - 14in or 15in 1080p - usb-c charging powered -
|-
|<!--Name-->ThinkPad E14 G3, E15 Gen 3 (AMD) || <!--Chipset-->AMD 5300U 5500U 5650U 5700U 5800U || <!--IDE-->{{N/A}} || <!--SATA-->up to 2 m.2 nvme || <!--Gfx-->{{Maybe|VESA }} || <!--Audio-->{{unk|HDaudio with Realtek® ALC3287 codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 RTL8111GUS}} || <!--Wireless-->{{no|realtek or intel }} || <!--Test Distro--> || <!--Comments-->2021 64bit - 15.6in 1080p - - usb-c charging issues - keyboard swap problematic - 4gb or 8gb soldered with 1 ddr4 3200Mhz sodimm slot - plastic bendy case -
|-
|<!--Name-->V14 Gen 2 (82KA, 82KC)
*ALO
*ALC 82KD
|| <!--Chipset-->Ryzen 3 5300U, 5 5500U, 7 5700U || <!--IDE-->{{N/A}} || <!--SATA-->1 nvme 2280 and optional 2.5in sata after sourcing ribbon cable and connector, no dvd || <!--Gfx-->VESA 2D for AMD radeon || <!--Audio-->{{unk|HDAudio with Realtek® ALC3287 codec}} || <!--USB-->{{maybe|USB3 }} || <!--Ethernet-->{{maybe|rtl8169 Realtek RTL8111H-CG}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2022 64bit - 15.6" FHD 1080p - 4gb or 8gb soldered with 1 ddr4 sodimm slot - 65w round ac adaptor -
|-
|<!--Name-->V15 G2 Gen2 (82KB, 82KD)
*ALO
*ALC 82KD
|| <!--Chipset-->Ryzen 3 5300U, 5 5500U, 7 5700U || <!--IDE-->{{N/A}} || <!--SATA-->1 nvme 2280 and optional 2.5in sata after sourcing ribbon cable and connector, no dvd || <!--Gfx-->VESA 2D for AMD radeon || <!--Audio-->{{unk|HDAudio with Realtek® ALC3287 codec}} || <!--USB-->{{maybe|USB3 }} || <!--Ethernet-->{{maybe|rtl8169 Realtek RTL8111H-CG}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2022 64bit - 15.6" FHD 1080p - 4gb or 8gb soldered with 1 ddr4 sodimm slot - 65w round ac adaptor -
|-
|<!--Name-->ThinkPad L15 Gen 2 (15″, AMD) || <!--Chipset-->AMD 5000 series AMD Ryzen 3 5400U (4c8t), 5 5600U, 5 5650U (6c12t), 7 PRO 5850U (8c16t) || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->VESA 2D for AMD Radeon || <!--Audio-->{{unk|HDAudio with Realtek® ALC3287}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{no|rtl8169 needs dongle RTL8111EPV (DASH models) or RTL8111HN}} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2022 64bit - 15.6in 768p or 1080p - usb-c charging - 4gb soldered with 1 ddr4 3200Mhz sodimm slot -
|-
|<!--Name-->ThinkPad E14 Gen 4, E15 Gen 4 (15″, AMD) || <!--Chipset-->AMD 3 5425u, 5 5625U, 7 5825u || <!--IDE-->{{N/A}} || <!--SATA-->1 (14") or 2 (15") nvme || <!--Gfx-->VESA 2D for AMD Radeon || <!--Audio-->{{unk|HDAudio with ALC3287 codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 }} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2023 64bit - 15.6in 1080p - usb-c charging - 4gb or 8gb soldered with 1 ddr4 3200Mhz sodimm slot - L19M3PDA 45Whr battery - U24 TPS65994 and QB6 QB5 mosfet issues - plastic bendy case -
|-
|<!--Name-->ThinkPad T14 Gen 3 Machine types MT 21AH 21AJ 21CF and 21CG, P14s Gen 3 || <!--Chipset-->AMD 6850U || <!--IDE-->{{n/a}} || <!--SATA-->NVme || <!--Gfx-->VESA 2d || <!--Audio-->{{unk| ALC3287-VA2-CG codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{Maybe|rtl8169 }} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2022 64bit - 14in
|-
|<!--Name-->ThinkPad T14s Gen 3 || <!--Chipset-->AMD 6500U || <!--IDE-->{{n/a}} || <!--SATA-->NVme || <!--Gfx-->VESA 2d || <!--Audio-->{{unk| ALC3287-VA2-CG codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{no|Ethernet support via optional Lenovo® USB-C® to Ethernet Adapter}} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2022 64bit - 14in
|-
|<!--Name-->V14 G3, V15 G3 Gen3 ALC || <!--Chipset-->Ryzen 5 6500U || <!--IDE-->{{N/A}} || <!--SATA-->nvme and optional 2.5in sata if smaller 38Wh battery and after sourcing ribbon cable and connector, no dvd || <!--Gfx-->VESA 2D for AMD Radeon || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 }} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2023 64bit - 15"FHD - battery BYD L20B2PFO -
|-
|<!--Name-->ThinkPad L15 Gen 3 (15″, AMD) || <!--Chipset-->AMD 6000 series || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D for AMD Radeon || <!--Audio-->{{No| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{no|rtl8169 needs dongle}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2023 64bit- 15.6in 1080p -
|-
|<!--Name-->Lenovo Yoga 7 14ARB7 || <!--Chipset-->AMD Ryzen 5, 6600U, 7 6800U || <!--IDE-->{{N/A}} || <!--SATA-->1 nvme || <!--Gfx-->AMD 660M or 680M || <!--Audio-->{{No|HDaudio with ALC3306 aka alc287 codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2022 64bit - 14in 1800p ips 300 nits - usb-c ac charging 71whr integrated battery - sd card slot - digital pen input - 8gb, 6gb or 32gb soldered ddr5 ram -
|-
|<!--Name-->ThinkPad T14 Gen 4, P14s Gen 4 || <!--Chipset-->AMD Ryzen Pro 5 7540U, Ryzen Pro 7 7840U (AI NPU) || <!--IDE-->{{n/a}} || <!--SATA-->NVme || <!--Gfx-->VESA 2D for AMD 740M 780M|| <!--Audio-->{{unk|HDAudio ALC3287 codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 }} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2023 64bit - 14in 1920x1200 - 8gb, 16gb or 32gb lpddr5 soldered - usb-c charging -
|-
|<!--Name-->ThinkPad E14 g5, E15 Gen 5 (15″, AMD) || <!--Chipset-->AMD 7000 series Ryzen 5-7530U, 7-7730U || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D for AMD Radeon || <!--Audio-->{{unk|HDAudio with codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe| }} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2023 64bit- 15.6in 1080p -
|-
|<!--Name-->Thinkbook 14 G6 ABP IRL, ThinkBook 16 G6ABP (21KK001CUK) || <!--Chipset-->AMD Ryzen 7530U 7730U || <!--IDE-->{{N/A}} || <!--SATA-->m.2 nvme || <!--Gfx-->VESA 2d for AMD Radeon || <!--Audio-->{{unk|HDaudio with codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 untested}} || <!--Wireless-->{{No| wifi}} || <!--Test Distro--> || <!--Comments-->2023 64bit - 14in 1200p or 1440p - 100W USB-C AC power adapter -
|-
|<!--Name-->IdeaPad Slim 5 Light 14ABR8 Laptop || <!--Chipset-->AMD Ryzen 3 7330U (4c8t) 5 7530U (6c12t) 7 7730U (8c16t) || <!--IDE-->{{N/A}} || <!--SATA-->2 m.2 nvme slot - 1 2242, 1 2280 || <!--Gfx-->VESA 2d for AMD Radeon || <!--Audio-->{{unk|HDaudio with Realtek® ALC3287 codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{No| wifi}} || <!--Test Distro--> || <!--Comments-->2023 64bit - 14in 1080p - 8Gb or 16Gb soldered ram - usb-c charging only -
|-
|<!--Name-->ThinkPad X13 Gen 4 (13" AMD) || <!--Chipset-->AMD 7480U 7040U || <!--IDE-->{{N/A}} || <!--SATA-->NVMe || <!--Gfx-->{{partial|VESA}} || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2023 - avoid usb-c port damage -
|-
|<!--Name-->ThinkPad L14 (Gen4), L15 Gen 4 (15" AMD) || <!--Chipset-->MD Ryzen 5 PRO 7530U, 7480U 7040U || <!--IDE-->{{N/A}} || <!--SATA-->NVMe || <!--Gfx-->{{partial|VESA}} || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{no|rtl8169 needs dongle}} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2023 64bit - elan trackpad -
|-
|<!--Name-->Lenovo Gen 4 V14 (82YT, 82YV, 83A0, 83A1, 83CC, 83FR, 82YX, 83FG), V15 (82YU, 82YW, 83FS, 82YY, 83CR), V17 (83A2), || <!--Chipset-->AMD AMD Athlon™ Gold 7220U (2c4t), AMD Athlon™ Silver 7120U (2c2t), AMD Ryzen™ 3 7320U (4c8t), AMD Ryzen™ 5 7520U (4c8t) || <!--IDE-->{{N/A}} || <!--SATA-->nvme and 2.5in sata if smaller 38Wh battery, no dvd || <!--Gfx-->{{Maybe|VESA 2d for AMD 610M HDMI® and USB-C}} || <!--Audio-->{{unk|HDaudio with ALC3287 codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{no|Gigabit Ethernet, 1x RJ-45}} || <!--Wireless-->{{no|wifi 6}} || <!--Test Distro--> || <!--Comments-->2023 64bit - 15.6" FHD 1080p - 8 or 16Gb soldered - 65W round tip (3-pin) AC adapter or USB-C -
|-
|<!--Name-->ThinkPad e14 G6, e15 Gen 6 (15″, AMD) || <!--Chipset-->AMD 7000 series AMD Ryzen™ 7 7735HS || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D for AMD Radeon || <!--Audio-->{{unk|HDAudio codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe| }} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2023 64bit- 15.6in 1080p -
|-
|<!--Name-->ThinkPad L16 (16" AMD), || <!--Chipset-->AMD 8000 || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D || <!--Audio-->{{unk|HDAudio with codec}} || <!--USB-->{{maybe|USB4}} || <!--Ethernet-->{{no|rtl8169 needs dongle}} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2025 64bit
|-
|<!--Name-->ThinkPad T14 Gen 5, P14s Gen 5 || <!--Chipset-->AMD Ryzen 7 PRO 8840U, AMD Ryzen™ 5 PRO 8540U || <!--IDE-->{{N/A}} || <!--SATA-->NVME || <!--Gfx-->VESA 2d || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 }} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2025 64bit - 14inch 1920 x 1200 -
|-
|<!--Name--> Lenovo WinBook 300e SKU: 82GKS00000 || <!--Chipset-->AMD 3015E || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2023 64bit 4GB 64GB SSD 11.6 Inch Touchscreen Windows 10 Pro Laptop
|-
|<!--Name-->ThinkPad || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
|<!--Name-->Lenovo Yoga Slim 7a || <!--Chipset-->AMD Ryzen AI 7350 || <!--IDE-->{{N/A}} || <!--SATA-->1 nvme || <!--Gfx-->AMD 860M || <!--Audio-->{{No|HDaudio with ALC3306 aka alc287 codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2025 64bit - 14in 1800p ips 300 nits - usb-c ac charging 71whr integrated battery - sd card slot - digital pen input - 8gb, 6gb or 32gb soldered ddr5 ram -
|-
|<!--Name-->ThinkPad || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|<!--Name-->ThinkPad || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
====Samsung====
[[#top|...to the top]]
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="2%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->NP-Q1 Q1 || <!--Chipset-->Celeron-M 353 ULV 600Mhz || <!--IDE-->{{Yes|1.8" SFF HDD 20 / 60 GB }} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Yes|GMA 915 2D and 3D opengl1 tunnel 95 gearbox 68}} || <!--Audio-->{{Yes|HD Audio with codec - head phones only}} || <!--USB-->{{Yes}} || <!--Ethernet-->{{No|Marvell}} || <!--Wireless-->{{Yes|Atheros 5006EX}} || <!--Test Distro-->2016 Icaros 2.1 || <!--Comments-->2005 32bit old style tablet UltraMobile PC UMPC - Wacom serial resistive pen or finger no support - 1 sodimm ddr2 max 1Gb - LCD 7" WVGA (800 x 480) - CompactFlash port Type II -
|-
| <!--Name-->NP Q1U Ultra Mobile PC UMPC Q1F NP-Q1-F000 || <!--Chipset-->Intel A100 600 / A110 Stealey 800 MHz CPU || <!--IDE-->{{Yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Maybe|GMA 950 2D and 3D opengl1}} || <!--Audio-->{{No|HD Audio 1986}} || <!--USB--> || <!--Ethernet-->Intel || <!--Wireless-->{{Maybe|Atheros 5006EX}} || <!--Test Distro-->2016 Icaros 2.1 || <!--Comments-->2006 32bit 1024×600 - sd card slot -
|-
| <!--Name-->NP P500 family P500Y || <!--Chipset-->AMD with SB600 || <!--IDE-->{{N/A| }} || <!--SATA-->{{Yes| }} || <!--Gfx-->{{Maybe|use VESA Ati x1250}} || <!--Audio-->{{Yes| Audio with codec }} || <!--USB--> || <!--Ethernet-->{{No|Marvell 88E8039 yukon}} || <!--Wireless-->{{yes|Atheros G}} || <!--Test Distro-->2017 Icaros 2.1.2 || <!--Comments-->64bit possible - 15.4 tft display - cheap plastic okay build - 19v propriety end -
|-
| <!--Name-->R505 R510 || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless-->Atheros G || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->R520 R522 R610H R620 || <!--Chipset-->Intel Mobile Core i3 Intel PM45 82801M ICH9-M|| <!--IDE--> || <!--SATA--> || <!--Gfx-->ATI Mobility Radeon HD 4650 (RV730) || <!--Audio-->Intel HD Audio with Realtek ALC272 || <!--USB--> || <!--Ethernet-->Marvell Yukon 88E8057 || <!--Wireless-->Atheros AR5007EG || <!--Test Distro--> || <!--Comments-->2010 64 bit possible
|-
| NP-R530 || || {{N/A}} || {{partial|IDE mode}} || {{yes|Intel GMA (2D)}} || {{partial|HD Audio playback}} || {{yes|USB 2.0}} || {{no|Marvell}} || {{unk|Atheros AR9285}} || Icaros 1.5.2 || <!--Comments-->
|-
| <!--Name-->Samsung R730 17.3 Essential Notebook NP-R730-JA02UK, NP-R730-JA01SE, R730-JT06 || <!--Chipset-->Intel HM55 Dual Core T4300 i3-370M || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|use VESA for Intel 4500MHD and GeForce G 310M with 1 VGA, 1 HDMI}} || <!--Audio-->{{Yes|HDAudio ALC??? codec Realtek}} || <!--USB-->{{yes|USB2}} || <!--Ethernet-->{{No|Marvell Yukon 88E8059 PCI-E}} || <!--Wireless-->{{unk|Broadcom, Intel or Atheros 9k AR9285}} || <!--Test Distro-->Deadwoods ISO 2023-11 || <!--Comments-->2010 64bit - 17.3in HD 1280 x 720 pixels low contrast or some 1600x900 - 2 DDR3 sodimm slots - 2.84 kg 6.26 lbs -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->[http://www.notebookcheck.net/Review-Samsung-305U1A-A01DE-Subnotebook.68246.0.html Series 3 Samsung 305u1a] || <!--Chipset-->AMD Zacate E350 or E450 || <!--IDE--> || <!--SATA--> || <!--Gfx-->AMD Radeon 6320 || <!--Audio-->ALC ACL 269 || <!--USB--> || <!--Ethernet-->Realtek 8111 8169 || <!--Wireless-->Broadcom 4313 || <!--Comments-->2011 64bit
|-
| <!--Name-->NP-RV415 NP-RV515 || <!--Chipset-->E350 or E450 plus A50M chipset || <!--IDE--> || <!--SATA--> || <!--Gfx-->AMD Radeon HD 6470 || <!--Audio-->HD Audio Realtek || <!--USB--> || <!--Ethernet-->{{unk|RTL8169 Realtek RTL8111 8168B}} || <!--Wireless-->{{unk|Atheros AR9285}} || <!--Test Distro--> || <!--Comments-->2012 64bit slow -
|-
| <!--Name-->Series 5 NP535U3C || <!--Chipset-->A6-4455M || <!--IDE-->{{N/A}} || <!--SATA-->2.5in || <!--Gfx-->radeon || <!--Audio-->HDAudio || <!--USB-->USB2 || <!--Ethernet-->Realtek GbE || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2012 64bit slow - 13.3in 1368 x 768 - plastic build - 65w 19v psu -
|-
| <!--Name-->series 3 NP355V5C || <!--Chipset-->A6-4400M, A8-4500M, A10-4600M || <!--IDE-->{{N/A}} || <!--SATA-->2.5in || <!--Gfx-->7640M || <!--Audio-->HDAudio || <!--USB-->USB2 || <!--Ethernet-->Realtek GbE || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2012 64bit - 15.4in 1368 x 768 - plastic build - 65w 19v psu -
|-
| <!--Name-->Samsung ATIV Book 9 Lite NP905S3G || <!--Chipset-->AMD A6-1450 quad 1GHz Temash atom like || <!--IDE--> || <!--SATA-->128gb || <!--Gfx-->AMD 8250 || <!--Audio-->HD Audio || <!--USB--> || <!--Ethernet-->{{Maybe|Realtek rtl8169 but only with mini LAN AA-AE2N12B Ethernet Adapter RJ45 dongle}} || <!--Wireless-->{{unk|Atheros AR9565}} || <!--Test Distro--> || <!--Comments-->2014 64bit - 13.3 TN glossy 1366 x 768 200nits 60% srgb - plastic case - 26W battery built in with 4hr life - 19V 2.1A 3.0*1.0mm psu - 1 ddr3l slot max 4gb - 720p webcam - mini hdmi out - 1w speakers -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
====Toshiba====
[[#top|...to the top]]
Order of Build Quality (Lowest to highest)
<pre >
Equium
Satellite (Pro)
Libretto
Portege
Tecra
</pre >
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| Tecra 8100 8200 9000 || 440BX || {{yes|IDE}} || {{N/A}} || {{maybe|S3 Savage MX 3D (VESA only)}} || {{no|Yamaha DS-XG ymf744 ymf-754}} || {{yes|USB1.1 only}} || {{N/A}} || {{N/A}} || Icaros 1.5 || little support
|-
| <!--Name-->Tecra 9100 || <!--Chipset-->810 || <!--IDE-->{{Yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{maybe|S3 Savage IX}} || <!--Audio-->{{no|ymf754}} || <!--USB-->USB 1.1 || <!--Ethernet-->eeee pro100 || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->PSU Adapter For Toshiba Tecra 9000 9100 A1 A10 A11 A3 A3X A4 A5 A7 M1 M2 M3 M4 M5 M7 M9 R10 S1 series 75 Watt 15V 5A
|-
| [http://tuxmobil.org/toshiba_sp4600.html Satellite Pro 4600] || i810 || IDE || {{N/A}} || {{maybe|Trident Cyber Blade XP (VESA only)}} || {{no|YAMAHA DS-XG AC97 ymf754}} || {{yes|USB}} || {{yes|Intel e100}} || {{no|Agere (internal PCMCIA)}} || || little support
|-
| Satellite 2805 S603 || Intel 815 || {{yes|IDE}} || {{N/A}} || {{maybe|nVidia GeForce2 Go}} || {{no|Yamaha Corp YMF 754}} || {{yes|USB}} || {{yes|Intel PRO/100}} || {{dunno}} || || little support
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Satellite A10 S167 S1291 - A15 A20 A25 || <!--Chipset-->P4M || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel 852GM or Radeon || <!--Audio--> || <!--USB--> || <!--Ethernet-->RTL 8139 || <!--Wireless-->{{Maybe|Intel 2100, Agere or Atheros PA3399U 1MPC minipci}} || <!--Test Distro--> || <!--Comments-->a few models came with antenna leads
|-
| Satellite [http://eu.computers.toshiba-europe.com/innovation/jsp/SUPPORTSECTION/discontinuedProductPage.do?service=EU&com.broadvision.session.new=Yes&PRODUCT_ID=76230 A30-714] || P4-M / 82845 i845 || {{yes|82801}} || {{N/A}} || {{maybe|VESA}} || {{yes|AC97}} || {{yes}} || {{yes|RTL8139}} || {{N/A}} || Icaros 1.2.4 || nice laptop, drawbacks: heavy, really hot (P4-3.06 GHz!!) - A30 (EU) A33 (Australian) A35 (USA) -
|-
| <!--Name-->Satellite A40 A45 || <!--Chipset-->P4M or Celeron M with Intel 845 865 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel 852GME or Radeon 7000 Mobility || <!--Audio-->AC97 Realtek || <!--USB-->USB2.0 || <!--Ethernet--> || <!--Wireless-->Atheros 5002G 5004G - PA3299U mini pci || <!--Test Distro--> || <!--Comments-->2003 32bit - A40 S161 A40-S1611 A40-2701, A45-S120 A45-S1201 S130 S1301 S1501 -
|-
| <!--Name-->Satellite a50 A55 a60-s156 Equium A60 PSA67E A65 || <!--Chipset-->P4M or Celeron M with Intel 845 865 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel 852GME or Radeon 7000 Mobility || <!--Audio-->AC97 Realtek || <!--USB-->USB2.0 || <!--Ethernet--> || <!--Wireless-->Atheros 5002G 5004G - PA3299U mini-pci || <!--Test Distro--> || <!--Comments-->2003 32bit -
|-
| <!--Name-->Satellite A70 A75-S206 A80 A85-S107 || <!--Chipset-->P4M or Celeron-M with Intel 845 865 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel 852GME or Radeon 7000 Mobility || <!--Audio-->AC97 Realtek || <!--USB-->USB2.0 || <!--Ethernet--> || <!--Wireless-->Atheros 5002G 5004G - PA3299U mini-pci || <!--Test Distro-->Icaros 1.5.1 || <!--Comments-->2003 32bit -
|-
| Toshiba Satellite Pro M30 || intel 855 || {{yes|boots with ATA=nodma option}} || {{N/A}} || {{maybe|VESA}} || {{yes|AC97}} || {{yes|USB2.0}} || {{yes|Intel PRO/100 VE}} || {{dunno}} || Icaros 1.5 || nice laptop with some support
|-
| <!--Name-->Portege M300 - M200 tablet || <!--Chipset-->855GM with 1.2GHz Pentium M 753 || <!--IDE-->{{yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{maybe|VESA 2d only - tablet with nvidia 5200 go}} || <!--Audio-->{{no|AC97 STAC 9750}} || <!--USB-->{{yes}} || <!--Ethernet-->{{yes|Intel PRO 100}} || <!--Wireless-->{{no|Intel PRO Wireless 2200BG}} || <!--Test Distro--> || <!--Comments-->little support
|-
| <!--Name-->Tecra M2 M2-S || <!--Chipset-->Intel 855P Pentium-M || <!--IDE--> || <!--SATA-->{{N/A}} || <!--Gfx-->nvidia fx go5200 32mb or 64mb agp || <!--Audio-->AC97 1981B || <!--USB--> || <!--Ethernet--> || <!--Wireless-->Intel Pro || <!--Test Distro--> || <!--Comments-->2003 32bit - PSU 15V 5A -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Satellite Pro L20 267 (PSL2YE PSL2XE) PSL25E L30 || <!--Chipset-->Celeron M 370 1.4 1.5GHz, 1.73Ghz with RC410M SB400 || <!--IDE-->{{N/A| }} || <!--SATA-->{{yes|IDE mode}} || <!--Gfx-->{{Maybe|use VESA - Ati x200}} || <!--Audio-->{{No|[https://forums.gentoo.org/viewtopic-t-490297-start-0.html ALC861]}} || <!--USB-->{{Maybe|Boots usb sticks}} || <!--Ethernet-->{{yes|rtl8139 Realtek 8139}} || <!--Wireless-->{{No|Atheros mini-pci should work maybe not working with ATi chipset or need to swap??}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2004 32bit 14" pioneer dvd-rw - 19v
|-
| <!--Name-->Satellite L30 PSL30E L33 PSL33E || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel 800 or ATi RC410 x200 || <!--Audio-->AC97 AD1981B or HD Audio ALC861 || <!--USB--> || <!--Ethernet-->realtek 8139 || <!--Wireless-->Atheros or Intel || <!--Test Distro--> || <!--Comments-->L30 PSL30L 101 PSL33E 113 115 134 00M019 -
|-
| Satellite Pro M40 313 psm44e || AMD with Ati || {{yes|boots with ATA=nodma}} || {{N/A}} || {{maybe|VESA}} || {{yes|AC97}} || {{yes|USB2.0}} || {{yes|}} || {{maybe|atheros askey ar5bmb5 mini pci}} || || 2005 32bit - nice laptop with some support
|-
| <!--Name-->Satellite L40 PSL40E PSL40L, PSL43E || <!--Chipset-->945GM with U7700 1.3GHz ULV || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel 945 || <!--Audio-->{{No|Intel HD with AD1986A codec}} || <!--USB-->2 USB2.0 || <!--Ethernet-->realtek 8139 || <!--Wireless-->Atheros AR24xx Askey || <!--Test Distro-->Icaros 2.0.3 || <!--Comments-->2006 32bit only - - 12X 13G 139 14B 143 15J 19O -
|-
| <!--Name-->Satellite L45 PSL40U S7409 S2416 || <!--Chipset-->945GM with Celeron M 440 1.86 GHz || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel 945 || <!--Audio-->{{No|Intel HD with AD1986A codec}} || <!--USB-->2 USB2.0 || <!--Ethernet-->realtek 8139 || <!--Wireless-->Atheros AR24xx Askey || <!--Test Distro-->Icaros 2.0.3 || <!--Comments-->2006 32bit only -
|-
| <!--Name-->Satellite Pro A100 || <!--Chipset-->940G || <!--IDE--> || <!--SATA--> || <!--Gfx-->Nvidia G72M Quadro NVS 110M GeForce Go 7300 / Ati (PSAA3E)|| <!--Audio-->HD Audio with ALC861 codec || <!--USB--> || <!--Ethernet-->Intel 100 || <!--Wireless-->Intel 3945 swap with atheros || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->Satellite A110 159 (PSAB0), Equium A110 (PSAB2E), Satellite A110 233 (PSAB6), || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio-->ALC861 || <!--USB--> || <!--Ethernet-->Realtek 8136 || <!--Wireless-->Atheros || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->Satellite Pro A120 PSAC0 PSAC1 PSAC1E || <!--Chipset-->Core Solo GMA 950 to T2300 || <!--IDE--> || <!--SATA--> || <!--Gfx-->GMA 945 || <!--Audio-->ALC262 or AC97 AD1981B || <!--USB-->UHCI EHCI || <!--Ethernet--> || <!--Wireless-->Atheros Ar5001 or Intel or Broadcom || <!--Test Distro--> || <!--Comments-->15V 4A charger -
|-
| <!--Name-->Satellite Pro A120 || <!--Chipset-->Core Duo ATi RS480 + SB450 || <!--IDE--> || <!--SATA--> || <!--Gfx-->use VESA - ATI RC410 Radeon Xpress 200M || <!--Audio-->ALC262 || <!--USB-->OCHI UHCI || <!--Ethernet-->RTL 8139 || <!--Wireless-->Intel 3945 or Atheros Ar5001 || <!--Test Distro--> || <!--Comments-->15v 5a proprietary charger needed
|-
| <!--Name-->Satelite A130 PSAD6U || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet-->Realtek 8101E || <!--Wireless-->Atheros or Intel || <!--Test Distro--> || <!--Comments-->ST1311 s1311 ST1312 S2276 S2386 -
|-
| <!--Name-->Satellite A135 S2686 (Compal LA 3391P) || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet-->Realtek 8101E || <!--Wireless-->Atheros or Intel || <!--Test Distro--> || <!--Comments-->S2246 S2346 S2256 S4477 S4666 S4827 -
|-
| <!--Name-->Satellite A200 PSAE1E (Inventec MW10M) || <!--Chipset-->Pentium M with 945GM Express Celeron M 520 1.6Ghz or Pentium® Core Duo T2130 1.86 GHz || <!--IDE--> {{N/A}}|| <!--SATA--> {{Maybe|SATA}}|| <!--Gfx--> {{Yes|Intel GMA 950 (2D and 3D)}}|| <!--Audio--> {{Yes|HD Audio ALC862}}|| <!--USB--> {{Yes| }}|| <!--Ethernet--> {{yes|RTL8101E rtl8139}}|| <!--Wireless--> {{yes|Atheros 5000 - FN,F5 or FN,F8 or switch}} || <!--Test Distro-->2016 AspireOS 1.8 || <!--Comments-->2006 Excellent 32 bit support! - make sure that your WLAN card is enabled, do this using the hardware switch and FN+F8 key combination
|-
| <!--Name--> A210, Satellite A215 AMD (Inventec 10A) S5808 || <!--Chipset--> Ati with SB690 || <!--IDE--> {{N/A}}|| <!--SATA-->{{Maybe|SATA}}|| <!--Gfx-->{{Maybe|use VESA HD2600 Mobility M76}} || <!--Audio-->HD Audio ALC268 || <!--USB--> {{Yes| }}|| <!--Ethernet-->{{yes|RTL8101E}}|| <!--Wireless--> {{yes|Atheros 5000}}|| <!--Test Distro-->2018 AspireOS 1.8 || <!--Comments-->A215-S7422 A215-S7472 A215-S4697 (USA) -
|-
| <!--Name--> [http://www.amiga.org/forums/showthread.php?t=62036 A215 S4757] || <!--Chipset--> Ati X1200 with SB600 || <!--IDE--> {{N/A}}|| <!--SATA-->{{Maybe|SATA}}|| <!--Gfx-->{{Maybe}} || <!--Audio-->HD Audio || <!--USB--> {{Yes| }}|| <!--Ethernet-->{{yes|RTL8101E}}|| <!--Wireless--> {{yes|Atheros 5000}}|| <!--Test Distro-->2017 AspireOS 1.8 || <!--Comments-->
|-
| <!--Name-->Qosmio G30 (PQG31C-HD202E) || <!--Chipset-->945 with Duo T2500 || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->{{yes|Nouveau Nvidia Go 7600 2d and 3d}} || <!--Audio-->{{yes| }} || <!--USB-->{{yes| }} || <!--Ethernet-->{{no| }} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2006 32bit - 17" UXGA 1920x1200,
|-
| <!--Name-->Tecra A10 || <!--Chipset--> || <!--IDE--> {{N/A}} || <!--SATA--> {{Maybe|IDE mode}} || <!--Gfx--> {{Maybe|Intel GMA 4500M (2D)}} || <!--Audio--> {{Yes|HD Audio}} || <!--USB--> {{Yes|USB 2.0}} || <!--Ethernet-->{{No|Intel PRO 1000}} || <!--Wireless-->{{No|Intel WiFi Link 5100}} || <!--Test Distro--> || <!--Comments-->64 bit possible
|-
| <!--Name-->L35 - L40 PSL48E - L45 S7423 || <!--Chipset-->GL960 with Intel Celeron || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Maybe|X3100 some 2D but software 3d tunnel 9 gearbox 4}} || <!--Audio-->{{Yes|HD Audio with ALC660 codec playback}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{Yes|REALTEK 8139}} || <!--Wireless-->{{No|Realtek 8187b replace with Atheros 5k}} || <!--Test Distro-->2017 Icaros 2.1.2 || <!--Comments-->1,73Ghz M 520 or M 540 or Dual T2310 (1.46 GHz) T2330 (1.6 GHz) - 14H 14N 15B 17H 17K 17R 17S 18Z -
|-
| <!--Name-->Satellite a300 - inventec potomac 10s pt10s A300D 21H || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->ATI Mobility Radeon HD 3650 || <!--Audio-->HD Audio - Realtek || <!--USB--> || <!--Ethernet-->Realtek 8102E || <!--Wireless-->Atheros 5005 || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->satellite L300D-224 PSLC8E PSLC9E, l305 (inventec ps10s) || <!--Chipset-->AMD M780 with Turion RM70 or QL-64 || <!--IDE--> {{yes|IDE}} || <!--SATA--> {{yes|SATA}} || <!--Gfx--> {{Maybe|use VESA for Radeon 3100}} || <!--Audio-->{{maybe|HD Audio with Realtek ALC268}} || <!--USB--> {{yes|USB 2.0}} || <!--Ethernet--> {{no|rtl8169 Realtek RTL8101E RTL8102E}} || <!--Wireless-->{{no|Atheros G XB63L or Intel or Realtek}} || <!--Test Distro--> Icaros Desktop Live 2.3 AROS One 2.3 || <!--Comments--> Wireless-handler crashing when using Atheros-Wireless-Card
|-
| <!--Name-->Satellite P300 (PSPC0C-01D01C) || <!--Chipset-->945GM with Intel Core 2 Duo T5750 || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->{{maybe| }} || <!--Audio-->{{No| codec}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{no| }} || <!--Wireless-->{{No| swap with Atheros 5k }} || <!--Test Distro-->AROS One 64bit || <!--Comments-->2007
|-
| <!--Name-->satellite l300-1bw PSLBDE-005005AR, L300-148 PSLB0E, l300-20D PSLB8E-06Q007EN, l300-294 L300-23L PSLB9E || <!--Chipset-->Intel GM45 + PGA478 socket Celeron 900, Pentium T1600, T2390, T3400 (Socket P) to Core2 Duo T6400 T6670 || <!--IDE--> {{unk|IDE}} || <!--SATA--> {{unk|SATA}} || <!--Gfx--> {{Maybe|use VESA for Intel gma 4500M}} || <!--Audio-->{{maybe|HD Audio with Realtek ALC???}} || <!--USB--> {{unk|USB 2.0}} || <!--Ethernet--> {{unk|rtl8169 Realtek 810xE}} || <!--Wireless-->{{no|Intel or Realtek}} || <!--Test Distro--> || <!--Comments-->2009 64-bit - new unfamiliar Bios called insyde H20 -
|-
| <!--Name-->satellite l350d || <!--Chipset-->AMD Athlon (tm) X2 QL-60 + RS780M || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->Radeon HD 3100 || <!--Audio-->HD Audio with Realtek || <!--USB--> || <!--Ethernet-->Realtek || <!--Wireless-->Realtek 8187b || <!--Test Distro--> || <!--Comments-->2009 64bit
|-
| <!--Name-->Satellite L450 12 13 14 || <!--Chipset-->AMD Sempron, 2.1GHz with AMD RS780M || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->Radeon HD 3200 (based on HD 2400) || <!--Audio--> || <!--USB--> || <!--Ethernet-->Realtek RTL8101E RTL8102E || <!--Wireless-->Realtek 8172 || <!--Test Distro--> || <!--Comments-->2009 64bit - 12X 13P 13X 14V PSLY6E00C006EN
|-
| <!--Name-->Satellite Pro L450 (Compal LA-5821P) 179 || <!--Chipset-->intel celeron 900 2.20 Ghz no sse4.1 or avx || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->intel 4500m || <!--Audio-->HD Audio with codec || <!--USB--> || <!--Ethernet-->RTL8101 /2 /6E PCI Express Gigabit || <!--Wireless-->RTL8191 SEvB || <!--Test Distro--> || <!--Comments-->2009 64bit - 39.6cm (15.6”) Toshiba TruBrite® HD TFT 16:9 768p
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Toshiba Satellite P775, P775-S7320 and P775-10K || <!--Chipset-->Intel Core i5 (2nd Gen) 2430M i7-2630QM || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Maybe|Vesa 2D for Intel}} || <!--Audio-->{{maybe| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{no| }} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2011 17.3" - 1600 x 900 (HD+) - 2 DDR3 sodimm max 16Gb -
|-
|<!--Name-->Toshiba Satellite C660D-19X || <!--Chipset-->AMD E-300 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{maybe|Vesa 2D for ATi}} || <!--Audio-->{{no|HD Audio with Realtek codec}} || <!--USB-->{{no| }} || <!--Ethernet-->{{Maybe|r8169 rtl8101e}} || <!--Wireless-->{{no|Realtek RTL8188 8192ce rtl8192ce}} || <!--Test Distro--> || <!--Comments-->2011 64bit -
|-
| <!--Name-->L755D (E-350) L750D (E-450) || <!--Chipset-->AMD E350 E450 no sse4.1 or avx || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->Radeon HD 6310 6320 || <!--Audio-->HDAudio conexant codec || <!--USB--> || <!--Ethernet--> || <!--Wireless-->Realtek || <!--Test Distro--> || <!--Comments-->2012 64bit
|-
| <!--Name-->Satellite Pro SP C640 C660D-15X (PSC1YE) C670D- () || <!--Chipset-->AMD E350 no sse4.1 or avx || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->6310G || <!--Audio-->HD Realtek ALC259 || <!--USB-->USB2 || <!--Ethernet-->Realtek || <!--Wireless-->Broadcom || <!--Test Distro--> || <!--Comments-->2012 64bit
|-
| <!--Name-->C70D-A C75D-A || <!--Chipset-->E1-1200 no sse4.1 or avx || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{maybe|AMD HD8330}} || <!--Audio-->{{no|HA Audio CX20751 11Z}} || <!--USB-->{{no| }} || <!--Ethernet-->{{no|Atheros AR8162 alx}} || <!--Wireless-->{{no|Realtek 8188e}} || <!--Test Distro--> || <!--Comments-->2013 64bit -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
|}
====Misc====
[[#top|...to the top]]
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->Time 500 Packard Bell EasyOne 1450 1550 || <!--Chipset-->K6-3 500Mhz + VIA MVP4 vt82c686a || <!--IDE-->{{N/A|Issues}} || <!--SATA-->{{N/A}} || <!--Gfx-->Use VESA || <!--Audio-->{{No|VIA AC97 3058 with wolfson codec WM9703 WM9704 WM9707 WM9708 or WM9717}} || <!--USB-->via 3038 2 ports USB 1.1 untested || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{N/A}} || <!--Test Distro-->NB May 2013 || <!--Comments-->2001 32bit grub runs but stalls around [PCI] Everything OK
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->Sony Vaio PCG FX201/FX202 FX210/FX215 FX401/FX402 FX404/FX405 972M, FX501/FX502 FX504/FX505 || <!--Chipset-->VIA KT133A KM133 Duron 800Mhz Athlon 1.3Ghz || <!--IDE-->{{partial|boot issue with 2013 kernel VIA [rev 06]}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{partial|ATI Rage Mobility Pro (VESA only)}} || <!--Audio-->{{Yes|VIA AC97 686b [rev 50] AD1881A Ear phone and Mic}} || <!--USB-->{{Maybe|issues}} || <!--Ethernet-->{{Yes|RTL 8139}} || <!--Wireless-->{{N/A}} || <!--Comments-->Nightly 1st March 2013 || <!--Comments-->booting usb pendrive from Plop Boot Loader floppy (no bios USB boot). Can freeze coz hardware issue or a ram slot problem - no support for iLink firewire VT8363/8365 pci - vt82c686b
|-
| <!--Name-->Sony Vaio PCG FX601/FX602, FX604/FX605 FXA53(US), FX701/FX702, FX704/FX705, FX801/FX802 FX804/FX805 || <!--Chipset-->VIA KT133A KM133 Duron 800Mhz Athlon 1.3Ghz || <!--IDE-->{{partial|boot issue with 2013 kernel VIA [rev 06]}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{partial|ATI Rage Mobility Pro (VESA only)}} || <!--Audio-->{{Yes|VIA AC97 686b [rev 50] AD1881A Ear phone and Mic}} || <!--USB-->{{Maybe|issues}} || <!--Ethernet-->{{Yes|RTL 8139}} || <!--Wireless-->{{N/A}} || <!--Comments-->Nightly 1st March 2013 || <!--Comments-->booting usb pendrive somes works
|-
| <!--Name-->Sony Vaio PCG FX100 R505LE || <!--Chipset-->Intel i815 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Use VESA Intel 82815 CGC || <!--Audio-->Intel ICH AC97 with ADI AD1881A codec || <!--USB--> || <!--Ethernet-->Intel e100 || <!--Wireless-->{{N/A}} || <!--Test Distro--> || <!--Comments-->PCG-FX105 FX105K PCG-FX108 FX108K PCG-FX109 FX109K FX200 FX203/FX203K FX205 FX205K FX209 FX209K FX220 [http://juljas.net/linux/vaiofx240/ FX240] FX250 FX270 FX290 FX301 FX302 FX340 FX370 FX390 FX403 FX503 FX950
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| Sony VAIO VGN X505VP || Pentium M ULV and Intel 855GM || {{yes}} || {{N/A}} || {{maybe|Intel 855 (VESA only)}} || {{yes|AC97}} || {{yes|USB}} || {{yes|Intel PRO 100 VE}} || {{N/A}} || || 2004 32bit - 0.38 inches at its thinnest point - first laptop to feature a "chiclet" keyboard resemble Chiclets gum -
|-
| <!--Name-->Sony Z505LE Z505JE || <!--Chipset-->P3 || <!--IDE--> || <!--SATA-->n/a || <!--Gfx-->Rage Mobility M1 AGP mach64 || <!--Audio-->no Yamaha DS-XG PCI YMF744 || <!--USB--> || <!--Ethernet-->Intel 8255x based PCI e100 || <!--Wireless-->n/a || <!--Test Distro--> || <!--Comments-->2004 32bit -
|-
| <!--Name-->Panasonic Toughbook CF-18 || <!--Chipset-->Core || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{yes|gma for i915}} || <!--Audio-->{{yes|AC97 SigmaTel}} || <!--USB-->{{yes|usb2 }} || <!--Ethernet-->{{yes|RTL 8139C}} || <!--Wireless-->{{no|Intel swap for atheros 5k}} || <!--Test Distro-->Deadwoods' D02 test || <!--Comments-->2003 32bit
|-
| <!--Name-->Panasonic Toughbook CF-29 CF-30 || <!--Chipset-->Core || <!--IDE--> || <!--SATA--> || <!--Gfx-->use VESA || <!--Audio-->AC97 SigmaTel || <!--USB--> || <!--Ethernet-->RTL 8139C || <!--Wireless-->Intel || <!--Test Distro--> || <!--Comments-->2003 32bit
|-
| <!--Name-->MSI Microstar PR210 || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|use VESA ATi RS690M}} || <!--Audio-->{{Yes|HD Audio through speaker / head phones but not hdmi}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{yes|Realtek 8111 8169}} || <!--Wireless-->Atheros AR242x AR542x aw-ge780 mini pci-e || <!--Test Distro-->2017 Icaros 2.1.2 || <!--Comments-->2004 32bit - ENE PCI based SD card with no bios boot option
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Advent 7106 EAA-88 || <!--Chipset-->Pentium M 1.7GHz with 915GM || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Yes|2D and 3D tunnel 187 gearbox 67}} || <!--Audio-->{{Yes|AC97 Intel ICH6 with Conexant Cx20468 31 codec playback head phones only}} || <!--USB--> || <!--Ethernet-->{{Yes|Realtek 8169}} || <!--Wireless-->{{No|Intel 2200BG Fn/F2 replaced with atheros mini pci in small base panel - startup errors in wireless manager}} || <!--Test Distro-->2017 Icaros 2.1.1 || <!--Comments-->2005 32bit 14" cheap rubbish sadly - fan noise through audio channel -
|-
| <!--Name-->Motion Computing LE1600 PC Slate || <!--Chipset-->915 || <!--IDE--> || <!--SATA--> || <!--Gfx-->915 || <!--Audio-->Intel AC97 SigmaTel STAC9758 9759 || <!--USB--> || <!--Ethernet-->Realtek 8169 || <!--Wireless-->Intel PRO Wireless 2200BG || <!--Test Distro--> || <!--Comments-->2005 serial Wacom digitiser not usb
|-
| <!--Name-->Panasonic Toughbook CF-51 CF-P1 CF-T5 CF-Y2 || <!--Chipset-->945GMS || <!--IDE--> || <!--SATA--> || <!--Gfx-->GMA 950 || <!--Audio-->HD Audio || <!--USB--> || <!--Ethernet-->Broadcom || <!--Wireless-->Intel || <!--Test Distro--> || <!--Comments-->2006 32bit
|-
| <!--Name-->Sony Vaio VGN-AR11S || <!--Chipset-->ntel Core Duo T2500 || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{yes| Nvidia Go 7600}} || <!--Audio-->{{yes| }} || <!--USB-->{{yes| }} || <!--Ethernet-->{{no| }} || <!--Wireless-->{{No| }} || <!--Test Distro-->Aros One 32bit || <!--Comments-->2006 32bit - 17" 1920x1200 - blu-ray -
|-
| Sony Vaio VGN SR29VN || Intel ICH9 || {{N/A}} || {{maybe|IDE legacy}} || {{partial|ATI HD 3400 (VESA only)}} || {{partial|HD Audio (too quiet)}} || {{yes|USB1.1 and USB2.0}} || {{no|Marvell 8040}} || {{no|Intel 5100}} || Icaros 1.5 || 2007 32bit -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Wyse XM Class DELL WYSE Xn0m LAPTOP || <!--Chipset-->AMD T-G56N 1.6 1.65Ghz || <!--IDE-->{{N/A| }} || <!--SATA-->decased 2.5in ssd || <!--Gfx-->{{Maybe|Vesa 2d only AMD 6320}} || <!--Audio-->{{Maybe| }} || <!--USB-->{{Maybe|EHCI 2.0 with NEC uPD720200 USB 3.0}} || <!--Ethernet-->{{Yes|Realtek rtl8169 8111E}} || <!--Wireless-->{{No|Atheros 93xx}} || <!--Test Distro--> || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 - 1366 x 768 14" - 2 ddr3l slots max 16gb - 19v coax barrel plug psu -
|-
| <!--Name-->Panasonic Toughpad FZ-G1 MK2 || <!--Chipset-->Core i5-3437U, 1.9GHz || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet-->{{N/A}} || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2014 64bit -
|-
| <!--Name-->ToughPad FZ-G1 Mk3 || <!--Chipset-->Intel Core i5-4310U || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->Intel HD 4400 || <!--Audio-->HDaudio Codec ALC255 || <!--USB--> || <!--Ethernet-->{{N/A}} || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2015 64bit -
|-
| <!--Name-->[https://wiki.recessim.com/view/Panasonic_Toughpad_FZ-G1_MK4 Panasonic Toughpad FZ-G1 MK4] || <!--Chipset-->intel 6300U || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->Intel 520 || <!--Audio-->HDaudio with ALC256 codec - o/c or s/c fails early || <!--USB-->{{maybe|USB3 but options on the right hand side of screen case}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no|intel ac 8260}} || <!--Test Distro--> || <!--Comments-->2016 64bit - 10.1in 1600x1200 - 4gb ddr3l soldered - waterproof pen left hand side base - optional slot-in 4g lte and sdhc - 16v 4.06A 64.96W panasonic barrel -
|-
| <!--Name-->Panasonic Toughpad FZ-G1 MK5 || <!--Chipset-->intel i5-7300U || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->Intel 620 || <!--Audio-->HDaudio ALC295 codec - o/c or s/c fails early || <!--USB-->{{maybe|USB3 but optional usb2 plugin r.h.s. of screen casing}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no|Intel}} || <!--Test Distro--> || <!--Comments-->2018 64bit - 8gb ddr3l soldered - 10.1" WUXGA 1920 x 1200 with LED backlighting screen 2-800 nit - 10-point capacitive multi touch + Waterproof Digitizer pen l.h.s -
|-
| <!--Name-->ToughPad FZ-M1 || <!--Chipset-->Intel® Core TM m5-6Y57 vPro TM || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->Intel HD 4200 || <!--Audio-->HDaudio with ALC codec || <!--USB-->{{maybe| }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2016 64bit - 7in 800p - 8gb ddr3l soldered -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Any Razor Razer laptops || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->AVOID unable to remove secure boot
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
===Netbook===
[[#top|...to the top]]
* PC to write Aros image onto an USB pendrive with Raspberry PI writer, USB writer or Rufus for boot purposes on a netbook
* SD card sometimes can boot like Dell 2100, EeePC 1001P, ASUS EeePC 900, acer aspire one d150, MSI Wind U100,
====Acer Packard Bell Netbooks====
[[#top|...to the top]]
{| class="wikitable sortable" width=100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| Aspire One AOA110 (A110) (ZG5) || Intel 945GSE || {{N/A}} || {{Maybe|IDE legacy mode}} || {{Yes|Intel GMA (2D and 3D) tunnel 99 and gearbox 84 score}} || {{Yes|HD Audio ALC6628}} || {{Yes|USB1.1 and USB2.0}} || {{Yes|rtl8169 RTL8101E}} || {{Yes|AR5006}} atheros 5k || 2016 AspireOS 1.8, 2025 Aros One 2.6 32bit USB || 2007 32bit 1 core - 19v barrel A13-045N2A 19V2.37A 45W 5.5x1.7mm -
|-
| Aspire One AOA150 (A150) (ZG5) || Intel 945GSE || {{N/A}} || {{Maybe|ide mode}} || {{Yes|Intel GMA 2D and accelerated 3D with tunnel 99 and gearbox 84.1 result}} || {{Yes|HD Audio ALC6628}} || {{Yes|uhci and ehci}} || {{Yes|rtl8169 RTL8101E}} || {{Yes|AR5006}} atheros 5k || 2016 AspireOS 1.8, 2025 aros one 2.6 32bit USB || 2007 32bit 1 core - 19v barrel -
|-
| Aspire One AOD150 D150 (Compal LA-4781P), AOD110 D110 (ssd) || Intel 945GME || {{N/A}} || {{Maybe|ide legacy}} || {{Yes|Intel GMA 950 (2D)}} || {{Yes|HDAudio with alc272}} || {{Yes|USB}} || {{No|Atheros AR8121 AR8113 AR8114 l1e}} || {{Maybe|AR5007EG AR5BXB63 works but Broadcom BCM4312 has no support}} || 2010 Icaros Desktop 1.3, 2024 Aros one 32bit USB || 2008 32bit 1 core - 19v barrel -
|-
| Aspire One (ZG8) || Intel 945G and N270 || {{N/A}} || {{Maybe|ide mode}} || {{Yes|Intel GMA 2D and accelerated 3D}} || {{maybe|HD Audio }} || {{Yes|uhci and ehci}} || {{No|Broadcom }} || {{no|Intel}} || 2014 AspireOS 1.8 || 2009 32bit -
|-
| Aspire One AOD250 D250 emachines em250 || 945GME || {{N/A}} || {{Maybe|ide legacy}} || {{Yes|Intel GMA (2D)}} || {{Yes|alc272 HD Audio}} || {{Yes}} || {{No|AR8132 (L1c)}} || {{No|BCM4312 or Atheros AR5B95}} || 2010 Icaros 1.3 || 2009 32bit 1 core - 19v barrel -
|-
| <!--Name-->Aspire AO532H (Compal LA-5651p) 533H Pineview || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio-->{{Yes|HD Audio playback}} || <!--USB--> || <!--Ethernet-->{{No|AR8132 (L1c)}} || <!--Wireless-->{{No|Atheros 9k}} || [http://www.amigaworld.net/modules/news/article.php?mode=flat&order=0&item_id=5968 Tested AspireOS June 2011] || <!--Comments-->
|-
| <!--Name-->emachines eM350 NAV51 || <!--Chipset--> with N450 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel 3150 || <!--Audio-->HD Audio with codec || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro-->Icaros 2.2 || <!--Comments-->Single core 64bit - 160GB HDD 1GB RAM 10.1" LED backlit screen and Webcam - 3 cell li-ion battery for 3 hours usage -
|-
| <!--Name-->emachines eM355 || <!--Chipset--> with N455 || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->64bit support possible -
|-
| <!--Name-->Aspire One 533 || <!--Chipset-->N455 with NM10 || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes}} || <!--Gfx-->{{Yes|2D 0x8086 0xa011}} || <!--Audio-->{{Yes| ALC272 codec ich7}} || <!--USB-->{{Yes}} || <!--Ethernet-->{{No|Atheros AR8152 v1.1 1c}} || <!--Wireless-->{{No|Broadcom 4313}} || <!--Test Distro-->2016 Icaros 2.1 and AROS One 2.3 || <!--Comments-->2011 64bit - f2 setup - 10.1inch 1024 x 768 -
|-
| Aspire One AOD255 AOD255e AOD260 AOHAPPY (Compal LA-6221P) || N570 and Nm10 || {{N/A}} || {{Maybe|SATA}} || {{Maybe|Intel GMA 3150}} || Audio || USB || {{No|Atheros AR8152 V1.1 (1lc)}} || {{No|Broadcom BCM4313}} || || a little support
|-
| Aspire One 522 AO522 (Compal LA-7072p) || 1GHz dual C-50 C50 or C-60 C60 + Hudson M1 || {{N/A}} || SATA || AMD 6250 (ATI 9804) or 6290 || ATI SB CX20584 HD Audio || USB || Atheros 8152 v2.0 l1c || {{No|Broadcom BCM4313 or Atheros ath9k}} || ||
|-
| <!--Name-->AAOD270 Aspire One D270 || <!--Chipset-->N2600 Cedarview || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes| }} || <!--Gfx-->{{Yes|2D on Intel GMA 3650}} || <!--Audio-->{{Yes| }} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{Yes|RTL 8169 RTL8101E}} || <!--Wireless-->{{No|Broadcom BCM4313 but swap for Atheros 5k}} || <!--Test Distro--> || <!--Opinion-->2011 64bit atom - ddr2 so-dimm 2gb max -
|-
| <!--Name-->Aspire One AO532G (Compal LA-6091p) || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->Aspire One D257 (Quanta ZE6) || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->Acer Aspire One 722 AO722 P1VE6 || <!--Chipset-->AMD C-60 C60 with SB900 || <!--IDE-->{{N/A| }} || <!--SATA--> || <!--Gfx-->{{Maybe| use VESA Ati 6290}} || <!--Audio-->{{Yes|HD Audio with codec but no Wrestler HDMI output}} || <!--USB--> || <!--Ethernet-->{{No|Qualcomm Atheros AR8152 v2.0}} || <!--Wireless-->{{unk|Atheros AR9485}} || <!--Test Distro-->2017 Icaros 2.1.2 || <!--Comments-->
|-
| <!--Name-->Aspire One AO721 (Wistron SJV10-NL) || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->AO751 AO751H (Quanta ZA3) || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->Packard Bell Dot .S || <!--Chipset-->N280 + || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|legacy}} || <!--Gfx-->{{yes|Intel GMA950 (2D)}}|| <!--Audio-->HD Audio ALC272X || <!--USB--> USB2.0 || <!--Ethernet--> {{no|Atheros l1e}} || <!--Wireless-->{{no|Atheros 9k}} || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->Packard Bell Dot .SE || <!--Chipset-->N450 + || <!--IDE-->{{N/A}} || <!--SATA-->legacy || <!--Gfx-->Intel GMA950 (2D) || <!--Audio-->HD Audio ALC|| <!--USB-->USB2.0 || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->Packard Bell Dot .S2 NAV50 || <!--Chipset-->N455 NM10 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->Intel X3150 || <!--Audio-->HD Audio ALC269 || <!--USB--> || <!--Ethernet-->Atheros || <!--Wireless-->Atheros || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->Packard Bell Dot M/A || <!--Chipset-->1.2GHz Athlon L110 + RS690E || <!--IDE-->{{N/A}} || <!--SATA-->legacy mode? || <!--Gfx-->AMD ATI Radeon Xpress X1270 (VESA only) || <!--Audio-->HD Audio ATI SBx00 || <!--USB--> || <!--Ethernet-->Realtek RTL8101E RTL8102E rtl8169 || <!--Wireless-->{{unk|Atheros AR9285}} || <!--Test Distro--> || <!--Opinion-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
====Asus Netbooks====
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| [http://wiki.debian.org/DebianEeePC/Models eeePC] 700 701 2G 4G 8G Surf || Intel 910GML + ICH7 || {{N/A}} || {{Maybe|IDE legacy mode}} || {{Yes|Intel GMA 900 2D and 3D tunnel 68 gearbox 43 on 701 800x480}} || {{Yes|ALC662 HD Audio}} || {{Yes|UHCI and EHCI}} || {{No|Atheros L2}} || {{Yes|Atheros 5k AR5007EG (AR2425 works}} || 2016 Icaros 2.1.1, 2.1.2, Aros One 2.5 32bit USB, || 2007 32bit - power supplies fail due to bad caps issue 9.5V 2.5A 24W Charger AD59930 4.8*1.7MM -
|-
| [http://wiki.debian.org/DebianEeePC/Models eeePC] 701SD || Intel 910GML + ICH7 || {{N/A}} || {{Maybe|IDE legacy mode}} || {{Maybe|Intel GMA 900 (2D)}} || {{Yes|ALC662 HD Audio}} || {{Yes|UHCI and EHCI}} || {{No|Atheros L2}} || {{No|RTL8187SE swap with Atheros 5k}} || 2014 AspireOS 1.7, || 2007 32bit - boot issues but does boot with ATA=32bit,nopoll or ATA=nodma,nopoll
|-
| [http://wiki.debian.org/DebianEeePC/Models eeePC] 900 || Intel 910GML + ICH7 || {{N/A}} || {{Maybe|IDE legacy mode}} || {{Maybe|Intel GMA 900 (2D, 3D in some models)}} || {{Yes|ALC662 HD Audio}} || {{Yes|UHCI and EHCI}} || {{No|Atheros L2}} || {{Maybe|depends on chipset AR5007EG (AR2425) works but not RaLink}} || 2014 AspireOS 1.7, || 2008 32bit - boot issues but does boot with ATA=32bit,nopoll or ATA=nodma,nopoll. 900's may need BIOS upgrade to boot usb optical drives. 3D available in some model revisions - AD59230 9.5v 2.31a psu -
|-
| eeePC 900A || 945GSE || {{N/A}} || {{Maybe|IDE legacy mode}} || {{Yes|Intel GMA 950 (3D)}} || {{Yes|HD Audio ALC269}} || {{Yes|USB2.0}} || {{No|Atheros L1e [1969 1026]}} || {{Yes|Atheros 5k AR242x}} || Nightly Build 2012, 2023 Aros One 32bit 2.4 || 2009 32bit
|-
| eeePC 901 1000 || 945GM || {{N/A}} || {{Maybe|IDE legacy mode}} || {{yes|Intel GMA 950 (2D)}} || {{Yes|ALC269 HD Audio}} || {{Yes|USB}} || {{No|Atheros L1E (AR8121 AR8113 AR8114)}} || {{No|RaLink Device 2860 swap with Atheros 5k}} || 2011 Icaros 1.4, || 2009 32bit - 12v 3a psu -
|-
| eeePC Seashell 1000HA 1000HE 1008 1005HA || N280 + Intel GMA950 || {{N/A}} || SATA || {{Yes|Intel GMA (2D)}} || {{Yes|HD Audio ALC269}} || {{Yes|USB}} || {{Maybe|Realtek but not Atheros AR8132 (L1c)}} || {{unk|Atheros AR9285}} || 2014 Aspire OS 1.6, || 2010 32bit - 12v 3a psu -
|-
| <!--Name-->eeePC 1001ha || <!--Chipset-->GMA945 || <!--IDE-->{{N/A}} || <!--SATA-->legacy || <!--Gfx-->Intel GMA 950 (2D) || <!--Audio-->ALC269 HD Audio || <!--USB--> || <!--Ethernet-->{{No|Attansic Atheros AR8132 l1c}} || <!--Wireless-->{{No|RaLink RT3090 swap with Atheros 5k}} || <!--Test Distro-->untested || <!--Opinion-->2010 32bit
|-
| eeePC 1001P T101MT 1005PX 1005PE 1015PE Pineview 1001PXD || NM10 and N450 N455 CPU || {{N/A}} || {{Maybe|IDE mode}} || {{Yes|Intel GMA 3150 (2D)}} || {{Yes|HD Audio}} || {{Yes|USB 2.0}} || {{No|Atheros AR8132 (l1c)}} || {{unk|Atheros AR928x 802.11n}} || 2010 Icaros 1.3.3, || 2011 64bit - 19V 2.1A 2.3x0.7 -
|-
| EeePC 1015B 1215B || single C-30 C30 or dual C-50 C50 + Hudson M1 || {{N/A}} || SATA || {{partial|AMD 6250 (VESA only)}} || ATI SBx00 HD Audio || USB || {{No|AR8152 v2.0 atl1c}} || {{No|Broadcom BCM4313 [14e4 4727]}} || untested recently || 2011 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name-->Flare X101CH Cedarview || <!--Chipset-->N2600 + N10 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->Intel GMA 6300 || <!--Audio--> || <!--USB--> || <!--Ethernet-->{{No|Atheros l1c 2.0}} || <!--Wireless-->{{unk|Atheros 9k AR9285}} || <!--Test Distro--> || <!--Comments-->2012 64bit
|-
| <!--Name-->Flare 1025CE 1225CE || <!--Chipset-->N2800 + N10 || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{dunno|Intel GMA 3600}} || <!--Audio--> || <!--USB--> || <!--Ethernet-->{{No|Atheros l1c 2.0}} || <!--Wireless-->{{unk|Atheros 9k AR9285}} || <!--Test Distro--> || <!--Comments-->2012 64bit
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
====Dell Netbooks====
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| Inspiron 910 Mini 9 PP39S Vostro A90 || GMA945 || {{Maybe|STEC 8G 16G 32G IDE PATA Parallel ATA miniPCIE SSD 50MM / 70MM very slow}} || {{N/A| }} || {{yes|Intel GMA 2D and 3D opengl1}} || {{yes|ALC268 HD Audio}} || {{yes|USB2 boots and works}} || {{yes|rtl8169 Realtek RTL8102E}} || {{no|Broadcom BCM4310 and 4312 swap with atheros 5k bx32}} || ICAROS 1.3 but Icaros 2.3 (pci issues), AROS One 2.6 and Tiny AROS (digiclock startup) mouse cursor vanishes || 2008 32bit - 9inch 1024x600 screen - 1 ddr2 sodimm slot max 2gig - 19v 1.58a - 0 boot disk select - cr2032 battery under laptop base cover, while mem 2GB max under base flap -
|-
| <!--Name-->Inspiron Mini 10 1010 PP19S || <!--Chipset-->Atom Z520 Z530 Intel US15W Poulsbo || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{maybe|Intel GMA 500 (VESA only)}} || <!--Audio-->{{Maybe|HD Audio ALC269 codec}} || <!--USB--> || <!--Ethernet-->{{yes|rtl8169 RTL8102E}} || <!--Wireless-->{{no|Intel or BCM4312}} || <!--Test Distro-->untested || <!--Comments-->2008 32bit - 10.10 inch 16:9, 1366 x 768 glossy - 28whr or 56wHr battery options -
|-
| [https://wiki.ubuntu.com/HardwareSupport/Machines/Netbooks#Dell%20Mini%2010v%20(Inspiron%201011) Mini 10v 1011] [http://wiki.debian.org/InstallingDebianOn/Dell/InspironMini10v ] || Intel 950 || {{N/A}} || {{maybe|ide legacy mode}} || {{yes|Intel GMA (2D)}} || {{maybe|HDAudio}} || {{yes|USB}} || {{yes|RTL8102E 8103E}} || {{no|Dell 1397 Wireless}} || untested || 2008 32bit -
|-
| <!--Name-->Inspiron Mini 1018 || <!--Chipset-->Intel Atom N455 || <!--IDE-->{{N/A}} || <!--SATA-->{{partial|IDE mode }} || <!--Gfx-->{{yes|Intel GMA 3150 (2D, no VGA output)}} || <!--Audio-->{{partial|HD Audio head phones only - speaker and micro phone do not work}} || <!--USB-->{{yes|USB 2.0}} || <!--Ethernet-->{{yes|RTL8169}} || <!--Wireless-->{{unk|RTL8188CE or AR928X}} || <!--Test Distro-->2011 Icaros 1.5.1, || <!--Comments-->2009 64bit - 1 DDR3 max 2gb -
|-
| Latitude 2100 || Intel Atom N270 N280 1.60Ghz GMA 945GME || {{N/A}} || {{Yes|set to IDE in bios as ahci not working || {{yes|Intel GMA 950 (2D and 3D with tunnel 98 and gearbox 84)}} || {{yes|HD Audio with ALC272 codec}} || {{yes|USB2.0}} || {{No|Broadcom BCM5764M}} || {{No|Intel 5100 or BCM4322 DW 1510 half height mini pcie use small Atheros 5k}} || <!--Test Distro-->2016 AspireOS 1.8, Icaros 2.1.1 and AROS One USB 2.4 || 2009 32bit ddr2 sodimm max 2G - [https://sites.google.com/site/arosaspireone/about-aspire-one Webcam and card reader not working] lcd cable over hinge an issue - f12 bios and boot -
|-
| <!--Name-->Latitude 2110 2120 || <!--Chipset-->N470 1.83Ghz, N455 1.6Ghz, N550 1.5Ghz || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|ATA mode in bios not ahci}} || <!--Gfx-->{{Yes|Intel 3150 2D only}} || <!--Audio-->{{Maybe|HD Audio with ALC269 codec}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No| }} || <!--Wireless-->{{No| swap for Atheros}} || <!--Test Distro-->2014 Icaros 2.3, || <!--Comments-->2011 64bit does not support AVX or SSE 4.1 - ddr2 sodimm
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
====HP Compaq Netbooks====
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| HP Mini 2133 || VIA C7-M P4M900 / 8237 VX700 || {{N/A}} || {{maybe|SATA}} || {{maybe|VIA Chrome 9 HC (VESA only)}} || {{no|VT1708/A HD Audio}} || USB || {{no|Broadcom Corp NetXtreme BCM5788}} || {{no|Broadcom Corp BCM4312}} || untested || 2008 32bit -
|-
| HP mini 1000 Mi 2140 ks145ut || N270 + 945GM || {{N/A}} || SATA || <!--Gfx-->{{Yes|Intel GMA 950 (2D and opengl1 3d)}} || <!--Audio-->{{Yes|HD Audio (playback tested)}} || <!--USB-->{{Yes| }} || {{no|Marvell 88E8040}} || {{no|Broadcom Corp BCM4312 hard blocked}} || untested || 2009 32Bit - unable to change wifi card
|-
| <!--Name-->HP Mini 700 702 || <!--Chipset-->N270 + 945GSE || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{Yes|Intel GMA 950 (2D)}} || <!--Audio-->{{Yes|HD Audio IDT 92HD75B (111d:7608, only playback tested)}} || <!--USB-->{{Yes| }} || <!--Ethernet--> || <!--Wireless-->{{No|Broadcom hard locked}} || <!--Test Distro-->untested || <!--Comments-->2009 32bit -
|-
| Compaq HP Mini 110 110-3112sa || 945GM Express || {{N/A}} || {{maybe|IDE mode}} || {{yes|Intel GMA 950 (2D)}} || {{yes|HD Audio IDT STAC 92xx}} || {{yes|USB 2.0}} || {{no|Atheros}} || {{no|Broadcom hard blocked Fn+F12}} || untested || 2009 32bit - unable to change wifi
|-
| HP Mini 200 210 || 945GM NM10 Express || {{N/A}} || SATA || Intel GMA 950 || {{Maybe|HDAudio with }} || USB || RTL8101E RTL8102E || {{no|Broadcom BCM4312 hard locked}} || untested || 2009 32bit -
|-
| HP Mini 311 DM1 (Quanta FP7) || N280 + ION LE || {{N/A}} || SATA || nVidia Geforce ION || {{maybe|HDAudio with }} || USB || eth || {{No|hard locked}} || untested || 2009 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|}
====Lenovo Netbooks====
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| IdeaPad S9 S9e(3G) S10 S10e(3G) || 945GME || {{N/A}} || {{maybe|SATA}} || {{yes|Intel GMA (2D)}} || {{maybe|ALC269 or SigmaTel HD Audio}} || {{yes|USB}} || {{no|Broadcom NetLink BCM5906M}} || {{no|Broadcom BCM4312 hard blocked}} || untested || 2009 32bit -
|-
| IdeaPad S12 || Intel Atom N270 + Nvidia ION LE MCP79 || {{N/A}} || SATA || nVidia C79 ION [Quadro FX 470M] || {{maybe|ALC269 HD Audio}} || USB || {{no|Broadcom}} || {{no|Intel locked down}} || 2012 Icaros 2.0, || 2009 32bit - does not boot - cause unknown
|-
| S10-2 || 945GME and N280 CPU || {{N/A}} || SATA || {{yes|Intel GMA (2D)}} || {{maybe|ALC269 HD Audio}} || {{yes}} || {{yes|rtl8169}} || {{no|Broadcom BCM4312 hard blocked}} || 2011 Icaros 1.3, || 2009 32bit -
|-
| S10-3 || NM410 and N450 CPU || {{N/A}} || SATA || {{yes|Intel GMA 3150 (2D)}} || {{maybe|HD Audio ALC269}} || {{yes|USB}} || {{yes|rtl8169}} || {{no|Atheros 9285 or Broadcom BCM4312 hard blocked}} || 2011 Icaros 1.3, || 2009 32bit -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
====Samsung Netbooks====
[[#top|...to the top]]
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| [http://www.amigaworld.net/modules/newbb/viewtopic.php?post_id=616910&topic_id=33755&forum=28#616910 NC10] || 945GME || {{N/A}} || {{maybe|SATA}} || {{yes|Intel GMA 950 (2D)}} || {{partial|SigmaTel HD Audio (playback only)}} || {{yes|USB}} || {{maybe|rtl8169 works but not Marvell 88E8040 sky2}} || {{yes|AR5007EG}} || 2011 Icaros 1.4, || 2009 32bit - Nano silver on keyboard and lcd ribbon cable over hinge issues
|-
| [http://www.sammywiki.com/wiki/Samsung_NC20 NC20] || VIA VX800 || {{N/A}} || SATA || {{maybe|VIA Chrome9 (VESA only)}} || ALC272 GR (VT1708A) HD Audio || {{yes|USB}} || {{no|Marvell 88E8040}} || {{yes|Atheros AR5001}} || untested || 2009 32bit -
|-
| NP-N110 NP-N120 || 945GSE || {{N/A}} || SATA || {{yes|Intel GMA 950 (2D)}} || {{yes|ALC272 HD Audio or ALC6628}} || {{yes|USB}} || {{no|Marvell 88E8040}} || {{no|Realtek rtl8187}} || untested || 2009 32bit - Namuga 1.3M Webcam none
|-
| NP-N130 || 945GSE || {{N/A}} || {{yes|SATA in IDE mode}} || {{yes|Intel GMA 2D and opengl 1.x 99.5 tunnel 99 gearbox}} || {{yes|Intel HD with ALC272 ALC269 codec playback}} || {{yes|USB}} || {{yes|RTL 8169.device - 8101e 8102e}} || {{no|rtl 8192se rtl8187 too small an area to swap for atheros 5k}} || untested || 2009 32bit - 10.x inch 1024 x 600 - Namuga 1.3M Webcam - front slide power on and f2 setup bios - keyboard 17.7mm Pitch is made with Silver Nano (Anti-Bacterial) tech - small touchpad - 1 ddr2 2rx16 sodimm slot 2G max - 44Wh
|-
| <!--Name-->Go NP-N310 || <!--Chipset-->N270 + 945GME || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|IDE legacy mode}} || <!--Gfx-->{{yes|Intel GMA 950 (2D)}} || <!--Audio-->{{yes|HD Audio ALC6628}} || <!--USB-->{{yes}} || <!--Ethernet-->{{yes|rtl8169}} || <!--Wireless-->{{yes|Atheros5k}} || <!--Test Distro-->untested || <!--Opinion-->2010 32bit - N280 version changed specs
|-
| NP-N510 || N270 euro N280 uk + ION MCP79 || {{N/A}} || SATA || nVidia C79 ION [Quadro FX 470M] || HD Audio || USB || Marvell 88E8040 || Realtek 8192E || untested || 2010 32bit - does not boot - cause unknown
|-
| NP-N145 Plus || n450 + NM10 || {{N/A}} || {{maybe|IDE legacy mode}} || {{yes|Intel GMA 3150 (2D, no VGA output)}} || {{yes|Realtek HD Audio}} || {{yes|USB2.0}} || {{no|Marvell 88E8040}} || {{unk|Atheros AR9285}} || untested || 2010 some support but often the trackpad does not work
|-
| <!--Name-->NC110 Axx || <!--Chipset-->NM10 || <!--IDE-->{{N/A}} || <!--SATA-->Sata || <!--Gfx--> || <!--Audio-->HDAudio with ALC269 codec A9M22Q2 || <!--USB--> || <!--Ethernet-->{{Maybe|Rtl8169}} || <!--Wireless-->{{No|Broadcom BCM4313 or Atheros}} || <!--Test Distro-->untested || <!--Comments-->2011 64bit -
|-
| NF210 Pineview || n455 or n550 + N10 || {{N/A}} || {{maybe|SATA}} || {{maybe|Intel GMA 3150 (needs retesting, VESA works)}} || {{yes|HD Audio}} || {{yes|USB}} || {{no|Marvell 88E8040}} || Wireless || untested || 2011 64bit - some support
|-
| <!--Name-->NS310 NP-NS310-A03UK || <!--Chipset-->N570 with NM10 || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->{{Maybe|use Vesa 2d }} || <!--Audio-->{{yes| ich7}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{yes|rtl8169 realtek 810xe }} || <!--Wireless-->{{no|bcm4313 }} || <!--Test Distro-->2022 AROS One 2.3, || <!--Comments-->2011 64bit Atom N570 or 1.5 GHz Intel Atom N550 dual core processor, 1 DDR3 sodimm slot memory, a 250GB hard drive, and a 10.1 inch, 1024 x 600 pixel 10.1" W7St - 2300mAh short life -
|-
| <!--Name-->[https://wiki.archlinux.org/index.php/Samsung_N150 N150] NB30 || <!--Chipset-->MN10 || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Yes|Intel GMA 3150 (2D)}} || <!--Audio-->{{No| }} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No|Marvell 88E8040}} || <!--Wireless-->{{unk|Atheros AR9285 or Realtek 8192E}} || <!--Test Distro-->untested || <!--Comments-->2011 a little support
|-
| <!--Name-->[http://www.kruedewagen.de/wiki/index.php/Samsung_N220 N210 N220] N230 || <!--Chipset-->N450 + NM10 || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Yes|Intel GMA 3150 (2D)}} || <!--Audio-->HD Audio ALC269 || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No|Marvell}} || <!--Wireless-->{{unk|Atheros AR9285}} || <!--Test Distro-->untested || <!--Comments-->2011 64bit no sse4.1 or avx -
|-
| <!--Name-->NC110 Pxx Cedarview || <!--Chipset--> || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{dunno|Intel GMA 3600}} || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless-->{{No|Intel 6000g}} || <!--Test Distro-->untested || <!--Comments-->2012 64bit
|-
|}
====Toshiba Netbooks====
[[#top|...to the top]]
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->NB100 || <!--Chipset-->945GM || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|legacy}} || <!--Gfx-->{{yes|Intel GMA (2D)}} || <!--Audio-->{{yes|ALC262 HD Audio}} || <!--USB--> || <!--Ethernet-->{{yes|rtl8169}} || <!--Wireless-->{{yes|AR5001}} || <!--Test Distro-->untested || <!--Comments-->2009 32bit -
|-
| <!--Name-->Mini NB200 series NB205 || <!--Chipset-->N280 + GSE945 || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|IDE legacy mode}}|| <!--Gfx-->{{yes|Intel GMA (2D)}} || <!--Audio-->ALC272 HD Audio || <!--USB-->{{yes}} || <!--Ethernet-->{{yes|RTL8169}} || <!--Wireless-->{{maybe|AR9285}} || <!--Test Distro-->untested || <!--Opinion-->2009 32bit -
|-
| <!--Name-->Mini 300 series NB305 || <!--Chipset-->N455 with NM10 || <!--IDE-->{{N/A}} || <!--SATA-->legacy || <!--Gfx-->Intel GMA 3150 (2D) || <!--Audio-->ALC272 HD Audio || <!--USB--> || <!--Ethernet-->{{maybe|RTL8101E RTL8102E}} || <!--Wireless-->{{maybe|AR9285}} || <!--Test Distro-->untested || <!--Opinion-->2010 64bit -
|-
| <!--Name-->Mini 500 series NB505 NB520 NB550-10v || <!--Chipset--> || <!--IDE-->{{N/A}} || <!--SATA-->legacy || <!--Gfx-->Intel GMA 3150 (2D) || <!--Audio-->HD Audio || <!--USB--> || <!--Ethernet-->{{maybe|RTL8101E RTL8102E}} || <!--Wireless-->{{no|Realtek 8176 RTL 8188CE}} || <!--Test Distro-->untested || <!--Opinion-->2011 64bit -
|-
| [http://www.notebookcheck.net/Review-Toshiba-NB550D-AMD-Fusion-Netbook.46551.0.html Mini NB550D 10G] 108 (c30) 109 (c50) || C-50 + M1 || {{N/A}} || SATA || AMD 6250 (VESA only) || HD Audio || USB || {{maybe|rtl8169 Realtek 8111e}} || {{maybe|Atheros 9k}} || untested || 2011 64bit Realtek SD card reader
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
====Misc Netbooks====
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="30%" |Comments
|-
| Cammy's A1600 || GME945 || {{N/A}} || {{maybe}} || {{yes|Intel GMA950 (2D)}} || {{yes|HD Audio playback}} || {{yes}} || {{no|JMC 250/260}} || Wireless || 2010 Icaros 1.2.4, || 2009 32bit -
|-
| <!--Name-->Fujitsu Siemens Amilo Mini Ui 3520 || <!--Chipset-->Intel 945 || <!--ACPI--> || <!--SATA-->{{yes}} || <!--Gfx-->{{yes|Intel GMA (2D)}} || <!--Audio-->ALC269 HD Audio || <!--USB-->{{yes}} || <!--Ethernet-->{{yes|rtl8169}} || <!--Wireless-->{{yes|AR5001}} || <!--Test Distro-->untested || <!--Comments-->2009 32bit -
|-
| Guillemot Hercules eCafe EC-900 H60G-IA], Mitac MiStation and Pioneer Computers Dreambook Light U11 IL1 || Intel 945GME || {{N/A}} || {{maybe}} || {{yes|Intel GMA950 (2D)}} || {{Yes|HD Audio (playback only)}} || {{yes|uhci and ehci}} || {{yes|rtl8169}} || {{no|RAlink RT2860}} || untested || 2009 32bit -
|-
| <!--Name-->Hannspree Hannsnote SN10E2 24 48 || <!--Chipset-->N450 + NM10 || <!--IDE-->{{N/A}} || <!--SATA-->IDE legacy mode || <!--Gfx-->Pineview Intel (2D) || <!--Audio-->ALC HD Audio || <!--USB-->USB2.0 || <!--Ethernet-->Atheros l1c || <!--Wireless-->{{unk|Atheros AR9285}} || <!--Test Distro-->untested || <!--Opinion-->2009 32bit -
|-
| MSI Wind U90/U100 || GME945 || {{N/A}} || {{maybe}} || {{yes|Intel GMA 950 (2D)}} || {{partial|HD Audio ALC888s (playback only?)}} || {{yes|uhci 1.1 and ehci 2.0}} || {{yes|rtl8169}} || {{no|RaLink RT2860 RT2700E or rtl8187se (u100x)}} || 2011 Icaros 1.3, || 2009 32bit -
|-
| Advent 4211 || 945GSE || {{N/A}} || {{maybe|IDE legacy mode}} || Intel GMA950 (2D) || ALC HD Audio || USB || rtl8169 || {{no|Intel 3945 ABG}} || untested || 2009 32bit - MSI U100 clone
|-
| <!--Name-->Hannspree Hannsnote SN10E1 || <!--Chipset-->N270 + GMA945 || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|IDE legacy mode}} || <!--Gfx-->{{yes|Intel GMA 950 (2D)}} || <!--Audio-->ALC HD Audio || <!--USB-->USB2.0 || <!--Ethernet-->{{yes|Realtek RTL8101E RTL8102E RTL8169}} || <!--Wireless-->{{no|RaLink RT2860}} || <!--Test Distro-->untested || <!--Comments-->2009 32bit MSI U100 clone
|-
| <!--Name--> Vaio VGN-P11Z
| <!--Chipset-->
| <!--IDE--> {{dunno}}
| <!--SATA--> {{N/A}}
| <!--Gfx--> {{Partial|Intel (VESA only)}}
| <!--Audio--> {{no|HD Audio}}
| <!--USB--> {{yes|USB 2.0}}
| <!--Ethernet--> {{no|Marvell}}
| <!--Wireless--> {{unk|Atheros AR928X}}
| <!--Test Distro-->2012 Icaros 2.0.3
| <!--Comments-->2008 32bit Rarely boots!
|-
| <!--Name-->Sony VPC-W11S1E
| <!--Chipset-->N280 with 945GSE
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Yes| }}
| <!--Gfx-->{{yes|Intel GMA950 - hdmi}}
| <!--Audio-->HD Audio with realtek codec
| <!--USB-->3 USB2
| <!--Ethernet-->{{No|Atheros AR8132}}
| <!--Wireless-->{{unk|Atheros AR9285}}
| <!--Test Distro-->untested
| <!--Comments-->2009 32bit - 10.1" 1366 x 768 glossy - 3hr battery life -
|-
| <!--Name-->Archos 10 Netbook || <!--Chipset-->Atom with ICH7 NM10 945GSE || <!--IDE-->{{No }} || <!--SATA--> || <!--Gfx-->GMA 950 || <!--Audio-->HD Audio with ALC662 codec || <!--USB--> || <!--Ethernet-->Realtek 8139 || <!--Wireless--> || <!--Test Distro-->untested || <!--Comments-->2008 32bit -
|-
| <!--Name-->MSI Wind U135 DX MS-N014 || <!--Chipset-->Intel N455 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{Yes|2D only accelerated}} || <!--Audio-->{{No|ALC662 rev 1}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{Maybe|RTL}} || <!--Wireless-->{{No|Atheros AR 9K}} || <!--Test Distro-->2015 Icaros 2.1, || <!--Comments-->2009 32bit - needs noacpi notls added to grub boot line to start up
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
===Desktop Systems===
[[#top|...to the top]]
{| class="wikitable sortable" width="100%"
| <!--OK-->{{Yes|'''Works well'''}} || <!--May work-->{{Maybe|'''Works a little'''}} || <!--Not working-->{{No|'''Does not work'''}} || <!--Not applicable-->{{N/A|'''N/A not applicable'''}}
|-
|}
====Acer====
{| class="wikitable sortable" width="100%"
! width="15%" |Name
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Integrated Gfx
! width="10%" |Audio
! width="10%" |USB
! width="10%" |Ethernet
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->[https://www.acer.com/ac/en/ID/content/support-product/486;-; Veriton X270 VTX270] Intel Core 2 Duo ED7400C or Pentium dual-core UD7600C with 630i
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->{{Maybe|Vesa 2d Nvidia 7100 VGA and HDMI connections}}
| <!--Audio-->{{Maybe| with realtek codec}}
| <!--USB-->{{Maybe|4 rear and 5 front}}
| <!--Ethernet-->{{Maybe| nForce}}
| <!--Test Distro-->Icaros 2.3 dvd
| <!--Comments-->2009 64bit capable but would not fully boot, DHCP address timeout too short and failed often. Put in a third party NIC, worked - 1 PCI Express x16 slot and a free PCI x1 slot - internal thin long psu with 12pin -
|-
| <!--Name--> Imedia S1710 with Intel Dual Core E5200
| <!--IDE--> {{Yes|SATA/AHCI}}
| <!--SATA--> {{Maybe|Native IDE}}
| <!--Gfx--> {{Yes|Nvidia nForce 7100}}
| <!--Audio--> {{Yes|Nvidia MCP73}}
| <!--USB--> {{Yes|USB 2.0}}
| <!--Ethernet--> {{No|NVIDIA MCP73 Ethernet}}
| <!--Test Distro--> Nightly Build 14-09-2023, AROS One 2.3
| <!--Comments--> 2009 64-bit - Boot over USB not working on front - 2 DDR2 dual channel max 8GB - DEL for entering Bios - F12 for boot menu - Bus weird, could be reason for Ethernet issue
|-
| <!--Name-->Acer Revo AR1600, R1600 AR3600, R3600 Packard Bell iMax Mini, ACER Veriton N260G N270G slim nettop subcompact
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Maybe|Native IDE mode, '''when it works''' boots}}
| <!--Gfx-->{{Maybe|Nvidia ION GeForce 9300M - nouveau 3d - '''when it boots''' 400 fps in shell'ed gearbox, 278 in tunnel, 42 in teapot}}
| <!--Audio-->{{Maybe|HD Audio with alc662 codec but nothing from HDMI audio}}
| <!--USB-->{{Maybe|Nvidia USB boot usb2 stick issues and slower with usb3 drives}}
| <!--Ethernet-->{{No|MCP79 nForce}}
| <!--Test Distro-->
| <!--Comments-->2009 64bit does not support AVX or SSE 4.1 Intel Atom 230 N280 - 20cm/8" high 1 ltr noisy fan - very often boot stuck around ehciInit - DEL setup F12 boot options - 2 ddr2 sodimm slots max 4GB - 19v special barrel size 5.5mm/1.7mm psu - 2 ddr2 sodimm slots max 4GB - atheros 5k AR5BXB63 wifi -
|-
| <!--Name-->Revo AR3610 R3610 3610 Atom 330 nettop subcompact dual core
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Maybe|Native IDE mode, '''when it works''' boots}}
| <!--Gfx-->{{Maybe|Nvidia ION GeForce 9400M LE MCP79MX - nouveau 3d - '''when it boots''' 400 fps in shell'ed gearbox, 278 in tunnel, 42 in teapot}}
| <!--Audio-->{{Yes|HD Audio with Realtek alc662 rev1 alc662-hd later ALC885 codec but nothing from HDMI audio}}
| <!--USB-->{{Maybe|Nvidia USB with 1% chance boot with usb2 sticks, more issues with usb3 drives}}
| <!--Ethernet-->{{No|RTL 8211CL MCP79 nForce}}
| <!--Test Distro-->{{no|AROS One 32bit 1.5, 1.6 and 2.4 usb and 64bit 1.2 USB}}
| <!--Comments-->2010 64bit does not support AVX or SSE 4.1 20cm/8" high 1 ltr noisy fan - boot often stuck at Kernel or around ehciInit, SATA, etc try ATA=off, non usb hub keyboard, - DEL bios setup, F12 BBS POPUP/drive boot - 2 ddr2 sodimm slots max 4GB - 19v barrel psu with smaller inner pin size 5.5mm/1.7mm - replace wifi RT3090 ver c (linux) with atheros 5k -
|-
| <!--Name-->Revo N281G
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Maybe| }}
| <!--Gfx-->{{maybe|GMA 2d for GMA 3100}}
| <!--Audio-->HD audio codec
| <!--USB-->USB2
| <!--Ethernet-->Realtek
| <!--Test Distro-->
| <!--Comments-->2011 64bit does not support AVX and SSE 4.1 Atom D425 - 19v 65w barrel psu thinner inner pin - 2 DDR3L single channel max 4GB - replace wifi RT3090 ver d with atheros 5k mini pci-e - 1lr or 1.5 ltr dvdrw case 209.89 mm, (D) 209.89 mm, (H) 35.35 mm - del enter bios -
|-
| <!--Name-->REVO AR3700 R3700 3700 Atom D525 dual core - ACER Veriton N282G
*one long beep followed by two short, bios damaged
*looping one long two short, a video card fault
*two short beeps... CMOS damaged
*got one long and one short beep... board error?
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Yes|IDE ready in Bios}}
| <!--Gfx-->{{Yes|Nvidia ION2 GT218 ION vga fine '''but''' hdmi fussy over display used - nouveau 2d & 3d gearbox 404 tunnel 292 teapot 48}}
| <!--Audio-->{{Yes|HDA Intel with Realtek ALC662 rev1 codec, head phones only but nothing from NVidia HDMI}}
| <!--USB-->{{Yes|Intel® NM10 Express (NM10 is basically an ICH7 with a die shrink and IDE removed) USB boots usb, installs usb, accesses ok}}
| <!--Ethernet-->{{Yes|Realtek 8169 8111g}}
| <!--Test Distro-->AROS one 32bit USB 1.5 and 1.6 and ArosOne 64bit usb 1.2
| <!--Comments-->2011 64bit does not support AVX or SSE 4.1 20cm/8" high 1 ltr noisy fan - early 2 ddr2 sodimm slots but later 2 ddr3 sodimm slots 1Rx8 max 4GB - 19v barrel psu thinner pin - replace wifi RT3090 ver d with atheros 5k mini pci-e - ACPI Suspend Mode = S1, S3 (STR), S4 - Power on PCIe
* Known Acer issue, Boot into bios, set bios to UEFI and reboot, set bios back to defaults and reboot, blank display, repair with reflash of 8 pin Winbond W25Q socketed bios chip with ch341a using 2011/09/19 P01.B0L, 2011/05/09 P01.A4, 2011/05/03 P01.A3L, 2010/12/27 P01.A2L, 2010/12/27 P01.A2 amiboot.rom -
|-
| <!--Name-->Revo 70 (RL70) with or without dvdrw
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->6320 or 6310
| <!--Audio-->HD audio ALC662-VCO-GR codec
| <!--USB-->USB2, 1.1 Hudson D1
| <!--Ethernet-->Realtek 8111E
| <!--Test Distro-->
| <!--Comments-->2012 64bit does not support AVX or SSE 4.1 AMD E450 1.65GHz - 19v 65w barrel psu thinner inner pin - 2 DDR3L single channel max 4GB - replace wifi RT3090 ver d with atheros 5k mini pci-e - 1lr or 1.5 ltr dvdrw case 209.89 mm, (D) 209.89 mm, (H) 35.35 mm - del enter bios -
|-
|}
====Asus====
{| class="wikitable sortable" width="100%"
! width="15%" |Name
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Integrated Gfx
! width="10%" |Audio
! width="10%" |USB
! width="10%" |Ethernet
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->EEEbox B202
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Intel GMA950
| <!--Audio-->Intel Azalia HDaudio with Realtek ALC662 or ALC888-GR CODEC
| <!--USB-->
| <!--Ethernet-->Realtek 8111 or JM250
| <!--Test Distro-->Icaros
| <!--Comments-->internal 3 types of wifi chipset not supported
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
|}
====Dell====
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Integrated Gfx
! width="10%" |Audio
! width="10%" |USB
! width="10%" |Ethernet
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name--> Precision 340
| <!--IDE--> {{yes}}
| <!--SATA--> {{n/a}}
| <!--Gfx--> {{n/a}}
| <!--Audio--> {{yes|Intel AC97}}
| <!--USB--> {{yes|USB 1.1 (UHCI)}}
| <!--Ethernet--> {{yes|3Com}}
| <!--Test Distro--> Nightly Build 2014 09-27
| <!--Comments-->
|-
| <!--Name-->Dimension 2400
| <!--IDE-->{{Yes}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->{{Yes|Intel 82845GL Brookdale G/GE (VESA 640x480 by 16)}}
| <!--Audio-->{{Unk|AC97 with ADI codec}}
| <!--USB-->{{Yes|UHCI EHCI}}
| <!--Ethernet-->{{Maybe|Broadcom 440x 4401}}
| <!--Test Distro-->[http://eab.abime.net/showthread.php?p=832495 Icaros 1.4]
| <!--Comments-->Graphics chipset is capable of higher resolution.
|-
| <!--Name-->Dimension 4600
| <!--IDE-->{{yes}}
| <!--SATA-->{{dunno}}
| <!--Gfx-->{{partial|Intel Extreme (VESA only)}}
| <!--Audio-->{{yes|Intel AC97 (use rear black port)}}
| <!--USB-->{{Yes|UHCI/EHCI}}
| <!--Ethernet-->{{yes|Intel PRO/100}}
| <!--Test Distro-->Icaros 1.5.2
| <!--Comments-->
|-
| <!--Name--> Optiplex 170L
| <!--IDE--> {{yes|IDE}}
| <!--SATA--> {{partial|IDE mode}}
| <!--Gfx--> {{partial|Intel Extreme (VESA only)}}
| <!--Audio--> {{no|Intel AC97}}
| <!--USB--> {{yes|USB 2.0}}
| <!--Ethernet--> {{yes|Intel PRO/100}}
| <!--Test Distro--> {{dunno}}
| <!--Comments-->
|-
| <!--Name--> Optiplex GX260
| <!--IDE--> {{yes|IDE}}
| <!--SATA--> {{N/A}}
| <!--Gfx--> {{partial|Intel Extreme (VESA only)}}
| <!--Audio--> {{yes|Intel AC97}}
| <!--USB--> {{yes|USB 2.0}}
| <!--Ethernet--> {{no|Intel PRO/1000}}
| <!--Test Distro--> Nightly Build 2014 09-27
| <!--Comments-->
|-
| Optiplex GX270
| {{yes|Working}}
| {{partial|IDE mode}}
| {{partial|Intel Extreme (VESA only)}}
| {{yes|Intel AC97}}
| {{yes|USB 2.0}}
| {{no|Intel PRO/1000}}
| Icaros 1.5.2
| <!--Comments-->
|-
| Optiplex GX280
| {{yes|Working}}
| {{partial|IDE mode}}
| {{maybe|Intel GMA (only VESA tested)}}
| {{yes|Intel AC97}}
| {{yes|USB 2.0}}
| {{no|Broadcom}}
| Nightly Build 2014 09-27
| <!--Comments-->
|-
| <!--Name--> Optiplex GX520
| <!--IDE--> {{yes|IDE}}
| <!--SATA--> {{partial|IDE mode}}
| <!--Gfx--> {{yes|Intel GMA}}
| <!--Audio--> {{partial|Intel AC97 (no line-out)}}
| <!--USB--> {{yes|USB 2.0}}
| <!--Ethernet--> {{no|Broadcom}}
| <!--Test Distro--> {{dunno}}
| <!--Comments-->
|-
| <!--Name--> Optiplex 745
| <!--IDE--> {{N/A}}
| <!--SATA--> {{partial|IDE mode}}
| <!--Gfx--> {{partial|Intel GMA (VESA only)}}
| <!--Audio--> {{partial|HD Audio (no volume control)}}
| <!--USB--> {{partial|Only keyboard mouse (legacy mode)}}
| <!--Ethernet--> {{no|Broadcom}}
| <!--Test Distro--> {{dunno}}
| <!--Comments-->
|-
| <!--Name--> Optiplex 755
| <!--IDE--> {{N/A}}
| <!--SATA--> {{partial|IDE mode}}
| <!--Gfx--> {{partial|Intel GMA (VESA only)}}
| <!--Audio--> {{no|HD Audio}}
| <!--USB--> {{yes|USB 2.0}}
| <!--Ethernet--> {{no|Intel Gigabit}}
| <!--Test Distro--> Icaros 1.5.1
| <!--Comments--> Around 25 second delay in booting from USB
|-
| <!--Name--> Optiplex 990
| <!--IDE--> {{N/A}}
| <!--SATA--> {{partial|non-RAID mode}}
| <!--Gfx--> {{partial|Intel HD (VESA only)}}
| <!--Audio-->{{no|HD Audio}}
| <!--USB--> {{yes|USB 2.0}}
| <!--Ethernet--> {{no|Intel Gigabit}}
| <!--Test Distro--> Nightly Build 2014 09-27
| <!--Comments-->
|-
| <!--Name-->Optiplex 360
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->{{maybe|ordinary boot gives VGA mode only - VESA}}
| <!--Audio-->{{no|HD Audio (Analog Devices ID 194a)}}
| <!--USB-->
| <!--Ethernet-->{{no|Broadcom}}
| <!--Test Distro-->Aspire Xenon
| <!--Comments-->poor support
|-
| <!--Name-->Dell Wyse Vx0 (V90 V30), Vx0L (V10L V90L), Vx0LE (V30LE V90LE) from VIA C7 800GHz to Eden 1.2GHz
| <!--IDE-->{{Maybe| }}
| <!--SATA-->{{N/A| }}
| <!--Gfx-->{{Maybe|Vesa 2d for S3 UniChrome Pro}}
| <!--Audio-->{{No|AC97 VIA VT8233A with ?? codec}}
| <!--USB-->{{yes|2 back and 1 front USB2}}
| <!--Ethernet-->{{Maybe|early models work but later VT6102-3 do not}}
| <!--Test Distro-->AROS One 2.2
| <!--Comments-->2006 to 2009 32bit - 12V 4A Coax 5.5mm/2.1mm - 1 sodimm DDR 333MHz SO-DIMM later DDR2 - early V90s do seem to have a reliability problem -
|-
| <!--Name-->[https://www.poppedinmyhead.com/2021/01/wyse-cx0-thin-client-notes-experiences.html Dell Wyse Cx0] C00LE, C10LE, C30LE, C50LE, C90LE, C90LE7, C90LEW VIA C7 Eden 1GHz
| <!--IDE-->{{Maybe| }}
| <!--SATA-->{{N/A| }}
| <!--Gfx-->{{Maybe|Vesa 2d VX855 VX875 Chrome 9}}
| <!--Audio-->{{Maybe|some VIA VT8237A VT8251 HDA with ?? codec work}}
| <!--USB-->{{yes|4 outside 2 inside USB2}}
| <!--Ethernet-->{{No|VT6120 VT6121 VT6122 Gigabit}}
| <!--Test Distro-->Icaros 2.3
| <!--Comments-->2010 to 2013 32bit - [https://ae.amigalife.org/index.php?topic=815.0 boots and works] - 12V 2.5A Coax 5.5mm/2.1mm - 1 sodimm ddr2 -
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->Dell RxxL Rx0L Wyse thin client
*R00L Cloud PC of Wyse WSM
*R10L Wyse Thin OS
*R50L Suse Linux Enterprise
*R90L Win XP Embedded
*R90LW Win Embedded Standard 2009
*R90L7 Win Embedded Standard 7
| <!--IDE-->128Mb IDE or 1GB
| <!--SATA-->{{Maybe|SATA Hyperdisk}}
| <!--Gfx-->AMD 690E RS690M Radeon Xpress 1200 1250 1270
| <!--Audio-->
| <!--USB-->4 usb2
| <!--Ethernet-->Realtek
| <!--Test Distro-->
| <!--Comments-->2009 64bit AMD Sempron™ 210U SMG210UOAX3DVE 1.5GHz SB600, up to 4GB single slot 240-pin DDR2 DIMM, 19v barrel psu, DEL key bios - Late 2012 2 data sockets added but only CN18 be used with two white sockets (CN13 & CN15) can used to power the SATA device "4-pin Micro JST 1.25mm
|-
| <!--Name-->Optiplex 390 sff small form factor - mt mini tower desktop - dt full desktop
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->{{maybe|1 pci-e}}
| <!--Audio-->{{maybe|HD Audio}}
| <!--USB-->
| <!--Ethernet-->{{maybe|realtek}}
| <!--Test Distro-->aros one 1.6 usb
| <!--Comments-->2011 64bit dual i3 2xxx - kettle iec plug psu cable - add nvidia gf218 gfx - error code 3 mobo or cpu -
|-
| <!--Name-->Optiplex 3010 sff small form factor
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->{{maybe|1 pci-e}}
| <!--Audio-->{{maybe|HD Audio}}
| <!--USB-->{{maybe| }}
| <!--Ethernet-->{{no|Broadcom 57XX}}
| <!--Test Distro-->
| <!--Comments-->2012 64bit dual i3 3xxx - kettle iec plug psu cable -
|-
| <!--Name-->Optiplex 7010 sff small form factor
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->{{maybe|1 pci-e}}
| <!--Audio-->{{maybe|HD Audio}}
| <!--USB-->
| <!--Ethernet-->{{no|Broadcom or Intel 825xx}}
| <!--Test Distro-->
| <!--Comments-->2012 64bit dual i3 3xxx Q77 - kettle iec plug psu cable - add pci-e ethernet and nvidia gf218 gfx -
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->Dell Wyse 5010 thin client ThinOS D class (D10D D00D D00DX, Dx0D), PCoIP (D10DP) or D90D7, 5040
*username: Administrator, admin, [blank]
*password: Fireport, DellCCCvdi, rappot, Wyse#123, Administrator, administrator, r@p8p0r+
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Yes|IDE mode may need 30cm ext cable as small area for half-slim sata ssd - decased new ssd??}}
| <!--Gfx-->{{Maybe|Vesa 2d 1400x1050 HD6250E IGP by using DVI to hdmi cable and 1 display port, no hdmi port}}
| <!--Audio-->{{Maybe|HD 6.34 audio chipset detected but codec alc269 working from one case speaker - none if v6.29 used}}
| <!--USB-->{{Yes|most 5010 have 4 USB 2.0 but D90Q7 has 2 USB3 instead}}
| <!--Ethernet-->{{Yes|rtl8169 Realtek 8168 8169 - rev 1.?? 8111? - rev 1.91 8111E}}
| <!--Test Distro-->Icaros 2.3
| <!--Comments-->2011 64bit no SSE4.1 or AVX slow AMD G-T44R 1.2Ghz later G-T48E 1.4Ghz Dual Bobcat Brazos BGA413 - Del for BIOS - p key to select boot with noacpi - single DDR3 sodimm slot max 4Gb, (8Gb hynix 2rx8 ddr3l)? (remove small board to upgrade) - passive no fan - 15cm/6" small 1ltr case and lack of expansion options - PA16 19v barrel psu Coax 5.5mm/2.5mm
|-
| <!--Name-->Dell Wyse 7010 DTS thin client (Z class Zx0D)
*2011 Zx0 Z90D7 2GF/2GR
*2013 Z10D
*2014 Z50D 2GF/2GR
*2012 Cisco VXC 6000 CVXC-6215-K9 white
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Yes|Bios set Sata mode to IDE mode and grub boot add 'noacpi' for half slim sata2 ssd or/with 50cm sata ext cable}}
| <!--Gfx-->{{Maybe|VESA 2d HD6310 HD6320 Terascale 2 through DVI and sometimes DP 1.1a - no hdmi port}}
| <!--Audio-->{{Maybe|HD Audio 6.34 detected but ALC269VB codec works on the one case speaker only}}
| <!--USB-->{{Yes|2.0 works but NEC 720200 3.0 not working}}
| <!--Ethernet-->{{Yes|rtl8169 Realtek 8169 8111e 8111F}}
| <!--Test Distro-->Icaros 2.3 and Aros One 32bit 1.5, 1.9 and 2.3 usb and 64bit 1.2
| <!--Comments-->2011 64bit does not support AVX or SSE 4.1 slow AMD G-t52R 1.5GHz later G-T56N 1.65 GHz Dual with A50M FCH - 20cm/8" high 1.5ltr larger fanless black plastic case with metal ventilated box inside - 2 desktop DDR3L DIMM slots max 16GB - PA-16 19v external psu Coax 5.5mm/2.5mm - 2 40cm SMA female WiFi Antenna to IPEX IPX u.fl Ufl Cable pigtail needed - does not like uefi boot devices -
|-
| <!--Name-->Wyse 7020 Thin Client
* 2013 Quad-core AMD GX-420CA 2.0 GHz (25W) -
* 2018 Zx0Q Quad-core AMD GX-415GA 1.5 GHz (15W) with Quad display 3dp and 1dvi
| <!--IDE-->{{N/A}}
| <!--SATA-->1 sata port
| <!--Gfx-->{{Maybe|Vesa 2d only for AMD Radeon HD8400E radeonsi (dual display) or AMD Radeon HD 8330E IGP with AMD Radeon E6240 Seymour E6460 (quad display), no hdmi ports}}
| <!--Audio-->
| <!--USB-->4 x USB2.0 works but 2 USB3.0
| <!--Ethernet-->rtl8169 Realtek 8169 8111
| <!--Test Distro-->
| <!--Comments-->2013 64bit does support AVX or SSE 4.1 quad eKabini Jaguar cores - two SODIMM sockets layered in centre of mobo DDR3L RAM - Coax 5.5mm/2.5mm ac psu 9mm plug is too short but 14mm length is fine - 15cm/6" high smaller 1ltr case and lack of expansion options -
|-
| <!--Name-->Dell Wyse Dx0Q (5020) D90Q8 NJXG4 AMD G-Series
| <!--IDE-->{{N/A}}
| <!--SATA-->1 sata port
| <!--Gfx-->HD 8330E
| <!--Audio--> with Realtek codec
| <!--USB-->4 x USB2.0 works but 2 USB3.0
| <!--Ethernet-->rtl8169 Realtek 8169 8111
| <!--Test Distro-->
| <!--Comments-->2014 64bit does support AVX or SSE 4.1 Quad-core AMD GX-415GA 1.5 GHz - 2 layered near edge of mobo 204-pin DDR3L SODIMM (bottom one tricky to insert) - 19v Coax 5.5mm/2.5mm - passive no fan - 15cm/6" high smaller 1ltr case and lack of expansion options
|-
| <!--Name-->Dell Wyse 5060 N07D thin client
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Yes|IDE bios mode for sata2 port}}
| <!--Gfx-->{{maybe|Vesa 2d - AMD R5E GCN2 IGP Sea Islands thru dp1 with an hdmi adapter no output thru dp2 - no hdmi dvi ports}}
| <!--Audio-->{{maybe|HD Audio with Realtek ALC231 codec head phones only}}
| <!--USB-->{{Maybe|4 x USB2.0 works but 2 USB3.0}}
| <!--Ethernet-->{{yes|rtl8169 realtek 8169 8111h}}
| <!--Test Distro-->AROS One 1.6 usb
| <!--Comments-->2017 64bit does support AVX or SSE 4.1 quad GX-424CC 19.5v external psu - CN-0Y62H1 mobo with 2 layered ddr3l 16Gb max sodimm slots at edge of mobo, bottom 0 one blocking - passive no fan so quiet - 15cm/6" high smaller 1ltr case and lack of expansion options -
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
|}
====Fujitsu Siemens====
{| class="wikitable sortable" width="100%"
! width="15%" |Name
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Integrated Gfx
! width="10%" |Audio
! width="10%" |USB
! width="10%" |Ethernet
! width="15%" |Test Distro
! width="20%" |Comments
|-
| Scenic [http://uk.ts.fujitsu.com/rl/servicesupport/techsupport/ProfessionalPC/Scenic/ScenicE/ScenicE.htm E600] (compact desktop)
|
|
| {{partial|VESA only}}
| {{yes|AC97}}
|
| {{no|Intel PRO/1000}}
| {{dunno}}
| Nice small, silent PC with good AROS support.
|-
| Scenic T i845
| {{dunno}}
| {{n/a}}
| {{n/a}}
| {{dunno|Intel AC97}}
| {{dunno|UHCI}}
| {{dunno|Intel PRO/100}}
| Icaros 1.5.2
| AROS does not boot
|-
| <!--Name-->Futro S200 S210 S220 and later S300
| <!--IDE-->{{yes| compactflash CF card max ??}}
| <!--SATA-->
| <!--Gfx-->{{maybe|VESA Silicon Integrated Systems [SiS] 315PRO PCI/AGP }}
| <!--Audio-->{{unk|AC97 via }}
| <!--USB-->{{unk|via uhci and ehci}}
| <!--Ethernet-->{{unk|via VT6102 [Rhine-II] (rev 74) }}
| <!--Test Distro-->
| <!--Comments-->2008 32bit - TR5670 Rev 1.4 mother with Transmeta TM5800 cpu - pci socket - single SODIMM socket for DDR memory PC2700S max 512MB -
|-
| <!--Name-->Futro S400
| <!--IDE-->{{yes| but swap with compactflash CF card already with AROS installed}}
| <!--SATA-->
| <!--Gfx-->{{maybe|VESA Silicon Integrated Systems [SiS] SiS741CX }}
| <!--Audio-->{{unk|AC97 SiS7018}}
| <!--USB-->{{unk|sis uhci and ehci}}
| <!--Ethernet-->{{unk|rtl8169 }}
| <!--Test Distro-->
| <!--Comments-->2008 32bit - AMD Geode NX1500 1GHz gets hot - SiS 963L / SiS 741CX chipset - 12V 4.2A 4-pin (DP-003-R) psu - single SODIMM socket for DDR PC2700S max 1G - large case 246 x 48 x 177cms torx screws - pci socket -
|-
| <!--Name-->FUJITSU Futro S700 and S900 Thin Client (based on mini-ITX motherboard D3003-A12, D3003-C1 lesser variant of [https://www.parkytowers.me.uk/thin/Futro/s900/TechNotes_V3.1_Mini-ITX_D3003-S.pdf D3003-S])
*G-T56N 1.65GHz
*G-T40N 1.00GHz
*G-T44R 1.20GHz
| <!--IDE-->{{N/A}}
| <!--SATA-->1 sata data socket but mSata 18+8pins 1GB-16GB
| <!--Gfx-->Radeon HD 6320, HD 6250, HD 6290 dvi or displayport (DP runs higher)
| <!--Audio-->HDAudio
| <!--USB-->{{yes|two USB2 front sockets and four on the rear}}
| <!--Ethernet-->{{Maybe|Realtek}}
| <!--Test Distro-->
| <!--Comments-->2011 64bit AMD slow atom-like and fanless - 20V 2A psu 5.5mm/2.1mm coax (S900) - 2 DDR3L SODIMM sockets max 8GB tricky to run 1333 MHz on the Futro S900 - proprietary X2 PCI-e - 1 PCI socket but need a right-angle adaptor -
|-
| <!--Name-->esprimo p420 e85 desktop case
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Maybe|IDE mode}}
| <!--Gfx-->Intel 4600 or old Geforce in pci-e slot
| <!--Audio-->HDAudio realtek alc671 codec
| <!--USB-->USB3
| <!--Ethernet-->rtl8169 8111
| <!--Test Distro-->
| <!--Comments-->2013 64bit - 2 ddr3 dimm slots - 16 pin special psu -
|-
| <!--Name-->esprimo E420 e85+ SFF case
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Maybe|IDE mode}}
| <!--Gfx-->Intel 4600 or low profile pci-e card
| <!--Audio-->HDAudio realtek alc671 codec
| <!--USB-->USB3
| <!--Ethernet-->rtl8169 8111G
| <!--Test Distro-->
| <!--Comments-->2013 64bit - 2 ddr3 dimm slots - 16ish pin special psu - hd under front metal bracket, take front cover off first with 3 tabs - 3 slim pci-e slots -
|-
| <!--Name-->Futro S520 AMD dual 1.0Ghz codenamed "Steppe Eagle"
* GX-210HA @ 1.0GHz
* GX-212ZC @ 1.2GHz
| <!--IDE-->{{N/A}}
| <!--SATA-->no sata - 4Gb or 16Gb flash memory soldered to the board
| <!--Gfx-->AMD Radeon HD 8210E (GX210HA) or AMD Radeon R1E (GX212ZC)
| <!--Audio-->HDAudio
| <!--USB-->
| <!--Ethernet-->rtl8169 rtl8111e
| <!--Test Distro-->
| <!--Comments-->2016 64bit does support AVX or SSE 4.1 - smaller than ITX 160mm x 160mm Fujitsu D3314-A11 - 19V 3.4A PSU standard 5.5mm/2.1mm coax plug - 1 ddr3 sodimm slot -
|-
| <!--Name-->Fujitsu Futro S720 ThinClient D3313-B13 D3313-F
*2014 64bit AMD GX-217GA 1.65GHz VFY:S0720P8009FR VFY:S0720P8008DE VFY:S0720P4009GB
*2015 64bit AMD GX-222GC 2.20GHz VFY:S0720P702BDE VFY:S0720P702BFR
all begin VFY:S0720P and end two digit country code
| <!--IDE--> {{N/A|}}
| <!--SATA--> {{Yes|up to 2 Sata-cable-connector with space in casing so normal SSD/HDD over Sata was running very well on AHCI and IDE-Mode and 2242 mSata}}
| <!--Gfx--> {{Maybe|use VESA 2D for AMD Radeon HD 8280E IGP ( islands) or later R5E IGP ( islands)}}
| <!--Audio--> {{yes|HDAudio ALC671 codec partially working, external audio speaker}}
| <!--USB--> {{yes|4 rear USB 2.0 but not front 2 USB 3.1}}
| <!--Ethernet-->{{yes|rtl8169 Realtek 8169}}
| <!--Test Distro-->AROS One USB 2.0
| <!--Comments-->2014 64bit supports AVX and SSE 4.1 - 1 ddr3 Sodimm slot max 8Gb - 19V-20V 2A 5.5mm/2.5mm coax - D3313-B13 stripped down Mini-ITX mobo D3313-S1/-S2/-S3 (eKabini) D3313-S4/-S5/-S6 - SATA data socket can be located under the fins of the cpu heatsink is fanless - mPCIe socket for wireless card -
|-
| <!--Name-->Fujitsu FUTRO S920 D3313-E D3313-G
*2016 AMD GX-222GC SOC 2.20GHz Dual
*2017 AMD G-Series GX-415GA (1.50 GHz, Quad Core, 2 MB, AMD Radeon™ HD 8330E)
*2017 AMD G-Series GX-424CC 2.40 GHz Quad
| <!--IDE--> {{N/A}}
| <!--SATA--> {{yes|2242 mSata and 1 Sata-cable-connector with space in casing so normal SSD/HDD over Sata possible}}
| <!--Gfx--> {{yes|use VESA 2D for Radeon R5E GCN2/3 IGP}}
| <!--Audio--> {{yes|HDAudio ALC671 codec partially working}}
| <!--USB--> {{yes|4 rear USB 2.0, front 2 USB 3.1 downgradable to 2.0 in BIOS setting}}
| <!--Ethernet--> {{yes|rtl8169 Realtek 8169}}
| <!--Test Distro--> AROS One USB 2.4
| <!--Comments-->2016 64bit does support AVX or SSE 4.1 - 2 so dimm slot with max of 8 GB - 19v barrel psu 5.5mm 2.5mm - SATA data socket can be located under the fins of the heatsink - mPCIe a e keyed socket for wireless card - propetary X2 connector with official raizer to X1 connector - almost silent background noise, not affecting sound quality in any way
|-
| <!--Name-->Fujitsu Thin Client Futro S5011 S7011
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->{{maybe|Vesa 2D for AMD Vega 3 on 2 dp 1.4}}
| <!--Audio-->{{No|HDAudio with ALC623 codec}}
| <!--USB-->{{maybe|USB3 USB 3.2 Gen 2 front and 3 usb2 rear }}
| <!--Ethernet-->rtl8169 Realtek RTL8111H
| <!--Test Distro-->
| <!--Comments-->2019 64bit - AMD Ryzen Dual Core R1305G or R1505G 1ltr case - 2 ddr4 sodimm slots - TPM 2.0 - 19v 3.42amp round coax or usb-c 20c 3.25a external psu -
|-
| <!--Name-->Fujitsu FUTRO S9011 Thin Client VFY:S9011THU1EIN || <!--IDE-->{{N/A}} || <!--SATA-->NVMe || <!--Gfx-->{{maybe|Vesa 2D for AMD Vega 3 on 2 dp 1.4}} || <!--Audio-->{{No|HDAudio with ALC623 codec}} || <!--USB-->{{maybe|USB3 USB 3.2 Gen 2 front and 3 usb2 rear }} || <!--Ethernet-->rtl8169 Realtek RTL8111H || <!--Test Distro--> || <!--Comments-->2020 64bit Ryzen Embedded R1606G - 2 ddr4 sodimm slots - TPM 2.0 -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
|}
====HP Compaq====
{| class="wikitable sortable" width="100%"
! width="15%" |Name
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Integrated Gfx
! width="10%" |Audio
! width="10%" |USB
! width="10%" |Ethernet
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->Compaq presario 7360
| <!--IDE-->{{yes|Working}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->{{Maybe|VESA}}
| <!--Audio-->{{Maybe|AC97 via}}
| <!--USB-->{{Maybe|issues}}
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->Compaq EP Series 6400/10
| <!--IDE--> {{yes|IDE}}
| <!--SATA--> {{N/A}}
| <!--Gfx--> {{N/A}}
| <!--Audio--> {{no|ISA}}
| <!--USB--> {{yes|USB 1.1}}
| <!--Ethernet--> {{N/A}}
| <!--Test Distro--> {{dunno}}
| <!--Comments-->
|-
| <!--Name-->Compaq Evo D510
| {{yes|Working}}
| {{N/A}}
| {{partial|Intel Extreme (VESA only)}}
| {{yes|AC97}}
| {{yes|Working}}
| {{yes|Intel PRO/100}}
| Icaros 1.5
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->Compaq DX2000 MT
| <!--IDE-->{{yes}}
| <!--SATA-->{{maybe}}
| <!--Gfx-->{{maybe|Intel Extreme 2 (VESA only)}}
| <!--Audio-->{{no|detects AC97 but no support for ADI AD1888 codec}}
| <!--USB-->{{yes|OHCI/EHCI }}
| <!--Ethernet-->{{no|Intel 82526EZ e1000}}
| <!--Test Distro--> Icaros 1.51
| <!--Comments-->boots ok but no audio
|-
| <!--Name-->Compaq DX 2200
| <!--IDE-->{{yes}}
| <!--SATA-->{{maybe}}
| <!--Gfx-->{{maybe|RC410 [Radeon Xpress 200] (VESA only)}}
| <!--Audio-->{{dunno|HD Audio}}
| <!--USB-->{{maybe|OHCI/EHCI issues }}
| <!--Ethernet-->{{N/A}}
| <!--Test Distro--> {{dunno}}
| <!--Comments-->issues
|-
| <!--Name--> d230
| <!--IDE--> {{yes|UDMA}}
| <!--SATA--> {{N/A}}
| <!--Gfx--> {{partial|Intel Extreme (VESA only)}}
| <!--Audio--> {{partial|Intel AC97 (speaker and headphones only, no line-out)}}
| <!--USB--> {{yes|USB}}
| <!--Ethernet--> {{Maybe|Broadcom BCM4401}}
| <!--Test Distro--> Icaros 1.4.5
| <!--Comments-->
|-
| <!--Name-->HP Pavilion a220n || <!--IDE-->{{Yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Yes|VESA 1024x768 on nVidia GF4 MX with 64MB shared video ram}} || <!--Audio-->{{Yes|Realtek ALC650 AC'97 comp.}} || <!--USB-->{{Yes|USB 2.0}} || <!--Ethernet-->{{Yes|Realtek 8201BL 10/100 LAN}} || <!--Test Distro-->AROS One 2.5|| <!--Comments-->2004 32bit athlon xp 2600+ Socket 462 / Socket A - 2 dimm ddr pc2700 -
|-
| <!--Name-->t500
| <!--IDE-->{{Yes}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->{{Yes|FX5200 (2D; 3D with older driver)}}
| <!--Audio-->{{Yes|AC97 ICH4 ALC658D}}
| <!--USB-->{{Yes|UHCI/EHCI}}
| <!--Ethernet-->{{Yes|RTL 8101L 8139}}
| <!--Test Distro-->Nightly Build 2012-09-22
| <!--Comments-->2004
|-
| <!--Name-->DC7700
| <!--IDE-->{{Yes}}
| <!--SATA-->{{Yes}}
| <!--Gfx-->{{Yes|GMA 2D}}
| <!--Audio-->{{Yes| ICH8}}
| <!--USB-->{{Yes}}
| <!--Ethernet-->{{No|82566DM e1000e}}
| <!--Test Distro-->Nightly Build 2013-??-??
| <!--Comments-->2006 Some support at low cost
|-
| <!--Name-->HP dc 7600 CMT
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->{{Yes|Intel Graphics Media Accelerator 950}}
| <!--Audio-->{{Yes|Realtek ACL 260}}
| <!--USB-->{{Yes|USB 2.0}}
| <!--Ethernet-->{{No|Intel PRO/1000 GT}}
| <!--Test Distro-->
| <!--Comments-->2007
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->HP t5000 thin client series t5500 t5510 t5515 PC538A or PC542A t5700 t5710 Transmeta Crusoe Code Morphing TM 5400 5600 800Mhz
| <!--IDE-->128mb to 512MB
| <!--SATA-->{{N/A}}
| <!--Gfx-->Ati Radeon 7000M
| <!--Audio-->VIA with codec
| <!--USB-->{{No|Issues}}
| <!--Ethernet-->VIA Rhine 2
| <!--Test Distro-->
| <!--Comments-->2006 32bit - ddr max 1GB - F10 setup - all t51xx and some t55xx units will not include a SODIMM slot -
|-
| <!--Name-->HP t5000 thin client series CN700
*HSTNC-002L-TC t5135, t5530
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Vesa 2d 128Mb Via S3 32-bit colour
| <!--Audio-->AC97
| <!--USB-->
| <!--Ethernet-->VIA VT6102 VT6103 [Rhine-II] (rev 78)
| <!--Test Distro-->
| <!--Comments-->2007 32bit t5135 appears identical to the t5530 except the CPU VIA Esther 400 MHz - RAM 64Mb (? max) - 8 x USB2.0 - 12V 3.33A Coax 5.5mm/2.1mm
|-
| <!--Name-->HP t5720, t5725 HSTNC-001L-TC
| <!--IDE-->{{unk| }}
| <!--SATA-->{{N/A}}
| <!--Gfx-->VESA 2d SiS741GX 2048 x 1536 32-bit colour
| <!--Audio-->AC97 SiS SiS7012 AC'97
| <!--USB-->6 x USB2.0
| <!--Ethernet-->VIA VT6102 VT6103 [Rhine-II] (rev 8d)
| <!--Test Distro-->
| <!--Comments-->2007 32bit AMD Geode NX1500 1GHz socketed - RAM 512MB or 1GB, 256MB, 512MB or 1GB - 12V psu - sis DDMA support - custom 1.13 BIOS - pci low profile -
|-
| <!--Name-->t5000 series VX800 HSTNC-004-TC t5145, t5540, t5545, t5630
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Vesa 2d VIA Chrome9
| <!--Audio-->HD Audio VIA
| <!--USB-->
| <!--Ethernet-->{{No|VT6120 VT6121 VT6122 Gigabit (rev 82)}}
| <!--Test Distro-->
| <!--Comments-->2010 32bit - RAM 64Mb (? max) - 8 x USB2.0 - 12V 4.16A Coax: 5.5mm/2.1mm -
|-
| <!--Name-->t5730w HSTNC-003-TC t5730
| <!--IDE-->{{n/a|ATA 44pin DOM Flash}}
| <!--SATA-->
| <!--Gfx-->Vesa 2d ATI Radeon X1250 2048 x 1536 no 3D
| <!--Audio-->HD audio with codec
| <!--USB-->{{Yes|6 x USB2.0}}
| <!--Ethernet-->{{No|Broadcom 5707M tg3 10/100/1000}}
| <!--Test Distro-->
| <!--Comments-->2008 64bit AMD Sempron 2100+ 1GHz - 1 slot of ddr2 sodimm (Max 2GB) - 12V 4.16A Coax 5.5mm/2.1mm - F10 enter bios F12 boot devices -
|-
| <!--Name-->HSTNC-005-TC gt7720, gt7725
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Vesa 2d AMD RS780G HD 3200 - 2560 x 1600 DVI-D & DVI-H
| <!--Audio-->
| <!--USB-->8 x USB2.0
| <!--Ethernet-->{{No|Broadcom BCM5787M}}
| <!--Test Distro-->
| <!--Comments-->2009 64bit AMD Turion Dual Core CPU 2.3GHz - 1 DDR2 200-pin SODIMM - 19V 4.16A Coax 7.4mm/5.0mm (gt7725) -
|-
| <!--Name-->HP t5740 Thin Client HSTNC-006-TC t5740, t5745, st5742
| <!--IDE-->1 port
| <!--SATA-->1 port
| <!--Gfx-->{{Maybe|VESA for Intel CL40 VGA and DisplayPort connectors}}
| <!--Audio-->{{Yes|HD audio with IDT codec}}
| <!--USB-->{{Maybe| }}
| <!--Ethernet-->{{No|Broadcom BCM57780 Gigabit}}
| <!--Test Distro-->Nightly build and Icaros
| <!--Comments-->2009 32bit Atom N280 - F10 on power up to get into the BIOS screens. F12 brings up the boot options - hp 19V one with a coax connector, outer diameter 4.8mm with inner to be 1.7mm to 1.4mm - 2 ddr3 sodimm slots max 3gb due to 32bit - 1 pci-e slot completely non standard -
|-
| <!--Name-->t5000 series HSTNC-012-TC VIA Nano u3500 VX900
*t5550 512MB/1GB Windows CE6 R3
*t5565 1GB/1GB HP ThinPro
*t5570 2GB/1GB WES 2009
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Vesa 2d VIA ChromotionHD 2.0 GPU Chrome9
| <!--Audio-->VIA 9170 VT1708S codec
| <!--USB-->
| <!--Ethernet-->{{No|Broadcom BCM57780 Gigabit}}
| <!--Test Distro-->
| <!--Comments-->32bit - 1 sodimm - 19V 3.42A supply connector standard yellow-tip coax plug 4.8mm/1.8mm "Standard HP Compaq DC Power Plug 4.8mm x 1.5mm / 1.7mm Yellow Tip Connector -
|-
| <!--Name-->HP t510 Via Eden X2 U4200 HSTNC-012-TC shares features with t5570e, t5565z
| <!--IDE-->2G ATA Flash DOM
| <!--SATA-->one
| <!--Gfx-->{{Maybe|Vesa 2d for Chrome9 VIA ChromotionHD 2.0 gfx}}
| <!--Audio-->{{Maybe|VIA VT8237A VT8251 HDA with codec}}
| <!--USB-->{{Maybe|6 USB2 }}
| <!--Ethernet-->{{No|Broadcom Corporation NetLink BCM57780 Gigabit Ethernet PCIe}}
| <!--Test Distro-->
| <!--Comments-->2010 32bit - one slot ddr3 sodimm max 4GB - 19V 3.42A Coax 4.8mm/1.8mm -
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->HP T610 Thin Client and thicker PLUS version AMD G-T56N A55E
| <!--IDE-->{{Maybe|}}
| <!--SATA-->2 sata
| <!--Gfx-->Radeon 6320 1 dp port 1 dvi
| <!--Audio-->HDAudio with ALC codec
| <!--USB-->two USB2 on the front, two USB2 and two USB 3 ports on the rear
| <!--Ethernet-->{{No|Broadcom BCM57780}}
| <!--Test Distro-->
| <!--Comments-->2010 64bit does not support AVX SSE 4.1 - 2 204-pin DDR3 1600MHz SODIMMs PC3-12800 under motherboard via removable panel - 19.5V 3A Coax male 7.4mm/5.0mm + centre pin -
|-
| <!--Name-->HP T420 Thin Client
*AMD Embedded G-Series GX-209JA SOC (1 GHz, 2 cores)
| <!--IDE-->{{N/A}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->Radeon 8180 dvi vga
| <!--Audio-->HDAudio with ALC codec
| <!--USB-->2 front 2 rear USB2
| <!--Ethernet-->{{Yes|Realtek}}
| <!--Test Distro-->
| <!--Comments-->2015 64bit supports AVX SSE 4.1 - soldered in place 2GB DDR3 - smaller than usual 19.5V 2.31A Coax male 4.5mm/3.0mm + centre pin - usb stick internal for storage - E15 BBR -
|-
| <!--Name-->HP t520 TPC-W016
*AMD GX-212JC 1.2Ghz (2 core)
| <!--IDE-->{{N/A}}
| <!--SATA-->1 m.2 mounting holes for 2242 and 2260 SSDs SATA (not NVME)
| <!--Gfx-->Radeon R2E GCN2 IGP Sea Islands
| <!--Audio-->HDAudio with ALC codec
| <!--USB-->2 USB3 front, 4 USB2 back
| <!--Ethernet-->{{Yes|Realtek}}
| <!--Test Distro-->
| <!--Comments-->2014 2017 64 bit supports AVX SSE 4.1 - 1 204-pin DDR3 SODIMM - 19.5V 3.33A 7.4mm Coax with central pin
|-
| <!--Name-->HP t620 TPC-I004-TC
*AMD G-Series GX-217GA 2 core APU 1.65GHz (65W)
*AMD GX-415GA (65W)
and t620 PLUS (PRO wider version) TPC-I020-TC
*AMD GX-420CA SOC (Plus 85W)
| <!--IDE-->{{N/A}}
| <!--SATA-->{{yes|single M.2 2280 socket sata3, mSATA socket removed end of 2014}}
| <!--Gfx-->{{maybe|Vesa 2d for Radeon HD 8280E graphics 8330E Islands GCN2 IGP - 2 dp ports no dvi}}
| <!--Audio-->{{yes|HDAudio with Realtek ALC221 codec 0x10EC 0x0221}}
| <!--USB-->{{unk|4 front, 2 back, 1 inside limited space}}
| <!--Ethernet-->{{Yes|Realtek 8169}}
| <!--Test Distro-->Aros One 32bit
| <!--Comments-->2014 64bit supports AVX SSE 4.1 - 2 DDR3L SODIMMs side by side - mSATA ssd and M.2 SSD are M1.6 screws, M2.0 screws used on most SSDs - 19.5V 3.33A Coax male 7.4mm 5mm with centre pin - changed the network card to a Atheros 5000 compatible -
|-
| <!--Name-->HP T530
*AMD GX-215JJ (2 core) 1.5GHz
| <!--IDE-->{{N/A}}
| <!--SATA-->1 m.2 sata ssd up to 2280
| <!--Gfx-->Radeon R2E
| <!--Audio-->HDAudio with ALC codec
| <!--USB-->1 USB3.1, 1 usb-c front, 4 USB2 back
| <!--Ethernet-->{{Yes|Realtek}}
| <!--Test Distro-->
| <!--Comments-->2015 64 bit does support AVX SSE 4.1 - 1 204-pin DDR4 SODIMM - 19.5V 2.31A Coax male 4.5mm/3.0mm with centre pin -
|-
| <!--Name-->HP T730 Wider "Thin" Client TPC-I018-TC Pixar RX-427BB (2c4t) - no display and fans blowing full speed caused by '''disabling internal gpu in bios''' flash L43_0116.bin onto smc MX25L6473F (3.3V 8-PIN SOP (200mil) SPI 25xx) ([https://www.badcaps.net/forum/troubleshooting-hardware-devices-and-electronics-theory/troubleshooting-desktop-motherboards-graphics-cards-and-pc-peripherals/bios-schematic-requests/96303-hp-t730-password-locked-bios in the rom rcvry socket under a delicate thin narrow surface flap]) with ch341a alike switchable from 5v, 3.3v to 1.8v
| <!--IDE-->{{N/A}}
| <!--SATA-->{{partial|Storage bios option to IDE and not AHCI to prevent constant install error messages to DH0: - add noacpi to end of grub boot line - 1 M.2 SATA slot (Key B+M) up to 2280 with T8 torx secure stub}}
| <!--Gfx-->{{maybe|use VESA for non-vulkan Radeon R7 GCN 2 UVD4.2 Sea Islands with 4 dp outs '''but too easy bricking''' if swapping with 1 PCIe 3.0 x8 slot 30W slim factor low profile 8400gs gt210 nvs295 nvs310 gt1030}}
| <!--Audio-->{{yes|HDaudio 6.34 realtek alc221 codec thru case speaker only}}
| <!--USB-->{{yes|'''Works''' for 4 USB2 in the back with 2 in the front, 2 USB3.0 ports on front and 1 more internal (not bootable)}}
| <!--Ethernet-->{{yes|rtl8169 Realtek RTL8111HSH-CG set up first in Prefs/Network}}
| <!--Test Distro-->boots with AROS One 32bit and 64bit USB with added noacpi added to grub boot line - press e - Latest distros can select grub boot options with Aros One 64bit USB and Aros One USB 2.8 but system seems to freeze after choice
| <!--Comments-->2016 64bit supports AVX SSE 4.1 - 2 DDR3L sodimm stacked slots max 32GB - '''Larger''' 20cm/8" high 3.5ltr case noisy fan - TPM2 - esc/F9 boot selector F10 enter bios - 2 serial and 1 parallel old ports - Key E Wireless - PCIe slot (x16 physical, x8 electrical) - 19.5V 4.36A 85w TPC-LA561 HP 7.4mm black-ring-tip power plug, red flashing power button, wrong psu or bad MotherBoard MB -
|-
| <!--Name-->HP t630 Thin Client TPC-I020-TC
*AMD Embedded G-Series SoC GX-420GI quad core 2Ghz
| <!--IDE-->{{N/A}}
| <!--SATA-->{{yes|ahci.device mbr msdos partiton table for 2 Sata M.2, sata0 up to 2280 (1tb max), sata1 2242 (64gb max), both T8 torx secure stubs}}
| <!--Gfx-->{{maybe|use VESA for Radeon AMD Wani R7E with 2 displayport 1.2 sockets, use one nearest to power jack - no dvi / hdmi}}
| <!--Audio-->{{Yes|HDAudio 6.36 0x1022, 0x157a and ALC255 aka ALC3234 codec 0x10ec, 0x0255, pins 0x17 as LFE and 0x1b as int speaker but not ahi 6.34}}
| <!--USB-->{{yes|USB2 2 front and 2 rear, 2 front USB3 and 1 inside}}
| <!--Ethernet-->{{Yes|Realtek 8169 8111H}}
| <!--Test Distro-->AROS One USB 2.2, 2.8 and 64bit USB 1.0, 1.2 with noacpi added to the end of the grub bootline (press e)
| <!--Comments-->2016 64bit supports AVX SSE 4.1 - 2 DDR4 SODIMMs side by side speed 1866Mhz limit - 19.5V 3.33A 65W TPC-BA54 Coax male 7.4mm with centre pin - can be easily bricked, might reflash bios with M40 SP149736 - 20cm/8" high 1.5ltr larger fanless case - esc f1 f9 f10 -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->HP Compaq Elite 7200 7300 8200 8300 SFF with kettle IEC psu cable
| <!--IDE-->
| <!--SATA-->{{yes|IDE ata legacy only in BIOS}}
| <!--Gfx-->i pci-e
| <!--Audio-->{{Maybe|8200 works}}
| <!--USB-->{{yes| }}
| <!--Ethernet-->{{no|Intel or Broadcom}}
| <!--Test Distro-->icaros 2.3
| <!--Comments-->2013 64bit dual core - add pci-e rtl8169 ethernet card and pci-e gf210 nvidia low height -
|-
| <!--Name-->HP Compaq Pro 6305 Small Form Factor SFF AMD A75 chipset (FCH 6 SATA 6 Gb/s, 4 USB 3.0)
*AMD Quad A10-5800B
*AMD A8-5500B
*AMD Dual A6-5400B
*AMD A4-5300B
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Radeon 7000 Terascale iGPU series Radeon HD 7660D, Radeon HD 7560D, Radeon HD 7540D, Radeon HD 7480D
| <!--Audio-->HD ALC221
| <!--USB-->
| <!--Ethernet-->{{No|Broadcom 5761}}
| <!--Test Distro-->
| <!--Comments-->2012 64bit
|-
| <!--Name-->Elitedesk 705 G1 - SFF
*AMD A10-8850B, Quad-Core A10 PRO-7850B, A10-8750B
*AMD A10-7800B, A10 PRO-6800B, A8-7600B
*AMD A8-8650B, A6-8550B
*AMD A6-8350B, Dual A6 PRO 7400B, A4-7300B
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Maybe| }}
| <!--Gfx-->{{Maybe|VESA 2D with Radeon R7 or 8000}}
| <!--Audio-->{{Maybe|HD audio with Realtek ALC221 codec}}
| <!--USB-->{{Maybe| }}
| <!--Ethernet-->{{No|Broadcom or Intel}}
| <!--Test Distro-->
| <!--Comments-->2014 64bit - T15 security torx psu with 6pin PWR 200W connector -
|-
| <!--Name-->HP EliteDesk 705 G2, 705 G3 Mini PC USFF thin client
| <!--IDE-->{{N/A}}
| <!--SATA-->2.5in and m.2
| <!--Gfx-->Radeon R7
| <!--Audio-->HDAudio
| <!--USB-->USB3
| <!--Ethernet-->{{No|Broadcom BCM5762 GbE}}
| <!--Test Distro-->
| <!--Comments-->2014 64bit AM4 socket with 35W TDP A10-8770E (4c), AMD PRO A6-8570E (2c), AMD Pro A6-9500E, or AMD PRO A10-9700E on AMD B300 FCH - ddr4 sodimm slots - 77 x 175 x 34mm (6.97 x 6.89 x 1.34in) 1L and about 3lbs -
|-
| <!--Name-->HP EliteDesk 705 G4 Mini 1ltr USFF AMD Ryzen 3 2200G (4c t) or 5 2400G (4c t)
| <!--IDE-->{{N/A|}}
| <!--SATA-->{{Maybe|Nvme 2280 and 2.5in sata}}
| <!--Gfx-->Vega 8 thru DP1.2 port
| <!--Audio-->{{No|HD Audio Conexant codec}}
| <!--USB-->USB2 usb3
| <!--Ethernet-->rtl8169 realtek
| <!--Test Distro-->
| <!--Comments-->2016 64bit Am4 socket - 2 sodimm 16GB max - 19.5v hp socket ext psu -
|-
| <!--Name-->Elitedesk 705 G4 35w, HP Prodesk 405 G4 35W USFF - baseboard 83e9 35W - AMD Athlon PRO 200GE (2c 4t), 2200GE (4c t) or 2400GE (4c t) on AMD B350 FCH
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Maybe|Nvme 2280 and older models 2.5in sata}}
| <!--Gfx-->Vega 3, 8 or 11 with 2 dp1.2 ports
| <!--Audio-->{{no|HDAudio with Conexant CX20632 codec}}
| <!--USB-->USB3
| <!--Ethernet-->rtl8169 Realtek 8169 8111EPH 1Gbe or Realtek RTL8111F
| <!--Test Distro-->
| <!--Comments-->2017 64bit - realtek wifi 8821 or 8822 - up to 1 ddr4 dimm slots - hp barrel external ac -
|-
| <!--Name-->Elitedesk 705 G5, HP Elitedesk 806 G6, Prodesk 405 G6 || <!--IDE-->{{N/A}} || <!--SATA-->2x NVMe or 1x SATA + 1x NVMe, but not all three drives at the same time without serious modding of hd caddie || <!--Gfx-->Vega with DP1.4 port || <!--Audio-->{{no|HDAudio with Realtek ALC3205 codec}} || <!--USB-->USB3 || <!--Ethernet-->{{maybe|Realtek}} || <!--Test Distro--> || <!--Comments-->2018 64bit - 2 ddr4 sodimm slots - 3400GE Ryzen 5 PRO 3350GE (4c 8t), Ryzen 3 PRO 3200GE 3150GE (4c 4t), AMD Athlon Silver PRO 3125GE (2c 4t) on AMD PRO 565
|-
| <!--Name-->HP t540 1ddr4 slot, t640 2 DDR4 SDRAM sodimm SO-DIMM 260-pin non-ECC max 32gb thin client USFF
| <!--IDE-->{{N/A}}
| <!--SATA-->1 NVM Express (NVMe) 2230 or 2280
| <!--Gfx-->Vega 3 VGA, DisplayPort
| <!--Audio-->HD Audio with codec
| <!--USB-->2 USB3 gen1
| <!--Ethernet-->rtl8169 Realtek Realtek RTL8111HSH or RTL8111E PH-CG
| <!--Test Distro-->
| <!--Comments-->2019 64bit ryzen r1000 series Ryzen Embedded R1305G 1.5 GHz, R1505G dual (2c 4t) 2.0Ghz or R1606G ?.?Ghz (2c4t) - Realtek RTL8852AE wifi - 45W psu Coax male 4.5mm/3.0mm + centre pin -
|-
| <!--Name-->HP t740 SFF Thin Client
| <!--IDE-->{{N/A}}
| <!--SATA-->2 M.2, one is sata and other nvme
| <!--Gfx-->Vega 8 DisplayPort or + optional pci-e 30W Radeon E9173
| <!--Audio-->HD Audio with codec
| <!--USB-->USB3
| <!--Ethernet-->Realtek RTL8111E PH-CG 1Gbe
| <!--Test Distro-->
| <!--Comments-->2019 64bit - Ryzen Embedded V1756B 3.25Ghz quad - 90W 19.5V 4.62A psu Coax male 4.5mm/3.0mm + centre pin - sodimm DDR4 max 64Gb - slightly noisy fan -
|-
| <!--Name-->HP EliteDesk 805 G6 Mini 4750GE (8t 16t), Prodesk 405 G6 Ryzen 5 PRO 4650GE (6c 12t) or Ryzen 3 PRO 4350GE (4c 8t) on AMD PRO 565
| <!--IDE-->{{N/A}}
| <!--SATA-->2.5in carrier and 2 slots m.2 nvme
| <!--Gfx-->Vega 8 with DP1.4 and HDMI flex io2 output options
| <!--Audio-->HDAudio with Realtek ALC3205 codec
| <!--USB-->4 usb a - gen 2 10gig and gen 1 5gig ports
| <!--Ethernet-->{{N/A}}
| <!--Test Distro-->
| <!--Comments-->2021 64bit AMD Ryzen 4000 SBC unlocked - 2 sodimm ddr4 slots - wifi6 - 90W ac -
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|-
|}
====Lenovo====
{| class="wikitable sortable" width="100%"
! width="15%" |Name
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Integrated Gfx
! width="10%" |Audio
! width="10%" |USB
! width="10%" |Ethernet
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->Lenovo Nettop IdeaCentre Q150 (40812HU)
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->ION2
| <!--Audio--> realtek codec
| <!--USB-->USB2
| <!--Ethernet-->intel 10/100
| <!--Test Distro-->
| <!--Comments-->2011 64bit D510
|-
| <!--Name-->M625q Tiny (1L)
| <!--IDE-->{{N/A}}
| <!--SATA-->M.2 Sata
| <!--Gfx-->Stoney Radeon R2, R3 or R4 and later R5 with 2 dp ports
| <!--Audio-->HD audio with ALC233-VB2-CG codec 0x10EC 0x0233
| <!--USB-->{{No|3 usb3.1 Gen 1 and 3 usb2}}
| <!--Ethernet-->rtl8169 RTL8111
| <!--Test Distro-->
| <!--Comments-->2016 64bit all dual cores - e2-9000e or a4-9120e later A9-9420e - heatsink covers 70% area covers wifi - 65w or 135w lenovo rectangle ac - 1 ddr4 2666MHz slot max 8gb - tpm 2.0 -
|-
| <!--Name-->M715q Gen 1 AMD A6 A8 A10-9700E 9770E (2c2t)
| <!--IDE-->{{N/A}}
| <!--SATA-->m.2
| <!--Gfx-->R4
| <!--Audio-->HDAudio
| <!--USB-->USB3
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->2016 64bit -
|-
| <!--Name-->M715q Gen 2 Ryzen 5 PRO 2400GE 4C 8T
| <!--IDE-->{{N/A}}
| <!--SATA-->m.2
| <!--Gfx-->Vega 11
| <!--Audio-->HD Audio with codec
| <!--USB-->USB3
| <!--Ethernet-->1GbE
| <!--Test Distro-->
| <!--Comments-->2018 64bit - f1 enter setup, esc device boot - fixed 1.8v ch341a needed to reflash 1.8v bios if no boot SOP8 DIP8 Winbond W25Q64, MXIC MX25U1635, MX25U6435 -
|-
| <!--Name-->ThinkCenter M75n nano Ryzen3 3300U
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->ThinkCentre M75q M75q-1 Tiny 1ltr TMM
*AMD Ryzen 5 PRO Quad 3500 Pro 3400GE (4c 8t) 11a5 soe400
*AMD 3200GE (2c 4t) zen1+ 11a4
| <!--IDE-->{{N/A|}}
| <!--SATA-->{{Maybe|NVMe 2280 1Tb max - untested 2.5inch}}
| <!--Gfx-->Vega 11
| <!--Audio-->HD Audio Realtek ALC222-CG codec ALC3287
| <!--USB-->3 USB3 Gen 1
| <!--Ethernet-->rtl8169 Realtek 8169 8111
| <!--Test Distro-->
| <!--Comments-->2019 64bit - 65w 20v 3.25A to 135W rectangle psu - 2 sodimm ddr4 sodimm max 32GB locked 2666MHz -
|-
| <!--Name-->ThinkCentre Ryzen 7 PRO Tiny 1ltr Gen 2 AMD 4000 series
*AMD 4650GE (6c12t) 4750GE (8c16t) 4350G (4c8t) Zen2 -
| <!--IDE-->{{N/A|}}
| <!--SATA-->{{Maybe|NVme}}
| <!--Gfx-->Vega 8
| <!--Audio-->HD Audio codec
| <!--USB-->
| <!--Ethernet-->Realtek 8169 8111
| <!--Test Distro-->
| <!--Comments-->2021 64bit vendor locked - 20v psu - 2 sodimm -
|-
| <!--Name-->Thinkcenter M75q-2 Gen2 refresh
| <!--IDE-->{{N/A}}
| <!--SATA-->m.2 nvme
| <!--Gfx-->Radeon Vega
| <!--Audio-->HDAudio
| <!--USB-->USB3
| <!--Ethernet-->1GigE
| <!--Test Distro-->
| <!--Comments-->2022 64bit 5650GE (6c12t) 5750GE (8c16t) - vendor/PSB can lock your AMD CPU - f12 boot devices
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->Thinkcentre M75q Tiny Gen5
| <!--IDE-->{{N/A| }}
| <!--SATA-->2 NVMe
| <!--Gfx-->Radeon 780M dp1.4a or hdmi
| <!--Audio-->HDAudio with codec
| <!--USB-->USB3 usb-c
| <!--Ethernet-->1GBe port
| <!--Test Distro-->
| <!--Comments-->2024 Ryzen PRO 7 8700GE - 90W yellow rectangle connector psu - 2 DDR5 sodimm slots max 128Gb -
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|}
====Misc====
{| class="wikitable sortable" width="100%"
! width="15%" |Name
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Integrated Gfx
! width="10%" |Audio
! width="10%" |USB
! width="10%" |Ethernet
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->Impart impact Media Group IQ Box mini Digital Signage with MB896 mini itx
| <!--IDE-->{{Yes| }}
| <!--SATA-->{{N/A}}
| <!--Gfx-->GMA 915 gme
| <!--Audio--> via audio
| <!--USB-->{{yes| }}
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->2007 32bit - 1 ddr2 slot - pentium m 1.73GHz -
|-
| <!--Name-->[https://everymac.com/systems/apple/mac_mini/specs/mac_mini_cd_1.83-specs.html Apple A1176 Intel MacMini1,1]
| <!--IDE-->{{N/A}}
| <!--SATA-->{{unk|gpt/efi }}
| <!--Gfx-->{{Yes|gma950 2d and 3d}}
| <!--Audio-->{{No|HDAudio with ICH7 [https://answers.launchpad.net/ubuntu/+source/alsa-driver/+question/186749 Sigmatel Stac 9221] [https://android.googlesource.com/kernel/msm/+/android-wear-5.1.1_r0.6/sound/pci/hda/patch_sigmatel.c codec][https://alsa-devel.alsa-project.narkive.com/Yt20W6cE/sigmatel-stac9221-mux-amp-out-0x02-microphone-not-working mic]}}
| <!--USB-->{{Yes|USB2}}
| <!--Ethernet-->{{No|Marvell}}
| <!--Test Distro-->
| <!--Comments-->2006 32bit possible 1.83 GHz Intel “Core Duo” (T2400) - swap pci-e wifi for atheros 5k AR5007EG - maybe hack with a 2,1 firmware - max 4GB Ram ddr2 sodimms - external apple psu - dvd boot only with c key -
|-
| <!--Name-->[https://everymac.com/systems/apple/mac_mini/specs/mac-mini-core-2-duo-1.83-specs.html Apple A1176 Intel Mac Mini2,1]
| <!--IDE-->{{N/A}}
| <!--SATA-->{{unk|gpt/efi }}
| <!--Gfx-->{{Yes|gma950 2d and 3d}}
| <!--Audio-->{{No|HDAudio with ICH7 Sigmatel Stac 9221 codec}}
| <!--USB-->{{Yes|USB2}}
| <!--Ethernet-->{{No|Marvell}}
| <!--Test Distro-->Aros One 2.0/ Icaros
| <!--Comments-->2007 64bit - swap pci-e wifi for atheros 5k AR5007EG - hacked with a 2,1 firmware and replaced the cpu for T7600 2.33 Ghz C2D and max 4GB Ram ddr2 sodimms - external apple psu - dvd boot only via c key
|-
| <!--Name-->Apple iMac 5,1 "Core 2 Duo" 1.83GHz 17" T5600 MA710LL || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->GMA 950 with 64Mb || <!--Audio-->HDAudio idt codec || <!--USB-->3 USB2 || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->2006 64bit - 2 ddr2 667MHz sodimm slots - 17.0" TFT widescreen 1440x900 - polycarbonate
|-
| <!--Name-->Apple iMac 6,1 "Core 2 Duo" 2.16 2.33 24" only T7400 T7600 aka MA456LL/A A1200 (EMC 2111) || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->Nvidia 7300GT with 128 MB of GDDR3 SDRAM PCI Express or GeForce 7600GT with 256Mb mini dvi, vga || <!--Audio-->HDAudio || <!--USB-->3 USB2 || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->2006 64bit - 2 ddr2 667MHz sodimm slots - 24.0" TFT widescreen 1920 x 1200 - polycarbonate plastic case iMacs of this generation are the most difficult iMacs to service due to their front bezel design
|-
| <!--Name-->Neoware CA2
| <!--IDE-->flash DOM
| <!--SATA-->{{N/A}}
| <!--Gfx-->S3 Inc ProSavage PM133 (rev 02) vga
| <!--Audio-->VIA VT82C686 AC97 Audio
| <!--USB-->USB
| <!--Ethernet-->rtl8139
| <!--Test Distro-->
| <!--Comments-->2003 32bit - VIA Ezra 800MHz - 2 PC100 sodimm slots - riser board carries an ISA slot and a PCI slot - external 12V power supply.with 4 pins -
|-
| <!--Name-->Neoware CA5 Capio One
| <!--IDE-->44pin Disk On Module DOM
| <!--SATA-->{{N/A}}
| <!--Gfx-->SiS550 vga
| <!--Audio-->AC97 with SiS7019 codec
| <!--USB-->USB1.1
| <!--Ethernet-->rtl8139
| <!--Test Distro-->
| <!--Comments-->2004 32bit - internal power supply with mains lead has a "clover leaf" style - 2 144-pin PC100 or PC133 SODIMM might have 24MB of RAM soldered -
|-
| <!--Name-->Neoware CA10
*E140 model BL-XX-XX (800MHz CPU) later
*E100 model BK-XX-XX (1GHz CPU)
| <!--IDE-->
| <!--SATA-->{{N/A}}
| <!--Gfx-->VIA VT8623 (Apollo CLE266) vga
| <!--Audio-->AC97 with
| <!--USB-->4 USB2
| <!--Ethernet-->VIA VT6102/VT6103 [Rhine-II] (rev 74)
| <!--Test Distro-->
| <!--Comments-->2004/5 32bit - 12v 5.5mm/2.1mm - 2 184-pin DDR DIMM -
|-
| <!--Name-->VXL Itona thin client
*TC3200,
*TC3x41 (P3VB-VXL) TC3541 TC3641 TC3841,
*TC3xx1 (6VLE-VXL0) TC3931,
*TC43xx (Gigabyte C7V7VX) TC4321
| <!--IDE-->
| <!--SATA-->{{N/A}}
| <!--Gfx-->VIA vga
| <!--Audio-->AC'97 Audio with VIA VT
| <!--USB-->VIA USB
| <!--Ethernet-->Realtek 8100B
| <!--Test Distro-->
| <!--Comments-->2005 2006 32bit VIA Samuel 2, VIA C3 Nehamiah CPU, 1 DIMM slot, internal psu,
|-
| <!--Name-->Neoware Capio C50, model CA15 Thin Clients]
*Login Administrator Password Administrator
*Login User Password User
| <!--IDE-->1 flash Disk On Module
| <!--SATA-->{{N/A}}
| <!--Gfx-->VIA VT8623 (Apollo CLE266) vga
| <!--Audio-->AC97 with via codec
| <!--USB-->USB
| <!--Ethernet-->VIA
| <!--Test Distro-->
| <!--Comments-->2006 32bit VIA Eden (Samuel II core) CPU - 1 ddr sodimm slot max 512mb - slot - internal psu clover leaf -
|-
| <!--Name-->[http://etoy.spritesmind.net/neowareca21.html Neoware CA21 Thin Clients] Igel 3210 (and maybe the Clientron G270)
*Login Administrator Password Administrator
*Login User Password User
| <!--IDE-->1 flash Disk On Module DOM
| <!--SATA-->{{N/A}}
| <!--Gfx-->VIA CN700 vga
| <!--Audio-->AC97 with via codec
| <!--USB-->USB2
| <!--Ethernet-->VIA
| <!--Test Distro-->
| <!--Comments-->2007 32bit VIA C3 Nehemiah instead of Ezra-T - made 2 version of the CA 21, one with an Award bios and one with a Phoenix bios - 1 ddr2 sodimm slot max 1gb - VT6656 wireless - slot - internal psu iec -
|-
| <!--Name-->Neoware CA22 (e140), part number DD-L2-GE with BCOM WinNET P680 (V4) as the Igel 4210LX (Igel 5/4)
| <!--IDE-->1 VIA VT82C586A/B VT82C686/A/B VT823x/A/C PIPC Bus Master IDE (rev 06)
| <!--SATA-->{{N/A}}
| <!--Gfx-->VIA CN700 P4M800 Pro CE VN800 Graphics [S3 UniChrome Pro] (rev 01) vga
| <!--Audio-->AC97 with codec
| <!--USB-->USB2 VIA VT8237R Plus
| <!--Ethernet-->VIA VT6102/VT6103 [Rhine-II] (rev 78)
| <!--Test Distro-->
| <!--Comments-->2007 32bit - VIA Esther to later C7 1GHz - 1 ddr2 sodimm slots max 512mb - +12V DC/4.16A/50W 5.5mm/2.1mm coaxial -
|-
| <!--Name-->10Zig RBT402, Clientron U700,
| <!--IDE-->{{Yes|44 pin header very little room}}
| <!--SATA-->{{N/A|}}
| <!--Gfx-->{{Partial|VESA dvi}}
| <!--Audio-->{{unk|AC97 with codec}}
| <!--USB-->{{unk|VIA }}
| <!--Ethernet-->{{unk|}}
| <!--Test Distro-->
| <!--Comments-->2008 32bit - very small cases with very limited expansion - 1 sodimm 2GB max - 12v 3a psu - Password Fireport
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->Dell Optiplex FX170 D05U thin client, 10Zig 56xx range 5602, 5616v, 5617v, 5672v, Clientron U800, Devon IT TC5,
| <!--IDE-->{{Yes|44 pin header very little room}}
| <!--SATA-->{{N/A|}}
| <!--Gfx-->{{partial|GMA 950 dvi}}
| <!--Audio-->{{Yes|HD Audio with codec}}
| <!--USB-->{{Yes| }}
| <!--Ethernet-->{{No|Broadcom}}
| <!--Test Distro-->Icaros 2.3
| <!--Comments-->2009 32bit - very small cases with very limited expansion - 1 ddr2 sodimm 2GB max - 12v 3a psu - Password Fireport - ps2 keyboard socket -
|-
| <!--Name-->10Zig RBT-616V or Chip PC Technologies EX-PC (model number XPD4741)
| <!--IDE-->{{unk|44 pin header very little room}}
| <!--SATA-->{{N/A|}}
| <!--Gfx-->{{Yes|GMA 950}}
| <!--Audio-->{{unk|HD Audio with codec}}
| <!--USB-->{{unk| }}
| <!--Ethernet-->{{unk|rtl8169}}
| <!--Test Distro-->
| <!--Comments-->2010 32bit N270 on NM10 with ICH7 - very small cases with very limited expansion - 1 sodimm 2GB max - 12v 4a psu - Password Fireport
|-
| <!--Name-->Gigabyte Brix GS-A21S-RH (rev. 1.0) SFF
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->{{maybe|X3100}}
| <!--Audio-->{{No|HD Audio with ALC883-GR codec}}
| <!--USB-->Intel USB
| <!--Ethernet-->{{no|Intel 82566DC}}
| <!--Test Distro-->ICAROS 2.3
| <!--Comments-->2009 64bit Intel GME965 chipset with Intel ICH8M - 2 DDR2 Dimm slots - GA-6KIEH2-RH Rev.1.x mini ITX Case 213mm(D) x 64mm(W) x 234mm(H) - custom psu -
|-
| <!--Name-->VXL Itona MD+24 MD27 MD54 MD64 MD76 thin client
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->VIA Chrome 9
| <!--Audio-->HD Audio with VIA VT
| <!--USB-->VIA
| <!--Ethernet-->VIA
| <!--Test Distro-->
| <!--Comments-->2009 32bit VIA X2 U4200 - 12v-19v barrel psu -
|-
| <!--Name-->Acer Revo 100 RL100 AMD Athlon II X2 K325 || <!--IDE--> || <!--SATA--> || <!--Gfx-->NVIDIA® ION™ 9300m || <!--Audio-->HDAudio with ALC662 codec || <!--USB-->USB2 1 front 2 back || <!--Ethernet-->NVIDIA nForce 10/100/1000 || <!--Test Distro--> || <!--Comments-->2010 64bit but no AVX - 4Gb DDR3 sodimm - 500 GB - 19v 3.42a 65W - dvd but later BD drive -
|-
| <!--Name-->Asrock ION 330 330Pro HT-BD, Foxconn NT-330i, Zotac ION F (IONITX mini itx),
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->{{Maybe|ION geforce 9400}}
| <!--Audio-->{{Maybe| }}
| <!--USB-->{{Maybe|Nvidia USB}}
| <!--Ethernet-->{{No|Nvidia }}
| <!--Test Distro-->
| <!--Comments-->2010 32bit slow atom cpu - 2.5L 8" by 8" plastic case - 2 ddr2 sodimm max 4G - external 19v 65W 3.42A Plug 5.5mm X 2.5mm - little whiny fan -
|-
| <!--Name-->Zotac ZBOXHD-ND01
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->ION1
| <!--Audio-->HDaudio
| <!--USB-->USB2
| <!--Ethernet-->NVidia
| <!--Test Distro-->
| <!--Comments-->2009 32bit
|-
| <!--Name-->Zotac ZBOX HD-ID11
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->ION2
| <!--Audio-->HDaudio with ALC888 codec
| <!--USB-->USB2
| <!--Ethernet-->rtl8169 rtl8111D
| <!--Test Distro-->
| <!--Comments-->2010
|-
| <!--Name-->ZOTAC ZBOX Blu-ray 3D ID36 Plus
| <!--IDE-->{{N/A}}
| <!--SATA-->sata
| <!--Gfx-->ION2
| <!--Audio-->HDaudio
| <!--USB-->2 USB3
| <!--Ethernet-->GbE
| <!--Opinion-->2011 64bit -
|-
| <!--Name-->Shuttle XS35GT || <!--IDE--> || <!--SATA--> || <!--Gfx-->ION || <!--Audio-->HD audio IDT92HD81 || <!--USB--> || <!--Ethernet-->{{No|JMC261}} || <!--Test Distro--> || <!--Comments-->2011 64bit - Atom™ D510 NM10 - DDR2
|-
| <!--Name-->Shuttle XS35GT V2 || <!--IDE--> || <!--SATA--> || <!--Gfx-->ION2 || <!--Audio-->HD audio IDT92HD81 || <!--USB-->Intel || <!--Ethernet-->{{No|JMC251}} || <!--Test Distro--> || <!--Comments-->2011 64bit Atom™ D525 NM10 chipset - DDR3
|-
| <!--Name-->Sapphire Edge-HD || <!--IDE--> || <!--SATA--> || <!--Gfx-->ION2 GT218 with vga and hdmi || <!--Audio-->HDAudio realtek codec || <!--USB--> || <!--Ethernet-->{{Unk|Realtek}} || <!--Test Distro--> || <!--Comments-->2011 64bit - Atom™ D510 NM10 - DDR2 65 W AC, DC 19V~3.42A, 19.3L x 14.8w x 2.2H cm (1l), weight 530g,
|-
| <!--Name-->Sapphire Edge-HD2 || <!--IDE-->{{N/A}} || <!--SATA-->{{yes|IDE mode}} || <!--Gfx-->{{Yes|nouveau ION2 GT218 with vga and hdmi 2d and 3d}} || <!--Audio-->{{Yes|HDAudio}} || <!--USB-->{{Yes|Intel USB2}} || <!--Ethernet-->{{Yes|}} || <!--Test Distro--> || <!--Comments-->2011 64bit Atom™ D525 NM10 chipset - DDR3
|-
| <!--Name-->AOPEN Digital Engine DE67-HA(I)
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Maybe| }}
| <!--Gfx-->{{Maybe| Vesa 2d for Intel HD}}
| <!--Audio-->{{maybe|HDAudio for ALC662 codec}}
| <!--USB-->{{maybe|usb3}}
| <!--Ethernet-->{{no|Intel WG82579LM}}
| <!--Test Distro-->
| <!--Comments-->2011
|-
| <!--Name-->[https://www.jetwaycomputer.com/JBC600C99352W.html Jetway JBC600C99352W]
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->ION2
| <!--Audio-->{{No|C-Media CM108AH}}
| <!--USB-->USB2
| <!--Ethernet-->Realtek 8111DL
| <!--Test Distro-->
| <!--Comments-->2011 64bit D525 - DDR3 - 12v psu
|-
| <!--Name-->Foxconn nT-A3550 A3500 AMD A45 Chipset DDR3 Nettop Barebones - White
| <!--IDE-->{{N/A}}
| <!--SATA-->1 slot
| <!--Gfx-->AMD Radeon HD6310
| <!--Audio-->
| <!--USB-->4 USB2 back and 2 USB3 front
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->2012 64bit does not support AVX or SSE 4.1 AMD Dual-core E350 1.6GHz CPU - 1 ddr3 sodimm -
|-
| <!--Name-->Asus EeeBox PC EB1021 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Radeon HD6320M || <!--Audio-->HDAudio with ALC codec || <!--USB-->USB2 || <!--Ethernet-->Realtek GbE1 || <!--Test Distro--> || <!--Comments-->2012 64bit - AMD® Brazos E-350 SFF or E-450 with A50M - 2 ddr3l so-dimm - 40W ac -
|-
| <!--Name-->Xi3 Piston PC Athlon64 X2 3400e (X5A), AMD R-464L quad (X7A) Z3RO NUC
| <!--IDE-->{{N/A}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->AMD mobility HD3650 to radeon HD 7660G
| <!--Audio--> codec
| <!--USB-->4 USB2 3 USB3
| <!--Ethernet-->{{no|Atheros AR8161}}
| <!--Test Distro-->
| <!--Comments-->2012 - 2 sodimm 8GB max - 19v 3.3a round - Titan105 bios update -
|-
| <!--Name-->Sapphire Edge-HD3 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->Radeon HD6320M with vga and hdmi || <!--Audio-->HDAudio with Realtek ALC662 codec || <!--USB-->USB2 || <!--Ethernet-->Realtek GbE1 || <!--Test Distro--> || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 AMD® Brazos E-450 with A45M - ddr3l so-dimm - 65W ac - Wireless is Realtek 8191SU WiFi (802.11n) or AzureWave (802.11bgn) -
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->Samsung Syncmaster Thin Client Display TC-W Series 24" LF24 TOWHBFM/EN TC220W LED LF22TOW HBDN/EN || <!--IDE-->{{N/A}} || <!--SATA-->8gb SSD || <!--Gfx-->{{Maybe| VESA mode only Radeon HD 6290}} || <!--Audio--> || <!--USB-->2 USB 2.0 || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 thin Client C-50 C50 AMD® 1000 MHz and no wireless
|-
| <!--Name-->Advantech TPC-2140 thin client
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->{{Maybe|VESA }}
| <!--Audio-->
| <!--USB-->USB2
| <!--Ethernet-->{{Yes|Realtek}}
| <!--Test Distro-->
| <!--Comments-->2012 64bit does not support AVX or SSE 4.1 atom-like G-T56E 1.65Ghz up to SSE3, BGA413 soldered -
|-
| <!--Name-->CompuLab FIT-PC3 fitPC3 USFF PC AMD G-T56N || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->RADEON HD 6320 || <!--Audio-->{{yes|HDAudio ALC888 codec}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{yes|rtl8169 8111}} || <!--Test Distro--> || <!--Comments-->2012 64 bit does not support AVX or SSE 4.1 - 12v 3a - 2x sodimm DDR3 max 4GB - wifi rtl8188ce
|-
| <!--Name-->10Zig 6872 thin client
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->{{Maybe|VESA }}
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->{{Yes|Realtek}}
| <!--Test Distro-->
| <!--Comments-->2012 64bit does not support AVX or SSE 4.1 atom-like G-T56N up to SSE3 BGA413 (FT1) soldered - DDR3l single channel -
|-
| <!--Name-->10ZiG Technology 9972 1.6 GHz Linux 1.47 kg Black RX-216GD thin client
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->AMD Radeon 5E 3840 x 2160 @ 30Hz to 2560 x 1600 @ 60Hz 2 x Display Port
| <!--Audio-->
| <!--USB-->6 x USB2.0 2 x USB3.0
| <!--Ethernet-->{{Maybe|Realtek}}
| <!--Test Distro-->
| <!--Comments-->2016 64bit does support AVX or SSE 4.1 AMD RX-216TD - 1 ddr3 sodimm - 12V 4A Coax 5.5mm/2.1mm
|-
| <!--Name-->10ZiG 7800q thin client
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->AMD Radeon 5E 3840 x 2160 @ 30Hz to 2560 x 1600 @ 60Hz 2 x Display Port
| <!--Audio-->
| <!--USB-->6 x USB2.0 2 x USB3.0
| <!--Ethernet-->{{Maybe|Realtek}}
| <!--Test Distro-->
| <!--Comments-->2016 64bit does support AVX or SSE 4.1 AMD GX-424CC (Quad Core) 2.4GHz BGA769 (FT3b) - 1 ddr3 sodimm - 12V 4A Coax 5.5mm/2.1mm
|-
| <!--Name-->
*Itona VXL MZE12 AMD a4-5000 thin client
*VXL Itona LQ27 LQ+27 LQ44 LQ+44 LQ49 LQ+49 LQ50 LQ+50 LQ64 LQ+64 thin client
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->Ati 8330 vga hdmi dp
| <!--Audio-->
| <!--USB-->4 usb2 2 usb3
| <!--Ethernet-->Realtek
| <!--Test Distro-->
| <!--Comments-->2014 64bit quad BGA769 (FT3) soldered - 2 stacked sodimm ddr3 middle of mobo - 2 m.2 sata slots - 1 sata short cable half size space - limited 1ltr 8in case no fan - 19v hp style psu connector -
|-
| <!--Name-->Dell Wyse 5212 21.5" AIO Thin Client W11B
| <!--IDE-->{{N/A}}
| <!--SATA-->Sata
| <!--Gfx-->R3 out from DP or vga
| <!--Audio-->HDAudio
| <!--USB-->USB2
| <!--Ethernet-->Realtek
| <!--Test Distro-->
| <!--Comments-->2015 64bit slow atom like dual core AMD G-T48E 1.4 GHz - dell type round ac needed 90W 19.5V 4.62A - 21 inch 1080p screen -
|-
| <!--Name-->LG 24CK560N-3A 24' All-in-One Thin Client Monitor, 27CN650N-6N 27CN650W-AC 27', 34CN650W-AC 34',
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->2018 64bit AMD Prairie Falcon GX-212JJ
|-
| <!--Name-->CompuLab fit-PC4 fitPC4 4x 2Ghz AMD || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet-->{{no|Intel}} || <!--Test Distro--> || <!--Comments-->2018 64 - 2x DDR4 sodimm -
|-
| <!--Name-->IGEL Hedgehog M340C UD3 thin client
*2016 V1.0 AMD GX-412HC 1.2GHz-1.6GHz Radeon R3E, normal bios DEL for Bios or F12 boot selector
*2018 AMD GX-424CC 2.4GHz, Radeon R5E, UEFI hit DEL and choose boot or SCU icon
| <!--IDE-->{{N/A|}}
| <!--SATA-->SATA half slim version '''limited space''' with msata 8+18pins slot on earlier 2016 models
| <!--Gfx-->{{Maybe|VESA for Radeon R3E later R5E sea islands vulkan 1.2 with dvi dp output}}
| <!--Audio-->{{Yes|HD Audio with codec ?? (412) and Realtek ALC662-VD0-GR (424), both case speaker}}
| <!--USB-->amd usb3 boot usb2 with bios "disable usb" entry
| <!--Ethernet-->{{Yes|Realtek 8169 8111 (412) and (424)}}
| <!--Test Distro-->Aros One x86 USB 1.5, 1.8 and 2.2 but ArosOne 64bit 1.2 boot loop in usb2 port
| <!--Comments-->2016 64bit - 20cm/8" high case - 1 DDR3L sodimm slot max 8Gb 1600MHz - external '''12V 3A''' supply with 5.5mm/2.1mm coaxial - IDE like interface under base stand is for legacy addon ports RS232 parallel etc - capacitive touch power on - case opening 3 stages, remove stand and narrow black plastic strip from the back, top cover slides off to the back and lifts off -
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->10ZiG 6148v 6048qv (6100 series)
| <!--IDE-->{{N/A}}
| <!--SATA-->{{maybe| }}
| <!--Gfx-->
| <!--Audio-->{{maybe| }}
| <!--USB-->{{No| }}
| <!--Ethernet-->{{maybe| }}
| <!--Test Distro-->
| <!--Comments-->2018 64bit AMD Ryzen V1202B
|-
| <!--Name-->10ZiG 7111q
| <!--IDE-->{{N/A}}
| <!--SATA-->{{maybe| }}
| <!--Gfx-->
| <!--Audio-->{{maybe| }}
| <!--USB-->{{maybe| }}
| <!--Ethernet-->{{maybe| }}
| <!--Test Distro-->
| <!--Comments-->2019 64bit AMD Ryzen R2514 2.1 GHz -
|-
| <!--Name-->Shuttle DA320
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->R3 R5
| <!--Audio-->HD Audio with ALC662 codec
| <!--USB-->{{maybe| }}
| <!--Ethernet-->dual realtek 1GbE 8111H
| <!--Test Distro-->
| <!--Opinion-->2017 64bit AMD 2200G 2400G - Robust metal 1.3-liter case - A320 chipset DDR4 - 19V 6.32A DC PSU -
|-
| <!--Name-->IGEL UD7 H850C around december 2019 '''AMD Secure Processor''' is a built-in dedicated security system that checks if the BIOS has a valid signature and thus secures the next step in the boot process. This ensures that only devices with a signed BIOS will boot
| <!--IDE-->{{N/A}}
| <!--SATA-->None but 8gb emmc
| <!--Gfx-->Vega 3
| <!--Audio-->HD Audio with Realtek ALC897 or ALC888S codec
| <!--USB-->USB 3.2 and 2.0
| <!--Ethernet-->1GbE
| <!--Test Distro-->
| <!--Comments-->2018 64bit - AMD Ryzen™ Dual-Core 10W TDP - 2 DDR4 sodimms slots max 16Gb - 12V 4A psu - 2x DisplayPort 1.2 no dvi or hdmi - Intel® 9260 or SparkLAN WNFT-238AX wifi - 1x rear serial Prolific PL2303 chipset - locked down components and very limited expansion options
|-
| <!--Name-->IGEL UD7 H860C - '''AMD Secure Processor''' is a built-in dedicated security system that checks if the BIOS has a valid signature and thus secures the next step in the boot process. This ensures that only devices with a signed BIOS will boot
| <!--IDE-->{{N/A}}
| <!--SATA-->None but 8gb emmc
| <!--Gfx-->Vega 3
| <!--Audio-->HD Audio with Realtek ALC897 or ALC888S codec
| <!--USB-->USB 3.2 and 2.0
| <!--Ethernet-->1GbE
| <!--Test Distro-->
| <!--Comments-->2018 64bit - AMD Ryzen™ Dual-Core 10W TDP - 2 DDR4 sodimms slots max 16Gb - 12V 4A psu - 2x DisplayPort 1.2 no dvi or hdmi - Intel® 9260 or SparkLAN WNFT-238AX wifi - 1x rear serial Prolific PL2303 chipset - locked down components and very limited expansion options
|-
| <!--Name-->IGEL UD3 M350C (UEFI issues)
| <!--IDE-->{{N/A}}
| <!--SATA-->None but 8gb emmc
| <!--Gfx-->Vega 3
| <!--Audio-->HD Audio with Realtek ALC897 or ALC888S codec
| <!--USB-->USB 3.2 and 2.0
| <!--Ethernet-->1GbE
| <!--Test Distro-->
| <!--Comments-->2018 64bit - AMD Ryzen™ R R1505G Dual-Core 10W TDP - 2 DDR4 sodimms slots max 16Gb - 12V 4A psu - 2x DisplayPort 1.2 no dvi or hdmi - Intel® 9260 or SparkLAN WNFT-238AX wifi - 1x rear serial Prolific PL2303 chipset - locked down components and very limited expansion options
|-
| <!--Name-->IGEL UD7 H860C AMD Ryzen V1605B Thin Client - '''AMD Secure Processor''' is a built-in dedicated security system that checks if the BIOS has a valid signature and thus secures the next step in the boot process. This ensures that only devices with a signed BIOS will boot
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->HDAudio
| <!--USB-->{{maybe| }}
| <!--Ethernet-->1GbE
| <!--Test Distro-->
| <!--Comments-->2020 AMD Ryzen™ Embedded V1605B 2 – 3.6 GHz (Quad-Core) - 12v 5A psu - up to 16GB RAM DDR4 - locked down components and very limited expansion options
|-
| <!--Name-->Gigabyte Brix Barebone Mini PC BSRE-1605
| <!--IDE-->{{N/A}}
| <!--SATA-->2 M.2
| <!--Gfx-->Vega 8
| <!--Audio-->HD Audio ALC269 codec
| <!--USB-->USB3
| <!--Ethernet-->2 GbE
| <!--Test Distro-->
| <!--Comments-->2020 64bit AMD Ryzen V1605B - 2 DDR4 sodimm slots
|-
| <!--Name-->MINISFORUM Deskmini UM250 Mini PC
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->{{maybe| }}
| <!--Ethernet-->{{maybe| }}
| <!--Test Distro-->
| <!--Comments-->2020 64bit AMD Ryzen V1605B -
|-
| <!--Name-->T-Bao MN25 Mini PC 2500U
| <!--IDE-->{{N/A| }}
| <!--SATA-->{{Unk|Intel NVMe}}
| <!--Gfx-->{{No|VESA Radeon Vega 8}}
| <!--Audio-->{{Unk| }}
| <!--USB-->{{maybe|USB 3}}
| <!--Ethernet-->{{Yes|Realtek PCIe 1GbE}}
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->Atari VCS || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{maybe|Vesa 2D for AMD Vega 3}} || <!--Audio-->{{unk|HDAudio with ALC codec}} || <!--USB-->{{maybe|USB3 USB 3.2 Gen 2 front and 3 usb2 rear }} || <!--Ethernet-->rtl8169 Realtek RTL8111H || <!--Test Distro--> || <!--Comments-->2021 64bit Ryzen Embedded R1606G - 2 ddr4 sodimm slots - TPM 2.0 -
|-
| <!--Name-->Minis Forum M200 Silver Athlon M300 3300U
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->Vega 8
| <!--Audio-->
| <!--USB-->{{maybe|USB 3.1 gen 1 and 2}}
| <!--Ethernet-->{{No|Realtek PCIe 2.5G}}
| <!--Test Distro-->
| <!--Comments-->2021 64bit
|-
| <!--Name-->Minis Forum DeskMini UM300 3300U, UM350 DMAF5 3550H, UM370 and UM700 with 3750H
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->Vega 8
| <!--Audio-->
| <!--USB-->{{maybe|USB 3.1 gen 1 and 2}}
| <!--Ethernet-->{{No|Realtek PCIe 2.5G}}
| <!--Test Distro-->
| <!--Comments-->2021 64bit
|-
| <!--Name-->MinisForum X300 with AMD 3400G
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->Vega 8
| <!--Audio-->
| <!--USB-->{{maybe|USB 3.1 gen 1 and 2}}
| <!--Ethernet-->{{No|Realtek PCIe 2.5G}}
| <!--Test Distro-->
| <!--Comments-->2021 64bit
|-
| <!--Name-->Beelink SER3 GTR4
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->AMD Vega 3 or 10
| <!--Audio-->HD Audio with codec
| <!--USB-->{{maybe|USB3}}
| <!--Ethernet-->Realtek RJ45 1GbE
| <!--Test Distro-->
| <!--Comments-->2020 64bit 3200u or 3750h
|-
| <!--Name-->AsRock DeskMini X300
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->2020 Ryzen 7 Pro 4750G 5600G
|-
| <!--Name-->MinisForum Besstar Tech X400 with AMD 4650G
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->AMD
| <!--Audio-->
| <!--USB-->{{maybe|USB 3.1 gen 1 and 2}}
| <!--Ethernet-->{{No|Realtek PCIe 2.5G}}
| <!--Test Distro-->
| <!--Comments-->2021 64bit - MP1584 - kill NB679 NB679GD-Z=ALTM=AL** QFN-12 IC-REG-DL buck/linear synchronous chip IC with bad usb cables -
|-
| <!--Name-->Beelink SER4 GTR5
| <!--IDE-->{{N/A}}
| <!--SATA-->cant boot from installed SSDs unless its an M.2
| <!--Gfx-->AMD Vega
| <!--Audio-->
| <!--USB-->{{maybe|USB3}}
| <!--Ethernet-->1 or 2 Realtek
| <!--Test Distro-->
| <!--Comments-->2021 64bit 4700U or 5900HX
|-
| <!--Name-->MSI PRO DP20Z 5M Mini PC - AMD Ryzen 5 5300G
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->{{No|Realtek 2.5G LAN RTL8125}}
| <!--Test Distro-->
| <!--Comments-->2018-2021 R3 3200G Vega 8 - R5 3400G Vega 11 - Ryzen 5 5600G Vega 7 - Athlon 3000G
|-
| <!--Name-->Minisforum UM450
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->Vega
| <!--Audio-->HDaudio
| <!--USB-->USB3
| <!--Ethernet-->{{No|Realtek 2.5G LAN RTL8125}}
| <!--Test Distro-->
| <!--Comments-->2022 64bit - Ryzen 4500U -
|-
| <!--Name-->Gigabyte Brix
GB-BRR7-4800 (rev. 1.0)
GB-BRR7-4700 (rev. 1.0)
GB-BRR5-4500 (rev. 1.0)
GB-BRR3-4300 (rev. 1.0)
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->{{maybe|}}
| <!--Ethernet-->Realtek 2.5G LAN RTL8125
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->ASUS PN50 mini PC AMD Ryzen 7 4700U
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Vega
| <!--Audio-->HD audio with codec
| <!--USB-->{{maybe|3.1 gen1}}
| <!--Ethernet-->{{No|realtek 2.5GbE}}
| <!--Test Distro-->
| <!--Comments-->2022 64bit -
|-
| <!--Name-->ASUS PN51-S1 mini PC AMD Ryzen 7 5700U
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->Vega thru dp or hdmi
| <!--Audio-->HD audio with codec
| <!--USB-->{{maybe|3.1 gen1}}
| <!--Ethernet-->{{No|realtek 2.5GbE}}
| <!--Test Distro-->
| <!--Comments-->2022 64bit - 19v or 19.5v 90w psu round barrel - 32gb ddr4 sodimm -
|-
| <!--Name-->Minis Forum Bessstar Tech EliteMini B550
| <!--IDE-->{{N/A}}
| <!--SATA-->1 x 2.5in and 2 nvme
| <!--Gfx-->Vega 8
| <!--Audio-->
| <!--USB-->{{maybe|4 usb3.1}}
| <!--Ethernet-->{{No|realtek 8125 2.5GbE}}
| <!--Test Distro-->
| <!--Comments-->2022 64bit AMD 4700G 5700G desktop cpu - 19v 120w round barrel -
|-
| <!--Name-->ASRock A300 and later X300 Mini itx with Desktop AM4 socket
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->Vega
| <!--Audio-->HDAudio
| <!--USB-->USB3
| <!--Ethernet-->1GbE
| <!--Test Distro-->
| <!--Comments-->2022 64bit - choose your own AMD APU GE 35w based - DDR4 -
|-
| <!--Name-->ASRock 4x4 BOX-5800U Zen 3-based AMD Ryzen 7 5800U 15W -
| <!--IDE-->{{N/A}}
| <!--SATA-->m.2 slot gen 3 and sata
| <!--Gfx-->vega
| <!--Audio-->HD audio with codec
| <!--USB-->{{maybe|}}
| <!--Ethernet-->{{Maybe|1 GbE and 1 2.5GbE}}
| <!--Test Distro-->
| <!--Comments-->2022 64bit - WiFi 6E -
|-
| <!--Name-->Topton S500+ Gaming Mini PC - Morefine S500+ 5900HX Mini PC - Minisforum UM590 Ryzen AMD Zen3 Ryzen 9 5900HX 7 5800H 45W -
| <!--IDE-->{{N/A}}
| <!--SATA-->2 nvme 1 sata
| <!--Gfx-->Vega 8 thru HDMI 2.0, DP 1.4, and USB type-C
| <!--Audio-->
| <!--USB-->{{maybe|usb3.1}}
| <!--Ethernet-->{{Maybe|1 realtek rtl 8111h and 1 8125 2.5GbE bg-cg}}
| <!--Test Distro-->
| <!--Comments-->2022 64bit - 2 sodimm ddr4 3200MHz -
|-
| <!--Name-->Chuwi RzBox later Ubox
| <!--IDE-->{{N/A}}
| <!--SATA-->2 nvme
| <!--Gfx-->Vega 8 later to 660m vga, dp, hdmi
| <!--Audio-->HDaudio
| <!--USB-->{{maybe|usb-c usb2}}
| <!--Ethernet-->dual gigabit
| <!--Test Distro-->
| <!--Comments-->2022 2025 64bit amd 5800h 4800h 6600H - 90w psu -
|-
| <!--Name-->Beelink Mini PC SER5, Trigkey AZW S5, Asus PN52, ZHI BEN MX-JB560,
| <!--IDE-->{{N/A}}
| <!--SATA-->PCIe3 M.2 2280 nvme
| <!--Gfx-->AMD Vega 6 with 1 or 2 hdmi
| <!--Audio-->HDAudio
| <!--USB-->{{maybe|USB3.0}}
| <!--Ethernet-->{{Maybe|Realtek 1GbE}}
| <!--Test Distro-->
| <!--Comments-->2022 64bit 5500U 5560u 5600U to PRO 5600H 5800H - 19v 3.42W 65W psu -
|-
| <!--Name-->NIPOGI Kamrui ACEMAGICIAN AM06PRO Dual LAN Mini PC AMD Ryzen 7 5800U, 5 5500U or 5600U/5625U
| <!--IDE-->{{N/A}}
| <!--SATA-->M.2 and 2.5in sata
| <!--Gfx-->Vega 7
| <!--Audio-->HDAudio
| <!--USB-->USB3
| <!--Ethernet-->2 GbE ports
| <!--Test Distro-->
| <!--Comments-->2022 64bit - plastic build - 90w usb-c power - loud at 25W setting -
|-
| <!--Name-->Topton FU02 Fanless Mini PC AMD Ryzen 7 4700U 5600U 5800U 8 Core 16 Threads
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe and 2.5in sata
| <!--Gfx-->Vega
| <!--Audio-->HDAudio
| <!--USB-->4 3.0 with 2 2.0
| <!--Ethernet-->2 x 1G
| <!--Test Distro-->
| <!--Comments-->2022 64 - 2 ddr4 sodimm slots - fanless with copper cube from cpu to metal sheet which gets warm
|-
| <!--Name-->Xuu XR1 Lite (5300u 4c 8t) PRO 5400U MAX 5600U
| <!--IDE-->{{N/A}}
| <!--SATA-->1 NVMe 2242 slot
| <!--Gfx-->Vega 6
| <!--Audio-->HDAudio
| <!--USB-->2 3.0
| <!--Ethernet-->1G
| <!--Test Distro-->
| <!--Comments-->2022 64 quiet fan - very small case no expansions -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->MINISFORUM UM690 Venus Series
| <!--IDE-->{{N/A}}
| <!--SATA-->pcie4 nvme 2280 and 1 sata3 2.5in
| <!--Gfx-->680m RNDA2 12CU with 2 hdmi
| <!--Audio-->HD Audio with codec
| <!--USB-->{{maybe|1 USB4 and 2 USB3.2}}
| <!--Ethernet-->{{No|2.5G LAN}}
| <!--Test Distro-->
| <!--Comments-->2022 64bit 6900hx 8C16T - 2 ddr5 sodimmm - 19v ???W -
|-
| <!--Name-->Beelink Mini PC GTR6
| <!--IDE-->{{N/A}}
| <!--SATA-->PCIe4
| <!--Gfx-->AMD 680M RDNA2
| <!--Audio-->
| <!--USB-->USB3.2
| <!--Ethernet-->{{No|Realtek 2.5GbE or intel i225}}
| <!--Test Distro-->
| <!--Comments-->2022 64bit Ryzen 9 6900HX Zen3+ and a 2gb Radeon 680m 12CU ddr5 sodimm - 19v 120w psu -
|-
| <!--Name-->Asus PN53, Geekom AS 6,
| <!--IDE-->{{N/A}}
| <!--SATA-->pcie gen4 nvme and ata 2.5in
| <!--Gfx-->680m RNDA2 12CU with 2 hdmi and 1 dp
| <!--Audio-->HD Audio with codec
| <!--USB-->{{maybe|2 usb-c, 2 USB2.1 and 3 USB3.2}}
| <!--Ethernet-->{{No|1G LAN}}
| <!--Test Distro-->
| <!--Comments-->2022 64bit 6900hx 8C 16T - 2 slots ddr5 sodimmm (64Gb max) - 19v 120W - 4 retained base screws beware ribbon cable -
|-
| <!--Name-->Micro Computer (HK) Tech Ltd MinisForum UM773 Lite later UM750L slim, GMKtec K2 Mini PC
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe PCIe4.0
| <!--Gfx-->RDNA
| <!--Audio-->HD Audio
| <!--USB-->USB4
| <!--Ethernet-->2.5GbE
| <!--Test Distro-->
| <!--Comments-->2023 2025 64bit - AMD Zen 3+ (8c 16t) Ryzen 7 7735HS, 7840HS and AMD Ryzen 9 7845HX AMD Ryzen™5 7545U (6c12t) - 19v up to 120w ac adapter - ddr5 sodimm 4800Mhz -
|-
| <!--Name-->[https://www.asrockind.com/en-gb/4x4 ASrock 4x4 SBC]
| <!--IDE-->{{N/A}}
| <!--SATA-->sata or nvme
| <!--Gfx-->Vega or 680M
| <!--Audio-->HDAudio
| <!--USB-->USB3 or USB4
| <!--Ethernet-->Realtek 1GbE or intel 2.5GbE
| <!--Test Distro-->
| <!--Comments-->2022 64bit -
|-
| <!--Name-->Beelink Mini PC GTR7 SER7
| <!--IDE-->{{N/A}}
| <!--SATA-->PCIe4 nvme 2280 up to 2Tb
| <!--Gfx-->AMD 780M RDNA3 GPU output on hdmi and dp
| <!--Audio-->HDAudio
| <!--USB-->USB3.2
| <!--Ethernet-->{{No|1 or 2 2.5GbE}}
| <!--Test Distro-->
| <!--Comments-->2023 64bit AMD Phoenix APUs Zen 4 CPU Ryzen 7 7840HS or 9 7940HS (8c 16t) - 19v 5.26A 120w psu - del dios setup f7 choose boot - 2 usb-c on back - up to 64gb via 2 ddr5 sodimm slots -
|-
| <!--Name-->MINISFORUM BD770i Ryzen 7 7745HX (8c16t) or BD795i SE 790i 9 7945HX (16c32t) or F1FXM_MB_V1.1 795M LGA1700 mATX
| <!--IDE-->{{N/A}}
| <!--SATA-->2 NVMe
| <!--Gfx-->Radeon 610m over usb-c, dp or hdmi
| <!--Audio-->HDAudio with codec
| <!--USB-->USB3 with 2 rear USB2
| <!--Ethernet-->Realtek 2.5G
| <!--Test Distro-->
| <!--Opinion-->2024 mini-ITX M/B is the first MoDT (Mobile on Desktop) with soldered AMD CPU - 2 dual PCIe4.0 M.2 slots - 2 ddr5 sodimm slots max 5200Mhz - 8pin cpu power - battery not easily replaceable underneath -
|-
| <!--Name-->Minisforum ms-a1 MS-a2
* 5700G to 8700G apu
* 9955HX
| <!--IDE-->{{N/A}}
| <!--SATA-->2 nvme
| <!--Gfx-->AMD 610M
| <!--Audio-->HDAudio
| <!--USB-->USB3
| <!--Ethernet-->dual 2.5GbE
| <!--Test Distro-->
| <!--Comments-->2024 64bit - 19v ?A round barrel jack - 2 ddr5 so-dimm slots -
|-
| <!--Name-->AOOSTAR GT68
| <!--IDE-->{{N/A}}
| <!--SATA-->Nvme
| <!--Gfx-->680m
| <!--Audio-->HDaudio
| <!--USB-->USB3
| <!--Ethernet-->2 2.5Gb
| <!--Test Distro-->
| <!--Comments-->2025 Ryzen7 Pro 6850H,
|-
| <!--Name-->NextSBC 7840HS
| <!--IDE-->{{N/A}}
| <!--SATA-->Nvme
| <!--Gfx-->AMD 780M 12CU
| <!--Audio-->HDAudio with codec
| <!--USB-->USB4 and USB 3.2
| <!--Ethernet-->2 GbE
| <!--Test Distro-->
| <!--Comments-->2025 64bit - 32Gb soldered -
|-
| <!--Name-->Firebat A6 R7 6800H
| <!--IDE-->{{N/A}}
| <!--SATA-->nvme
| <!--Gfx-->AMD 680M
| <!--Audio-->HDaudio
| <!--USB-->USB3
| <!--Ethernet-->rtl8169
| <!--Test Distro-->
| <!--Comments-->2025 64bit -
|-
| <!--Name-->Minisforum UM760 7640HS
| <!--IDE-->{{N/A}}
| <!--SATA-->nvme
| <!--Gfx-->AMD 760
| <!--Audio-->HDaudio
| <!--USB-->USB4
| <!--Ethernet-->rtl8169 and 2.5Gb
| <!--Test Distro-->
| <!--Comments-->2025 64bit -
|-
| <!--Name-->Peladn WO4 Mini PC
| <!--IDE-->{{N/A}}
| <!--SATA-->nvme
| <!--Gfx-->AMD 760
| <!--Audio-->HDaudio
| <!--USB-->USB3
| <!--Ethernet-->rtl8169
| <!--Test Distro-->
| <!--Comments-->2025 64bit 7640HS - 19v 5.26A 120W -
|-
| <!--Name-->BossGame M4 Neo 7840HS
| <!--IDE-->{{N/A}}
| <!--SATA-->nvme
| <!--Gfx-->AMD 780
| <!--Audio-->HDaudio
| <!--USB-->USB3
| <!--Ethernet-->rtl8169
| <!--Test Distro-->
| <!--Comments-->2025 64bit -
|-
| <!--Name-->Minisforum UM870 || <!--IDE-->{{N/A}} || <!--SATA-->NVme || <!--Gfx-->AMD 780M || <!--Audio-->HDaudio || <!--USB-->USB3 || <!--Ethernet-->2.5GbE || <!--Test Distro--> || <!--Comments-->2025 64bit -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->GEEKOM A8 Max AI Mini PC AMD Ryzen™ 9 8945HS, Ryzen™ 7 8845HS or 8745HS
| <!--IDE-->{{N/A}}
| <!--SATA-->NVme
| <!--Gfx-->AMD 780M
| <!--Audio-->HDAudio with codec
| <!--USB-->{{maybe| USB4}}
| <!--Ethernet-->{{No|Dual 2.5 G Ethernet ports}}
| <!--Test Distro-->
| <!--Comments-->2025 64bit -
|-
| <!--Name-->Beelink SER 9
| <!--IDE-->{{N/A}}
| <!--SATA-->NVme
| <!--Gfx-->Radeon 890M
| <!--Audio-->HDaudio
| <!--USB-->USB4
| <!--Ethernet-->{{No| }}
| <!--Test Distro-->
| <!--Comments-->2025 64bit - Ryzen AI HX 370 strix point -
|-
| <!--Name-->GMKtec EVO-X2 mini pc
| <!--IDE-->{{n/a}}
| <!--SATA-->nvme
| <!--Gfx-->AMD 8060S iGPU RDNA3.5 RADV GFX1151
| <!--Audio-->HDaudio
| <!--USB-->USB4
| <!--Ethernet-->{{No| }}
| <!--Test Distro-->
| <!--Comments-->2025 64bit - amd ryzen AI Max+ 395 (16c32t) strix halo -
|-
| <!--Name-->BosGame M5
| <!--IDE-->{{n/a}}
| <!--SATA-->nvme
| <!--Gfx-->AMD 8060S iGPU RDNA3.5 RADV GFX1151
| <!--Audio-->HDaudio
| <!--USB-->USB4
| <!--Ethernet-->{{No| }}
| <!--Test Distro-->
| <!--Comments-->2025 64bit - amd ryzen AI Max+ 395 (16c32t) -
|-
| <!--Name-->Steam Machine GabeCube
| <!--IDE-->{{N/A}}
| <!--SATA-->nvme
| <!--Gfx-->semi-custom 1080p amd 7600m like with 28cu 8gb ddr6 gddr 10GFlops
| <!--Audio-->hdaudio with codec
| <!--USB-->usb3
| <!--Ethernet-->{{maybe|rtl8169}}
| <!--Test Distro-->
| <!--Comments-->2026 64bit amd 1772 hawk point2 6c12t zen4 avx512 FP7 socket with FCH51 - 16gb ddr5 -
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|}
===Server Systems===
[[#top|...to the top]]
====IBM====
{| class="wikitable sortable" width="100%"
! width="15%" |Name
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Integrated Gfx
! width="10%" |Audio
! width="10%" |USB
! width="10%" |Ethernet
! width="15%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->xSeries 206m
| <!--IDE-->{{yes}}
| <!--SATA-->{{yes}}
| <!--Gfx-->{{Maybe|ATI RN50b (VESA only)}}
| <!--Audio-->{{n/a}}
| <!--USB-->{{yes|USB 2.0 (UHCI/EHCI)}}
| <!--Ethernet-->{{no|Broadcom}}
| <!--Test Distro-->Nightly Build 2014-09-27
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
|}
===Motherboard===
[[#top|...to the top]]
* Late 2002, USB2.0 added and slightly better AROS sound support (AC97) appeared
* 2002-2005 and still, to a limited extent, ongoing [http://en.wikipedia.org/wiki/Capacitor_plague bad capacitors]
* Late 2003, ATX PSUs moved from 5V to 12v rails (extra 4pin on motherboard for CPU)
* Late 2005, PCI Express replaced AGP and HDAudio replaced AC97
* Late 2007, ATX PSUs added extra 12V PCI-E connectors and 4+4pin for CPUs
* Late 2010, USB3.0 appears on motherboards or needing a PCI-E motherboard slot
* Late 2014 Hardware USB2 removed from USB3 chipsets
====AMD Sockets====
[[#top|...to the top]]
=====Socket 7 (1997/1999)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->1997 VT82C586B (QFP-208) is the first from VIA with DDMA
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2000 VT82C686 has close to excellent DDMA support
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->SiS 5581/5582
SiS 5591/5595
SiS 530 /5595
SiS 600/5595
SiS 620/5595
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|}
=====Socket A 462 (2001/4)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->[http://www.sharkyextreme.com/hardware/motherboards/article.php/2217921/ABIT-NF7-S-nForce2-Motherboard-Review.htm Abit NF7-S]
| <!--Chipset-->nForce 2
| <!--ACPI-->
| <!--IDE-->2 ports
| <!--SATA-->SIL 3112A
| <!--Gfx-->
| <!--Audio-->{{yes|ALC650 AC97 (Nvidia APU)}}
| <!--USB-->{{yes}}
| <!--Ethernet-->Realtek RTL 8201LB
| <!--Opinion-->Firewire Realtek RTL8801B
|-
| <!--Name-->ASRock K7NF2
| <!--Chipset-->nforce2 ultra 400
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->{{yes|AGP 8x}}
| <!--Audio-->CMedia CMI 9761A AC'97
| <!--USB-->{{yes}}
| <!--Ethernet-->Realtek 8201
| <!--Opinion-->
|-
| <!--Name-->ASRock K7S8X
| <!--Chipset-->SIS 746FX
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->
| <!--Gfx-->{{yes|AGP 8x}}
| <!--Audio-->{{yes|AC'97 cmedia}}
| <!--USB-->{{maybe|USB2.0 works but does not boot}}
| <!--Ethernet-->{{yes|SiS900}}
| <!--Opinion-->
|-
| <!--Name-->ASRock K7S41GX
| <!--Chipset-->SIS 741GX + DDR 333
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->
| <!--Gfx-->{{maybe|onboard sis does not work with vga or vesa but AGP 8x works}}
| <!--Audio-->{{yes|AC97 SIS 7012}}
| <!--USB-->{{maybe|USB2.0 works but does not boot}}
| <!--Ethernet-->{{yes|SiS 900}}
| <!--Opinion-->works ok
|-
| <!--Name-->[http://www.asus.com ASUS A7N8X]
| <!--Chipset-->nForce2
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->Silicon Image Sil 3112A
| <!--Gfx-->1 AGP slot
| <!--Audio-->{{yes|ac97 ALC650}}
| <!--USB-->{{yes|ehci USB2.0}}
| <!--Ethernet-->{{yes|rtl8201BL - nforce}}
| <!--Opinion-->first total support for AROS in 2004/5 - damocles and M Schulz
|-
| <!--Name-->Biostar M7NCD
| <!--Chipset-->nForce2 Ultra 400
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->{{yes|ALC650 AC97}}
| <!--USB-->
| <!--Ethernet-->{{yes|RTL8201BL}}
| <!--Opinion-->
|-
| <!--Name-->Chaintech 7NJS Ultra Zenith
| <!--Chipset-->nForce2 Ultra 400
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->Promise PDC 20376
| <!--Gfx-->
| <!--Audio-->{{yes|CMI8738}}
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->DFI Lanparty NF2 Ultra
| <!--Chipset-->nForce2 Ultra 400
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->{{no|via ac97 VT1616}}
| <!--USB-->
| <!--Ethernet-->RTL8139C
| <!--Opinion-->
|-
| <!--Name-->ECS N2U400-A
| <!--Chipset-->nForce2 Ultra 400
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->{{no|Cmedia 9379A AC97}}
| <!--USB-->{{yes|usb2.0}}
| <!--Ethernet-->{{no|VIA VT6103L}}
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA7N400L
| <!--Chipset-->nForce2 Ultra 400
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->1 AGP 8x slot
| <!--Audio-->{{yes|AC97 ALC650}}
| <!--USB-->2 USB2.0
| <!--Ethernet-->RTL8100C
| <!--Opinion-->
|-
| <!--Name-->[http://www.gigabyte.lv/products/page/mb/ga-8siml Gigabyte 8SIML]
| <!--Chipset-->SIS 650
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->
| <!--Gfx-->{{maybe|VESA}}
| <!--Audio-->{{yes|AC'97}}
| <!--USB-->{{maybe|working}}
| <!--Ethernet-->{{no|Realtek RTL8100L LAN}}
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Matsonic [http://www.elhvb.com/mobokive/archive/matsonic/manual/index.html Manuals] MS83708E
| <!--Chipset-->SIS730
| <!--ACPI-->
| <!--IDE-->{{yes|SiS 5513}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->{{maybe|sis 305 no support use VESA}}
| <!--Audio-->{{no|sis7018}}
| <!--USB-->{{no|SiS 7001 USB 1.1 only}}
| <!--Ethernet-->{{yes|SIS900}}
| <!--Opinion-->little support
|-
| <!--Name-->[http://h10025.www1.hp.com/ewfrf/wc/document?docname=bph07585&lc=en&dlc=en&cc=us&dest_page=softwareCategory&os=228&tool=softwareCategory&query=Pavilion%20742n&product=89232 MSI MS-6367 HP 722n 742n (Mambo) (2001/2)]
| <!--Chipset-->Nvidia nforce 220D (2001/2)
| <!--ACPI-->
| <!--IDE-->{{Yes}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->GeForce2 AGP works 2D nouveau only
| <!--Audio-->{{Maybe|AC97 ADI 1885 no volume control on Units 0-3}}
| <!--USB-->{{Yes|4 USB1.1 ports AMD based - front 2 ports iffy}}
| <!--Ethernet-->{{No|nForce}}
| <!--Opinion-->Tested 20th Aug 2012 NB
|-
| <!--Name-->MSI K7N2 [http://us.msi.com/index.php?func=proddesc&maincat_no=1&prod_no=546/ Delta ILSR] Delta-L
| <!--Chipset-->nForce2 (2002/3)
| <!--ACPI-->
| <!--IDE-->{{yes|Primary & Secondary ports}} IDE Tertiary port (RAID)
| <!--SATA-->2 ports (RAID)
| <!--Gfx-->{{yes|when fitted with an agp video card}}
| <!--Audio-->{{yes|ac97 ALC650}}
| <!--USB-->{{yes}}
| <!--Ethernet-->{{yes|rtl8201BL - nforce}}
| <!--Opinion-->runs AROS well. Tested with Icaros 1.2.3
|-
| <!--Name-->MSI K7N2 Delta2-LSR Platinum
| <!--Chipset-->nForce2 (2002/3)
| <!--ACPI-->
| <!--IDE-->{{yes|Primary & Secondary ports}} IDE Tertiary port (RAID)
| <!--SATA-->2 ports (RAID)
| <!--Gfx-->{{yes|when fitted with an agp video card}}
| <!--Audio-->{{No|ac97 ALC655}}
| <!--USB-->{{yes}}
| <!--Ethernet-->{{yes|rtl8201BL - nforce}}
| <!--Opinion-->runs AROS well. Tested with Icaros 1.2.3
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->[http://www.sharkyextreme.com/hardware/motherboards/article.php/2204281/Soltek-SL-75MRN-L-nForce2-Motherboard-Review.htm Soltek 75FRN-L]
| <!--Chipset-->nForce2
| <!--ACPI-->
| <!--IDE-->{{yes|2 ports}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->AGP slot
| <!--Audio-->{{yes|ALC650}}
| <!--USB-->{{yes|2 usb2.0}}
| <!--Ethernet-->{{yes|Realtek RTL8201BL}}
| <!--Opinion-->good support
|-
| <!--Name-->[http://www.3dvelocity.com/reviews/mach4nf2ultra/mach4.htm XFX Pine Mach4 nForce2 Ultra 400]
| <!--Chipset-->nForce2
| <!--ACPI-->
| <!--IDE-->{{yes|3 ports}}
| <!--SATA-->{{maybe|2 ports VIA VT6240}}
| <!--Gfx-->1 AGP 8x slot
| <!--Audio-->{{yes|ALC650}}
| <!--USB-->{{yes|2 USB2.0}}
| <!--Ethernet-->{{yes|RTL8201BL}}
| <!--Opinion-->some support
|-
| <!--Name-->ASUS A7V266
| <!--Chipset-->via KT266A + 8233
| <!--ACPI-->
| <!--IDE-->{{no|issues}}
| <!--SATA-->
| <!--Gfx-->1 AGP slot
| <!--Audio-->AC97 with AD1980 codec
| <!--USB-->via 8233
| <!--Ethernet-->VIA VT6103
| <!--Opinion-->2002 issues with booting
|-
| <!--Name-->Asus A7V8X-X
| <!--Chipset-->VIA KT400
| <!--ACPI-->
| <!--IDE-->{{unk| }}
| <!--SATA-->{{N/A}}
| <!--Gfx-->{{yes|agp}}
| <!--Audio-->{{unk|AC97 with ADI AD1980 codec}}
| <!--USB-->{{unk|VIA 8235}}
| <!--Ethernet-->{{unk|Realtek 10/100}}
| <!--Opinion-->2003 not booting for Socket A for AMD Barton/Thoroughbred/Athlon XP/Athlon/Duron 2.25+ GHz CPU - 3 x DDR DIMM Sockets Max. 3 GB -
|-
|}
=====Socket 754 (2004/5)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->Abit NF8-V2
| <!--Chipset-->nForce3 250GB (2004/5)
| <!--ACPI-->
| <!--IDE-->{{yes|2 ports}}
| <!--SATA-->{{maybe|2 ports}}
| <!--Gfx-->1 AGP slot x8
| <!--Audio-->ALC658 ac97
| <!--USB-->{{yes|2 USB2.0}}
| <!--Ethernet-->{{no|RTL8201C}}
| <!--Opinion-->a little support but no Firewire VIA VT6306
|-
| <!--Name-->Biostar CK8 K8HNA Pro
| <!--Chipset-->nforce3 150
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->VT6420 thru ide legacy only
| <!--Gfx-->
| <!--Audio-->{{no|AC97 ALC655}}
| <!--USB-->
| <!--Ethernet-->Realtek RTL8110S
| <!--Opinion-->Firewire VT6307 no
|-
| <!--Name-->[http://www.extremeoverclocking.com/reviews/motherboards/Chaintech_ZNF3-150_3.html Chaintech ZNF3-150 Zenith]
| <!--Chipset-->nforce3 150
| <!--ACPI-->
| <!--IDE-->2 ports
| <!--SATA-->{{maybe|Sli3114 SATA via IDE emul}}
| <!--Gfx-->1 AGP slot
| <!--Audio-->{{no|VIA Envy24PT (VT1720) + VT1616}}
| <!--USB-->{{Maybe|2 USB2.0}}
| <!--Ethernet-->{{no|Broadcom GbE 5788}}
| <!--Opinion-->very little support needs PCI cards but no Firewire VIA VT6306
|-
| <!--Name-->DFI Lanparty UT nF3 250GB
| <!--Chipset-->nForce3 250gb
| <!--ACPI-->
| <!--IDE-->2 ports
| <!--SATA-->{{maybe|2 ports nForce3 and 2 Marvell SATA PHY}}
| <!--Gfx-->
| <!--Audio-->{{yes|AC97 ALC850}}
| <!--USB-->{{Maybe|2 USB2.0}}
| <!--Ethernet-->CK8S - Winfast NF3 250K8AA works and Marvell 88E1111 does not work
| <!--Opinion-->2005 some support but no Firewire VIA VT6307
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Gigabyte GA-K8N
| <!--Chipset-->NVIDIA nForce3 150
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->Realtek ALC658 AC97
| <!--USB-->
| <!--Ethernet-->Realtek RTL8100C
| <!--Opinion-->Firewire TI43AB23 no
|-
| <!--Name-->Gigabyte K8NNXP
| <!--Chipset-->nForce3 150
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->Sata sil3512
| <!--Gfx-->
| <!--Audio-->ALC658 AC97
| <!--USB-->
| <!--Ethernet-->RTl8110S
| <!--Opinion-->Firewire TI STB82AA2 no
|-
| <!--Name-->Gigabyte GA-K8NSNXP
| <!--Chipset-->nForce3 250GB
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->SiI 3512 CT128 Sata Sil3515
| <!--Gfx-->
| <!--Audio-->ALC850 AC97
| <!--USB-->
| <!--Ethernet-->{{No|Marvel 88E8001}}
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->MSI K8N Neo-FIS2R
| <!--Chipset-->nVIDIA NF3-250Gb
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->Realtek 7.1 AC'97 ALC850
| <!--USB-->
| <!--Ethernet-->{{No|Marvell 88E1111}}
| <!--Opinion-->
|-
| <!--Name-->[http://techreport.com/articles.x/5748/1 Shuttle AN50R]
| <!--Chipset-->nF3-150
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->Sil 3112
| <!--Gfx-->
| <!--Audio-->ALC650 AC97
| <!--USB-->
| <!--Ethernet-->Nvidia nF3 (10/100) Intel 82540EM Gigabit
| <!--Opinion-->Firewire VT6307 no
|-
| <!--Name--> Foxconn WinFast K8S755A
| <!--Chipset-->SiS755 + SiS964 (DDR333)
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio--> {{yes|AC97}}
| <!--USB-->
| <!--Ethernet--> {{yes|RTL8169}}
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket 939 (2005)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->Asus A8N-LA GeForce 6150 LE
| <!--Chipset-->Geforce 6150 (MCP51) + nForce 430 (PC-3200)
| <!--ACPI-->
| <!--IDE-->{{yes|two ATA 133}}
| <!--SATA-->{{maybe|four 3.0GB/s SATAII ports}}
| <!--Gfx-->built in or PCI-E x16
| <!--Audio-->Realtek ALC883 HD Audio
| <!--USB-->6 USB2.0
| <!--Ethernet-->Realtek RTL 8201CL
| <!--Opinion-->
|-
| <!--Name-->Asus A8N-SLI Premium
| <!--Chipset-->NVidia
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->{{Yes|PCIe slot}}
| <!--Audio-->{{Yes|AC97}}
| <!--USB-->{{Maybe}}
| <!--Ethernet-->{{Yes|nForce LAN but not Marvell}}
| <!--Opinion-->Works well
|-
| <!--Name-->DFI nF4 Ultra-D LanParty - Diamond Flower International sold to BenQ group 2010
| <!--Chipset-->nF4
| <!--ACPI-->
| <!--IDE-->2 ports
| <!--SATA-->4 ports SATA 2
| <!--Gfx-->2 PCIe x16 slots
| <!--Audio-->AC97 with ALC850 codec
| <!--USB-->
| <!--Ethernet-->Dual Gigabit Ethernet, PCIe by Vitesse VSC8201 PHY nee Cicada 8201, PCI by Marvel 88E8001
| <!--Opinion-->2006 64bit - Four 184-pin DDR Dual-Channel Slots - 1 pci on Ultra, 2 pci on sli,
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus A8V E SE
| <!--Chipset-->VIA K8T890 +VT8237R CHIPSET ATX AMD Motherboard with Athlon 64 X2 / Athlon 64 FX / Athlon 64
| <!--ACPI-->{{N/A}}
| <!--IDE-->{{Yes}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->{{N/A}}
| <!--Audio-->{{Maybe}} AC97 driver using Realtek ALC850 codec
| <!--USB-->{{Yes}} USB 2.0 only
| <!--Ethernet-->{{No}} Marvell 88E8053
| <!--Opinion-->Good base but needs additional PCI cards added for better support
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->ASUS A8V Deluxe (2004)
| <!--Chipset-->VIA K8T800 Pro (DDR400)
| <!--ACPI-->
| <!--IDE-->Promise 20378 2 ports
| <!--SATA-->2 SATA2
| <!--Gfx-->
| <!--Audio-->{{no|VIA VT8233A 8235 8237 AC97}}
| <!--USB-->
| <!--Ethernet-->{{no|Marvell 88E8001 Gigabit}}
| <!--Opinion-->needs extra PCI cards
|-
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->AsRock 939Dual-SATA2
| <!--Chipset-->Ali Uli M1695 PCIe with M1567 AGP
| <!--ACPI-->
| <!--IDE-->2 ports
| <!--SATA-->1 Sata with JMicron JMB360 chip
| <!--Gfx-->1 pci-e and 1 agp
| <!--Audio-->AC97 with ALC850 codec
| <!--USB-->
| <!--Ethernet-->Realtek RTL8201CL PHY ULi 10/100
| <!--Opinion-->64bit pci-e and agp combo on board - 4 ddr slots -
|}
=====Socket AM2 (2006/8) and AM2+ (2007-2010) =====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-M61PME-S2 (rev. 2.x)
| <!--Chipset-->NVIDIA® GeForce 6100 / nForce 430 chipset
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->{{maybe|VESA 2d for vga}}
| <!--Audio-->{{yes|HDAudio Realtek ALC662 Audio Codec}}
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus M2N61-AR mini itx
| <!--Chipset-->NVIDIA nForce 430
| <!--ACPI-->
| <!--IDE-->1
| <!--SATA-->2
| <!--Gfx-->GeForce 6150SE via vga or 1 pci-e slot
| <!--Audio-->HD Audio with codec
| <!--USB-->Nvidia
| <!--Ethernet-->Nvidia
| <!--Opinion-->2006 32bit - 1 pci - 2 ddr2 dimm slots non-eec -
|-
| <!--Name-->asus m2n68-am se2
| <!--Chipset-->nvidia 630a 630/a MCP68SE
| <!--ACPI-->
| <!--IDE-->1 ports
| <!--SATA-->2 ports MCP61 chipset is SATA over IDE, not SATA over AHCI and reports subsystem as 0x1 IDE, not 0x6 SATA
| <!--Gfx-->{{Yes|nvidia 7025 2d and 3d thru vga}}
| <!--Audio-->{{Yes|hd audio with realtek alc662 codec}}
| <!--USB-->{{Yes| }}
| <!--Ethernet-->{{Yes|nForce chipset RTL 8201CP}}
| <!--Opinion-->2007 64bit Phenom IIX2, Athlon 64 LE X2, Sempron, and Phenom FX processors - ddr2 667Mhz ram max 4Gb -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-MA770-UD3 (rev. 1.0)
| <!--Chipset-->AMD 770 with SB700
| <!--ACPI-->
| <!--IDE-->{{yes| }}
| <!--SATA-->{{yes| }}
| <!--Gfx-->pci-e
| <!--Audio-->{{yes|ALC888 codec }}
| <!--USB-->{{yes|USB2}}
| <!--Ethernet-->{{yes|rtl8169 8111C later 8111D}}
| <!--Opinion-->Good support for AM2+ / AM2 with 4 ddr2 ram - 4 x PCI Express x1, 2 x PCI slots - firewire T.I. TSB43AB23 chip no support -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus M3A32-MVP Deluxe
| <!--Chipset-->AMD 790FX RD790 + SB600
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->{{No|Marvell 88SE6121 SATA II}}
| <!--Gfx-->pci-e 1.1 support
| <!--Audio-->{{No|HD Audio ADI® AD1988}}
| <!--USB-->
| <!--Ethernet-->{{No|Marvell 88E8056}}
| <!--Opinion-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->ASROCK N68-S N68C-S
| <!--Chipset-->AMD based nForce 630a
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->{{yes|slimline DVD drive works}}
| <!--Gfx-->{{maybe|GF 7025 use vesa}}
| <!--Audio-->{{yes|HDAudio for VIA 1708S VT1705}}
| <!--USB-->{{Maybe|echi usb 2.0}}
| <!--Ethernet-->{{no|RTL8201EL / 8201CL - nforce}}
| <!--Opinion-->2008 unbuffered 1066Mhz ddr2 ram - N68C-S may need noacpi added to grub boot line to disable pci temporarily to run as it cannot get to [PCI] Everything OK -
|-
| <!--Name-->Asus M2N68-AM Plus
| <!--Chipset-->Athlon 64, Sempron, Athlon 64 X2, Athlon 64 FX with nvidia 630a
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->no vga, pci-e slot only
| <!--Audio-->{{yes|HD Audio with ALC662 codec}}
| <!--USB-->
| <!--Ethernet-->{{no|RTL8211CL Gigabit LAN}}
| <!--Opinion-->adding "noacpi noapic noioapic" to the GRUB options - Dual channel DDR2 1066, 800, 667 MHz -
|-
| <!--Name-->Gigabyte GA-M68M-S2 (1.0) S2P (2.3) S2L GA-M68SM-S2 (1.x)
| <!--Chipset-->nForce 630a chipset
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->NVIDIA® GeForce 7025, vga (s2 and s2p), dvi (s2l)
| <!--Audio-->ALC883 (S2), ALC888B (S2P), ALC662 (S2L),
| <!--USB-->
| <!--Ethernet-->RTL 8201CL (S2), 8211CL (S2P), 8211BL (S2L),
| <!--Opinion-->2008 64bit possible with AMD AM2+ CPU on AM2 motherboard, the system bus speed will downgrade from HT3.0(5200MHz) to HT1.0(2000 MT/s) spec
|-
| <!--Name-->ASUS M2N68-VM
| <!--Chipset-->nForce 630a (MCP68PVNT)
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Nvidia GeForce ® 7050PV hdmi, dvi and vga
| <!--Audio-->HD audio VIA 1708B codec
| <!--USB-->
| <!--Ethernet-->RTL 8211C
| <!--Opinion-->2008 64bit - ddr2 800Mhz
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket AM3 White socket (2010/11)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->Gigabyte GA-MA74GM-S2 GA-MA74GM-S2H
| <!--Chipset-->740g with sb710
| <!--ACPI-->
| <!--IDE-->{{yes| }}
| <!--SATA-->{{yes|bios IDE}}
| <!--Gfx-->Radeon 2100 and pci-e slot
| <!--Audio-->ALC888 (r1.x),ALC888b (r2.0), ALC888B (rev4.x)
| <!--USB-->USB2
| <!--Ethernet-->rtl8169 Realtek 8111C later 8111D
| <!--Opinion-->2010 64bit - 2 x 1.8V DDR2 DIMM sockets max 8 GB - Micro ATX Form Factor 24.4cm x 23.4cm -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->[http://www.vesalia.de/e_aresone2011.htm Aresone 2011]
| <!--Chipset-->760g
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Yes}}
| <!--Gfx-->{{Maybe|no Radeon HD3000 driver yet<br>vesa driver works<br>and add PCIe card}}
| <!--Audio-->{{Yes|HD Audio}}
| <!--USB-->{{Yes|USB2.0}}
| <!--Ethernet-->{{yes}}
| <!--Opinion-->Good support - 4 DDR3 memory sockets -
|-
| <!--Name-->Foxconn A76ML-K 3.0
| <!--Chipset-->AMD 760g rev3.0
| <!--ACPI-->
| <!--IDE-->{{Yes|1 }}
| <!--SATA-->{{Yes|4 in IDE mode }}
| <!--Gfx-->HD3000 with pci-e slot
| <!--Audio-->HDAudio with ALC662-GR codec
| <!--USB-->USB2
| <!--Ethernet-->rtl8169 rtl8111E
| <!--Opinion-->2011 64bit - 2 ddr3 slots - 2 pci slots -
|-
| <!--Name-->GA-MA770T-UD3P (rev. 1.0 to 1.4)
| <!--Chipset-->amd 770 with sb710
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->{{yes|4 sata}}
| <!--Gfx-->pci-e
| <!--Audio-->{{yes|HDAudio with Realtek ALC888 codec}}
| <!--USB-->{{yes| }}
| <!--Ethernet-->{{yes|rtl8168 rtl8111c/d}}
| <!--Opinion-->2011 64 - 4 ddr3 dimm slots -
|-
| <!--Name-->Gigabyte GA-MA770-UD3 (rev. 2.0 2.1)
| <!--Chipset-->AMD 770 with SB700
| <!--ACPI-->
| <!--IDE-->{{yes| }}
| <!--SATA-->{{yes| }}
| <!--Gfx-->pci-e
| <!--Audio-->{{yes|ALC888 codec }}
| <!--USB-->{{yes|USB2}}
| <!--Ethernet-->{{yes|rtl8169 8111C later 8111D}}
| <!--Opinion-->Good support for AM3 with 4 ddr2 ram - 4 x PCI Express x1, 2 x PCI slots - firewire T.I. TSB43AB23 chip no support -
|-
| <!--Name-->Asus M4A785TD-M PRO
| <!--Chipset-->785G and SB710
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Maybe|ide legacy}}
| <!--Gfx-->{{Maybe|ATI Radeon HD 4200 - use vesa}} or pci-e 2.0 slot
| <!--Audio-->{{Yes|HD Audio}}
| <!--USB-->{{Yes| }}
| <!--Ethernet-->{{Yes| }}
| <!--Opinion-->Good support with 1366 ddr3 ram -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->ASUS M4A88T-I Deluxe ITX
| <!--Chipset-->AMD 880G with AMD SB710
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->Three SATA 3Gbps
| <!--Gfx-->Radeon HD 4350 GPU with HDMI and DVI or One 16x PCI-Express 2.0
| <!--Audio-->HDAudio with Realtek ALC889
| <!--USB-->6 x USB 2, 2 x USB 3
| <!--Ethernet-->{{No|Realtek RTL8112L}}
| <!--Opinion-->2014 64bit - 2 SODIMM DDR3 slots max 8GB
|-
| <!--Name-->Asus M4A88T-M Version E5907 E5826
| <!--Chipset-->AMD 880G SB710
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Radeon 4250
| <!--Audio-->HD Audio with VIA VT 1708S codec
| <!--USB-->
| <!--Ethernet-->Realtek rtl8169 8111E
| <!--Opinion-->2010 64bit -
|-
| <!--Name-->GigaByte 890GPA-UD3H
| <!--Chipset-->AMD 890GX together with SB850
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->Yes
| <!--Gfx-->use pci-e nvidia
| <!--Audio-->Maybe - ALC892 rev. 1.0, ALC892 rev 2.1, ALC889 rev. 3.1
| <!--USB-->Yes
| <!--Ethernet-->Yes
| <!--Opinion-->works well overall
|-
| <!--Name-->Gigabyte GA-890FXA-UD7
| <!--Chipset-->AMD 890FX with SB850
| <!--ACPI-->
| <!--IDE-->{{yes| }}
| <!--SATA-->{{yes|IDE }}
| <!--Gfx-->
| <!--Audio-->ALC889 (rev 2.x)
| <!--USB-->{{Yes|AMD USB2 but limited with NEC D720200F1 USB3}}
| <!--Ethernet-->2 x Realtek 8111D
| <!--Opinion-->2012 64bit - XL-ATX Form Factor 32.5cm x 24.4cm - 4 ddr3 slots -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->MSI 890GXM-G65
| <!--Chipset-->890GX + SB750
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->{{Maybe|legacy}}
| <!--Gfx-->{{Maybe|ATI 4290 built-in (vesa)}}
| <!--Audio-->{{Maybe|ALC889 DD GR}} HD Audio crackles
| <!--USB-->{{Yes}}
| <!--Ethernet-->{{Yes|RTL 8169}}
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->ASRock N68-VS3 FX
| <!--Chipset-->NVIDIA® GeForce 7025 / nForce 630a
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4 Sata2
| <!--Gfx-->Integrated NVIDIA® GeForce 7025
| <!--Audio-->HD Audio with VIA® VT1705 Codec
| <!--USB-->USB2
| <!--Ethernet-->Realtek PHY RTL8201EL
| <!--Opinion-->2010 64bit - 2 x DDR3 DIMM slots -
|-
| <!--Name-->MSI GF615M-P35 MS-7597
| <!--Chipset-->NVIDIA® nForce 430
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->GeForce 6150SE
| <!--Audio-->{{Maybe|HD Audio with Realtek® ALC888S}}
| <!--USB-->{{No|freezes}}
| <!--Ethernet-->{{No|Realtek 8211CL}}
| <!--Opinion-->2010 64bit
|-
| <!--Name-->Gigabyte GA-M68MT-S2
| <!--Chipset--> nForce 630a
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->NVIDIA® GeForce 7025 vga
| <!--Audio-->ALC888B (1.3), ACL887 (3.1),
| <!--USB-->
| <!--Ethernet-->RTL8211CL (all)
| <!--Opinion-->2010 64bit possible, AMD AM3 CPU on this motherboard, the system bus speed will downgrade from HT3.0 (5200MT/s) to HT1.0 (2000 MT/s) spec
|-
| <!--Name-->Gigabyte GA-M68MT-S2P
| <!--Chipset--> nForce 630a
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->NVIDIA® GeForce 7025 vga
| <!--Audio-->ALC888B (1.x 2.x), ALC889 (3.0), ALC888B/889 (3.1),
| <!--USB-->
| <!--Ethernet-->RTL8211CL (all)
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus M4N78 PRO
| <!--Chipset-->NVIDIA GeForce 8300
| <!--ACPI-->
| <!--IDE-->1 xUltraDMA 133/100
| <!--SATA-->6 xSATA 3 Gbit/s ports
| <!--Gfx-->Integrated NVIDIA® GeForce® 8 series GPU with 1 PCIe 2.0 slot
| <!--Audio-->HD Audio with VIA1708S 8 -Channel codec
| <!--USB-->12 USB 2.0 ports (8 ports at mid-board, 4 ports at back panel)
| <!--Ethernet-->NVIDIA Gigabit
| <!--Opinion-->4 x DIMM, Max. 16 GB, DDR2 1200(O.C.)/1066*/800/667 ECC,Non-ECC,Un-buffered Memory - ATX Form Factor 12 inch x 9.6 inch ( 30.5 cm x 24.4 cm ) -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|}
=====Socket AM3+ Black socket (2012/15)=====
*095W FX-6300 FD6300WMHKBOX (bulldozer SSE4.1 AVX) 970 mobos with FX-8320E 8core Black Editions FD832EWMHKBOX FX-8370E (Vishera/Piledriver)
*125W FX-6310 (bulldozer) 970 mobos with FX-8320 FX-8350 FX-8370 (Vishera/Piledriver)
*220W 990FX mobos with FX-9000 FX-9370 FX-9590
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->ASUS M5A78L-M LX3
| <!--Chipset-->AMD 760G with SB710
| <!--ACPI-->
| <!--IDE-->{{yes| }}
| <!--SATA-->{{Yes|bios IDE mode}}
| <!--Gfx-->HD3000 with pci-e slot
| <!--Audio-->HDAudio with ALC887, V? ALC892 codecs
| <!--USB-->USB2
| <!--Ethernet-->{{No|Qualcomm Atheros 8161/8171 add realtek 8111? pci-e card}}
| <!--Opinion-->2012 64bit - uATX Form Factor 9.6 inch x 7.4 inch ( 24.4 cm x 18.8 cm ) - 2 x DIMM, Max. 16GB, DDR3 -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-78LMT-S2P
| <!--Chipset-->AMD 760G and SB710
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->{{yes|6 SATA2 ports}}
| <!--Gfx-->GT240 and a nv7900gs, both pci-e
| <!--Audio-->{{Maybe|ALC889 (r3.1), ALC??? (rev. 4.0), ALC887 (r5.x)}}
| <!--USB-->4 USB2
| <!--Ethernet-->{{Maybe|Realtek 8111E (r3.1), Atheros (rev4.0), Atheros (r5.x) }}
| <!--Opinion-->2012 offers very poor control over its EFI vs. BIOS booting partition features
|-
| <!--Name-->Gigabyte GA-78LMT-USB3 (r3.0), (r4.1 Blue board), (r5.0 dark board), (rev6 dark mobo)
| <!--Chipset-->AMD 760G and SB710
| <!--ACPI-->
| <!--IDE-->{{yes| }}
| <!--SATA-->{{yes|Bios IDE mode for SATA2 on early ones}}
| <!--Gfx-->AMD HD3000, pci-e GT240 and a nv7900gs
| <!--Audio-->{{Maybe|ALC??? (r3.0), ALC887 (r4.1), VIA VT2021 (r5.0), Realtek® ALC892 codec (rev6) }}
| <!--USB-->{{yes|AMD USB2 but not VIA® VL805 USB3}}
| <!--Ethernet-->Realtek GbE
| <!--Opinion-->2013 64bit - Micro ATX Form Factor 24.4cm x 24.4cm - 4 x DDR3 DIMM sockets -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->MSI 760GM
| <!--Chipset-->ATI 760G plus SB710
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->{{yes| }}
| <!--Gfx-->HD3000 Use Vesa
| <!--Audio-->{{Maybe|P33 VT1705; P34, P21 and P23 (FX) MS7641 v3.0 ALC887, E51 ALC892}}
| <!--USB-->{{yes| }}
| <!--Ethernet-->{{Yes|Realtek}}
| <!--Opinion-->P23 issues with audio ALC887 crackles thru earphones -
|-
| <!--Name-->Gigayte GA-MA770T-UD3P (rev. 3.1)
| <!--Chipset-->amd 770 with sb710
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sata
| <!--Gfx-->pci-e slot
| <!--Audio-->HDaudio with Realtek ALC888/892 codec
| <!--USB-->
| <!--Ethernet-->rtl8169 rtl8111d/e
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->ASRock 890FX Deluxe5 Extreme3
| <!--Chipset-->AMD 890FX + AMD SB850 or SB950 (Extreme3)
| <!--ACPI-->
| <!--IDE-->{{Yes}}
| <!--SATA-->{{Yes}}
| <!--Gfx-->{{N/A}}
| <!--Audio-->{{Maybe|ALC892}}
| <!--USB-->{{Yes}}
| <!--Ethernet-->{{Yes|RTL8111E rtl8169}}
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus M5A97 R2.0 EVO
| <!--Chipset-->AMD 970 and SB950
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->Asmedia SATA Controller
| <!--Gfx-->n/a
| <!--Audio-->HDAudio with Realtek ALC887 (LE), ALC887 (Regular), ALC892 (EVO) codec
| <!--USB-->4 USB 2.0 and 2 Asmedia USB3.0 Controller
| <!--Ethernet-->Realtek 8111F
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-970A-D3
| <!--Chipset-->AMD 970 with SB950
| <!--ACPI-->
| <!--IDE-->{{Yes| }}
| <!--SATA-->{{Yes|IDE mode}}
| <!--Gfx-->pci-e
| <!--Audio--> ALC??? (rev. 1.0/1.1), ALC887 (rev1.2), VIA VT2021 codec (rev 1.3 1.4 and rev3.0)
| <!--USB-->{{yes|AMD USB2 but not Etron EJ168 chip (USB3)}}
| <!--Ethernet-->Realtek GbE 8111E (all revisions),
| <!--Opinion-->2015 64bit - ATX Form Factor 30.5cm x 22.4cm - 4 x 1.5V DDR3 DIMM sockets -
|-
| <!--Name-->MSI 970 Gaming
| <!--Chipset-->970FX SB950
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->Realtek® ALC1150 Codec
| <!--USB-->6 usb2 with 2 USB3 VIA VL806 Chipset
| <!--Ethernet-->Killer E2205 Gigabit LAN
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus M5A99X EVO
| <!--Chipset-->990X - RD980 with SB920
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->2 pci-e gen ?
| <!--Audio-->HDAudio with ALC892 codec
| <!--USB-->
| <!--Ethernet-->rtl8169 realtek 8111e
| <!--Opinion-->2012 64bit -
|-
| <!--Name-->Gigabyte GA-990XA-UD3
| <!--Chipset-->AMD 990 with SB950
| <!--ACPI-->
| <!--IDE-->{{yes| }}
| <!--SATA-->{{yes| }}
| <!--Gfx-->
| <!--Audio-->ALC889 (rev 1.x, 3.0, 3.1),
| <!--USB-->{{yes|AMD USB2 not 2 x Etron EJ168 chips for USB3}}
| <!--Ethernet-->realtek rtl8169 8111e
| <!--Opinion-->2012 64bit - ATX Form Factor; 30.5cm x 24.4cm - 4 ddr3 slots -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====AMD Fusion (2011/14)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->
| 1.2GHz single Bobcat Fusion C30 + Hudson M1
| ACPI
| IDE
| SATA
| AMD 6250
| Audio
| USB
| Ethernet
| <!--Opinion-->2011 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2011 64bit does not support AVX or SSE 4.1 -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| Asus E35M1-M PRO uATX
| 1.6GHz 18W AMD Fusion E-350 dual core + Hudson M1
| ACPI
| {{N/A}}
| SATA
| AMD 6310 - no HD driver yet
| ALC887 VD2
| USB
| RTL8111E
| 2011 64bit does not support AVX or SSE 4.1 - EFI bios [http://www.anandtech.com/show/4023/the-brazos-performance-preview-amd-e350-benchmarked]
|-
| Asus E35M1-I Deluxe miniITX
| 1.6GHz dual AMD Fusion E350 + Hudson M1 + DDR3
| ACPI
| {{N/A}}
| SATA
| AMD 6310 - no HD driver yet
| ALC892
| USB
| Realtek 8111E
| 2011 64bit does not support AVX or SSE 4.1 - no support for Atheros AR5008 on a Mini PCI-E
|-
| ASRock E350M1 / USB3 (also version with USB3.0 added)
| 1.6GHz dual AMD Fusion E350 + Hudson M1
| ACPI
| {{N/A}}
| SATA - 4 SATA3
| {{Maybe|AMD 6310 - use vesa with hdmi and dvi}}
| {{Yes|Audio ALC892 playback but no HDMI output}}
| USB - 4 USB2.0 and 2 USB3.0
| {{Yes|rtl8169 for Realtek 8111E 8411 ethernet chipset}}
| 2011 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name-->Gigabyte GA-E350N-USB3 mini-ITX
| <!--Chipset--> Hudson M1 FCH
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 SATA3
| <!--Gfx--> plus HDMI, DVI
| <!--Audio-->ALC892
| <!--USB-->2 NEC USB3.0 with 4 USB2.0
| <!--Ethernet-->Realtek 8111E
| <!--Opinion-->2011 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name-->Gigabyte GA-E350N Win8 V1.0
| <!--Chipset-->Hudson M1 FCH A45
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 SATA3
| <!--Gfx-->{{maybe|Use VESA - AMD 6310 plus HDMI, DVI}}
| <!--Audio-->{{yes|ALC887 playback through headphones but not thru hdmi}}
| <!--USB-->{{maybe|4 USB2.0 needs more testing}}
| <!--Ethernet-->{{yes|Realtek 8111 8168B}}
| <!--Opinion-->2011 64bit does not support AVX or SSE 4.1 - works well but need to test with sata hard disk
|-
| <!--Name-->MSI E350IA-E45
| <!--Chipset-->e-350 + Hudson M1 + DDR3
| <!--ACPI-->no support
| <!--IDE-->{{N/A}}
| <!--SATA-->4 Sata3 ports
| <!--Gfx-->AMD 6310 gpu
| <!--Audio-->ALC HDA
| <!--USB-->6 USB2.0 and 2 USB3.0 through NEC 720200 chipset
| <!--Ethernet-->Realtek RTL8111E
| <!--Opinion-->2011 64bit does not support AVX or SSE 4.1 -
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->ASUS E45M1-M PRO
| <!--Chipset-->E450 APU with Hudson M1
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->ALC887
| <!--USB-->
| <!--Ethernet-->Realtek
| <!--Opinion-->2011 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name-->ASUS E45M1-I Deluxe
| <!--Chipset-->E-450 together
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->ALC892
| <!--USB-->
| <!--Ethernet-->Realtek 8111E
| <!--Opinion-->2011 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket FM1 (2011/13)=====
On board Graphic on CPU - HD6410D, HD6530D, HD6550D,
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->ASUS F1A55-M LE
| <!--Chipset--> with AMD A55 FCH (Hudson D2)
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->6 x SATA 3Gbit/s port(s), blue Support Raid 0, 1, 10, JBOD
| <!--Gfx-->PCI-e 2.0 slot or Integrated AMD Radeon™ HD 6000 in Llano APU
| <!--Audio-->Realtek® ALC887 Audio CODEC
| <!--USB-->6 USB2.0 ports
| <!--Ethernet-->Realtek 8111E rtl8169
| <!--Opinion-->2012 2011 64bit does not support AVX or SSE 4.1 - A-Series/E2- Series APUs up to 4 cores - 2 x DIMM, Max. 32GB, DDR3 2250(O.C.)/1866/1600/1333/1066 MHz Non-ECC, Un-buffered Memory Dual Channel Memory Architecture -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket FM2 White Socket (2012/13)=====
Onboard Gfx on CPU - HD6570, HD7480D, HD7540D,
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->
| <!--Chipset-->A75 A85X
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2012 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket FM2 Plus Black socket (2013/15)=====
Onboard Gfx on CPU - HD6570, HD7480D, HD7540D,
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->
| <!--Chipset-->A88X
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket AM1 FS1b socket (2014/1x)=====
5350 4 core Jaguar cores 2GHz with Integrated AMD Radeon R Series Graphics in the APU Kabini [Radeon HD 8400]
Later Beema APU with 2/4 core Puma (slightly updated Jaguar) cores, GCN graphics and a compute capable Radeon core, along with a brand new AMD security processor and FT3 BGA packaging (probably best avoided for long term survival).
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->ASUS AM1I-A
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->HD Audio Realtek® ALC887-VD
| <!--USB-->
| <!--Ethernet-->Realtek 8111GR 8168
| <!--Opinion-->2011 64bit may support AVX or SSE 4.1 -
|-
| <!--Name-->MSI AM1I
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->HD Audio ALC887
| <!--USB-->
| <!--Ethernet-->Realtek 8111G
| <!--Opinion-->
|-
| <!--Name-->MSI AM1M
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->HD Audio ALC887
| <!--USB-->
| <!--Ethernet-->Realtek 8111G
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->BGA FT3 AM1x
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket AM4 FM3 Summit Ridge Zen Zen+ (2016/22)=====
Jim Keller’s group designed x86 Zen CPU - new and covering the same AM4 platform/socket for desktop
Zen will also shift from Bulldozer’s Clustered Multithreading (CMT) to Simultaneous Multithreading (SMT, aka Intel’s Hyperthreading). CMT is the basis for Bulldozer’s unusual combination of multiple integer cores sharing a single FPU within a module, so the move to SMT is a more “traditional” design for improving resource usage
Trusted Platform Module, or fTPM, that Windows 11 requires. Ryzen processors using a firmware TPM are causing stutters, even when doing mundane tasks. To enable TPM 2.0 on your AMD system please follow the steps below.
<pre>
Power on system and press DEL or F2 to get into the BIOS.
Navigate to Advanced\CPU Configuration.
Enable AMD fTPM switch.
Press F10 to save changes.
</pre>
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->Asus ROG Crosshair VI Hero
| <!--Chipset-->X370
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->pci-e 3.0 (1x16 or 2x8)
| <!--Audio-->SupremeFX audio features an S1220 codec
| <!--USB-->
| <!--Ethernet-->Intel I211
| <!--Opinion-->Ryzen 7 1800X 1700X
|-
| <!--Name-->Biostar X370gtn Itx Am4
| <!--Chipset-->AMD X370
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->PCIe 3.0
| <!--Audio-->HDAudio with ALC892
| <!--USB-->
| <!--Ethernet-->Realtek Dragon LAN RTL8118AS
| <!--Opinion--> 2 ddr4 slots
|-
| <!--Name-->Gigabyte GA-AX370 K7
| <!--Chipset--> X370
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->PCIe 3.0
| <!--Audio-->HDAudio with 2 x Realtek® ALC1220 codec 0x10EC, 0x0295
| <!--USB-->
| <!--Ethernet-->1 intel and 1 E2500
| <!--Opinion--> 4 ddr4 slots
|-
| <!--Name-->MSI Xpower Gaming Titanium
| <!--Chipset--> X370
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->PCIe 3.0
| <!--Audio-->8-channel Realtek 1220 Codec 0x10EC, 0x0295
| <!--USB-->ASMedia® ASM2142 and amd cpu
| <!--Ethernet-->1 x Intel® I211AT Gigabit LAN
| <!--Opinion--> 2 ddr4 slots
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus Prime B350 Plus ATX
| <!--Chipset-->B350
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx--> x PCIe 3.0/2.0 x16 (x16 mode)
| <!--Audio-->Realtek® ALC887 8-Channel
| <!--USB-->
| <!--Ethernet-->Realtek® RTL8111H
| <!--Opinion-->Ryzen 5 1600x 1600 1500X 1400 - 4 x DIMM Max 64GB, DDR4 up to 2666MHz ECC and non-ECC Memory - ATX 12 inch x 9.35 inch ( 30.5 cm x 23.7 cm ) - 2 pci
|-
| <!--Name-->Asus PRIME B350M-A/CSM Micro ATX
| <!--Chipset-->AMD B350
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->PCIe 3.0
| <!--Audio-->HDaudio with
| <!--USB-->
| <!--Ethernet-->Realtek LAN
| <!--Opinion-->Ryzen 3 1300x 1200 1100
|-
| <!--Name-->AsRock Pro4 AB350
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->2 PCIe 3.0 x16, 4 PCIe 2.0 x1
| <!--Audio-->Realtek ALC892
| <!--USB-->
| <!--Ethernet-->Realtek
| <!--Opinion-->2017 64bit -
|-
| <!--Name-->ASRock AB350 Gaming-ITX/ac
| <!--Chipset--> B350
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->PCIe 3.0
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->Intel LAN
| <!--Opinion-->
|-
| <!--Name-->MSI B350 Tomahawk Arctic Mortar
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->1 x PCIe 3.0 x16 (x16 mode)
| <!--Audio-->Realtek ALC892
| <!--USB-->
| <!--Ethernet-->Realtek RTL8111H
| <!--Opinion-->white and grey colours - 2 pci-e and 2 pci slots - m.2 in middle - atx 12 in by 9.6 in and matx versions -
|-
| <!--Name-->Jginyue M-ATX B350M-TI
| <!--Chipset-->B350
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Jginyue B350I-Plus ITX
| <!--Chipset-->B350
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->ASRock A320M-ITX MINI ITX Rev1.0 Rev2 Rev2.1
| <!--Chipset-->A320
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->pci-e
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2018
|-
| <!--Name-->Asus PRIME A320M-C R2.0 rev1.1 A320M-K
| <!--Chipset-->A320 A/B300 SFF
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->PCIe 3.0
| <!--Audio-->HD audio with Realtek ALC887 alc897 CODEC
| <!--USB-->2 usb 3.1 gen 1
| <!--Ethernet-->Realtek 8111E
| <!--Opinion-->2019 64bit - 3rd/2nd/1st Gen AMD Ryzen™ / 2nd and 1st Gen AMD Ryzen™ with Radeon™ Vega
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->MSI A320M-A PRO MicroATX
| <!--Chipset-->AMD A320
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->pci-e 3.0
| <!--Audio-->HDAudio Realtek® ALC892
| <!--USB-->USB3
| <!--Ethernet-->Realtek® 8111H
| <!--Opinion-->2019 64bit -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus ROG X399 Zenith Extreme
| <!--Chipset-->AMD X399
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->PCIe 3.0
| <!--Audio--> supremefx s1220
| <!--USB-->
| <!--Ethernet-->intel
| <!--Opinion-->Threadripper 1950X 1920X 1900X TR4 skt
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->PCIe 3.0
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->AsRock Fatality X470 Gaming K4 mATX
| <!--Chipset-->X470
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->nvme
| <!--Gfx-->pci-e rebar possible
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->intel
| <!--Opinion-->
|-
| <!--Name-->Asrock Fatal1ty X470 Gaming-ITXac AMD AM4
| <!--Chipset-->AMD X470
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->intel
| <!--Comments-->
|-
| <!--Name-->ASUS ROG STRIX X470-I GAMING AM4 ITX Motherboard
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus B450-I Gaming
| <!--Chipset-->AMD B450
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->PCIe 3.0
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->high VRM temps - raven ridge 14nm+ like 2200G 2400G
|-
| <!--Name-->AsRock B450 Gaming K4
| <!--Chipset-->B450
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio--> alc892
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion--> 4 ddr4 slots - low VRM thermals 3900x 3950x
|-
| <!--Name-->Gigabyte B450 I Aorus Pro Wifi
| <!--Chipset-->AMD B450
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->1 nvme pcie3 with 4 sata
| <!--Gfx-->pcie
| <!--Audio-->HDAudio with Realtek® ALC1220-VB codec
| <!--USB-->
| <!--Ethernet-->Intel LAN
| <!--Opinion-->very high vrm temps
|-
| <!--Name-->Jginyue B450i Gaming ITX
| <!--Chipset-->B450
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sata3 - none nvme
| <!--Gfx-->pcie3
| <!--Audio-->HDAudio
| <!--USB-->
| <!--Ethernet-->1G
| <!--Opinion-->2021 64 2nd 3rd AMD - 2 ddr4 dimm slots
|-
| <!--Name-->MSI b450 tomahawk max
| <!--Chipset--> b450
| <!--ACPI-->
| <!--IDE-->{{n/A}}
| <!--SATA-->
| <!--Gfx-->PCIe 3.0
| <!--Audio-->HD audio with Realtek® ALC892 Codec
| <!--USB-->
| <!--Ethernet-->Realtek 8111H
| <!--Opinion-->
|-
| <!--Name-->MSI B450 Pro Carbon
| <!--Chipset-->B450
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio--> ALC codec
| <!--USB-->
| <!--Ethernet-->Intel LAN
| <!--Opinion-->
|-
| <!--Name-->MSI B450-A PRO
| <!--Chipset-->B450
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->ALC892
| <!--USB-->
| <!--Ethernet-->rtl8169 8111h
| <!--Opinion-->
|-
| <!--Name-->MSI B450I GAMING Plus AC ITX
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2019 - 2nd and 3rd gen AMD - 2 ddr4 slots -
|-
| <!--Name-->MSI B450 GAMING PLUS MAX
| <!--Chipset-->B450
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->HDAudio with Realtek® ALC892/ALC897 Codec
| <!--USB-->USB3
| <!--Ethernet-->rtl8169 8111H
| <!--Opinion-->
|-
| <!--Name-->MAXSUN AMD Challenger B450M M-ATX (aka Soyo)
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->ASRock X570 PHANTOM GAMING-ITX/TB3 Mini ITX AM4
| <!--Chipset-->X570
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->nvme
| <!--Gfx-->PCIe 4.0
| <!--Audio--> ALC1200
| <!--USB-->
| <!--Ethernet-->Intel LAN
| <!--Comments-->
|-
| <!--Name-->Asus ROG Crosshair VIII Dark Hero
| <!--Chipset-->AMD X570
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio--> SupremeFX7.1 codec
| <!--USB-->
| <!--Ethernet-->Intel® I211-AT and Realtek® RTL8125-CG 2.5G LAN
| <!--Opinion-->
|-
| <!--Name-->Asus ROG Strix X570-I Gaming Mini ITX AM4 Motherboard
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->MSI MPG X570 Gaming Plus
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio--> alc1220 codec
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus ROG Strix B550-i AM4 ITX Motherboard
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2022 -
|-
| <!--Name-->Jginyue Jingyue B550i Gaming itx
| <!--Chipset-->B550
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->3 with 1 nvme
| <!--Gfx-->1 pci-e 4
| <!--Audio-->HDAudio alc
| <!--USB-->
| <!--Ethernet-->1G
| <!--Comments-->2022 64bit max of Ryzen 5500 (c t), 5600, 5600g (6c12t) - 2 ddr4
|-
| <!--Name-->Asrock B550 PHANTOM GAMING ITX/AX
| <!--Chipset-->AMD B550
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio--> alc1220
| <!--USB-->
| <!--Ethernet-->intel 2.5G
| <!--Comments-->
|-
| <!--Name-->AsRock B550M-ITX/ac
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio--> Realtek ALC887/897 Audio Codec
| <!--USB-->
| <!--Ethernet-->Realtek Gigabit LAN
| <!--Opinion-->2022 - 2 ddr4 slots
|-
| <!--Name-->Asus ROG STRIX B550-A GAMING
| <!--Chipset-->B550
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->PCIe Gen4 x4 & SATA3
| <!--Gfx-->pci-e 4
| <!--Audio--> supremefx S1220A
| <!--USB-->
| <!--Ethernet-->Intel® I225-V 2.5Gb
| <!--Opinion-->
|-
| <!--Name-->Gigabyte AMD B550I AORUS PRO AX Mini-ITX rev 1.0
| <!--Chipset-->AMD B550
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->2 nvme pci-e3 with 4 sata3
| <!--Gfx-->pci-e
| <!--Audio-->Realtek® ALC1220-VB codec
| <!--USB-->
| <!--Ethernet-->Realtek® 2.5GbE LAN
| <!--Opinion-->2021 2 x DDR4 DIMM sockets 1Rx8/2Rx8/1Rx16 -
|-
| <!--Name-->Gigabyte B550 AORUS ELITE AX V2 ATX
| <!--Chipset-->B550
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->PCI-e 4.0 DP and hdmi
| <!--Audio-->HDAudio ALC1200
| <!--USB-->USB3 USB 3.2 Gen1 Type-C
| <!--Ethernet-->2.5GbE LAN
| <!--Opinion-->2022 64bit- finer tuning than A520's - AMD Ryzen 5000 Series/ 3rd Gen Ryzen and 3rd Gen Ryzen with Radeon Graphics CPU - Dual Channel ECC/ Non-ECC Unbuffered DDR4, 4 DIMMs -
|-
| <!--Name-->Gigabyte B550M DS3H mATX
| <!--Chipset--> B550
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->2 NVMe
| <!--Gfx-->PCI-e 4.0
| <!--Audio-->HDaudio ALC887
| <!--USB-->USB3
| <!--Ethernet-->realtek rtl8118
| <!--Opinion-->2021 64bit - 4 ddr4 dimms -
|-
| <!--Name-->MSI MPG B550 GAMING PLUS ATX
| <!--Chipset--> B550
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->PCI-e 4.0
| <!--Audio-->HDAudio ALC892
| <!--USB-->USB 3
| <!--Ethernet-->rtl8169 Realtek 8111H
| <!--Opinion-->2022 64bit - 3rd Gen AMD Ryzen Processors - 4 dimm ddr4 -
|-
| <!--Name-->MSI MAG B550 TOMAHAWK ATX
| <!--Chipset--> B550
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe 1 x M.2, Socket 3, M Key (up to Type 22110) and 1 x M.2, Socket 3, M Key (Type 2242/2260/2280)
| <!--Gfx-->PCI-e 4.0 with dp and hdmi
| <!--Audio-->HDaudio ALC1200
| <!--USB-->USB3 1 x USB 3.1 Type-C and 1 x USB 3.1 Type-A
| <!--Ethernet-->Realtek RTL8125B and Realtek RTL8111H
| <!--Opinion-->2022 64bit - 4 Dimm slots -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Jginyue A520M-H mATX
| <!--Chipset-->A520
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion--> old bios with random issues with APU ryzens -
|-
| <!--Name-->Gigabyte A520M S2H mATX
| <!--Chipset-->AMD A520
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->HDAudio
| <!--USB-->
| <!--Ethernet-->Realtek 1GbE
| <!--Opinion-->2022 64bit Zen3 65W and up - 2 ddr4 -
|-
| <!--Name-->Gigabyte A520I AC mITX mini-itx
| <!--Chipset-->AMD A520
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->HDAudio
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2022 64bit Zen3 65W and up 5600G (6c12t) or 5700G (8c16t) - 2 ddr4 dimm slots -
|-
| <!--Name-->MSI A520M-A PRO mATX
| <!--Chipset-->A520
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe 1 x M.2, Socket 3, M Key (Type 2242/2260/2280)
| <!--Gfx-->PCI-e 3.0
| <!--Audio-->HDAudio ALC892
| <!--USB-->USB3
| <!--Ethernet-->rtl8169 rtl8111H
| <!--Opinion-->2022 64bit - 2 ddr4 dimm slots - 3rd Gen AMD Ryzen Desktop and AMD Ryzen 4000 G-Series CPU
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|}
===== (Socket AM5 LGA1718 Zen4 Zen5 Zen6 2022/27)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->Asrock Steel Legend
| <!--Chipset-->x670e
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->PCI-e rnda2
| <!--Audio-->HD audio
| <!--USB-->USB3
| <!--Ethernet-->
| <!--Opinion-->2022 64bit - ddr5 ecc (10 chip) and non-ecc (8 chips) 64Gb @ 6000Mhz or 128GB @ 4800Mhz -
|-
| <!--Name-->Asrock TaiChi
| <!--Chipset-->x670e
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->PCI-e rnda2
| <!--Audio-->HD Audio
| <!--USB-->USB4 with Thunderbolt 4 equivalent
| <!--Ethernet-->{{No|Realtek killer E3000 2.5GbE}}
| <!--Opinion-->2022 64bit - ddr5 ecc (10 chip) and non-ecc (8 chips)
|-
| <!--Name-->Asus ROG Crosshair Hero
| <!--Chipset-->x670e
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->PCIe rnda2
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2022 64bit
|-
| <!--Name-->
| <!--Chipset-->x670e
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->rnda3
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2022 64bit 7950x3d 120W, 7900 7800 7600 90W
|-
| <!--Name-->
| <!--Chipset-->x670e
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->rnda3
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2022 64bit
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus B650E-I
| <!--Chipset-->B650
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->pci-e 5
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2023 - better sound with an actual AMP, PCIe 5, USB-C display outs -
|-
| <!--Name-->
| <!--Chipset-->x650 B650
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->x650 B650
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->x650 B650
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->MAXSUN AMD Challenger B650M WIFI M-ATX (aka Soyo)
| <!--Chipset-->B650
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->MSI b650i mini itx
| <!--Chipset-->B650
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->pci-e 4
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->Realtek
| <!--Opinion-->2023 - front panel connectors at the back of the board - dead rear nvme slot and a drained CMOS battery as the CMOS button being pressed during shipping -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->A620M Zen4
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->A620M
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->A620M
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->A620M
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset--> Zen5
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset--> Zen6
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name--> || <!--Chipset--> || <!--ACPI--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Opinion-->2026 FP8 Zen 6 Medusa Point 4bigC, 4 econC, 2lpC, 8coreGPU -
|-
| <!--Name--> || <!--Chipset--> || <!--ACPI--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Opinion-->2026 FP10 Zen 6 Medusa Point 4bigC, 4 econC, 2lpC, 8coreGPU -
|-
|}
===== (Zen7 AM6 2027/3x)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
===== (Zen AM 203x/3x)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
====Intel Sockets====
[[#top|...to the top]]
=====Socket 370 (2000/2)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->Intel D815EEA
| <!--Chipset-->866Mhz P3 and i815 chipset
| <!--ACPI-->
| <!--IDE-->{{Yes}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->{{Yes|Nvidia AGPx8 6200LE added}}
| <!--Audio-->{{N/A}}
| <!--USB-->{{Yes|2 USB1.1}}
| <!--Ethernet-->{{N/A}}
| <!--Opinion-->Tested AspireOS 1.7, simple basic board with useful 5 PCI slots
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|}
=====Socket 478 (2002/4)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->[http://translate.google.co.uk/translate?hl=en&sl=zh-CN&u=http://detail.zol.com.cn/motherboard/index46381.shtml&prev=/search%3Fq%3Dc.865pe.l%2Bmotherboard%26client%3Dfirefox-a%26hs%3DsZB%26rls%3Dorg.mozilla:en-US:official Colorful Technology C.865PE-L Silver Fighter Warrior V2.3]
| <!--Chipset-->865PE
| <!--ACPI-->{{dunno| }}
| <!--IDE-->{{Yes|tested with CDROM}}
| <!--SATA-->{{dunno| }}
| <!--Gfx-->{{Maybe|AGP slot}}
| <!--Audio-->{{Yes|ALC650 AC97}}
| <!--USB-->{{Yes|USB 1.1 and 2.0}}
| <!--Ethernet-->{{Yes|RTL 8100 8139}}
| <!--Opinion-->Still testing with NB (Nightly Build) May 2013
|-
| <!--Name-->Intel 845
| <!--Chipset-->865P
| <!--ACPI-->
| <!--IDE-->{{Yes}}
| <!--SATA-->
| <!--Gfx-->{{No|intel 800}}
| <!--Audio-->{{No|AC97 AD1985}}
| <!--USB-->{{Yes|USB1.1 and USB2.0}}
| <!--Ethernet-->{{No|e1000}}
| <!--Opinion-->Tested ICAROS 1.3
|-
| <!--Name-->Intel 845
| <!--Chipset-->865GC
| <!--ACPI-->
| <!--IDE-->{{Yes}}
| <!--SATA-->
| <!--Gfx-->{{No|intel 865 Extreme Graphics 2}}
| <!--Audio-->{{No|AC97 AD1985}}
| <!--USB-->{{Yes|USB1.1 and USB2.0}}
| <!--Ethernet-->{{No|e1000}}
| <!--Opinion-->Tested ICAROS 1.3
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket LGA775 s775 (2005/8)=====
an industry standard DDR2 module could in theory contain fallback JEDEC, intel XMP and AMD EPP configuration data
Intel PC CL5 ram modules but an "AMD" CL5 ram module the BIOS cannot read the AMD EPP info on the SPD (Serial Presence Detect) but can recognize the CL5 timing info in the JEDEC data table. PC BIOS auto configures for the AMD ram module and boots normally.
an AMD PC CL6 ram modules but an "INTEL" CL6 ram module the BIOS cannot read the INTEL XMP info on the SPD but can recognize the CL6 timing info in JEDEC data table. PC BIOS auto configures for the AMD ram module and boots normally.
an INTEL PC needs CL6 ram modules but have an "AMD" CL4 ram module. INTEL BIOS cannot read the AMD EPP info on the SPD but can recognize the CL4 timing info in JEDEC data table. PC BIOS recognizes module timings as incompatible an refuses to boot.
entirely separate issue if the RAM module timing specs are incompatible.(i.e. CL4 RAM in a "CL6 only" PC)
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->Abit AG8
| <!--Chipset-->P915 + ICH6R
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4 ports SATA1
| <!--Gfx-->1 PCIe x16 Slot
| <!--Audio-->Realtek ALC658 AC97
| <!--USB-->4 USB2.0
| <!--Ethernet-->Realtek 8110S-32
| <!--Opinion-->2004 32bit - Firewire TI 4200R7T no
|-
| <!--Name-->MSI 915 Neo2
| <!--Chipset-->P915 + ICH6R
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4 ports SATA1
| <!--Gfx-->1 PCIe x16 Slot
| <!--Audio-->CMI 9880L HD Audio
| <!--USB-->4 USB2.0
| <!--Ethernet-->{{no|Broadcomm BCM5751 PCIe}}
| <!--Opinion-->Firewire VIA VT6306 no
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus P5GC P5GC-MX
| <!--Chipset-->P945GC Lakeport-GC + ICH7R northbridge
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4 SATA1 3.0 Gbit/s ports
| <!--Gfx-->1 PCIe 1.1 slot
| <!--Audio-->HD Audio with ALC662 codec
| <!--USB-->{{yes|2 usb2.0}}
| <!--Ethernet-->{{no|atheros L2}}
| <!--Opinion-->2005 32bit - 3 pci slots - 4 x 240-pin DIMM Sockets max. 4GB DDR2 667/533 non-ECC -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Foxconn PC45CM-SA 45CM-S
| <!--Chipset-->945GC with ICH7
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4 sata2 ports
| <!--Gfx-->{{Yes|pcie 1.0 slot with gma950 integrated}}
| <!--Audio-->{{Yes|HD audio with aLC883 codec playback}}
| <!--USB-->{{Yes|}}
| <!--Ethernet-->{{Yes|realtek 8139 8100sc}}
| <!--Opinion-->2 dimm slots 667mhz max 4gb - can be found in Advent desktops - 2 pci-e and 2 pci - core 2 duo only e6xxx - Micro ATX (9.6” x 8.8”) -
|-
| <!--Name-->Gigabyte GA-81945GM MFY-RH
| <!--Chipset-->Intel® 945GM Express with ICH7M-DH
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->{{Yes|GMA950 VGA15 and PCI-e 1.0 slot}}
| <!--Audio-->{{Yes|HD Audio with ALC880 codec playback only rear port}}
| <!--USB-->{{Yes|4 usb 2.0}}
| <!--Ethernet-->{{No|Intel PRO1000PL 82573L Gigabit Ethernet}}
| <!--Opinion-->2006 MoDT term “Mobile on DeskTop.”, low TDP CPUs to work on desktop form-factor motherboards. mATX Micro ATX 24.4cm x 24.4cm - 2 DDR2 dimm 1.8v slots with 4Gb max - will not boot if PCI2 slot occupied -
|-
| <!--Name-->Gigabyte GA-945 GCM S2C
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->{{yes|ALC662 (1.x)}}
| <!--USB-->
| <!--Ethernet-->{{yes|8101E Rtl 8169 (1.x)}}
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA945-GCM S2L
| <!--Chipset-->945GC with ICH7
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4 SATA1 ports
| <!--Gfx-->PCi-E slot
| <!--Audio-->{{Maybe|Intel HD Audio with ALC662 codec 2/4/5.1-channel (1.x)}}
| <!--USB-->{{Yes|4 USB2.0}}
| <!--Ethernet-->{{Yes|Realtek 8111c 8169 (1.x)}}
| <!--Opinion-->2 x 1.8V DDR2 DIMM 4GB DDR2 memory max - 2 PCI-e and 2 PCI - Micro ATX form factor; 24.4cm x 19.3cm -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->MSI 945P Neo-F rev 1.0
| <!--Chipset-->P945 + ICH7
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4 SATA1 ports
| <!--Gfx-->PCie 1.0 slot
| <!--Audio-->ALC662 HDA
| <!--USB-->4 USB2.0
| <!--Ethernet-->8110SC (rtl8169)
| <!--Opinion-->
|-
| <!--Name-->MSI 945P Neo2-F rev 1.2
| <!--Chipset-->P945 + ICH7
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4 SATA1 ports
| <!--Gfx-->PCie 1.0 slot
| <!--Audio-->ALC850 AC97
| <!--USB-->4 USB2.0
| <!--Ethernet-->8110SC (rtl8169)
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-P31-DS3L
| <!--Chipset-->P31 with ICH7
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->PCI Express x16
| <!--Audio-->HD Audio with ALC888 codec
| <!--USB-->4 USB 2.0
| <!--Ethernet-->Realtek 8111B
| <!--Opinion-->DDR2 800Mhz up to 4Gb 4 x 240 pin - 3 PCI - ATX 12.0" x 8.3" -
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus P5KPL-AM /PS
| <!--Chipset-->G31 with ICH7
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->4 xSATA 3 Gbit/s ports
| <!--Gfx-->PCIe 1.1 with integrated Intel® GMA 3100
| <!--Audio-->HD Audio with VIA VT1708B with ALC662 codec
| <!--USB-->
| <!--Ethernet-->Realtek RTL8102EL 100/10 LAN with Realtek RTL8111C Gigabit LAN
| <!--Opinion-->2 x 2 GB DDR2 Non-ECC,Un-buffered DIMMs with 2 PCI - Intel Graphics Media Accelerator -
|-
| <!--Name-->Asus P5KPL/EPU
| <!--Chipset-->G31 with ICH7
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Pci-e 1.0 slot
| <!--Audio-->{{Yes|HD audio with ALC887 codec}}
| <!--USB-->
| <!--Ethernet-->{{Yes|RTL8169 Realtek 8111C}}
| <!--Opinion-->Tested - 4 240-pin DIMM, Max. 4 GB - 4 pci-e and 3 pci - ATX Form Factor 12 inch x 8.2 inch ( 30.5 cm x 20.8 cm ) -
|-
| <!--Name-->Gigabyte GA-G31M ES2L
| <!--Chipset-->G31 plus ICH7
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->{{Yes|Intel GMA 3100 2d}}
| <!--Audio-->{{Maybe|ALC883 (1.x), ALC883/888B (2.x)}}
| <!--USB-->
| <!--Ethernet-->{{Maybe|RTL8111C (1.x), Atheros 8131 (2.x)}}
| <!--Opinion-->reduces DRAM capacity to 4GB
|-
| <!--Name-->ASRock G31M-S r1.0 G31M-GS
| <!--Chipset-->G31 + ICH7
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->{{maybe|4 sata2}}
| <!--Gfx-->{{maybe|GMA 3100 2d not 3d}}
| <!--Audio-->{{yes|ALC662}}
| <!--USB-->{{yes|4 USB2.0}}
| <!--Ethernet-->{{partial|rtl8169 RTL8111DL 8169 (for -GS) RTL8102EL (for -S)}}
| <!--Opinion-->2007 64bit Core2 - 2 DDR2 800 max 8Gig AMI bios MicroATX -
|-
| <!--Name-->ASRock G31M-S r2.0
| <!--Chipset-->G31 + ICH7
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->{{maybe|4 sata2}}
| <!--Gfx-->{{maybe|GMA 3100 2d not 3d}}
| <!--Audio-->{{yes|ALC662}}
| <!--USB-->{{yes|4 USB2.0}}
| <!--Ethernet-->{{yes|RTL 8111DL 8169}}
| <!--Opinion-->2008 64bit core2 - 2 DDR2 800 max 8Gig MicroATX
|-
| <!--Name-->[http://www.intel.com/cd/channel/reseller/apac/eng/products/desktop/bdb/dg31pr/feature/index.htm Intel DG31PR]
| <!--Chipset-->iG31
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->{{maybe|3100 but can use PCIe 1.1 slot}}
| <!--Audio-->{{yes|ALC888 playback}}
| <!--USB-->
| <!--Ethernet-->{{yes|RTL8111B Rtl 8169}}
| <!--Opinion-->good support
|-
| <!--Name-->
| <!--Chipset-->Intel G33 Express Chipset with ich9 southbridge
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Intel 3100 powervr tile based
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2008 64bit - embedded on Core 2 Quad, Core 2 Duo, Pentium Dual-Core CPUS with Integrated GPU Intel GMA 3100 -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->ASUS P5G41T-M LX
| <!--Chipset-->G41 + ICH8 + DDR3
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->{{maybe}}
| <!--Gfx-->{{yes|X4500 some 2d only)}}
| <!--Audio-->ALC887
| <!--USB-->3 USB2.0
| <!--Ethernet-->{{no|Atheros L1c AR8131}}
| <!--Opinion-->reduces maximum supported memory ddr3 from 16 to 8GB 2 dimm slots non-EEC - demotes the PCIe controller mode from revision 2.0 (5.0GT/s) to revision 1.1 (2.5GT/s
|-
| <!--Name-->Gigabyte GA-G41MT S2
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->VT1708S (1.3), ALC887-VD2 (1.4), ALC887 (2.1),
| <!--USB-->
| <!--Ethernet-->Atheros AR8151 l1c (1.x 2.x),
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-G41MT S2PT
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->ALC887 (1.0), VIA (2.0), ALC887 (2.1)
| <!--USB-->
| <!--Ethernet-->RTL8111E (1.x), Atheros AR8151 l1c (2.1),
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-G41MT D3
| <!--Chipset-->G41 + ICH7
| <!--ACPI-->
| <!--IDE-->1 Port
| <!--SATA-->4 Ports
| <!--Gfx-->{{yes|GMA X4500 2d only and pci-e 1.1 slot}}
| <!--Audio-->{{yes|ALC888B}}
| <!--USB-->4 ports + headers
| <!--Ethernet-->{{yes|RTL8111 D/E}}
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-P41T D3P
| <!--Chipset-->G41 + ICH7 with Intel Core 2 Duo (E6xxx) CPU
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4ports
| <!--Gfx-->GMA X4500 2d
| <!--Audio-->ALC888 889/892
| <!--USB-->4 ports
| <!--Ethernet-->RTL 8111C or D/E
| <!--Opinion-->
|-
| <!--Name-->Intel DG41AN Classic
| <!--Chipset-->iG41 +
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4 ports
| <!--Gfx-->X4500 2d
| <!--Audio-->ALC888S ALC888VC
| <!--USB-->4 ports
| <!--Ethernet-->8111E
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->AsRock P5B-DE
| <!--Chipset-->P965 + ICH8
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->{{Maybe|works ide legacy}}
|<!--Gfx-->{{Yes|with PCI-E 1.1 slot}}
| <!--Audio-->{{Yes|HD Audio via VT1708S}}
| <!--USB-->{{Yes}}
| <!--Ethernet-->{{Yes|RTL8169}}
| <!--Opinion-->2006 works well
|-
| <!--Name-->Asus P5B SE
| <!--Chipset-->965 intel
| <!--ACPI-->
| <!--IDE-->{{Yes| }}
| <!--SATA-->{{Yes| }}
| <!--Gfx-->{{N/A}}
| <!--Audio-->{{Yes|HD Audio ALC662 codec}}
| <!--USB-->{{Yes}}
| <!--Ethernet-->{{No| }}
| <!--Opinion-->works well except ethernet
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus P5W DH Deluxe P5WDG2 WS PRO
| <!--Chipset-->975X
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->2 ports
| <!--Gfx-->2 PCIe x16 slots
| <!--Audio-->ALC882 AND LATER ADI 1988B
| <!--USB-->2 USB2.0
| <!--Ethernet-->{{No|Marvell 88E8052 88E8053}}
| <!--Opinion-->Firewire TI TSB43AB22A no
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Abit IP35
| <!--Chipset-->P35 Express + ICH9R
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->6 ports
| <!--Gfx-->
| <!--Audio-->ALC888 HDA
| <!--USB-->4 USB2.0
| <!--Ethernet-->two RTL8110SC
| <!--Opinion-->Firewire Texas TSB43 AB22A no
|-
| <!--Name-->MSI P35 Neo F FL MS-7630 rev 1
| <!--Chipset-->Intel P35
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->pci-e 1.1 support
| <!--Audio-->HD Audio ALC888
| <!--USB-->
| <!--Ethernet-->Realtek
| <!--Opinion-->Base model of this range of P35 mobos
|-
| <!--Name-->GA-P35-DS3
| <!--Chipset-->P35 and ICH9
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4 ports
| <!--Gfx-->
| <!--Audio-->HDAudio with Realtek ALC889A codec
| <!--USB-->
| <!--Ethernet-->rtl8169 Realtek 8111B
| <!--Opinion-->2008 - 4 x 1.8V DDR2 DIMM sockets max 8 GB -
|-
| <!--Name-->GA-EP35-DS3 (rev. 2.1)
| <!--Chipset-->Intel® P35 + ICH9 Chipset
| <!--ACPI-->
| <!--IDE-->{{unk|}}
| <!--SATA-->{{unk|4 }}
| <!--Gfx-->pci-e
| <!--Audio-->{{unk|Realtek ALC889A codec }}
| <!--USB-->{{yes | }}
| <!--Ethernet-->{{yes|rtl8169 Realtek 8111B}}
| <!--Opinion-->good
|-
| <!--Name-->Abit IX38 Quad GT
| <!--Chipset-->X38 / ICH9R Chipset
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->6 ports
| <!--Gfx-->PCI-E 2.0 slot
| <!--Audio--> HD Audio ALC888
| <!--USB-->4 USB2.0
| <!--Ethernet-->Realtek RTL 8110SC 8169SC
| <!--Opinion-->Firewire Texas TSB 43AB22A no
|-
| <!--Name-->Gigabyte X38-DQ6
| <!--Chipset-->X38 / ICH9R Chipset
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->6 ports
| <!--Gfx-->PCI-E 2.0 slot
| <!--Audio-->ALC889A HDA
| <!--USB-->4 USB2.0
| <!--Ethernet-->twin 8111B 8169
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Gigabyte GA-EP45 DS3 (2008)
| <!--Chipset-->P45 + ICH9 or ICH10
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->6 x SATA 3Gbit/s (SATAII0, SATAII1, SATAII2, SATAII3, SATAII4, SATAII5)
| <!--Gfx-->two PCI-E v2.0 x16 slots support splitting its 16 PCIe 2.0 lanes across two cards at x8 transfers
| <!--Audio-->HD Audio with ALC888 or ALC889A codec
| <!--USB-->6 USB2.0
| <!--Ethernet-->2 x Realtek 8111C chips (10/100 /1000 Mbit)
| <!--Opinion-->4 x 1.8V DDR2 DIMM sockets non-EEC
|-
| <!--Name-->MSI P45 Platinum (2008)
| <!--Chipset-->P45 + ICH9
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->6 sata2 ports
| <!--Gfx-->two PCI-E x16 v2.0 slots
| <!--Audio-->ALC888 HD Audio
| <!--USB-->6 USB2.0
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->G45 +
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->adds Intel’s GMA X4500HD graphics engine to P45 Express features
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->G43 +
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->GMA X4500 2d
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->removes HD video acceleration from the G45’s features
|-
| <!--Name-->Asus P5E Deluxe
| <!--Chipset--> X48 with ICH9
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->HD Audio with ADI 1988B codec
| <!--USB-->
| <!--Ethernet-->Marvell 88E8001
| <!--Opinion-->
|-
| <!--Name-->GigaByte GA-X48 DQ6
| <!--Chipset-->X48 plus ICH9R
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->8 ports
| <!--Gfx-->two PCI-E x16 v2.0 slots
| <!--Audio-->ALC889A
| <!--USB-->8 USB2.0
| <!--Ethernet-->RTL 8111B 8169
| <!--Opinion-->Firewire TSB43AB23 no - ICH9 pairs with Intel’s 3-series (X38, P35, etc.) chipsets, in addition to the X48 Express, but excluding the G35 Express
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Gigabyte EP43-DS3L and Gigabyte GA-EP43-UD3L
| <!--Chipset-->P43 with ICH10
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->6 x SATA 3Gbit/s connectors
| <!--Gfx-->1 x PCI Express x16 slot PCI Express 2.0 standard
| <!--Audio-->HD Audio with ALC888 codec
| <!--USB-->
| <!--Ethernet-->realtek 8111C
| <!--Opinion-->4 x 1.8V DDR2 DIMM sockets - 4 pcie x1 - 2 pci - ATX Form Factor; 30.5cm x 21.0cm
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Gigabyte 73-pvm-s2h rev.1.0
| <!--Chipset-->NVIDIA GeForce 7100 nForce 630i
| <!--ACPI-->
| <!--IDE-->{{Yes|1 port}}
| <!--SATA-->{{yes|3 ports SATA2}}
| <!--Gfx-->{{Maybe|Vesa 2d GeForce 7100 (vga /hdmi/dvi), 1 PCIe x16 Slot }}
| <!--Audio-->{{Yes|Realtek ALC889A MCP73}}
| <!--USB-->{{Yes|7 USB2.0}}
| <!--Ethernet-->{{no|RTL 8211B MCP73}}
| <!--Opinion-->Firewire Not, tested with Icaros Desktop 2.0.3 MCP73 is a single chip solution in three different versions
|-
| <!--Name-->Nvidia 7150 630i
| <!--Chipset-->intel based nForce 630i (MCP73)
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->{{maybe|ide legacy}}
| <!--GFX-->GF 7150
| <!--Audio-->{{yes|HD AUDIO ALC883}}
| <!--USB-->{{yes|ohci echi}}
| <!--Ethernet-->{{no|RTL8201C}}
| <!--Opinion-->being tested
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->pci-e 2.0 x16
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion--> the MCP73PV or the GeForce 7050/nForce 630i
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->the MCP73S or the GeForce7025/nForce 630i
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->the MCP73V or the GeForce 7025/nForce 610i
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Atom SOC (2008/2x)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->D945CLF
| <!--Chipset-->N230 single core
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->
| <!--Gfx-->{{yes|GMA945}}
| <!--Audio-->{{yes|ALC662}} Skt 441
| <!--USB-->{{yes|uhci and ehci}}
| <!--Ethernet-->{{yes|rtl8169}}
| <!--Opinion-->works very well
|-
| <!--Name-->[http://www.clusteruk.com iMica D945GCKF2 mobo]
| <!--Chipset-->Intel Atom N330 Dual Core
| <!--ACPI-->wip
| <!--IDE-->{{yes|IDE}}
| <!--SATA-->{{maybe}}
| <!--Gfx-->{{yes|gma}}
| <!--Audio-->{{yes|HD AUDIO}}
| <!--USB-->{{yes|uhci ehci}}
| <!--Ethernet-->{{yes|rtl8169}}
| <!--Opinion-->
|-
| <!--Name-->D945GSEJT + Morex T1610
| <!--Chipset-->Atom 230 with 945GSE
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->{{maybe}}
| <!--Gfx-->{{yes|GMA900 vga but issues with DVI output}}
| <!--Audio-->{{yes|HDAudio with ALC662 codec}}
| <!--USB-->{{yes| }}
| <!--Ethernet-->{{yes|RTL8169 8111DL}}
| <!--Opinion-->small size, runs off 12V
|-
| <!--Name-->ASUS AT3N7A-I
| <!--Chipset-->Atom N330 Nvidia ION
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->{{maybe|3 ports legacy IDE}}
| <!--Gfx-->{{yes|nouveau cube cube 2 45 quake 3 }}
| <!--Audio-->{{yes|HD Audio with VIA 1708S codec playback}}
| <!--USB-->{{yes}}
| <!--Ethernet-->{{yes|RTL8169 device}}
| <!--Opinion--><ref>http://www.youtube.com/watch?v=EAiJpvu73iw</ref> good but can freeze randomly at times
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->D410PT 45nm pinetrail
| <!--Chipset-->D410 and NM10
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->{{maybe|ide legacy}}
| <!--Gfx-->{{maybe|GMA3150}}
| <!--Audio-->{{yes|ALC262 or ALC66x odd clicks}}
| <!--USB-->{{yes}}
| <!--Ethernet-->{{yes|RTL8111DL}}
| <!--Opinion-->some support
|-
| <!--Name-->45nm pinetrail
| <!--Chipset-->D510 and NM10 + GMA3150
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->GMA3150
| <!--Audio-->ALC888B or ALC66x
| <!--USB-->{{yes}}
| <!--Ethernet-->RTL8111DL
| <!--Opinion-->some support
|-
| <!--Name-->Gigabyte GA-D525TUD (rev. 1.0 1.2 1.5)
| <!--Chipset-->D525 NM10
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->gma 3150
| <!--Audio-->HDAudio ALC887
| <!--USB-->
| <!--Ethernet-->rtl8169 rtl8111f
| <!--Opinion-->2012 64 - 2 ddr3 dimm slots max 8g - Mini-ITX Form Factor; 17.0cm x 17.0cm -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
|}
=====Socket 1366 (2009/10)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->Asus P6T DELUXE
| <!--Chipset-->x58 + ICH10 and Intel 1st gen. (Nehalem/Lynnfield) Core i7 (8xx) CPU
| <!--ACPI-->
| <!--IDE-->{{yes|1 port}}
| <!--SATA-->4 ports
| <!--Gfx-->2 PCIe x16 (r2.0) slots
| <!--Audio-->ADI AD2000B HD Audio
| <!--USB-->{{yes|4 USB2.0}}
| <!--Ethernet-->{{no|Marvell 88E8056 Gigabit}}
| <!--Opinion-->Firewire VIA VT6308 no
|-
| <!--Name-->gigabyte ex58 ds
| <!--Chipset--> x58 + ICH10
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->Realtek 8111D rtl8169
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket 1156 (2010)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->Acer Aspire M3910
| <!--Chipset-->i3
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->{{unk| }}
| <!--Gfx-->{{maybe|VESA intel HD}}
| <!--Audio-->{{unk|HDAudio with Realtek ALC}}
| <!--USB-->{{yes| }}
| <!--Ethernet-->{{unk| Realtek}}
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-H55M-S2H
| <!--Chipset-->H55
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->PCIe slot
| <!--Audio-->{{Yes|ALCxxx playback}} ALC888B (Rev1.x)
| <!--USB-->{{Yes| }}
| <!--Ethernet-->{{Yes|RTL8111D}} (Rev 1.x)
| <!--Opinion-->Tested but no support for WLAN Realtek 8188su
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->MSI H55M-E33 v1.0
| <!--Chipset-->E7636 M7636 H55 chipset so older i3/i5/i7 system
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->{{yes|HD Audio ALC889}}
| <!--USB-->
| <!--Ethernet-->{{Yes|PCI-E Realtek 8111DL}}
| <!--Opinion-->Works well
|-
| <!--Name-->Asus P7P55D
| <!--Chipset-->P55
| <!--ACPI-->
| <!--IDE-->{{unk| }}
| <!--SATA-->{{unk| }}
| <!--Gfx-->pci-e
| <!--Audio-->{{maybe | via codec}}
| <!--USB-->{{unk| }}
| <!--Ethernet-->{{maybe |rtl8169 Realtek RTL8111B/C RTL8112L }}
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket LGA 1155 H2 (2010/13)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->ASUS P8H61-I LX R2.0
| <!--Chipset-->H61
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sata
| <!--Gfx-->1 pci-e slot
| <!--Audio-->{{unk|HDAudio via7018s codec}}
| <!--USB-->USB3
| <!--Ethernet-->{{yes|rtl8169 8111f}}
| <!--Opinion-->2013 64bit up to intel ivybridge cpus - 2 ddr3 dimm slots -
|-
| <!--Name-->Asus P8H61-I/RM/SI mini-itx
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->2 sata
| <!--Gfx-->pci-e 2
| <!--Audio-->{{unk|HDAudio via7018s codec}}
| <!--USB-->
| <!--Ethernet-->{{yes|rtl8169 8111f}}
| <!--Opinion-->2013 64bit up to i3-2010 - OEM board from an RM machine but not ivybridge as the Asus BIOS isn't compatible with these, 0909 hacked one might work -
|-
| <!--Name-->asus p8h61-i lx r2.0/rm/si mini itx
| <!--Chipset-->h61
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->pci-e 2.0
| <!--Audio-->HDaudio with VIA codec
| <!--USB-->
| <!--Ethernet-->rtl8169 rtl8111e
| <!--Opinion-->2012 sandy and ivy - oem from rm machine 2 x 240-Pin DDR3 DIMM sockets max DDR3 1333MHz -
|-
| <!--Name-->Bewinner 63q9c7omvs V301 ITX
| <!--Chipset-->H61
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sata with nvme
| <!--Gfx-->pci-e 4
| <!--Audio-->HDAudio
| <!--USB-->
| <!--Ethernet-->Realtek 8106E 100M Network Card
| <!--Opinion-->2022 64
|-
| <!--Name-->Biostar H61 H61MHV2 H61MHV3 Ver. 7.0
| <!--Chipset-->H61 with Intel Pentium G 2xxx series CPU
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->pci-e
| <!--Audio-->Realtek ALC662 later ALC897
| <!--USB-->4 usb2
| <!--Ethernet-->rtl8169 Realtek RTL8111H
| <!--Opinion-->2014 - 2 ddr3 dimm slots -
|-
| <!--Name-->Gigabyte GA-H61M-D2-B3
| <!--Chipset-->H61 + Sandybridge
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 ports sata2
| <!--Gfx-->
| <!--Audio-->ALC889
| <!--USB-->2 ports
| <!--Ethernet-->Realtek RTL8111E
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-H61MA-D3V
| <!--Chipset-->H61 +
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 ports sata2
| <!--Gfx-->
| <!--Audio-->Maybe No Realtek ALC887 (Rev 2.0) ALC887 (Rev2.1)
| <!--USB-->2 ports
| <!--Ethernet-->Realtek RTL8111E
| <!--Opinion-->
|-
| <!--Name-->GA-H61M-S2PV
| <!--Chipset-->H61 with 2400k 2500k 2600k 2700k
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->pci-e 2.0 slot
| <!--Audio-->ALC887 (rev 1.0 2.0 2.1 2.2 2.3)
| <!--USB-->4 USB 2.0
| <!--Ethernet-->Rtl811E (1.0) 8151 (2.0) Rtl8111F (2.1 2.2 2.3)
| <!--Opinion-->Micro ATX Form Factor; 24.4cm x 20cm with 2 pci-e and 2 pci -
|-
| <!--Name-->Intel Classic Series DH61CR Desktop
| <!--Chipset-->H61 +
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 ports
| <!--Gfx-->
| <!--Audio-->Intel HD with ALC892
| <!--USB-->4 ports
| <!--Ethernet-->{{no|Intel 82579V}}
| <!--Opinion-->
|-
| <!--Name-->MSI H61M-P20 (G3) MS-7788
*retail MSI board
*OEM Advent, etc
| <!--Chipset-->H61
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->{{yes|four SATAII ports}}
| <!--Gfx-->1 PCI Express gen3 (retail) gen2 (oem) x16 slot
| <!--Audio-->{{yes|HDAudio ALC887 codec}}
| <!--USB-->{{yes|}}
| <!--Ethernet-->{{yes|Realtek 8105E 100M Network Card}}
| <!--Opinion-->2012 64bit - 2 ddr3 slots - 22.6cm(L) x 17.3cm(W) M-ATX Form Factor - BIOS - [https://www.arosworld.org/infusions/forum/viewthread.php?thread_id=1149&rowstart=140&pid=6009#post_6007 works well],
|-
| <!--Name-->MSI H61I-E35 (B3) MS-7677 Ver.1.2
| <!--Chipset-->H61
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sata2 3gbps
| <!--Gfx-->{{maybe|VESA 2d for hdmi}}
| <!--Audio-->{{yes|https://www.arosworld.org/infusions/forum/viewthread.php?thread_id=1149&rowstart=140&pid=5861#post_5861 works}}
| <!--USB-->USB3 and USB2
| <!--Ethernet-->{{yes|rtl8169 rtl8111e}}
| <!--Opinion-->2012 64bit - 2 ddr3 slots -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus P8H67-M
| <!--Chipset-->H67 +
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->2 sata3 - 4 sata2
| <!--Gfx-->
| <!--Audio-->Intel HD with ALC887
| <!--USB-->6 USB2.0
| <!--Ethernet-->Realtek® 8111E
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus P8Z68-V LX
| <!--Chipset-->Z68 + Intel 2nd generation (Sandy Bridge) Core i7 (2xxx) CPU and possibly ivybridgev
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->{{yes|2 sata3 - 4 sata2}}
| <!--Gfx-->pci-e slot
| <!--Audio-->{{yes|HDAudio Intel HD with ALC887 codec}}
| <!--USB-->{{yes|2 USB3.0 - 4 USB2.0}}
| <!--Ethernet-->{{yes|rtl8169 Realtek® 8111E}}
| <!--Opinion-->2011 64bit SSE 4.1 and AVX - EFI bios - 4 ddr3 dimm slots -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte Z68AP-D3 (B3)
| <!--Chipset-->Z68 + Ivybridge
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->2 sata3 - 4 sata2
| <!--Gfx-->
| <!--Audio-->Intel HD with ALC889
| <!--USB-->2 USB3.0 - 4 USB2.0
| <!--Ethernet-->Realtek® 8111E
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus B75M-A
| <!--Chipset-->B75
| <!--ACPI-->
| <!--IDE-->{{yes| }}
| <!--SATA-->{{yes| }}
| <!--Gfx-->pci-e
| <!--Audio-->{{maybe|HDAudio with Realtek ® ALC887-VD codec}}
| <!--USB-->{{maybe| }}
| <!--Ethernet-->{{yes|rtl8169 Realtek ® 8111F-VB-CG }}
| <!--Opinion-->2013 64bit - 2 ddr3 slots -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->H77
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-H77-D3H 1.0 1.1
| <!--Chipset-->H77
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sata 3.0
| <!--Gfx-->pci-e
| <!--Audio-->{{No|HDAudio VIA VT2021 codec}}
| <!--USB-->
| <!--Ethernet-->{{No|Atheros GbE LAN chip}}
| <!--Opinion-->2013 64bit i5 3550 7 3770 - 4 DDR3 slots - 2 full pci-e 2 pci slots -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Gigabyte GA Z77 D3H with i3 3225 dual
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->pci-e
| <!--Audio-->{{No|HDAudio VIA VT2021 codec}}
| <!--USB-->
| <!--Ethernet-->{{No|Atheros GbE LAN chip}}
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket LGA 1150 H3 (2013/2016)=====
[[#top|...to the top]]
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->[https://theretroweb.com/motherboards/s/asus-b85m-e-rev-1-02 Asus B85M-E]
| <!--Chipset-->B85
| <!--ACPI-->
| <!--IDE-->{{yes| }}
| <!--SATA-->{{yes| }}
| <!--Gfx-->pci-e
| <!--Audio-->{{maybe|HDAudio with Realtek ® ALC887-VD2 codec}}
| <!--USB-->{{no| }}
| <!--Ethernet-->{{yes|rtl8169 Realtek 8111F}}
| <!--Opinion-->2014 64bit - 4 ddr3 slots -
|-
| <!--Name-->Gigabyte GA-H87N-WIFI mITX
| <!--Chipset-->H87 and Intel 4th generation (Haswell) Core i5 (4xxx) CPU
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->Intel HD with ALC892
| <!--USB-->
| <!--Ethernet-->Intel Atheros
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus H81M-C H81M-P-SI
| <!--Chipset-->H81 with 4th generation (Haswell) Core i7 (4xxx) CPU
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->2x3g 2x6g
| <!--Gfx-->pci-e slot
| <!--Audio-->hdaudio alc887 vd
| <!--USB-->
| <!--Ethernet-->realtek 8111gr
| <!--Opinion-->2013 skt 1150 - 2 ddr3 max 16g - mini atx -
|-
| <!--Name-->Asus H81T
| <!--Chipset-->H81
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->2 sata
| <!--Gfx-->HD4000 igpu only
| <!--Audio-->HDAudio ALC887-VD
| <!--USB-->Intel USB3
| <!--Ethernet-->rtl8169 realtek 8111G
| <!--Opinion-->2013 64bit intel 4th gen mini itx - external dc brick with 19v rare barrel pin 7.4MM x 5.0MM - 2 ddr3 laptop sodimm slots -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-H81M-S2V
| <!--Chipset-->H81
| <!--ACPI-->
| <!--IDE-->{{N/A|}}
| <!--SATA-->
| <!--Gfx-->pci-e
| <!--Audio-->HDAudio ALC887
| <!--USB-->USB3
| <!--Ethernet-->Realtek® GbE LAN chip
| <!--Opinion-->2014 64bit up to i7 4790K - 2 DDR3 slots -
|-
| <!--Name-->Gigabyte GA-H81M-D3V (rev. 1.0)
| <!--Chipset-->H81
| <!--ACPI-->
| <!--IDE-->{{N/A| }}
| <!--SATA-->{{yes|2 sata2 2 sata3 }}
| <!--Gfx-->pci-e
| <!--Audio-->{{unk| HDAudio Realtek® ALC887 codec}}
| <!--USB-->{{unk|intel and VIA® VL805}}
| <!--Ethernet-->{{unk|rtl8169 Realtek }}
| <!--Opinion-->
|-
| <!--Name-->MSI H81M-E34 (MS-7817)
| <!--Chipset-->H81
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->{{yes| }}
| <!--Gfx-->PCIe 2.0 x16
| <!--Audio-->HDAudio with ALC887 codec
| <!--USB-->USB3
| <!--Ethernet-->{{yes|rtl8169 RTL8111G}}
| <!--Opinion-->2013 64bit -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus Z87-K
| <!--Chipset-->Z87 with 4th generation (Haswell) Core i7 4c8t i5 4c4t CPU
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->pci-e
| <!--Audio-->Intel HD with ALC
| <!--USB-->
| <!--Ethernet-->Realtek lan
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-Z87X-UD3H
| <!--Chipset-->Z87 Express
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->pci-e
| <!--Audio-->Intel HD with Realtek® ALC898 codec
| <!--USB-->
| <!--Ethernet-->intel
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA H97M D3H r1.0 r1.1 with i3 4360 or 4370 dual
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->pci-e
| <!--Audio-->Intel HD with ALC892
| <!--USB-->
| <!--Ethernet-->Realtek lan
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus Z97 A with i7 4790K
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->750, 960, 970 and 980 nvidia GTX cards
| <!--Audio-->Intel HD with ALC
| <!--USB-->
| <!--Ethernet-->intel lan ethernet
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA Z97X UD3H rev1.0 1.1 1.2
| <!--Chipset-->Z97 with i5 4690K
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->HDaudio with ALC1150
| <!--USB-->
| <!--Ethernet-->intel lan
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->MSI GAMING 5 Z97
| <!--Chipset-->Z97 with 4th generation (Haswell) Core i7 4c8t CPU
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->ASUS Q87M-E
| <!--Chipset-->Q87
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2014 64bit - 4 DDR3 slots -
|-
| <!--Name-->
| <!--Chipset-->H99
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket LGA2011V2 s2011-2 (2012/15)=====
[[#top|...to the top]]
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->
| <!--Chipset-->x79
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2013 Xeon e5-???? W TDP, e5-2667V2 W TDP, e5-????V2 W TDP, Sandybridge and Ivybridge V2
|-
| <!--Name-->Asus
| <!--Chipset-->X79
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket LGA2011V3 s2011-3 (2015/18)=====
[[#top|...to the top]]
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->
| <!--Chipset-->x99
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2016 Xeon e5-1620v3 130W TDP, e5-1650V3 (i7-5930K) 140W TDP, e5-2640V3 90W TDP, Haswell-EP
|-
| <!--Name-->Asus
| <!--Chipset-->X99
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->most cheap Ryzens are better nowadays
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Huananzhi X99-CD4
| <!--Chipset-->Intel C612 and X99
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sata 3 connectors and 1 m.2 nvme slot
| <!--Gfx-->pcie slot
| <!--Audio-->HDaudio with ALC897 codec
| <!--USB-->{{No|USB3}}
| <!--Ethernet-->{{maybe|rtl8169}}
| <!--Opinion-->2024 quality might not be great outside of a simple setup - 2 ddr4 dimms -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Keyiyou X99 XD4
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Machinist MR9A Pro
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2023
|-
| <!--Name-->Machinist MR9A Pro
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2023
|-
| <!--Name-->Mogul
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Qiyida X99 H9S
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2023
|-
| <!--Name-->Soyo
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket LGA 1151 Socket H4 (2015/2018)=====
[[#top|...to the top]]
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->Skylake CPUs have TPM 2.0 imbedded
|-
| <!--Name-->Asus H110 Plus H110M-A/DP
| <!--Chipset--> with 6th Gen Core and 7th with bios update
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->Sunrise Point-H SATA [AHCI mode] [8086 a102]
| <!--Gfx-->{{No|Skylake Integrated HD Graphics use PIC-E slot}}
| <!--Audio-->Intel HD Audio with Realtek ALC887 Audio CODEC
| <!--USB-->Sunrise Point-H USB 3.0 xHCI [8086: a12f] no usb2.0 fallback
| <!--Ethernet-->{{Yes|Realtek 8111GR or 8111H RTL8111 8168 8411}}
| <!--Opinion-->ATX with 3 pci-e and 2 DDR4 slots - uatx version smaller - turn off TLSF as it was causing AHI driver to corrupt. Turned off ACPI for errors but works fine once booted -
|-
| <!--Name-->ASUS H110M-R M-ATX
| <!--Chipset-->H110 6th Gen Skylake Core™ i7/Core™ 6950X i7-6970HQ i7-6700K 4c8t hyperthreading, i5/Core™ i5-6600K 4c4t i3/Pentium® / Celeron®
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 x SATA 6Gb/s
| <!--Gfx-->pci-e
| <!--Audio-->HDAudio Realtek® ALC887 codec
| <!--USB-->Intel USB3
| <!--Ethernet-->Realtek® RTL8111H
| <!--Opinion-->2016 64bit - 2 DDR4 DIMMS Max 32GB 2133MHz - 1 full pci-e and 2 pci-e 1 -
|-
| <!--Name-->Asus H110T
| <!--Chipset-->H110
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->2 sata
| <!--Gfx-->intel igpu only
| <!--Audio-->HDaudio
| <!--USB-->
| <!--Ethernet-->Dual Intel/Realtek GbE languard
| <!--Opinion-->2016 - mini itx 12v / 19v laptop type rare barrel pin 7.4MM x 5.0MM - 2 sodimm ddr4 slots - no pci-e slot -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-H110M-S2H MATX Rev1.0
| <!--Chipset-->H110
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sata
| <!--Gfx-->pci-e 3.0
| <!--Audio-->Realtek® ALC887 codec
| <!--USB-->2 (USB 3.1 Gen 1) ports with 4 us2
| <!--Ethernet-->Realtek® GbE LAN
| <!--Opinion--> 2 ddr4 slots
|-
| <!--Name-->Gigabyte ga-h110n
| <!--Chipset-->H110
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Yes| sata}}
| <!--Gfx-->{{maybe|Vesa 2d for Intel or PCI-e slot}}
| <!--Audio-->{{Maybe|HDaudio for ALC887 codec}}
| <!--USB-->{{Maybe| }}
| <!--Ethernet-->{{maybe|RTL8169}}
| <!--Opinion-->2016 mini-itx 6th gen
|-
| <!--Name-->Msi H110M-PRO-VH
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 x SATA 6Gb/s
| <!--Gfx-->pci-e 3.0
| <!--Audio--> Realtek® ALC887 Codec
| <!--USB-->
| <!--Ethernet-->rtl8169 rtl8111h
| <!--Opinion--> 6th gen intel - 2 ddr4 slots
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus H170 Pro Gaming
| <!--Chipset-->H170
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sata
| <!--Gfx-->pci-e
| <!--Audio-->HDAudio
| <!--USB-->Asmedia USB3.1/3.0
| <!--Ethernet-->intel lan
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->MSI Z170A TOMAHAWK
| <!--Chipset-->Z170
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sara, 1 x 2280 Key M(PCIe Gen3 x4/SATA), 1 x 2230 Key E(Wi-Fi)
| <!--Gfx-->pci-e
| <!--Audio-->HDAudio
| <!--USB-->
| <!--Ethernet-->intel lan
| <!--Opinion-->2016 64bit up to i7 7700k - 2 DDR4 -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->GIGABYTE GA-B250M-DS3H HD3P D3H D2V
| <!--Chipset-->B250
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2018 coffee lake intel 8th gen
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus
| <!--Chipset--> with Kaby Lake X Intel 7th Gen
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion--> up to 16 pcie lanes
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus
| <!--Chipset--> Z390 with Kaby Lake X
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion--> up to 16 pcie lanes
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset--> Q370M
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset--> H370M
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset--> B360M
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus Rampage
| <!--Chipset-->x299 with i9
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion--> - up to 24 to 44 pcie lanes
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte
| <!--Chipset--X299 >
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|}
=====Socket LGA 1200 (2020/2022)=====
[[#top|...to the top]]
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->MSI H510M-A PRO (MS-7D22)
| <!--Chipset--> with 10th gen Comet Lake X
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2021 64bit - up to 16 pcie lanes rebar possible
|-
| <!--Name-->Asus PRIME H410M-E
Asrock H470M-HDV/M.2
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus
| <!--Chipset--> with 11th gen Rocket Lake X
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion--> up to 16 pcie lanes
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|}
=====Socket LGA 1700 (2023/ )=====
[[#top|...to the top]]
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->Alder Lake / 14th gen Raptor Lake
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2021 2022 64bit - QoS work to 2 level cpus, P down to E cores -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->Meteor Lake ultra 5 7 1xxH series 1
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2023 2024 64bit 10nm - 3 level cpus, Low Power Island (SOC tile) to E onto P cores -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset--> 15th gen Arrow Lake
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->Lunar lake ultra 5 7 2xxV series 2
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2025 64bit 7nm -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->Nova Lake
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2026 64bit -
|-
| <!--Name-->
| <!--Chipset-->Panther Lake
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2026 64bit - either 44, 484, or 448 tiled cores 18A process - core ultra x9 288h, x7 358H, -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket LGA 1954 (2027/ )=====
[[#top|...to the top]]
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->Nova Lake-S
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->Serpent Lake, Titan Lake, and Razer Lake
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2027
|-
|}
=====Socket LGA (203x/203x)=====
[[#top|...to the top]]
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->MSI
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|}
===Chromebooks===
For most (EOL) cromebooks, the recommended UEFI path forward is to:
*put the device into Developer Mode
*disable firmware write protection
*flash MrChromebox's UEFI Full ROM firmware
*install ChromeOS Flex, Linux, etc
See [https://mrchromebox.tech/#home MrChrome], [https://mrchromebox.tech MrChrome] and the [https://www.reddit.com/r/chrultrabook/ chrultrabook subreddit] for more info
ChromeOS has several different boot modes, which are important to understand in the context of modifying your device to run an alternate OS:
*Normal/Verified Boot Mode
Can only boot Google-signed ChromeOS images
Full verification of firmware and OS kernel
No root access to the system, no ability to run Linux or boot other OSes
Automatically enters Recovery Mode if any step of Verified Boot fails
Default / out-of-the-box setting for all ChromeOS devices
*Recovery Mode
User presented with Recovery Mode boot screen (white screen with 'ChromeOS is missing or damaged')
Boots only USB/SD with signed Google recovery image
Automatically entered when Verified Boot Mode fails
Can be manually invoked:
On Chromebooks, via keystroke: [ESC+Refresh+Power]
On Chromeboxes, by pressing a physical recovery button at power-on
On Convertibles/Tablets, by holding the Power, Vol+, and Vol- buttons for 10s and then release
Allows for transition from Verified Boot Mode to Developer Mode
On Chromebooks/Chromeboxes, via keystroke: [CTRL+D]
On Convertibles/Tablets, via button press: Vol+/Vol- simultaneously
Booting recovery media on USB/SD will repartition/reformat internal storage and reload ChromeOS
Note: The ChromeOS recovery process does not reset the firmware boot flags (GBB Flags), so if those are changed from the default, they will still need to be reset for factory default post-recovery.
*Developer Mode
"Jailbreak" mode built-in to every ChromeOS device
Loosened security restrictions, allows root/shell access, ability to run Linux via crouton
Verified Boot (signature checking) disabled by default, but can be re-enabled
Enabled via [CTRL+D] on the Recovery Mode boot screen
Boots to the developer mode boot screen (white screen with 'OS verification is off' text),
The user can select via keystroke
<pre>
ChromeOS (in developer mode) on internal storage ( [CTRL+D] )
ChromeOS/ChromiumOS on USB ( [CTRL+U] )
Legacy Boot Mode ( [CTRL+L] )
</pre>
Boot screen displays the ChromeOS device/board name in the hardware ID string (eg, PANTHER F5U-C92, which is useful to know in the context of device recovery, firmware support, or in determining what steps are required to install a given alternate OS on the device.
*Legacy Boot Mode
Unsupported method for booting alternate OSes (Linux, Windows) via the SeaBIOS RW_LEGACY firmware
Accessed via [CTRL+L] on the developer mode boot screen
Requires explicit enabling in Developer Mode via command line: sudo crossystem dev_boot_legacy=1
Most ChromeOS devices require a RW_LEGACY firmware update first
Boots to the (black) SeaBIOS splash screen; if multiple boot devices are available, prompt shows the boot menu
Note: If you hear two beeps after pressing [CTRL+L], then either your device doesn't have a valid Legacy Boot Mode / RW_LEGACY firmware installed, or legacy boot capability has not been been enabled via crossystem.
https://www.howtogeek.com/278953/how-to-install-windows-on-a-chromebook/
Chromebooks don’t officially support other OSs. You normally can’t even install as Chromebooks ship with a special type of BIOS designed for Chrome OS. But there are ways to install, if you’re willing to get your hands dirty and potentially ruin everything
[https://mrchromebox.tech/#devices Firmware Compatibility]
[https://wiki.galliumos.org/Hardware_Compatibility Here is the list of hardware that the GalliumOS supports and information on getting Gallium OS on to those devices]
Development on GalliumOS has been discontinued, and for most users, GalliumOS is not the best option for running Linux due to lack of hardware support or a kernel that's out of date and lacking important security fixes.
Meet Eupnea and Depthboot, the successors to Galliumos and Breath [https://eupnea-linux.github.io This is the bleeding edge]
Most older Chromebooks need the write-protect screw removed in order to install MrChromebox's firmware that allows you to install other operating systems. Most newer Chromebooks don't work in the same way as there is no write-protect screw on them.
Very rough guide to '''total''' (i.e. all cores / threads) processor performance (AROS usually uses only the [https://gmplib.org/gmpbench one core])
[[#top|...to the top]]
<pre>
060000 AMD Ryzen 9 7900X (AM5 170W),
056000 AMD Ryzen 9 5950X,
055000 AMD Ryzen 9 5900X3D,
053000 AMD Ryzen 9 5900X (AM4 105W), AMD Ryzen 9 3950X (105W),
044000 AMD Ryzen 7 5800X3D,
042000 AMD Ryzen 9 6900HX, AMD Ryzen 5 5600X3D (AM4 95W), AMD Ryzen 7 PRO 5750GE (AM4 35W),
039000 AMD Ryzen 9 5900HS, Intel Core i7-12700T, AMD Ryzen 7 7735HS (8c16t 45W), AMD 8840U,
038000 AMD Ryzen 7 5800H (FP6 45W), AMD Ryzen 7 6800U, Intel Core i5-12490F, Intel Core i5-12500E,
037000 AMD Ryzen 7 5800HS (FP6 35W), AMD Ryzen 5 8500G 8600GE (AM5 6c12t 35W), AMD Ryzen Z2 (8c16t),
036500 AMD Ryzen 7 5700G (AM4 8c16t 65W), AMD Ryzen 9 6900HS, Intel Core i7-12800H,
036200 AMD Ryzen 7 5700GE (AM4 8c16t 35W), AMD Ryzen Z1 Extreme (top TDP), AMD Ryzen 5 8600G (AM5 65W),
036000 AMD Ryzen 5 3600X (Am4 95W), AMD Ryzen 5 5500 (AM4 65W), AMD Ryzen 5 5600 (65W),
035000 AMD Ryzen 5 6600H, Intel Core i5-12400F,
031000 AMD Ryzen™ 9 8945HS, Ryzen™ 7 8845HS, AMD Ryzen 7 7840U,
030000 AMD Ryzen 7 4800U, AMD Ryzen 4800H, Intel Core i5-11400F, Intel Zeon E5-2697A V4,
029500 AMD Ryzen 5 4500 (AM4 65W), AMD Ryzen 5 3600 (65W), Apple M3 Pro 12c,
029000 AMD Ryzen 5 4600G (AM4 65W), AMD Ryzen 5 PRO 4650GE (AM4 35W), AMD Ryzen 7 PRO 1700X (AM4 95W),
028500 AMD Ryzen 5 PRO 5675U, AMD Ryzen 7 1700 (AM4 65W), AMD Ryzen 7 2700 (65W), Ryzen 3 7540U,
028000 AMD Ryzen 5 PRO 5650U, 5 5560U (FP6 25W 6c12t Zen3), Intel Core i5-13500H, AMD Ryzen 7 4800HS,
027700 AMD Ryzen 9 PRO 7940HS (FP8 65W), AMD 8745HS, AMD Ryzen H255 AI, AMD Ryzen 3 7545U,
027500 AMD Ryzen 3 7736U, AMD Ryzen 5 7640U,
027400 AMD Ryzen 5 8540U, AMD Ryzen 5 PRO 5650GE (AM4 6c12t 35W), AMD Ryzen 5 PRO 4650G (AM4 45W),
027300 AMD Ryzen 7 PRO 4750GE, AMD Ryzen 5 5600H, AMD Ryzen 7 5825U (FP6 8c16t 15W),
027200 AMD Ryzen 5 6600U, AMD Ryzen 7 2700X, AMD Ryzen 5 5600GE (AM4 35W), AMD Ryzen Z1,
027100 AMD Ryzen 7 7730U (FP6 15W 8c16t), AMD Ryzen 7 5800U (FP6 25W 8c16t), Ryzen 9 4900H,
027000 AMD Ryzen 7 PRO 4750U (8c16t), Ryzen 5 7430U (FP6 6c12t), Ryzen 5 PRO 6650U, Intel 10500H,
026500 AMD Ryzen 7 PRO 7840HS (FP7 65W), AMD Ryzen 7 8840HS, AMD Ryzen Z2 Extreme,
025000 AMD Ryzen 5 5600U (FP6 25W hot 6c12t Zen3), AMD Ryzen 5 2600 (65W), Ryzen 5 7530U,
024500 AMD Ryzen 5 4600HS (FP6 35W 6c12t), Apple M1 Pro, AMD Ryzen 5 5625U (FP6 15W 6c12t),
023700 AMD Ryzen 3 PRO 5350GE (AM4 35W), AMD Ryzen 5 3500X (AM4 95W), Intel Core i7-9700,
023500 AMD Ryzen 5 1600X (95W), AMD Ryzen 3 5300GE (AM4 4c8t 35W), AMD Ryzen 7 5700U (FP6 25W 8c16t Zen2),
023200 AMD Ryzen 3 7330U (FP6 15W 4c8t), AMD Ryzen 7 4700U (FP6 25W 8c8t), AMD Ryzen 5 4400G,
023000 Intel Core i7-1255U, Intel Core i7 13700H, Ryzen 7640HS,
022000 AMD Ryzen Z2 Go (4c8t), AMD Ryzen 5 5500U (FP6 25W 6c12t Zen2), Snapdragon 8 Elite,
020500 AMD Ryzen 3 4300G (AM4 65W), AMD Ryzen 3 5450U 5425U, AMD Ryzen 5 PRO 4650U (6c12t),
019500 Intel Core i5-1135G7, AMD Ryzen 5 5500H, AMD Ryzen 5 4600U (FP6 25W 6c), AMD Ryzen 5 2600 (65W),
019250 Intel Core i5-1145G7,
019000 AMD Ryzen 5 3400G (AM4 65W), AMD Ryzen 5 2500X, AMD Ryzen 5 7520U, AMD Ryzen V3C18I (? 15W),
017750 AMD Ryzen 5 3400GE (AM4 35W), Intel Core i5-8400, AMD Ryzen 5 1500X (AM4 65W), Xbox One Series X,
017500 Intel Core i7-6700K, Intel i5-10400, AMD Ryzen 5 4500U (FP6 25W 6c6t), AMD Ryzen 3 5400U,
017000 AMD Ryzen 3 PRO 4350GE (AM4 35W), AMD Ryzen 3 5300U (FP6 25W 4c8t), Intel Core i5-11300H,
016500 AMD Ryzen 7 3750H, AMD Ryzen Embedded V1756B (FP5 45W), AMD Ryzen 3 PRO 4200GE, SD G3 Gen3,
016250 Intel Core i5-1035G7, intel core i5 7600 (4c4t 65W),
016000 AMD Ryzen 5 2400G (AM4 65W), AMD Ryzen 5 3550H, Ryzen 5 PRO 3350GE (4c 8t), Intel Core i5-8500T,
015500 AMD Ryzen Embedded R2544,
015000 AMD Ryzen 3 7320U, Ryzen 7 3700U, Ryzen 3200G (AM4 65W), Intel Core i7-8550U, Intel Core i5-1035G1,
014000 AMD Ryzen 5 2400GE (AM4 35W), Intel Core i7-6700T, AMD Ryzen 5 3550U,
013500 AMD Ryzen 5 3500U (FP5 15W 4c8t), AMD Ryzen 3 4300U, AMD Athlon Gold 4150GE, AMD Ryzen 5 3450U,
013250 AMD Ryzen 3 3200GE (AM4 45W), AMD Ryzen 3 1300X (65W), AMD Ryzen 3 2200G, Xbox One Series S,
013000 AMD Ryzen Embedded V1605B (FP5 25W), AMD Ryzen 2700U, AMD Ryzen R2514,
012500 AMD Ryzen 5 2500U (FP5 25W 4c8t), Intel Core i3-8300T, Intel Xeon X5680, Intel i3-1115G4 (2c4t),
012300 Intel Core i7-8565U, Intel Core i5-8350U, Intel Core i7-8700, Allwinner A733 (2 A76, 6 A55),
012200 ARM Cortex-X3 Prime Snapdragon SD8G2 Gen2 4nm 64-bit Kryo CPU, i5-8250U (4c8t),
012000 AMD Ryzen 3 2200GE, AMD Ryzen 3 1200 (65W), AMD Ryzen 5 3500C,
011500 AMD Ryzen 3 3300U, Intel Core i3-8100T, Intel Core i5-8265U, Intel i5-10210U, CORE i5-10310U,
010500 AMD Ryzen 3 2300U (FP5 25W 4c4t), Allwinner A527 (8 A55), Intel i5 4690K,
010300 Intel Core i7-3630QM, Intel Core i5-6600T, Intel Core i5-4670K,
010200 Intel Core i5-6440HQ, Intel Core i7-3610QM, Snapdragon SD865,
010000 AMD FX-8320E (AM3+ 125W 8c8t), Intel Core i5-7500T, Intel Core i5-4690, Intel i5 4690T,
009000 Spectrum Unisoc Tiger T7280 (T620), Cortex-X2, MediaTek Dimensity 1300 (4 A78, 4 A55),
008700 AMD FX-6130 (AM3+ 90W 6c6t), Intel Core i5-7400T, Intel Core i5-4590T,
008500 Intel Core i5-6500T, AMD Athlon 300GE (AM4, 35W), AMD Athlon Gold 7220U,
008000 AMD Ryzen R1606G (FP5 15W), AMD FX-6300 (AM3 65W 6c6t), Intel Core i5-2500K,
007500 AMD Ryzen 3 3200U, AMD Ryzen 3 3250U, Intel Alderlake ULX N100 / N95,
007200 AMD Ryzen 3 2200U (FP5 25W 2c4t), Intel Core i3-7100T, Intel Twinlakes N150 N200, Xbox(TM) One S,
007100 AMD Ryzen R1505G (FP5, 15W), RK3576 4 A72, 4 A53, Snapdragon XR2 Gen 1, Intel i7-6600U and 7600U,
006600 Qualcomm Snapdragon 888 5G, AMD Athlon 300U (FP5 2c4t 15W), Intel Core i7-7500U, AMD V1202B,
006500 Intel Core i7-6500U, AMD Athlon Gold 3150U, Intel Celeron N5105 (FCBGA1338 15W), SD 685,
006300 Intel Core i3-8130U (15W), Intel Celeron N5095 (FCBGA1338 15W), Intel Core i3-6100T,
006100 Intel Core i5-6300U, Intel Core i5-7200U (2c4t), Intel i7-5500U, Intel Core i7-6600U (2c4t),
006000 Intel Core i5-6200U (2c4t), Intel Core i3-7130U, Intel i7-4500U, Qualcomm Snapdragon 888 4G,
005950 Intel Core i5-4570T, Intel Core i5-5257U, Rockchip RK3588 (4 A76, 4 A55), Snapdragon 7325,
005900 Intel Xeon X5550, Intel Core i5-4300M, MediaTek Dimensity 1200 (4 A78, 4 A55), Unisoc 7255 (T616),
005800 Intel Celeron J4125 J4105 (FCBGA1090 15W), Intel Core i5-3470T, AMD A8-6600K APU, AMD 3015E (2c4t),
005600 Intel Core i5-3360M, Intel Core i7-3520M, Intel Core i5-4210M, Intel Pentium G4600T,
005400 MediaTek Dimensity 900 (2 A78, 6 A55), AMD Athlon Silver 7120U, Snapdragon 860,
005300 AMD PRO A12-9800B 7th Gen APU (FP4 15W), AMD FX-4300 4c4t, AMD Ryzen R1305G,
005250 Intel Core i5-3230M, AMD FX-7600P, Intel Pentium G4400, Unisoc T7200 (Unisoc T606 2 A76, 6 A55),
005200 AMD PRO A10-8770E, AMD A10-9700E, AMD PRO A10-9700B (FP4 15W), Intel Core i3-4130T,
005100 AMD RX-427BB (FP3 15W), AMD A10-9620P, AMD A12-9720P, Intel Core i3-8145U, AMD A12-9830B,
005050 AMD A8-5500 (FM2 65W), AMD A10 PRO-7800B APU, Intel Pentium Silver N5000, Intel Core i7-5500U,
005000 Intel Core i5-5300U, Intel Core i5-3320M (2c4t), Intel Core i5-5350U, Unisoc T618 (2 A73 6 A53),
004900 Intel Core i5-4300U, Intel Core i5-5200U, Intel Core i3-4100M, Snapdragon 662 (SM6115),
004860 Intel Core i7-2620M, Intel Core i7-2640M, AMD Athlon Silver 3050U 3050e, Intel i3-7020U,
004650 Intel Core i5-2520M (2c4t), Intel Core i5-3210M, AMD A10-9600P (FP4 4c 15W), Pentium 4415U,
004625 Intel Core i3-7100U (FCBGA1356 15W), ARM A76 RK3588S, AMD A10-6800B APU,
004600 AMD PRO A8-9600B, AMD PRO A12-8830B, AMD PRO A10-8730B, AMD A12-9700P, Intel Core i3-6100U,
004200 AMD A10-8700P A8-8600P, Intel Core i5-4200U, Intel Core i5-2540M, Intel i3-6006U, Intel i3-4150T,
004000 Intel Core i5-2430M, AMD PRO A8-8600B, AMD 3020e, Intel Core i3-5005U, Mediatek MT6797 Helio X20,
003850 Intel Core i5-2410M (2c4t), Intel Core i3-2120 (LGA1155 65W), Mediatek MT8786,
003800 AMD A10-4600M APU, AMD A10 PRO-7350B APU, AMD A10-5750M APU, Rockchip RK3399,
003600 AMD A8-6500T APU, AMD A8-7410 APU, AMD PRO A6-8550B, AMD A8-5550M (4c4t),
003500 AMD GX-424CC SOC (FT3b 25W 4c4t), ARM A75 Unisoc Tiger T610 (Spreadtrum) (8c 5W),
003400 AMD A10-7300 APU, AMD A6-7310 APU, AMD A8-6410, AMD A10-5745M APU, Intel Core i3-4000M,
003350 Intel Pentium G2020, Intel Core i3-3120M (G2 2c4t), AMD R-464L APU, Intel® Core m5-6Y57 (2c4t),
003300 AMD GX-420CA SOC (FT3 BGA769 25W), AMD A6-9500E, Intel Celeron N4200, AMD A6-5200 ( 25W 2c2t),
003200 AMD A6-6310 APU, AMD A6-6400B APU, AMD A6-8570E, AMD A8-4500M APU, AMD A6-7400K APU
003000 AMD A8-7150B, AMD A9-9410, A9-9420, A9-9425, AMD A6-8500B (FP4 15W), AMD A8-7100,
002900 AMD PRO A6-8530B, AMD A6-8500P, AMD A8-3500M APU, Intel Core i3-2120T,
002700 AMD Embedded GX-420GI (FP4 15W), AMD PRO A6-9500B, AMD GX-415GA, AMD A4-6210 APU,
002600 AMD A6-9225, AMD A8-4555M APU, AMD A4-5000 APU (FT3 15W), AMD A6-9220, AMD A6-3420M APU,
002450 Intel Celeron 2950M, Intel Pentium N3700, Intel Core i3-2350M, Allwinner A523 (8 A55),
002400 Intel Celeron N3150, Intel Core i3-2330M, Intel Xeon W3505, AMD A6-9210, Allwinner H618 (4 A53),
002300 Intel Celeron N3350, AMD A4-9120, AMD A4-9125, Intel Core i3-2310M, Intel Celeron 3865U,
002200 AMD A9-9420e, AMD A6-5350M APU, AMD E2-6110 APU, AMD E2-9000e, Celeron N4500, Intel N3710,
002000 AMD GX-412HC, AMD A4-4300M APU, AMD A6 PRO-7050B APU, AMD A6-4400M APU, AMD A6-7000,
001925 Intel Core2 Duo E6700, Intel Pentium Extreme Edition 965, Intel Core i3-370M, Celeron N4020,
001750 Intel Core i3-2365M 2375M, AMD A4-9120C, Intel Core2 Duo T8300, Qualcomm MSM8939,
001600 AMD GX-222GC (BGA769 FT3b 15W), AMD A4-9120e, AMD Embedded GX-215JJ, AMD A4-4355M APU,
001550 Intel Core2 Duo SL9400 T7600 T6600, AMD E2-3200, AMD A6-9220e, Mediatek MT8783, AMD E2-3800,
001500 AMD GX-218GL SOC, AMD A6-4455M, AMD A4-5150M APU, ARM A55 RK3566 (4c 3W), Intel Core2 Duo T8100,
001400 AMD GX-217GA SOC, ARM Cortex-A53 4c4t H700, AMD A4-3300M APU, Allwinner A133P A64 (4 A53),
001300 AMD Turion 64 X2 Mobile TL-64 TL-62, Intel Core2 Duo T7300, Intel Core2 Duo T5600, AMD RX-216TD,
001250 AMD GX-412TC SOC, AMD A4-3320M APU, AMD Athlon 64 X2 QL-66, Intel Core2 Duo T7200
001200 AMD Athlon 64 X2 2c TK-57, AMD Turion 64 X2 Mobile TL-60 RM-74, AMD E1-2500, AMD E2-7015,
001150 Intel Core2 Duo T5550, Intel Core2 Duo L7500, AMD E2-3000M APU, ARM A35 RK3266, AMD E2-7110,
001100 Intel Core2 Duo T5300, AMD Athlon 64 X2 3800, Intel Core2 Duo E4300, Mediatek MT8127,
001050 AMD E1-6010 APU, Intel Pentium T4300, Intel Celeron N2840,
001050 AMD Athlon 64 FX-57, AMD Athlon 64 X2 Dual-Core TK-55, AMD Turion 64 X2 Mobile TL-52
001000 Intel Core2 Duo T5500, Intel Core2 Duo L7300, Intel Core2 Duo SU9400,
000950 AMD G-T56N, AMD Athlon 64 3100+, AMD E2-2000 APU,
000950 AMD Turion 64 X2 Mobile TL-50, AMD E1-2200 APU, Intel Celeron U3400,
000925 AMD TurionX2 Dual Core Mobile RM-72, AMD Sempron 140
000920 Intel Celeron SU2300, Intel Core2 Duo T5200, AMD Turion 64 X2 Mobile TL-56
000890 AMD E2-1800 APU, AMD Turion 64 X2 Mobile TL-58
000880 AMD G-T56E, AMD G-T48E,
000860 AMD E-450 APU, AMD E-350 APU, AMD Athlon LE-1620
000820 AMD A4-1250 APU, AMD Athlon LE-1600,
000810 AMD E1-2100 APU, Intel Core Duo T2500,
000810 Intel Atom D510, Intel Core2 Duo U7500,
000800 AMD Geode NX 2400+, AMD Turion 64 Mobile ML-42, AMD Athlon II Neo K325,
000760 AMD V140, AMD E1-1200 APU, AMD Athlon 64 3300+,
000730 Intel Core Duo T2400, AMD Turion 64 Mobile MK-38, AMD Sempron 3600+,
000700 Intel Core2 Duo U7600 U7700, AMD Sempron LE-1200, AMD V120
000680 AMD GX-212JC SOC, AMD E-300 APU, AMD A4-1200 APU,
000670 AMD Turion 64 Mobile MK-36 ML-37 ML-40, Mobile AMD Sempron 3800+
000640 Intel Atom N2600, Intel Atom N570, Mobile AMD Athlon 64 3200+
000640 Intel Core Duo T2300, Intel Core Duo T2050,
000630 VIA Eden X2 U4200, AMD Sempron LE-1100, AMD Sempron 3100+ 3600+,
000620 AMD C-70 C70 APU, Intel Atom 330, AMD G-T40N, AMD Athlon Neo MV-40,
000610 Intel Core2 Duo U7300, AMD Athlon II Neo K125 K145,
000600 Intel Atom N550, Intel Pentium 4, AMD Athlon 64 2800+,
000580 AMD C-60 C60, AMD G-T40E, AMD Sempron LE-1250
000530 AMD C-50 C50, Intel Celeron M 723, AMD Sempron 210U,
000490 AMD GX-210JA SOC, PowerPC 970 G5 IBM's 970 server CPU (2c),
000470 Mobile AMD Sempron 3500+, Mobile AMD Athlon XP-M 2200+,
000460 AMD Athlon XP 2500+, AMD Sempron 3500+, Mobile Intel Pentium 4,
000440 Intel Atom D425, Intel Atom N470, POWER 4 PPC,
000410 Intel Pentium M, Intel Celeron M, AMD Sempron 2300+
000400 Intel Atom N450, AMD Sempron 2400+,
000340 Intel Atom D410, AMD G-T52R, AMD C-30, AMD Sempron 2200+
000330 Intel Atom N455, Intel Atom N280, Intel Atom N270 (1c1t 2W), Intel P3,
000320 Freescale NXP QorIQ P1022
000310 PowerPC G4 7447 1Ghz (1c1t 15W), PPC440 core,
000230 PowerPC PPC G3/PPC 750,
000160 Pentium II, Motorola 68060
000080 Intel 80486, Motorola 68030,
000040 Intel 80386,
000030 Motorola 68020
000008 Motorola 68000
</pre>
=== Recommended hardware (32-bit) ===
[[#top|...to the top]]
Recommended hardware is hardware that has been tested with latest release of AROS and is relatively easy to purchase second hand (ie. ebay). This hardware also comes with commitment that compatibility will be maintained with each future release.
If in future decision will be made to drop any of the recommended hardware from the list (for example due to it no longer being available for purchase), such hardware will move to list of legacy supported systems and will have an indicated end of life date so that users have time to switch to other hardware.
{| class="wikitable sortable" width="100%"
| <!--OK-->{{Yes|'''Works well'''}} || <!--Not working-->{{No|'''Does not work'''}} || <!--Not applicable-->{{N/A|'''N/A not applicable'''}}
|-
|}
==== Virtual Hardware ====
{| class="wikitable" width="100%"
! width="20%" |Name
! width="5%" |Storage
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |Ethernet
! width="5%" |Wireless
! width="10%" |Additional hardware
! width="45%" |Comments
|-
| VirtualBox 7.x (Other/Unknown template) || {{Yes|IDE<br/>SATA(AHCI)}} || {{Yes|VMWARESVGA}} || {{Yes|HDAudio}} || {{Yes|PCNET32<br/>E1000}} || NOT APPLICABLE || NOT APPLICABLE || <!--Comments-->
|-
| VMware 16+ (Other32 template) || {{Yes|IDE<br/>SATA(AHCI)}} || {{Yes|VMWARESVGA}} || {{Yes|SB128}} || {{Yes|PCNET32}} || NOT APPLICABLE || NOT APPLICABLE || <!--Comments-->
|-
| QEMU 8.x ("pc" and "q35" machines) || {{Yes|IDE<br/>SATA(AHCI)}} || {{Yes|VESA}} || {{Yes|SB128}} || {{Yes|PCNET32}} || NOT APPLICABLE || NOT APPLICABLE || <!--Comments-->
|-
|}
==== Laptops ====
{| class="wikitable" width="100%"
! width="20%" |Name
! width="5%" |Storage
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |Ethernet
! width="5%" |Wireless
! width="10%" |Additional hardware
! width="45%" |Comments
|-
| ACER Aspire One ZG5 || {{Yes|IDE<br/>SATA(IDE)}} || {{Yes|GMA}} || {{Yes|HDAudio}} || {{Yes|RTL8169}} || {{Yes|ATHEROS}} || NOT APPLICABLE || <!--Comments-->
|-
| Dell Latitude D520 || {{Yes|IDE}} || {{Yes|GMA}} || {{Yes|HDAudio}} || {{Yes|BCM4400}} || {{No|}} || {{Yes|Atheros AR5BXB63}} || * select Intel Core 2 64-bit version, not Celeron 32-bit version <br/> * replace WiFi card to get wireless working
|-
|}
==== Desktop Systems ====
{| class="wikitable" width="100%"
! width="20%" |Name
! width="5%" |Storage
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |Ethernet
! width="5%" |Wireless
! width="10%" |Additional hardware
! width="45%" |Comments
|-
| Fujitsu Futro S720 || {{Yes|SATA(AHCI)}} || {{Yes|VESA}} || {{Yes|HDAudio}} || {{Yes|RTL8169}} || NOT APPLICABLE || NOT APPLICABLE || * no 2D/3D acceleration<br/> * use USB ports at back
|-
|}
==== Motherboards ====
{| class="wikitable" width="100%"
! width="20%" |Name
! width="5%" |Storage
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |Ethernet
! width="5%" |Wireless
! width="10%" |Additional hardware
! width="45%" |Comments
|-
| ASUS P8Z68V LX || {{Yes|SATA(AHCI)}} || {{Yes|VESA}} || {{Yes|HDAudio}}|| {{Yes|RTL8169}} || NOT APPLICABLE || {{Yes|GeForce 8xxx/9xxx}} || * add external PCIe video card for better performance
|-
| Gigabyte GA-MA770T UD3/UD3P || {{Yes|IDE<br/>SATA(AHCI)}} || NOT APPLICABLE || {{Yes|HDAudio}}|| {{Yes|RTL8169}} || NOT APPLICABLE || {{Yes|GeForce 8xxx/9xxx}} || * requires external PCIe video card
|-
| ASUS M2N68-AM SE2 || {{Yes|IDE}} || {{Yes|NVIDIA}} || {{Yes|HDAudio}}|| {{Yes|NVNET}} || NOT APPLICABLE || {{Yes|GeForce 8xxx/9xxx}} || * connecting a disk via SATA connector is not supported at this time <br/> * add external PCIe video card for better performance
|-
| Gigabyte GA-H55M-S2H || {{Yes|IDE<br/>SATA(AHCI)}} || {{Yes|VESA}} || {{Yes|HDAudio}}|| {{Yes|RTL8169}} || NOT APPLICABLE || {{Yes|GeForce 8xxx/9xxx}} || * add external PCIe video card for better performance
|-
|}
==== Legacy supported hardware ====
{| class="wikitable" width="100%"
! width="20%" |Name
! width="5%" |Storage
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |Ethernet
! width="5%" |Wireless
! width="10%" |Additional hardware
! width="10%" |EOL
! width="35%" |Comments
|-
| iMica || {{Yes|IDE}} || {{Yes|GMA}} || {{Yes|HDAudio}}|| {{Yes|RTL8169}} || NOT APPLICABLE || NOT APPLICABLE || 2026-12-31 ||
|-
| Gigabyte GA-MA770 UD3 || {{Yes|IDE<br/>SATA(IDE)}} || NOT APPLICABLE || {{Yes|HDAudio}}|| {{Yes|RTL8169}} || NOT APPLICABLE || {{Yes|GeForce 8xxx/9xxx}} || 2026-12-31 || * requires external PCIe video card
|-
|}
=== Recommended hardware (64-bit) ===
[[#top|...to the top]]
Recommended hardware is hardware that has been tested with latest release of AROS and is relatively easy to purchase second hand (ie. ebay). This hardware also comes with commitment that compatibility will be maintained with each future release.
==== Virtual Hardware ====
{| class="wikitable" width="100%"
! width="20%" |Name
! width="5%" |Storage
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |Ethernet
! width="5%" |Wireless
! width="10%" |Additional hardware
! width="45%" |Comments
|-
| VirtualBox 7.x (Other/Unknown (64-bit) template) || {{Yes|IDE<br/>SATA(AHCI)}} || {{Yes|VMWARESVGA}} || {{Yes|HDAudio}} || {{Yes|PCNET32<br/>E1000}} || NOT APPLICABLE || NOT APPLICABLE || * No accelerated 3D support
|-
| VMware 16+ (Other64 template) || {{Yes|IDE<br/>SATA(AHCI)}} || {{Yes|VMWARESVGA}} || {{Yes|SB128}} || {{Yes|E1000}} || NOT APPLICABLE || NOT APPLICABLE || * No accelerated 3D support
|-
| QEMU 8.x ("pc" and "q35" machines) || {{Yes|IDE<br/>SATA(AHCI)}} || {{Yes|VESA}} || {{Yes|SB128}} || {{Yes|PCNET32}} || NOT APPLICABLE || NOT APPLICABLE || * No accelerated 3D support
|-
|}
==== Motherboards ====
{| class="wikitable" width="100%"
! width="20%" |Name
! width="5%" |Storage
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |Ethernet
! width="5%" |Wireless
! width="10%" |Additional hardware
! width="45%" |Comments
|-
| ASUS P8Z68V LX || {{Yes|SATA(AHCI)}} || {{Yes|VESA}} || {{Yes|HDAudio}}|| {{Yes|RTL8169}} || NOT APPLICABLE || NOT APPLICABLE || * No accelerated 3D support
|-
|}
==References==
[[#top|...to the top]]
{{reflist}}
{{BookCat}}
1mqe0n5ou5tejawy5u1ibe77yl496e3
4641132
4641131
2026-06-25T14:42:06Z
Jeff1138
301139
4641132
wikitext
text/x-wiki
{{ArosNav}}
==Introduction==
This a list of computer hardware tested with mostly native AROS installs and, in the recommended sections, of virtual machines
With 64bit support it is recommended 8Gb ram is needed and that SSE 4.1 and AVX are supported in the CPU i.e. from year 2012 for Intel CPUs and 2013 for AMD CPUs. They are x86-64 instruction sets designed to perform the same operations on multiple data items simultaneously, a technique known as Single Instruction, Multiple Data (SIMD). This allows for increased performance in tasks involving parallel computation. SSE 4.1 is a 128-bit SIMD instruction set, while AVX introduced 256-bit SIMD, further enhancing performance. Some apps require these features to run well, like 3D, multimedia decoding or JIT (javascript) in Odyssey web browser. If not the apps may work slower or might fail.
If you have encountered differently (i.e. problems, incompatibilities, faults, annoyances, environment, errors, review of setup etc) please update this information.
Please bear in mind that AROS has only a few hardware driver developers, whilst Linux counts in the tens and Windows in the hundreds.
[[#Laptops]]
[[#Netbook]]
[[#Desktop Systems]]
[[#AMD Sockets]]
[[#Intel Sockets]]
[[#Recommended hardware (32-bit)]]
[[#Recommended hardware (64-bit)]]
=== Laptops ===
[[#top|...to the top]]
* 2006/2007 Dell Latitude D-series laptops - business class machines, good support in Aros, easy to replace wifi card
* 2006 some [https://www.techradar.com/reviews/pc-mac/laptops-portable-pcs/laptops-and-netbooks/toshiba-satellite-pro-a200-28550/review Satellite Pro A200]
* 2008 For the tiny carry anywhere, the early run of Acer Aspire netbooks
Rough estimate from taking a random laptop notebook what you can expect from a Native install of AROS
{| class="wikitable sortable" width="100%"
! width="10%" |Date
! width="5%" |Overall
! width="5%" |Gfx VESA
! width="5%" |Gfx 2D Acceleration
! width="10%" |Gfx 3D Acceleration
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="10%" |Wireless
! width="20%" |Comments
|-
| Before 2002 || Poor to OK || VESA 90% || 2D 10% || {{N/A}} || Audio 10% || 40% || Wired 70% || 2% || Max RAM 512MB
|-
| 2002-2005 || OK || VESA 95% || 2D 10% || 3D 0% || Audio 30% || 70% || Wired 50% || 10% || Max RAM 2GB (for 32bit)
|-
| 2005-2012 || Good || VESA 98% || 2D 60% || 3D 30% || Audio 40% || 80% || Wired 30% || 10% || Max RAM 3Gb (32bit) to 8GB (64bit)
|-
| 2013-2017 || OK || VESA 98% || 2D 30% || 3D 0% || Audio 30% || 60% || Wired 20% || 0% || Max RAM 8GB / 16GB better to go Intel / AMD Ryzen over AMD A series
|-
| 2018-2024 || OK || VESA 98% || 2D 20% || 3D 0% || Audio 40% || 60% || Wired 30% || 0% || Max RAM 32GB better 64bit options if has an internal dvd drive and working ethernet
|-
| 2025-202x || Poor || VESA 95% || 2D 0% || 3D 0% || Audio 0% || 0% || Wired 10% || 0% || Max RAM 64GB AI disruption of previous hardware
|-
|}
3D tests now conducted with apps found in Demos/AROS/Mesa and run at default size (may need to View As -> Show All to see them.
Any laptop with Windows 7(TM) 64bit or higher install, the bios and hard drive set in uefi/gpt mode (install of AROS incompatible)
Most vendor suppliers get OEM (original equipment manufacturers) to make their laptops. These brand name companies purchase their laptops from
*80% ODM (Original Design Manufacturer) such as Quanta, Compal, Wistron, Inventec, Foxconn (Hon Hai), Flextronics and Asus (now Pegatron)
*20% MiTAC, FIC, Arima, Uniwill, ECS, Tonfang Origin and Clevo
{| class="wikitable sortable" width="100%"
| <!--OK-->{{Yes|'''Works well'''}} || <!--May work-->{{Maybe|'''Works a little'''}} || <!--Not working-->{{No|'''Does not work'''}} || <!--Not applicable-->{{N/A|'''N/A not applicable'''}}
|-
|}
====Acer/Gateway/Emachines====
Company founded under the name of Multitech in Taiwan in 1976, renamed to Acer or Acer Group in 1987
Order of build quality (Lowest to highest)
<pre >
Packard Bell
Aspire
Extensa
TimeLine
Travelmate
</pre >
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="2%" |Ethernet
! width="5%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->Travelmate 505 506 507 508 Series || <!--Chipset-->P2 Celeron 466Mhz || <!--IDE-->{{Yes|boots}} || <!--SATA--> || <!--Gfx-->{{Maybe|use VESA Neo Magic Magic Graph 128XD (NM2160)}} || <!--Audio-->{{No|AC97 Crystal CS}} || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->1998 minimal support but no audio etc - 506T, 506DX, 507T, 507DX, 508T
|-
| <!--Name-->TravelMate 340 342 343 345 347 || <!--Chipset-->ALi M1621 with piii || <!--IDE--> || <!--SATA--> || <!--Gfx-->Trident Cyber 9525 || <!--Audio-->{{No|ESS ES1969 Solo-1}} || <!--USB-->2 ALi OHCI USB 1.1 || <!--Ethernet-->a few have Intel e100 || <!--Wireless-->{{N/A}} || <!--Test Distro--> || <!--Comments-->2000 32bit - 340T, 341T, 342T, 342TV, 343TV, 345T, 347TV
|-
| <!--Name-->TravelMate 350 351 352 353 || <!--Chipset-->Ali with piii || <!--IDE-->{{Yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->Trident Cyber Blade DSTN/Ai1 || <!--Audio-->{{No|ali5451}} || <!--USB-->2 USB 1.1 Ali M5237 OHCI || <!--Ethernet-->e100 || <!--Wireless-->Acer InviLink IEEE 802.11b || <!--Test Distro--> || <!--Comments-->2001 32bit very limited support but no support for PCMCIA O2 Micro OZ6933 - 350T, 351TEV, 352TEV, 353TEV
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->TravelMate 610 series 611 612 613 614 || <!--Chipset-->815 P3 || <!--IDE--> || <!--SATA-->{{N/A}} || <!--Gfx-->Intel 82815 cgc || <!--Audio-->AC97 || <!--USB-->USB 1.1 || <!--Ethernet-->Intel e100 pro || <!--Wireless-->{{N/A}} || <!--Test Distro--> || <!--Comments-->2001 32bit - 610TXVi 610T 611TXV 612TX 613TXC
|-
| Aspire 3003LM || SIS AMD 3000 1.8GHz || {{yes}} || {{N/A}} || {{maybe|SIS AGP M760GX (VESA only)}} || {{yes|AC97 SIS codec}} || 3 USB 2.0 || {{yes|SIS900}} || {{no|Broadcom BCM4318 AirForce One 54g}} || Icaros 1.2.4 || 2003 sempron
|-
| Travelmate 2310 Series ZL6 || Intel Celeron M 360 1.4GHz with SiS 661MX || {{yes}} || {{N/A}} || {{maybe|SiS Mirage M661MX (VESA only)}} || {{yes|SIS SI7012 AC97 with realtek ALC203 codec speakers only}} || || {{yes|SIS900}} || {{N/A|LM version has pci card slot but no antenna}} || 2017 Icaros 2.1.1 || 2004 32bit - No USB boot option but boot from DVD - reports of wifi losing connection (isolate/remove the metallic grounding foil ends of the antennas) - 2312LM_L -
|-
| <!--Name-->Aspire 3000 3002LMi 3500 5000 || <!--Chipset-->AMD CPU W-with SIS M760 || <!--IDE--> || <!--SATA--> || <!--Gfx-->SIS 760 || <!--Audio-->SIS || <!--USB--> || <!--Ethernet-->SIS 900 || <!--Wireless-->{{No|Broadcom BCM4318 swap for Atheros}} || <!--Test Distro--> || <!--Comments-->2005 32bit
|-
| <!--Name-->Aspire 3050 5020 5050 || <!--Chipset-->AMD Single and Turion MK-36 Dual and RS480 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Use VESA - RS482M Xpress 1100 or RS485M Xpress 1150 || <!--Audio-->HD Audio Realtek ALC883 || <!--USB--> || <!--Ethernet-->8139 || <!--Wireless-->Atheros 5006G or Broadcom BCM 4318 || <!--Test Distro--> || <!--Comments-->2005 32bit MK36 gets very hot
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->TravelMate 2410 2420 2430 series || <!--Chipset-->915GM || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel Mobile 915GMS 910GML || <!--Audio-->Intel AC97 ICH6 with ALC203 codec || <!--USB-->4 USB2.0 || <!--Ethernet-->Realtek RTL-8139 || <!--Wireless-->Atheros 5005GS || <!--Test Distro--> || <!--Comments-->2005 32bit 2428AWXMi -
|-
| <!--Name-->Acer Aspire 3610 - WISTRON MORAR 3614WLMI || <!--Chipset-->Intel 915 || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Yes|Intel GMA 2D and 3D}} || <!--Audio-->{{yes|[http://www.amiga.org/forums/showpost.php?p=644066&postcount=13 AC97]}} || <!--USB--> || <!--Ethernet-->{{yes|RTL 8139 8139C+}} || <!--Wireless-->{{Maybe|Atheros AR5001X+, AR5BMB5 or Broadcom 4318}} || <!--Test Distro--> Icaros 1.2.4 || <!--Comments-->2005 32bit with good support [http://ubuntuforums.org/showthread.php?p=6205188#post6205188 wifi issues]
|-
| <!--Name-->TravelMate 2480 series 2483 WXMi (HannStar J MV4 94V) 2483NWXCi Aspire 3680, 3690 || <!--Chipset-->940GML i943 with Celeron 430 1.77GHz - 14.1" || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes| }} || <!--Gfx-->{{Yes|2D and 3D openGL 1.x - Tunnel 181 gearbox 104 scores}} || <!--Audio-->{{Yes|HD Audio with ALC883 codec playback}} || <!--USB-->{{Yes|3 USB 2.0}} || <!--Ethernet-->{{No|Marvell 88E8038 yukon sky2}} || <!--Wireless-->{{No|Atheros 5k AR5005G AR5BMB5 mini pci}} suspect laptop hardware issues || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2006 Works well shame about the internet options - noisy fan - poor battery life - no boot option for TI based mass storage sd card - Max 2GB memory - LCD Inverter Board IV12090/T-LF -
|-
| <!--Name-->TravelMate 2490 series 2492WXMi || <!--Chipset-->940GML || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Yes|Intel 945 2D and 3D tunnel 164 gearbox 105}} || <!--Audio-->{{Yes|HD Audio}} || <!--USB--> || <!--Ethernet-->{{Maybe|Broadcom BCM4401}} || <!--Wireless-->{{No|Atheros AR5005GS suspect hardware issue}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2006 32bit - 15inch screen - strange curved up at ends keyboard style - overall plastic construction - Atheros AR5005G(s) -
|-
| <!--Name-->Gateway ML6227B MA7 || <!--Chipset-->Celeron M 520 1.6Ghz with 945GM || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{Yes|945GM 2D and 3D tunnel 169 gearbox 132}} || <!--Audio-->{{No|HDA Intel with STAC9250 codec}} || <!--USB--> || <!--Ethernet-->{{No|Marvell 88E8038}} || <!--Wireless-->{{No|8187L but swap ath5k mini pcie}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2006 15.4 ultrabrite widescreen - Wifi Switch on side Fn/F2 -
|-
| <!--Name-->Acer Aspire 5630-6796 6288 BL50 || <!--Chipset-->T5200 T5500 Intel® Core™2 Duo T7200 T7400 T7600 || <!--IDE-->{{Yes| }} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Yes|Intel® GMA 950 with S-Video out with 2D and 3D}} || <!--Audio-->{{Yes|HDAudio with ALC883? codec}} || <!--USB-->{{Yes|4 USB}} || <!--Ethernet-->{{yes|Broadcom BCM4401}} || <!--Wireless-->{{No|Intel 3945abg swap for Atheros 5K}} || <!--Test Distro-->Tiny AROS || <!--Comments-->2006 - 64bit 39.1 cm (15.4" 1280 x 800) - 2 DDR2-SDRAM slots max 4GB - green mobo?? -
|-
| <!--Name-->Acer Aspire 5633WMLI BL51 || <!--Chipset-->T5500 with Intel® 945PM/GM Express || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE mode}} || <!--Gfx-->{{Yes|Nvidia Go 7300 with 2D and 3D}} || <!--Audio-->{{Yes|HD Audio with Realtek codec}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{yes|Broadcom 440x}} || <!--Wireless-->{{No|Intel 3945 swap for Atheros 5k}} || <!--Test Distro-->Tiny Aros || <!--Comments-->2007 64 bit dual core2 - 15.4 WXGA screen - ddr2 max 4gb - OrbiCam no support - ENE chipset SD card - blue mobo?? -
|-
| <!--Name-->Acer Aspire 9410 9420 || <!--Chipset-->Intel Core Duo with 945PM Express || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes| }} || <!--Gfx-->{{Yes|2D NVIDIA GeForce Go 7300 - 128 MB VRAM G72M}} || <!--Audio-->{{Yes|Intel HD audio with codec}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{Yes|rtl8169 8111 }} || <!--Wireless-->{{No|Intel 3945ABG but could swap with atheros 5k}} || <!--Test Distro-->Icaros 2.3 || <!--Comments-->2007 32bit - 17in TFT 1,440 x 900 WXGA+ - 2 ddr2 sodimm slots max 4gb -
|-
| <!--Name-->eMachines E510 series KAL10 || <!--Chipset-->Intel Celeron M 560 2.13Ghz with PM965 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel x3100 || <!--Audio-->{{Yes|Intel with codec}} || <!--USB-->Intel || <!--Ethernet-->{{No|Broadcom BCM5906M}} || <!--Wireless-->{{No|Atheros G AR5BXB63 bios issue??}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2007 32bit very budget machine with InsydeH20 bios and F10 boot menu
|-
| <!--Name-->ACER Aspire 5920 [http://tim.id.au/laptops/acer/aspire%205920g.pdf 5920G] || <!--Chipset-->Santa Rosa Core 2 Duo T7300 T7500 later T9300 with GM965 and PM965(G) Express || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Maybe|use VESA for X3100M or 8600M GS (rev a1) 9500M GT 256MB vram (G) but some AMD/ATI RV635 M86 HD 3650}} || <!--Audio-->{{No|HD Audio with realtek alc268, [https://forums.opensuse.org/t/no-sound-on-acer-aspire-5920g/32392 ALC883] or Realtek ALC1200 / alc888s codec ICH8}} || <!--USB-->{{Yes|USB2 }} || <!--Ethernet-->{{No|Broadcom BCM5787M}} || <!--Wireless-->{{unk|Intel 3945ABG 4965 or Atheros 9k AR9285}} || <!--Test Distro-->Deadwood test iso 2023-01 2023-11 || <!--Comments-->2008 64bit boot with 'noacpi' or 'noioapic' - 15.4in 1280 x 800 pixels 16:10 - BMW Designworks ‘Gemstone’ design - over 3.0kg with options for 8-cell or 6-cell batteries - 2 SODIMM DDR2 667MT/s max 4GB - synaptics touchpad -
|-
| <!--Name-->Acer A0521 Ao721 || Athlon II Neo K125 + AMD M880G || {{N/A}} || {{maybe| }} || {{maybe|ATI Radeon HD 4225 (VESA only)}} || {{No|Conexant}} || {{Maybe| }} || {{no|AR8152 l1c}} || {{unk|AR9285 ath9k}} || AspireOS 1.7 || 2006 64bit possible
|-
| <!--Name--> Extensa 5630Z || <!--Chipset-->T6600 with Intel GL40 Express || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe|IDE mode}} || <!--Gfx--> {{Yes|Intel GMA 4500M HD (2D)}} || <!--Audio--> {{Yes|HD Audio}} || <!--USB--> {{Yes|USB 2.0}} || <!--Ethernet--> {{No|Broadcom BCM 5764M}} || <!--Wireless--> {{No|RaLink RT2860}} || <!--Test Distro--> || <!--Comments-->2008 64bit
|-
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Aspire 5250 series 5253 BZ400 BZ602 || <!--Chipset-->E350 || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{no|VESA 2D for AMD HD6310}} || <!--Audio-->{{yes|HDaudio for codec Conexant CX20584}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{no|Atheros AR8151}} || <!--Wireless-->{{no|Atheros 9k AR5B97}} || <!--Test Distro--> || <!--Comments-->2011 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name-->Aspire V5 V5-121 V5121 AO725 One 725 || <!--Chipset-->AMD C-70 C70 || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{no|VESA for AMD 6290G}} || <!--Audio-->{{no|Realtek ALC269 codec}} || <!--USB-->{{yes|2 x USB2}} || <!--Ethernet-->{{no|Broadcom}} || <!--Wireless-->{{no|Broadcom}} || <!--Test Distro--> || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name-->Aspire V5-122P MS2377 || <!--Chipset-->C-70 C70 with M55, AMD A4-1250 or A6 1450 up to 1.4Ghz || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->AMD 8210 || <!--Audio-->{{unk|HDaudio with codec}} || <!--USB-->{{maybe|FCH USB EHCI OHCI}} || <!--Ethernet-->{{Maybe|rtl8169 but LAN/VGA Combo Port Cable (AK.LAVGCA 001) or MiniCP port to Acer Converter Cable (Mini CP to VGA/LAN/USB) (NP.OTH11 00C) needed}} || <!--Wireless-->{{unk|Atheros 9k AR9565}} || <!--Test Distro-->Aros One || <!--Comments-->2012 64bit but no sse4 or avx - 26w battery internal, extension possible - 11.6in 1366 x 768 ips touchscreen - 7mm hd ssd - 2gb ddr3l soldered with 1 slot free max 4GB - bios hacking needed for virtualisation -
|-
| <!--Name-->Packard Bell EasyNote TE69 TE69KB 522 || <!--Chipset-->slow E1-2500, E2-3800 2c2t Dual or A4-5000 4c4t Quad both soldered BGA769 (FT3) on Hudson-2 FCH || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe|Use IDE mode}} setting AHCI to IDE mode - boots if UEFI set to Legacy || <!--Gfx-->{{Maybe|VESA 2D for ATI Radeon 8120 8240, 8320, 8330 or 8280 islands}} || <!--Audio-->{{Yes|HDAudio with ALC282 0x10ec, 0x0282 codec but not HDMI}} || <!--USB-->{{Yes|Bios, Boot, set Boot mode to Legacy, nothing from USB3}} || <!--Ethernet-->{{No|Atheros AR8171 AR8175 or Broadcom BCM57780}} || <!--Wireless-->{{unk|Atheros AR9565 0x1969 0x10a1}} || <!--Test Distro-->Aspire OS Xenon and AROS One 1.6 usb || <!--Comments-->2013 64bit with sse4.1 and AVX - 15.6in washed out screen big netbook - Boots with noacpi after using F2 to enter EFI firmware and f12 boot device - 2 ddr3 sodimm slots max 16Gb -
|-
| <!--Name-->ASPIRE Acer Aspire ES1-520 521 522 Series N15C4 ES1-523 || <!--Chipset-->AMD AMD E1-7010, A8-7410 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{partial|VESA for RADEON R5}} || <!--Audio-->{{no|Realtek ALC 233 or CX20752 HD AUDIO CODEC}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{no|Atheros AR8151 Gigabit or Broadcom 590x}} || <!--Wireless-->{{no|Realtek RTL8187 or 8812BU}} || <!--Test Distro-->Aros One || <!--Comments-->2015 64bit with sse4.1 and AVX - 2 ddr3l slots - keyboard connected to top case -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Nitro 5 an515-42 || <!--Chipset-->Ryzen 2500u || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->AMD rx560x || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2018 64bit -
|-
| <!--Name-->aspire 3 A315-41 || <!--Chipset-->Ryzen 2500u || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->AMD Vega || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2018 64bit -
|-
| <!--Name-->swift 3 sf315-41 || <!--Chipset-->Ryzen 2500u || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->AMD Vega || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2018 64bit -
|-
| <!--Name-->Acer Aspire 3 A315-23 || <!--Chipset-->AMD Ryzen 3020e, r3 3200u || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D for AMD || <!--Audio-->{{unk|HDAudio with codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe| }} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2019 64bit -
|-
| <!--Name-->Aspire 3, 5 A515-44-R0ZN || <!--Chipset-->AMD Ryzen 5 4500u || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D for AMD Radeon || <!--Audio-->{{unk|HDAudio with ALC codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2020 64bit - 14in or 15.6" 1080p - 19v round charging - [https://www.youtube.com/watch?v=vr0tC3QJWxk repair], 4gb soldered with 1 ddr4 sodimm slot -
|-
| <!--Name-->Swift 3 SF314-42 series N19C4 , Swift SF315-4 || <!--Chipset-->Ryzen 5 4500U, 7 4700U|| <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D for AMD || <!--Audio-->{{unk|HDAudio with codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2020 64bit 1080p - small round ac 19v 3.42A or usb-c - mobo FH4FR LA-J731P -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->Acer Swift 3 SF314-43, Swift SF315-41 || <!--Chipset-->Ryzen 7 5700U || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D for AMD || <!--Audio-->{{unk|HDAudio with codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2021 64bit 1080p - small round ac or usb-c -
|-
| <!--Name-->Aspire 5 A515-45 || <!--Chipset-->r7 5700U || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->AMD || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2021 64bit - 15.6in 1080p - asus round ac -
|-
| <!--Name-->Aspire 5 A515-47 || <!--Chipset-->ryzen 5 5625U, || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->AMD || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2021 64bit - 15.6in 1080p - asus round ac -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
====Asus====
[[#top|...to the top]]
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->Asus L8400-K Medion MD9467 || <!--Chipset-->Intel desktop 850MHz || <!--IDE--> || <!--SATA--> || <!--Gfx-->S3 Savage MX || <!--Audio-->{{No|ESS allegro 1988}} || <!--USB--> || <!--Ethernet-->Realtek 8139 || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2001 32bit
|-
| <!--Name-->Asus L2000 L2400 L2D Series Medion 9675 || <!--Chipset-->Athlon 4 mobile || <!--IDE--> || <!--SATA--> || <!--Gfx-->use vesa sis630 || <!--Audio-->{{No|sis7018}} || <!--USB--> || <!--Ethernet-->sis900 || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2002 32bit
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->x51R X51RL || <!--Chipset-->Duo T2250 T2330 with RS480 || <!--IDE--> || <!--SATA-->{{N/A}} || <!--Gfx-->{{Maybe|use VESA RC410 [Radeon Xpress 200M]}} || <!--Audio-->{{Yes|HD with codec}} || <!--USB-->{{Maybe|boots and detects}} || <!--Ethernet-->{{Yes|RTL-8139}} || <!--Wireless-->{{No|Atheros AR5006EG AR5111 ath5k AzureWave AW-GE780 - could be ATI Chipset}} || <!--Test Distro-->Icaros 2.2, deadwood 2021, || <!--Comments-->2003 32bit 15.4 WXGA - 19v barrel - ESC boot select - F2 bios -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Asus R2H Ultra Mobile PC UMPC || <!--Chipset-->Celeron 900Mhz 910GML || <!--IDE--> || <!--SATA--> || <!--Gfx-->GMA900 || <!--Audio-->Ac97 ALC880 || <!--USB--> || <!--Ethernet-->realtek 8169 8101e || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2004 32bit [https://www.youtube.com/watch?v=Jm4fOrqyj3g boots]
|-
| <!--Name-->Asus A3 series A3F Ergo Ensis 211 RM || <!--Chipset-->P-M 1.6GHz to Core Duo with 950 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel 945 || <!--Audio-->Ac97 ALC655 || <!--USB--> || <!--Ethernet-->Realtek 8100CL 10/100 || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2004 32bit only
|-
| <!--Name-->Z33 || <!--Chipset-->915 || <!--IDE--> || <!--SATA--> || <!--Gfx-->915GM || <!--Audio-->HD Audio ALC880 || <!--USB--> || <!--Ethernet-->Realtek 8139 || <!--Wireless-->Intel 2915ABG || <!--Test Distro--> || <!--Comments-->2005 32bit Z33A Z33AE N5M N5A
|-
| Z70A Z70V Z70Va M6A z7000 z7000a || i915 + ICH6 || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{yes|mobile 915GML}} || <!--Audio-->{{no|ICH6 HD Audio}} || <!--USB-->{{yes|USB2.0}} || <!--Ethernet-->{{no|Marvell 88E8001}} || {{no|Intel PRO 2200BG Fn / F2}} || Icaros 1.3 || 2005 32bit
|-
| [http://www.progweb.com/en/2010/09/linux-sur-un-portable-asus-a6jm/ A6jm] A6JC || 945GM || IDE || SATA || {{yes|nVidia GeForce Go 7600 G70}} || {{no|HD Audio}} || {{yes|USB}} || {{yes|RTL8111 8168B}} || {{no|Intel 3945 ABG}} || Icaros 1.2.4 || 2006 32bit only
|-
| <!--Name-->F3Jc || <!--Chipset-->945PM || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->G72M Quadro NVS 110M, GeForce Go 7300 || <!--Audio-->D audio || <!--USB--> || <!--Ethernet-->realtek 8169 8111 || <!--Wireless-->Intel 3945 || <!--Test Distro--> || <!--Comments-->2007 32bit -
|-
| <!--Name-->X50GL F5GL || <!--Chipset-->T5800 with 965 || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe}} || <!--Gfx-->{{Maybe|use VESA 2d - Nvidia 8200M G84 runs hot}} || <!--Audio-->{{No|HD Audio MCP79 with codec}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No|MCP79}} || <!--Wireless-->{{No|Atheros AR5B91 AW-NE77}} || <!--Test Distro-->Icaros 2.2 || <!--Comments-->2008 64bit not much support no display with nouveau - 19v barrel - ddr2 max 4gb -
|-
| <!--Name-->ASUS G50 & G51 series G50V G50Vt G51V G51VX G51J G51Jx G50VT X1 X5 ROG || <!--Chipset-->AMD64 with MCP71 || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes}} || <!--Gfx-->nVidia GeForce 9800M GS (G94M) up to GT200 [GeForce GTX 260M] (G92M) || <!--Audio-->Nvidia HD Audio with codec || <!--USB--> || <!--Ethernet-->{{No|Atheros L1C atl1c}} || <!--Wireless-->Atheros G or Intel || <!--Test Distro-->Icaros 2.3 || <!--Comments-->2009 64bit not all GPUs are failing but a much higher % failing early, 8x00 and 9x00 G84, G86, G92, G94, and G96 series chips dying - ddr2 max 4gb -
|-
| <!--Name-->M50V M50 series || <!--Chipset-->Intel Core 2 Duo P8400 or T9400 with Intel PM45 ICH9 || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|BIOS set to compatibility IDE mode}} || <!--Gfx-->NVIDIA GeForce 9600M GS or 9650M GT || <!--Audio-->HDAudio with Realtek ALC663 || <!--USB-->USB2 || <!--Ethernet-->{{Yes|rtl8169 realtek 8169 8111C}} || <!--Wireless-->{{unk|Intel 5100 or Atheros AR928X}}|| <!--Test Distro-->AROS One 2.0 USB || <!--Comments-->2009 64bit - 15.40 inch 16:10, 1680 x 1050 glossy - the "Infusion" design - heavy 3kg - ddr2 ram max 4gb -
|-
| <!--Name-->Series F9 F9E F9dc F9f F9j F9s || <!--Chipset-->965GM || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{maybe|Vesa}} || <!--Audio-->{{yes|HD Audio ALC660 playback}} || <!--USB-->{{yes|works}} || <!--Ethernet-->{{yes|RTL8169 }} || <!--Wireless-->{{no|intel 3495 not working}} || <!--Test Distro-->Icaros 1.41 || <!--Comments-->2009 64bit - ddr2 max 4gb -
|-
| P52F SO006X || i3-370M || IDE || SATA || {{yes|nVidia G92 [GeForce 9800 GT] (2D)}} || {{no|Intel HD Audio}} || {{yes|2 USB2.0}} || {{no|Atheros AR8121 AR8113 AR8114 (l1e)}} || {{dunno}} || Icaros 1.3 || 2010 64bit - ddr3 slot -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Asus
* X53U MB Ver K53U or K52U Asus K53U MB Ver K53U
* A53U XT2 X53B MB ver: K53BY (compal)
|| <!--Chipset-->Slow atom like speed E-350 (2011), E-450 (2011) on AMD M780G, much slower C-50 C50 (2012), C-60 C60 on the AMD A50M dark brown plastic build || <!--IDE-->{{N/A|}} || <!--SATA-->{{yes|Set IN Bios IDE MODE}} || <!--Gfx-->{{Maybe|use VESA ATi 6310M, 6320M later 6250M or 6290M}} || <!--Audio-->{{Yes|HD audio with alc269 codec Altec Lansing® Speakers}} || <!--USB-->{{Yes|3 x USB2}} || <!--Ethernet-->{{Unk|rtl8169 with RTL8111 phy}} || <!--Wireless-->{{unk|Atheros half height ar9285}} || <!--Test Distro-->2016 Icaros 2.1.2 and 2018 AROS One 1.6 USB || <!--Comments-->2011 64bit does not support AVX or SSE 4.1 - 15.6in 1368 x 768 dull 50% srgb screen - f2 bios setup, esc boot drive - 5200 or 7800 mAh battery covers ASUS K53S K53E X54C X53S K84L X53SV X54HR K53F X53U laptops - 2 DDR3L slots max 8Gb - 19v barrel 5.5 / 2.5 mm -
|-
| <!--Name-->Asus K53T, Asus A53Z X53Z
|| <!--Chipset-->AMD A4-3305M on AMD M780G, A6-3420M dark brown plastic build || <!--IDE-->{{N/A|}} || <!--SATA-->{{yes|Set IN Bios IDE MODE}} || <!--Gfx-->{{Maybe|VESA 2D for AMD 6520G, 7670M}} || <!--Audio-->{{Yes|HD audio with codec}} || <!--USB-->{{Yes|3 x USB2}} || <!--Ethernet-->{{Yes|rtl8169 with RTL8111 phy}} || <!--Wireless-->{{No|Atheros half height}} || <!--Test Distro-->AROS One USB || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 - 15.6in 1368 x 768 dull 50% srgb screen - f2 bios setup, esc boot drive - 2 DDR3L slots max 8Gb - 19v barrel 5.5 / 2.5 mm - Altec Lansing® Speakers -
|-
| <!--Name-->X55U X401U X501U 1225B || <!--Chipset-->slow C-60 C60, C-70 C70 or E1 1200 E2 1800 || <!--IDE--> || <!--SATA--> || <!--Gfx-->6290G || <!--Audio-->{{No| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->Realtek 8111 8169 || <!--Wireless-->{{unk| Atheros AR9485}} || <!--Test Distro--> || <!--Comments-->2013 64bit does not support AVX or SSE 4.1 - 11.6" display - ram soldered -
|-
| <!--Name-->Asus A43TA A53TA K53TA XE2 A73T || <!--Chipset-->AMD A4-3300M, A6 3400M (laptop chip) || <!--IDE-->{{N/A|}} || <!--SATA-->{{yes|Set IN Bios IDE MODE}} || <!--Gfx-->{{Maybe|use VESA AMD Radeon HD 6520G Integrated + HD 6470M (1GB GDDR3)}} || <!--Audio-->{{yes| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{Unk|}} || <!--Wireless-->{{No|Atheros}} || <!--Test Distro--> || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 - f2 bios setup, esc boot drive -
|-
| <!--Name-->X102BA || <!--Chipset-->Llano E1 1200 || <!--IDE-->{{N/A}} || <!--SATA-->{{yes|ide bios setting}} || <!--Gfx-->Radeon HD 8180 || <!--Audio-->{{No| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->RTL8101E RTL8102E || <!--Wireless-->{{unk| Qualcomm Atheros AR9485}} || <!--Test Distro--> || <!--Comments-->2013 64bit does not support AVX or SSE 4.1 - 10.1” Touchscreen - special asus 45w ac adapter -
|-
| <!--Name-->K55N, K75DE || <!--Chipset-->AMD a6 4400M A8 4500M || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->AMD 7640G || <!--Audio-->HD Audio with ALC codec none through ATi Trinity HDMI || <!--USB-->{{maybe| }} || <!--Ethernet-->rtl8169 || <!--Wireless-->{{unk| Atheros AR9485}} || <!--Test Distro--> || <!--Comments-->2013 64bit does support AVX or SSE 4.1 - 17.3-inch -
|-
| <!--Name-->X452EA X552EA F552E || <!--Chipset-->AMD E1 2100 or A4 5000M A8 4500M A10 4600M with A || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{Maybe|use VESA for AMD ATI Sun XT Radeon HD 8330 8670A 8670M 8690M}} || <!--Audio-->{{Yes|AMD FCH Azalia rev 02 with ALC898 codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{{Yes|Realtek RTL8111 8168 8411}} || <!--Wireless-->{{unk|Atheros AR9485}} || <!--Test Distro-->2016 Icaros 2.1 || <!--Comments-->2013 64bit may support avx kabini trinity -
|-
| <!--Name-->Asus X555Y || <!--Chipset-->AMD A6-7210 A8-7410 || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|2.5" and mSATA form factors using SATA Rev 3.0 interface }} || <!--Gfx-->{{Maybe|VESA 2D for AMD R5}} || <!--Audio-->{{unk|HD Audio codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{Maybe|rtl8169 Realtek}} || <!--Wireless-->{{no| }}Realtek || <!--Test Distro--> || <!--Comments-->2015 64bit does support AVX or SSE 4.1 - 4gb soldered with 1 ddr3 slot - silver-colored plastic - internal battery -
|-
| <!--Name-->Asus X555B X555DG X555S X555U X555YI X555LAB || <!--Chipset-->Intel Core i5-4210U to || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|2.5" and mSATA form factors using SATA Rev 3.0 interface }} || <!--Gfx-->{{Maybe|VESA 2D for Intel}} || <!--Audio-->{{No|HDAudio with coxenant and realtek alc codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{Maybe|Realtek}} || <!--Wireless-->{{no| }}Realtek || <!--Test Distro--> || <!--Comments-->2015 64bit does support AVX or SSE 4.1 - 4gb soldered with 1 ddr3 slot - silver-colored plastic - internal battery -
|-
| <!--Name-->Asus X555D || <!--Chipset-->AMD A10-8700P || <!--IDE-->{{N/A}} || <!--SATA-->{{unk|2.5" and mSATA form factors using SATA Rev 3.0 interface }} || <!--Gfx-->{{Maybe|VESA 2D for AMD R6}} || <!--Audio-->{{unk|HD Audio codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|Realtek}} || <!--Wireless-->{{No|Realtek}} || <!--Test Distro--> || <!--Comments-->2016 64bit - 15.6in 1366 x 768 - 4gb soldered with 1 ddr3 slot - silver-coloured plastic - internal battery - keyboard swap problematic -
|-
| <!--Name-->ASUS X555Q || <!--Chipset-->AMD® Bristol Ridge A10-9600P 7th Gen, A12-9720p || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|2.5" and mSATA form factors using SATA Rev 3.0 interface}} || <!--Gfx-->{{Maybe|R5 + Radeon™ R6 M435DX Dual Graphics with VRAM GCN 3}} || <!--Audio-->{{unk| }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no|Realtek 8821AE}} || <!--Test Distro--> || <!--Comments-->2017 64bit - FHD 15.6 1920x1080 - 37W battery internal - 4gb soldered with 1 ddr3 slot - internal battery -
|-
| <!--Name-->ASUS M509ba || <!--Chipset-->AMD A9-9425 || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|2.5" and mSATA form factors using SATA Rev 3.0 interface}} || <!--Gfx-->{{Maybe|Vesa 2d for RADEON R5}} || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{No| }} || <!--Test Distro--> || <!--Comments-->2020 64bit - 15.6in 1366 x 768 - 1 ddr4 sodimm slot max 16Gb - 19VDC 2.37A Max 45W 4.0mm x 1.35mm - keyboard swap problematic -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->ExpertBook P1410, ASUS ExpertBook P1 P1510CD, Expertbook Y1511CD || <!--Chipset-->Ryzen 3 3200U, Ryzen 5 3500U || <!--IDE-->{{N/A}} || <!--SATA-->Nvme || <!--Gfx-->{{Maybe|Vesa 2d for AMD}} || <!--Audio-->{{unk|HDaudio with codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{No| }} || <!--Test Distro--> || <!--Comments-->2019 64bit 14in or 15.6in 768p to 1080p - keyboard swap problematic - 19V 3.42A asus barrel connector 4.0MM X 1.35MM 4phi -
|-
| <!--Name-->ASUSTeK ASUS EXPERTBOOK L1 L1400CDA, L1500CDA - 19v 3.42a 4.5phi Barrel with centre pin Outer 4.5mm Inner 3mm asus special untested EXA1203XH, EXA1203YH, EXA1208UH, PA-1650-30, PA-1650-78, PA-1650-93, ADP-65GD B, ADP-65DW B (Euro) || <!--Chipset-->'''tested''' Ryzen 5 3500U - '''untested''' Ryzen 3 3200U, 3250U || <!--IDE-->{{N/A}} || <!--SATA-->{{no|1 Nvme m.2 slot will not boot with sata3 m.2, optional 1 sata hdd with ribbon cable, no dvd drive}} || <!--Gfx-->{{Maybe|Vesa 2d for AMD vega 3, 8}} || <!--Audio-->{{unk|HDaudio 0x15de 0x15e3 with ALC256 codec 0x10ec 0x0256}} || <!--USB-->{{maybe|USB3 1 usb-c and 3 usb-a }} || <!--Ethernet-->{{maybe|rtl8169 Realtek RTL8111HSH-CG }} || <!--Wireless-->{{No| }} || <!--Test Distro-->3500U with AROS One 64bit 1.2 usb installed to m.2 sata on another machine || <!--Comments-->2019 64bit 14in or 15.6in 1080p - keyboard swap problematic - up to 8Gb ddr4 sodimm soldered on board and 1 slot - micro sd card slot on some models - 42Whr B31N1915 C31N1915 C31N2204 - hold down F2 and press power for bios setup -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
==== Dell ====
[[#top|...to the top]]
Order of build quality (Lowest to highest)
<pre >
Studio
Inspiron
Vostro
XPS
Alienware
Precision
Latitude
</pre >
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="10%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="5%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->Latitude CP 233GT, CPi d233xt d266xt D300XT a366xt, CPt S400GT S500GT S550GT S600GT S700ST, CPt C333GT C400GT || <!--Chipset-->Neo Magic || <!--IDE--> || <!--SATA--> || <!--Gfx-->Use VESA - Neo magic Magic Media 2160 2360 256ZX || <!--Audio-->{{No|crystal pnp 4237b or magic media 256zx sound nm2360}} || <!--USB-->USB 1.1 || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{N/A}} || <!--Test Distro--> || <!--Comments-->1998 32bit Low-Density 16-chip 144p 144-pin 32Mx64 3.3V SODIMM -
|-
| <!--Name-->Dell Latitude CPx H450GT H500GT H Series, CPt V433GT V466GT V600, Inspiron 5000 || <!--Chipset-->Intel 440BX with Pentium 3M (CPx) or Celeron (CPt) || <!--IDE-->{{{Yes| }} || <!--SATA-->{{N/A| }} || <!--Gfx-->{{Maybe|Use Vesa - ATi Rage Pro Mobility M1}} || <!--Audio-->{{No|ESS ES1978 Maestro 2E Canyon 3D}} || <!--USB-->{{Yes|1 slot 1.1 only}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{N/A| }} || <!--Test Distro-->NB May 2013 || <!--Comments-->1998 32bit - 3 pin PA-6 PA6 power adapter plug - CDROM DVD Cxxx family media bay accessories untested
|-
| <!--Name-->Latitude C500 C600 (Quanta TM6) Inspiron 4000 7500, CPx J Series || <!--Chipset-->440BX ZX/DX || <!--IDE-->{{yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{partial|ATI Rage 128Pro Mobility M3 (VESA only)}} || <!--Audio-->{{no|ES1983S Maestro 3i}} || <!--USB-->{{yes|USB 1.1 only}} || <!--Ethernet-->{{N/A|some models had mini pci e100}}|| <!--Wireless-->{{N/A|a few came with internal antenna wiring}} || <!--Test Distro--> || <!--Opinion-->1999 square 3 pin charger PA9 PA-9 - C/Dock II untested - C/Port untested - Parallel to Floppy cable untested - CPx J600GT J650GT J700GT J750GT J800GT J850GT
|-
| <!--Name-->Latitude C510 C610 Insprion 4100 PP01L 2600 || <!--Chipset-->i830 and 1GHz+ P3-M || <!--IDE-->{{yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{partial|use VESA - ATI Radeon Mobility M6}} || <!--Audio-->{{No|AC97 CS4205}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{yes|3Com Etherlink}} || <!--Wireless-->{{Maybe|internal antenna wiring for an Atheros mini pci card}} || <!--Test Distro--> || <!--Opinion-->2000 poor build quality - hard to find in good working order
|-
| <!--Name-->Latitude C400 || <!--Chipset-->Intel 830 || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|use VESA Intel 830 CGC}} || <!--Audio-->{{No|ac97 Crystal 4205}} || <!--USB--> || <!--Ethernet-->{{Yes|3Com 3c905C TX/TX-M}} || <!--Wireless-->{{N/A| }} || <!--Test Distro--> || <!--Comments-->2000 Slim for the time - no media bays
|-
| <!--Name-->Latitude C640 (Quanta TM8) C840 Inspiron 8k2 8200 i8200 precision m50 || <!--Chipset-->P4M with 845EP || <!--IDE--> || <!--SATA--> || <!--Gfx-->use VESA if ATi - use nouveau if 64mb Nvidia Gforce 4 440 Go || <!--Audio-->AC97 CS4205 || <!--USB--> || <!--Ethernet-->3com 905c || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2001 C640 had one fan so was noisy and hot - C840 had 2 fans and ran slightly cooler but fan noise louder
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| Latitude D400 || P-M 82845 || {{yes|82801 ide}} || {{N/A}} || {{partial|VESA only}} || {{yes|AC97 Audio playback only}} || {{maybe|USB 2.0}} || {{maybe|PRO 100 VM (KM)}} || {{no|BCM4318 AirForce one 54g replace with atheros 5k mini pci}} || <!--Test Distro--> Icaros 1.2.4 || 2003 32bit might boot from USB stick but won't boot from USB-DVD - no sd card slot - power plug style -
|-
| Latitude D500 / D505 PP10L, Inspiron 510m
|| 855GME
* revA00
* revA03
* revA06
| {{yes|IDE but needs the Dell adapter}} || {{N/A}} || {{partial|855GM Gfx (VESA only)}} || {{Yes|Intel AC97 with IDT STAC 9750 codec playback head phones only}} || {{maybe| }} || {{yes|Intel PRO 100 VE}} || {{no|Broadcom BCM4306 but exchange with atheros g in panel on laptop bottom}} || <!--Test Distro-->2016 Icaros 2.1.1 || 2003 - 14 / 15 inch XGA 4:3 screen - plastic build - no sd card slot - boots from bay optical drive - not powering on/off with ac adapter is a [http://www.geekzone.co.nz/forums.asp?forumid=37&topicid=30585 mobo fault of PC13 SMT 1206 ceramic cap hot] suggest [http://www.die4laser.com/D505fix/ 0.1uF 50V instead] - pc2700 333Mhz ram 1Gb max -
|-
| Latitude D505 (some) || VIA VT8237 VX700 || {{yes|IDE}} || || {{partial|VESA 2d on ATI RV350 Radeon 9550}} || {{no|VIA AC97 with codec}} || {{maybe|VIA USB glitchy}} || {{yes|VIA VT6102 Rhine-II}} || {{no|Intel 2200g Calexico2}} || <!--Test Distro--> || 2003 32bit little support - diagnostics pressing holding the Fn key, press the Power ON button (battery removed). Check the LEDs pattern - cmos battery behind flap in laptop battery slot -
|-
| <!--Name-->Inspiron 1000 || <!--Chipset-->SIS || <!--IDE--> || <!--SATA-->{{N/A}} || <!--Gfx-->{{maybe|use VESA SIS}} || <!--Audio-->{{Yes|AC97 SIS with AD1981B codec playback}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{Yes|SIS 900 but}} || <!--Wireless-->{{N/A}} || <!--Test Distro-->2016 Icaros 2.1 || <!--Comments-->2004 32bit [https://forum.level1techs.com/t/my-time-with-icaros-desktop-and-what-i-am-doing-as-a-dev-contributor-also-some-other-shit/113358 aremis using it]
|-
| <!--Name-->Inspiron 1100 PP07L || <!--Chipset-->845 || <!--IDE-->{{Yes| }} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Maybe|use VESA Intel 845G}} || <!--Audio-->{{Yes|AC'97 playback}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{Maybe|Broadcom 4401}} || <!--Wireless--> || <!--Test Distro-->Icaros 1.5 || <!--Comments-->2004
|-
| <!--Name-->Inspiron 8500 5150 || <!--Chipset-->P4 855GM || <!--IDE-->{{Yes| }} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Yes|Nvidia 5200 Go - VESA if intel gfx}} || <!--Audio-->{{Yes|MCP AC97 with SigmaTel 9750}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{Yes|Broadcom 440x}} || <!--Wireless-->{{No|Broadcom 4306 rev 02 use Atheros Mini PCI}} || <!--Test Distro-->Icaros 2.3 || <!--Comments-->2004 32bit P4 runs well but hot
|-
| Latitude X300 PP04S small, slim and light case
|| 855GME
* revA00 Intel ULV 1.2 Ghz
* revA01 Intel ULV 1.4Ghz
| {{yes|IDE internal and will boot cd/dvd through dock PR04S}} || {{N/A}} || {{partial|855GM Gfx (VESA only)}} || {{Yes|Intel AC97 with STAC 97xx codec but no audio out of the dock}} || {{maybe|works but dock usb ports and usb DVD PD01S not detected}} || {{No|Broadcom BCM5705M gigabit}} || {{no|Broadcom BCM4306 later intel - replace with atheros in the underside}} || <!--Test Distro-->2016 Icaros 2.1.1, 2020 AROS One 1.6 usb, || 2003 12.1" 1024 x 768 - 19.5v PA-10 or PA-12 dell - ACPI works but bad s3 ram suspend sleep - no sd card boot - 1Gb max sodimm ddr 2700
|-
| <!--Name-->Latitude D600 (Quanta JM2) PP05L - 600m
|| <!--Chipset-->82855 PM i855
* reva00
* revA01
* revA02
* revA03
* revA04
| <!--IDE--> {{yes}} || <!--SATA--> {{N/A}} || <!--Gfx-->{{Maybe|Use VESA - ATI Radeon RV250 Mobility FireGL 9000}} || <!--Audio-->{{Yes|AC97 - STAC 9750}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{no|Broadcom BCM5705}} || <!--Wireless-->{{no|Intel 2100 or Broadcom BCM4306 - swap for Atheros panel in base}} || <!--Test Distro-->2011 Icaros 1.3 and [http://www.amiga.org/forums/archive/index.php/t-62187.html 1.4.1 and 2016 2.1.1] || <!--Opinion-->2003 32bit 14inch using pc2100 memory with Caps light blinking is usually a memory error - Dell D505 D600 power up pressing the case docking port -
|-
| <!--Name-->Latitude D600 (Quanta JM2) || <!--Chipset-->82855 PM i855 || <!--IDE--> {{yes}} || <!--SATA--> {{N/A}} || <!--Gfx-->{{Yes|2D only vidia NV28 GeForce4 Ti 4200 Go 5200 Go 5650 Go}} || <!--Audio-->{{Yes|AC97 - STAC 9750}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{no|Broadcom BCM5705}} || <!--Wireless-->{{no|Broadcom BCM4306 mini pci - swap for Atheros}} || <!--Test Distro--> Icaros 1.3 and [http://www.amiga.org/forums/archive/index.php/t-62187.html 1.4.1] || <!--Opinion-->2003 32bit 14" - solder joints on the bios chip (press down f7/f8 keys) - RAM clean with eraser - memory cover plate maybe apply some pressure -
|-
| <!--Name-->D800 (Compal LA-1901) || <!--Chipset-->Intel 855 || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio-->AC97 || <!--USB-->{{maybe| }} || <!--Ethernet-->Broadcom 570x || <!--Wireless-->Broadcom 4309 || <!--Test Distro--> || <!--Comments-->2004 32bit - trackpoint type pointing device -
|-
| <!--Name-->D800 || <!--Chipset-->Intel 855 || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{No|Nvidia }} || <!--Audio-->AC97 || <!--USB-->{{maybe| }} || <!--Ethernet-->Broadcom 570x || <!--Wireless-->Broadcom 4309 || <!--Test Distro--> || <!--Comments-->2004 32bit 15inch 39cm
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Inspiron 1200 2200 PP10S Latitude 110L m350 1.3Ghz || <!--Chipset-->Intel 915GM || <!--IDE--> {{yes|UDMA boots cd or DVD and installs to HDisk}} || <!--SATA--> {{N/A}}|| <!--Gfx-->{{yes|Intel GMA900 (2D and 3D openGL 1.x) Gearbox 56}} || <!--Audio-->{{yes|Intel AC97 playback only}} || <!--USB-->{{maybe|USB 2.0}} || <!--Ethernet-->{{yes|Intel PRO 100 VE}} || <!--Wireless-->{{no|BroadCom BCM4318 - swap for Atheros mini PCI in base panel}} || <!--Test Distro-->Icaros 1.4.5 || <!--Comments-->2005 single core 32bit 14" 4:3 1024 768 XGA screen - heavy 6 lbs - PA16 barrel 19V 3.16A AC adapter - battery life 4cell 29WHr lasts 2 hours - 256mb soldered with 1 ddr pc2100 sodimm 1gb max -
|-
| <!--Name-->Inspiron 1300 business B130 home PP21L Latitude 120L B120 by Compal - Inspiron 630m || <!--Chipset-->Intel Celeron M360 1.4GHz, M370 1.50 GHz, M380 1.73GHz || <!--IDE-->{{Yes|boots cd or DVD and installs to HDisk}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Yes|GMA 915 2D and 3D openGL 1.x tunnel 172 gearbox 70}} || <!--Audio-->{{Yes|HD Audio playback ear phones only}} || <!--USB-->{{maybe|works but waiting boot fail with AROS One usb version}} || <!--Ethernet-->{{Yes|Broadcom 440x}} || <!--Wireless-->{{No|intel 2200 or BCM4318 swap for Atheros mini pci underside - one antenna lead for main wifi}} || <!--Test Distro-->2016 Icaros 2.1.2, 2020 AROS One 1.6 usb, || <!--Comments-->2005 32bit single core - 14.1″ XGA 4:3 or 15.4" WXGA wide 1280 x 800 matte - ddr2 sodimm ram 2gb max - PA-16 19v psu tip 7.4mm * 5mm - f10 boot select f1 f2 bios
|-
| Latitude X1 PP05S || PP-M GMA915 rev A00 1.1GHz non-pae || {{yes|ide 1.8in zif/ce under keyboard}} || {{N/A}} || {{Maybe|Vesa for Intel 915GM}} || {{yes|AC97 6.6 playback only with STAC codec}} || {{maybe|USB 2.0 but partial boot to blank screen}} || {{No|Broadcom 5751}} || {{no|Intel 2200BG - swap for Atheros mini pci under keyboard palm rest - disassembly of all laptop}} || <!--Test Distro-->Icaros 2.3 dvd iso image virtualbox'd onto usb, Aros One 1.5 and 1.8 usb (2022) || 2005 32bit 12.1" 4:3 1024 x 768 - sd slot not bootable - 256mb soldered to board and 1 sodimm max 1GB ddr2 under keyboard - F12 bios boot F2 - pa-17 pa17 19v octagonal psu port
|-
| Latitude D410 PP06S
*rev A00
*A01, A02
*A03
|| GMA915 1.6GHz Pentium® M 730, 1.7GHz, 750 1.86GHz & 760 2.0GHz, 770 2.13GHz || {{yes|caddy and adapter needed 2.5" - remove hdd and write}} || {{N/A}} || {{Yes|Intel 915GM 2D and 3D OpenGL 1.3 tunnel 170 and gearbox 75}} || {{yes|AC97 playback only with STAC 9751 codec}} || {{maybe|works but will not boot from USB-DVD or AROS One 1.5 usb version}} || {{No|Broadcom 5751}} || {{no|Intel 2915ABG or later 2200BG - swap for Atheros mini pci under keyboard}} || <!--Test Distro-->2015 Icaros 1.4, 2016 2.1.1 and AROS One 1.5 usb, || 2005 32bit 12.1" 4:3 1024 x 768 - no sd card slot - PR06S dock base
|-
| <!--Name-->Latitude D510 (Quanta DM1) || <!--Chipset-->915GM socket 479 || <!--IDE--> {{N/A}} || <!--SATA--> {{partial|IDE mode}}|| <!--Gfx-->{{yes|Intel GMA 915 2D and 3D}} || <!--Audio-->{{Yes|AC97 STAC 975x}} || <!--USB--> {{maybe|USB 2.0}} || <!--Ethernet-->{{no|Broadcom BCM5751}} || <!--Wireless-->{{no|Intel PRO Wireless 2200BG swap Atheros mini pci in base}} || <!--Test Distro--> || <!--Comments-->2005 14.1" 32bit single core Intel Celeron M 1.6GHz Pentium M 730 1.73Ghz - squarish 3:2 - issues with 3rd party battery 4 quick flashes of red led with 1 final green
|-
| <!--Name-->Latitude D610 (Quanta JM5B) PP11L
|| <!--Chipset-->910GML 915GM with mobile 1.6 to 2.26ghz
* Rev A0x
* Rev A0x
* Rev A07 1.73Ghz
| <!--IDE--> {{N/A}} || <!--SATA--> {{partial|IDE mode}}|| <!--Gfx-->{{yes|Intel GMA 915 2D and 3D tunnel 174 gearbox 74}} || <!--Audio-->{{yes|Intel AC97 speaker head phones playback only with stac codec}} || <!--USB--> {{maybe|USB 2.0}} || <!--Ethernet-->{{no|Broadcom BCM5751}} || <!--Wireless-->{{no|Intel 2200BG or Broadcom mini pci under keyboard, swap wifi card for atheros 5k}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2005 32bit 14" 1024 x 768 - very noisy clicky trackpad buttons - one dimm slot under keyboard and other in underside 2GB 533Mhz 667Mhz DDR2 max -
|-
| <!--Name-->Latitude D610 (Quanta JM5B) 0C4717 REV A05, 0K3879 REV.A00 || <!--Chipset-->915GM || <!--IDE--> {{N/A}} || <!--SATA--> {{partial|IDE mode}}|| <!--Gfx-->{{Maybe|Use VESA 2d - Ati X300 no radeon 2d}} || <!--Audio-->{{yes|Intel AC97}} || <!--USB--> {{maybe|USB 2.0}} || <!--Ethernet-->{{no|Broadcom NetXtreme 57xx Gigabit replace with Atheros 5k}} || <!--Wireless-->{{no|Intel PRO Wireless 2200BG mini pci use Atheros 5k}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2005 32bit 14" 1024 x 768 - very noisy clicky trackpad buttons - 19.5v psu
|-
| <!--Name-->Latitude D810 (Quanta ) || <!--Chipset-->915GM || <!--IDE-->{{Yes| }} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Maybe|Use VESA 2d - Ati X300 RV370 M22 later x600}} || <!--Audio-->{{yes|Intel AC97 stereo playback only idt 9751 codec}} || <!--USB--> {{maybe|USB 2.0 but no boot from usb on 1.5}} || <!--Ethernet-->{{no|Broadcom NetXtreme 57xx Gigabit}} || <!--Wireless-->{{no|Intel PRO Wireless 2200BG mini pci replace with Atheros 5k}} || <!--Test Distro-->2017 Icaros 2.1.1, aros one 1.5 || <!--Comments-->2005 32bit 15.4" F12 one time boot menu - 19.5v 90w psu ideal - battery not same as later dx20 ones -
|-
| <!--Name-->Inspiron 6000 6400, E1505 PP20L
*A00 Pentium M
*A0? Core Duo
|| <!--Chipset-->GM945 with PM 1.73Ghz, T2050 or T2060 || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe|}} || <!--Gfx-->{{Maybe|vesa 2d - Ati 9700, x1300 RV515 M52, x1400 or nvidia go 7300 on mxm board}} || <!--Audio-->{{yes|HD Audio IDT 9200}} || <!--USB-->{{Yes|usb boot }} || <!--Ethernet-->{{Yes|Broadcom BCM4401 B0}} || <!--Wireless-->{{No|Intel 2200 3945 - swap for Atheros 5k}} || <!--Test Distro-->2016 Icaros 2.1, AROS One 1.6 || <!--Comments-->2006 mostly 32bit - 15.4 inch glossy - 2 ddr2 sodimm slots - broadcom bcm92045 bluetooth detected but no support - 19.5v dell psu socket - f2 bios setup, f12 boot order -
|-
| <!--Name-->Inspirion E1705 9200 9300 9400 PP12L PP14L || <!--Chipset-->945GM || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->proprietary Dell card/socket format Nvidia 6800, ati X300 or nVidia 7900GS gpu 3d corrupt || <!--Audio-->{{Maybe| }} || <!--USB-->{{Maybe| }} || <!--Ethernet-->{{Maybe|Broadcom BCM4401}} || <!--Wireless-->Intel 3945 swap with Atheros 5k mini pcie || <!--Test Distro--> || <!--Comments-->2006 [http://amigaworld.net/modules/news/article.php?mode=flat&order=0&item_id=6481 increasing vertical lines issues] 32bit -
|-
| <!--Name-->Studio XPS M1210 || <!--Chipset-->GM945 with Core Duo to intel C2D T5500, T7400 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->nVidia G72M 7300 7400m || <!--Audio-->HD Audio IDT 92xx || <!--USB-->{{Maybe| }} || <!--Ethernet-->{{Maybe|Broadcom BCM4401 B0}} || <!--Wireless-->{{No|Broadcom BCM4311 - swap for Atheros 5k mini pci-e}} || <!--Test Distro--> || <!--Comments-->2006 64bit - 2 ddr2 slots max 4Gb -
|-
| <!--Name-->Inspiron 1501 PP23LA Latitude 131L || <!--Chipset-->AMD Sempron 1.8GHz Turion MK-36 or X2 1.6Ghz TL-50 or TL-56 on ATI RS480 || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|Use VESA 2d - ATI 1150 (x300) RS482M Mobility Radeon Xpress 200}} || <!--Audio-->{{Yes|HD audio with stac 92xx codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{Maybe|Broadcom bcm 4401}} || <!--Wireless-->{{No|Broadcom bcm4311 replace with Atheros 5k}} || <!--Test Distro-->Icaros 1.5 || <!--Comments-->2006 64bit 15.4 inch matt 16:10 1280x800 WXGA -
|-
| <!--Name-->Inspiron 6400 (Quanta FM1)
*A00 Pentium M
*A0? Core Duo
*A08 Core2 Duo
|| <!--Chipset-->GM945 with BGA479 (socket M) T2050 1.6Ghz, T2060 1.60Ghz, T2080 1.73Ghz much later T5500 1.66Ghz || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{Yes|GMA 2D and 3D}} || <!--Audio-->{{Yes|HD Audio with IDT 92xx codec}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{Yes|Broadcom BCM4401 B0}} || <!--Wireless-->{{No|Broadcom BCM4311 swap for Atheros 5k mini pci-e under keyboard}} || <!--Test Distro-->deadwood 2019-04-16 iso || <!--Comments-->2006 mostly 32bit - 15.4" glossy - sd card - front multimedia keys - dvd rw - generic dell keyboard - coin cr2032 bios battery under keyboard -
|-
| <!--Name-->Inspiron 640m PP19L XPS M140 e1405 || <!--Chipset-->Core Solo T2050, T2300 Duo 1.83GHz T2400 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel GMA 950 || <!--Audio-->HD Audio IDT || <!--USB--> || <!--Ethernet-->Broadcom BCM4401-B0 100Base || <!--Wireless-->{{No|Intel 3945 or Broadcom 43xx, swap for Atheros 5k - Wireless Internet ON or OFF press the Function key + F2}} || <!--Test Distro--> || <!--Comments-->2006 32 bit - 12.1 LCD CCFL WXGA 1280x800 up to 14.1 inch 16:10 1440x900 pixel, WXGA+ UltraSharp - supports also SSE3 on duos -
|-
| <!--Name-->Latitude D420 (Compal LA-3071P) PP09S
|| <!--Chipset-->945
* revA00 Solo 1.2Ghz ULV U1400
* revA01 Duo 1.06Ghz u2500
* revA02 Duo 1.2Ghz
| <!--IDE-->{{yes|ZIF/CE 1.8" slow under battery, ribbon cable}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{yes|Intel GMA950 - 2D and 3D opengl tunnel 138 gearbox 103}} || <!--Audio-->{{yes|HD Audio with STAC 92xx playback speakers head phones only)}} || <!--USB-->{{yes|2 and external usb optical drive works}} || <!--Ethernet-->{{no|Broadcom BCM5752}} || <!--Wireless-->{{No|Intel 3945 mini pcie - swap Atheros 5k in base panel}} || <!--Test Distro-->Icaros Desktop 1.4 || <!--Opinion-->2006 32bit only - 12.1" 1280x800 - PR09S dock base rev02 DVD-RW usb boots - 1GB DDR2 2Rx16 max in base panel - f2 setup f5 diagnostics f12 boot list -
|-
| <!--Name-->Latitude D520 PP17L
|| <!--Chipset-->
* 64bit rev A01, A02 945GM Core2 Duo 1.83Ghz to 2.3Ghz
* 32bit rev A00, A01 940GML Solo later Duo T2400
| <!--IDE-->{{yes| Philips SDR089, Philips CDD5263, TEAC DW224EV, Optiarc AD-5540A, HL-DL-ST GSAT21N, TSSTcorp TS-L632D}} || {{Yes|bios sata set to ide mode}} || {{Yes|Intel GMA 900 series 2D and OpenGL1 3D tunnel 210 gearbox 153 teapot 27}} || {{Yes|HD audio with STAC 9200 codec}} || {{Yes|Boots and detects USB2.0}} || {{Yes|Broadcom 4400}} || {{No|Broadcom BCM4312 BCM4321 Dell 1390 / 1490 mini pcie - easy to replace with atheros 5k in base panel}} || <!--Test Distro-->Icaros 1.4 and 2.2 and both AROS One 1.8 and AROS One x64 1.1 USB boot || 2006 mostly 64bit 4:3 aspect ratio 14.1 (XGA 1024x768) or later 15 inches (XGA+ 1400 by 1050) - F2 enter bios F12 choose boot - 19.5v dell tip pa-12 charger - bios coin cell cr2032 battery socketed in base panel -
|-
| <!--Name-->Latitude D620 (Compal LA-2792) PP18L
|| <!--Chipset-->945GMS
* rev A00 all Core Duo's 32 bit
* rev A0x all Core 2 Duo's 64 bit
| <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->Intel GMA 950 (2D and 3D tunnel gearbox opengl1 || <!--Audio-->{{yes|HD Audio playback}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{no|Broadcom BCM5752}} || <!--Wireless-->{{no|Intel 3945 mini pcie swap with Atheros 5k}} || <!--Test Distro-->AspireOS Xenon || <!--Opinion-->2006 64bit AROS capable with later revisions - 14" 1280 x 800
|-
| <!--Name-->Latitude D620
|| <!--Chipset-->Intel i945
* revA00 all Core Duo's 32 bit
* revA01 all Core 2 Duo's 64 bit
| <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->Nvidia 7300, 7600 NVS 110M G72 || <!--Audio-->{{dunno|HD Audio with STAC 9200 codec}} || <!--USB--> || <!--Ethernet-->{{No|Broadcom BCM5752}} || <!--Wireless--> {{dunno}} || <!--Test Distro--> || <!--Opinion-->2007 1440x900 screen - LA-2792P Rev.2.0 - DT785 UC218 Fan/ Heatsink (64bit) -
|-
| <!--Name-->Latitude D820 (Quanta JM6)
|| <!--Chipset-->945GMS 940GML
* rev A00
* rev A01
| <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Yes|Intel GMA 2D and 3D tunnel 195 - 100? gearbox 156}} || <!--Audio-->{{Yes|HD Audio with STAC 9200 playback}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No|Broadcom BCM5752}} || <!--Wireless-->{{No|BCM4310 replace with mini pcie atheros 5k}} || <!--Test Distro-->2016 Icaros 2.1.2 || <!--Opinion-->2007 widescreen 15 inch 1280 x 800 matte - -
|-
| <!--Name-->Latitude D820 (Quanta JM)
|| <!--Chipset-->945GMS 940GML
* revA00
* revA01
| <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Maybe|Nvidia NVS 110M 120M G72}} || <!--Audio-->{{Yes|HD Audio STAC 9200}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No|Broadcom BCM5752}} || <!--Wireless-->{{No|BCM4310 swap with Atheros 5k mini pcie}} || <!--Test Distro--> || <!--Opinion-->2007 64bit 15.4 1650x1050 WXGA or WSXGA+ or 1920x1200 WUXGA -
|-
| <!--Name-->Dell Latitude D531 15" || <!--Chipset-->AMD Turion X2 TL56 or TL60 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{Maybe|Use VESA - ATi xpress X1270}} || <!--Audio-->HD Audio with IDT codec || <!--USB-->{{Maybe| }} || <!--Ethernet-->{{No|Broadcom 57xx}} || <!--Wireless-->Intel 3945 or Dell Wireless 1390, 1505 or BCM4311 mini pcie || <!--Test Distro--> || <!--Comments-->2007 64bit possible - no trackpoint - fails and goes wrong often -
|-
| <!--Name-->Latitude D430 PP09S
|| <!--Chipset-->945 with Core2 Duo C2D U7500 1.06GHz U7600 1.2GHz U7700 1.33GHz
* rev A00
* rev A01
* rev A02
| <!--IDE-->ZIF PATA IDE 1.8inch under battery and ribbon cable - slow use USB instead || <!--SATA-->{{N/A}} || <!--Gfx-->{{yes|945GML 2D and 3D opengl 1.x 171 tunnel 105 gearbox}} || <!--Audio-->{{yes|STAC 92xx HD Audio speaker and ear phone - mono speaker}} || <!--USB-->{{yes|3 }} || <!--Ethernet-->{{no|Broadcom BCM5752}} || <!--Wireless-->{{no|Intel 4965 AGN or 3945 ABG mini pci-e underside with Atheros 5k mini pci-e}} || <!--Test Distro-->Aspire 1.8 || <!--Comments-->2007 64bit capable - sd card not supported - 19.5v PA12 power adapter - 12.1" 1280x800 matte - f2 setup f5 diagnostics f12 boot list -
|-
| <!--Name-->Latitude D530 || <!--Chipset-->GM965 + ICH8 || <!--IDE-->{{N/A}} || <!--SATA-->{{partial|IDE mode}}|| <!--Gfx-->{{partial|nVidia Quadro NVS 135M 2D 3d glitches G86}} || <!--Audio-->{{partial|HD Audio with STAC 9205 head phones only}} || <!--USB-->{{yes|USB 2.0}}|| <!--Ethernet-->{{no|Broadcom BCM5755M}} || <!--Wireless-->{{no|Intel PRO Wireless 3945ABG swap with Atheros 5k}} || <!--Test Distro-->Icaros 1.4.5 || <!--Comments-->2007 [http://amigaworld.net/modules/news/article.php?mode=flat&order=0&item_id=6481 ] cool air intake from underneath needed with pa-10 or pa-3e 90w psu required - standard 4:3 ratio aspect screen -
|-
| <!--Name-->Latitude D630 (Compal LA-3301P) PP18L
|| <!--Chipset-->GM965 + ICH8 T7250 2.0Ghz T7300
* revA00
* revA01
| <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{yes|Intel GMA X3100 (2D only, no external monitor)}} || <!--Audio-->{{yes|HD Audio STAC 9205 but speaker and head phones}} || <!--USB-->{{yes|4 USB 2.0}}|| <!--Ethernet-->{{no|Broadcom BCM5755M}} || <!--Wireless-->{{no|Broadcom BCM4312 swap with pci-e Atheros 5k under keyboard}} || <!--Test Distro--> || <!--Comments-->2007 64bit possible - F12 to choose boot option - 2 ddr2 sodimm max 4G - 4400mah 48Wh battery lasts 2 hours - 6600mah 73Wh lasts just over 3 hours
|-
| <!--Name-->Latitude D630
|| <!--Chipset-->GM965 + ICH8
* revA00 [http://amigaworld.net/modules/news/article.php?mode=flat&order=0&item_id=6481 ] GPU heatpad, no copper
* revA01 0DT785 heatsink
| <!--IDE-->{{N/A}} || <!--SATA-->{{partial|IDE mode}}|| <!--Gfx-->{{partial|use VESA as nVidia NVS 135M 3d corrupts 0.7 tunnel 0.25 gearbox G86}} || <!--Audio-->{{partial|HD Audio with STAC 9205 head phones only}} || <!--USB-->{{yes|USB 2.0}}|| <!--Ethernet-->{{no|Broadcom BCM5755M}} || <!--Wireless-->{{no|Intel PRO Wireless 3945ABG swap with Atheros 5k mini pcie}} || <!--Test Distro-->Icaros 1.4.5 || <!--Comments-->2007 64bit
|-
| <!--Name-->Latitude D830
|| <!--Chipset-->965GM with Core2
* revA00
* revA01
| <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{Yes|GM965 crestline 2d and 3d tunnel 115}} || <!--Audio-->{{Yes| }} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No| }} || <!--Wireless-->{{Maybe|replace with Atheros 5k mini pcie}} || <!--Test Distro-->Icaros || <!--Comments-->2007 15 inch 1280 x 900 but updating the LCD to WXGA or WSXGA+ could be better - 2 ddr2 sodimm -
|-
| <!--Name-->Latitude D830 || <!--Chipset-->ICH8, Core2 DUO T7800 @ 2.60GHz || <!--IDE-->{{N/A}} || <!--SATA-->Intel ICH8M Serial ATA || <!--Gfx-->nVidia Quadro NVS 140M G86 || <!--Audio-->{{yes|HD Audio with STAC 92XX codec}} || <!--USB-->{{yes|USB 2.0}} || <!--Ethernet-->Broadcom NetXtreme 57xx Gigabit || <!--Wireless-->Intel Wireless 4965AGN swap with Atheros 5k || <!--Test Distro-->Icaros 2.03 || <!--Comments-->2007 64bit 15." - FN,F2 or FN,F8 or FN,F12
|-
| <!--Name-->XPS M1710 || <!--Chipset-->945PM with T2400 T2600 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->proprietary Dell card socket format GTX 7950 || <!--Audio-->HD Audio with STAC 92XX codec || <!--USB--> || <!--Ethernet-->Intel 1000 or Broadcom BCM5752 || <!--Wireless-->Intel swap with Atheros 5k || <!--Test Distro-->Aros One 64bit || <!--Comments-->2007 64bit 17.3" workstation type WXGA+ screen 1920x1200 - 2 ddr-2 667Mhz sodimm slots,
|-
| <!--Name-->XPS M1730 || <!--Chipset-->965 with T7200 T7600 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->GTX 7950 || <!--Audio-->HD Audio with STAC 92XX codec || <!--USB--> || <!--Ethernet-->Intel 1000 || <!--Wireless-->Intel swap with Atheros 5k || <!--Test Distro--> || <!--Comments-->2008 64bit 17" workstation type WXGA+ screen manufactured by AU Optronics poor viewing angles, unevenly lit, light leakage, 2 ddr-2 800Mhz slots,
|-
| <!--Name-->Latitude E6410 P27LA, E6510 PP30LA, E6310 || <!--Chipset-->Intel Core i5-520M to i7-620M i7 820QM but no sse4.1 or AVX || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Maybe|NVidia NVS 3100M GT218 2D but 3D through external monitor}} || <!--Audio-->{{Maybe|HD Audio IDT 92HD81}} || <!--USB-->{{Yes|USB2 }} || <!--Ethernet-->{{No|Intel}} || <!--Wireless-->{{No|Broadcom or Intel 6200AGN or Link 6300}} || <!--Test Distro-->Icaros 1.3 || <!--Comments-->2010 64 bit - 14.1” WXGA+ up to 15.6in 15.6” FHD 1080p - 2 ddr3l 1333Mhz max 8Gb - 90w dell charger -
|-
| <!--Name-->Inspiron M5030 || <!--Chipset-->rev A01 AMD V120, V140 rev A0? V160 M880G || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE}} || <!--Gfx-->{{Maybe|VESA RS880M Radeon HD 4225, 4250}} || <!--Audio-->{{Yes|HD audio with ALC269q codec}} || <!--USB--> || <!--Ethernet-->{{No|Atheros AR8152 v2}} || <!--Wireless-->{{unk|Atheros AR9285}} || <!--Test Distro--> || <!--Comments-->2011 64bit does not support AVX or SSE 4.1 - DDR3 sodimm -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->E6420 E6520 ATG semi ruggized XFR || <!--Chipset-->sandy bridge i5 2520M 2540M or duo I7 || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|set to Bios UEFI mode AHCI}} || <!--Gfx-->{{Maybe|Intel HD 3000 with optional fermi Nvidia NVS 4200M GF119}} || <!--Audio-->{{Maybe|HD Audio with IDT 92HD90 BXX codec but not HDMI codec}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No|Intel}} || <!--Wireless-->{{No|Intel 6205}} || <!--Test Distro-->Icaros 2.03 || <!--Comments-->2011 64bit 15.6in - fan exhausts a lot of hot air when cpu taxed - VGA if Bios ATA set and Vesa only with Bios ACHI set -
|-
| <!--Name-->Inspiron M5040 || <!--Chipset-->slow amd E450, later C-50 C50 or C-60 C60 with A50M chipset || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|non efi sata in IDE mode but base plastic difficult to remove for access}} || <!--Gfx-->{{Maybe|use VESA AMD Radeon 6320, 6250 or 6290}} || <!--Audio-->{{Yes|HD Audio IDT}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{Yes|rtl8169 Realtek RTL8105E VB 10/100}} || <!--Wireless-->{{unk|Atheros AR9285}} || <!--Test Distro-->2016 icaros 2.1.1 and AROS USB 1.6 || <!--Comments-->2012 64bit 15INCH 1388 X 768 - f2 bios setup, f12 boot order - under removable keyboard via 4 top spring loaded catches is 1 ddr3l sodimm max 8gb and wifi -
|-
| Latitude e6230 E6330 E6430 || i3 3320M 3350M 2.8 GHz i5 3360M i7 3520M || {{N/A}} || {{partial|non RAID mode}} || {{partial|Intel HD 4000 (VESA only)}} || {{no|HD Audio}} || {{partial|Intel USB 3.0 (USB 1.1 2.0 only)}} || {{No|Intel 82579LM Gigabit}} || {{No|Broadcom BCM4313}} || <!--Test Distro-->Nightly Build 2014 09-27 || 2013 64bit Ivy Bridge - 12.5-inch 13.3-inch 14-inch screen - not great support, better under hosted -
|-
| <!--Name-->Dell Latitude 3330 || <!--Chipset-->Core i3 – 2375M to i5 – 3337U, Intel® Core i3 – 3227U, Celeron 1007U on HM77 || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->{{maybe|VESA 2d for intel Hd 2000 3000 vga hdmi}} || <!--Audio-->{{maybe|HDAudio with IDT 92HD93 Controller codec }} || <!--USB-->{{maybe|USB 3.0 (2), USB 2.0 PowerShare capable }} || <!--Ethernet-->{{no|Intel }} || <!--Wireless-->{{no|Intel }} || <!--Test Distro-->Deadwood usb3 test iso || <!--Comments-->2013 64bit, 13.3” HD 1366X768 16:9, 2 ddr3l slots max 8Gb, 720p HD video webcam,
|-
| <!--Name-->Inspiron 15 5565 5567 AMD versions, Inspiron 3595 || <!--Chipset-->AMD A6-9200u A9-9400 9425 A12-9700P Bristol Ridge || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata}} || <!--Gfx-->Radeon R5 R8 GCN 3 || <!--Audio-->{{No| }} || <!--USB-->{{partial| }} || <!--Ethernet-->{{maybe|Realtek 1GbE}} || <!--Wireless-->{{No| }} || <!--Test Distro--> || <!--Comments-->2017 64bit AVX2 - 15.6in 768p or 900p - there are intel versions avoid -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Latitude 5495, Inspiron 15 3585 || <!--Chipset-->Ryzen 2300U 2500U 2700U || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|NVMe or optional 2.5in sata if caddy and ribbon cable}} || <!--Gfx-->Radeon Vega 3 or 7 || <!--Audio-->{{No|HDAudio with Realtek ALC3246 aka ALC295 0x10ec, 0x0295 or ALC3263 aka ALC 0x10ec, 0x0 codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|Realtek}} || <!--Wireless-->{{No| }} || <!--Test Distro--> || <!--Comments-->2018 64bit - 14.0" FHD WVA 1080p (16:9) 220 nits or HD 768p - 2 ddr4 sodimm slots max 32gb - 68whr battery with 2pin cmos bios coin - DC 19.5V 4.62A (90W) or 19.5V 3.34W (65W) 5.0mm x 7.4mm PA12 charging adapter -
|-
| <!--Name-->Inspiron 3505, Vostro 3515 || <!--Chipset-->athlon 300u, Ryzen 3250u (2c4t) 3450u 3500u 3700u (4c8t), Athlon Silver (2c2t) Gold (2c4t) || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|up to 2 nvme with optional 2.5in sata ribbon connector}} || <!--Gfx-->{{Maybe|VESA 2D for Vega 8, 10}} || <!--Audio-->{{No|Realtek ALC3204, Cirrus Logic CS8409 (CS42L42 and SN005825)}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{No|RTL 8106E}} || <!--Wireless-->{{No|Realtek RTL8723DE}} || <!--Test Distro--> || <!--Comments-->2019 64-bit - 15.6inch - 2 ddr4 sodimm max 16G - avoid knocking usb-c charging whilst in use -
|-
| <!--Name-->Inspiron 5485 2-in-1 || <!--Chipset-->athlon 300u, Ryzen 3250u (2c4t) 3450u 3500u 3700u (4c8t), Athlon Silver (2c2t) Gold (2c4t) || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|nvme}} || <!--Gfx-->{{Maybe|VESA 2D for Vega 8, 10}} || <!--Audio-->{{No|Realtek ALC3204}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{No|Realtek RTL8723DE}} || <!--Test Distro--> || <!--Comments-->2019 64-bit - 14inch - 2 ddr4 sodimm max 16G - avoid knocking usb-c charging whilst in use -
|-
| <!--Name-->Latitude 3500, 3310, 3410, 3510, || <!--Chipset-->Intel Celeron-4205U, Pentium-5405U, Core i5 (8th Gen) i3-8145U, 8265U, i5-8365U || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|nvme}} || <!--Gfx-->{{Maybe|Vesa 2D for Intel UHD Graphics 610 or 620 hdmi}} || <!--Audio-->{{no|HDAudio with Realtek ALC}} || <!--USB-->{{maybe|USB3 usb-c usb-a}} || <!--Ethernet-->{{Maybe|rtl8169 RTL8111H}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2019 64bit - 14in or 15.6in 768p to 1080p 220nits - 65w - 2 ddr4 sodimm slots - rtc cr2032 cmos 2 pin -
|-
| <!--Name-->Inspiron 5405 || <!--Chipset-->AMD Ryzen 5 4500U || <!--IDE-->{{N/A}} || <!--SATA-->One M.2 2230/2280 nvme || <!--Gfx-->VESA 2D for AMD Radeon || <!--Audio-->{{No|HDAudio with Realtek ALC3204 codec}} || <!--USB-->{{maybe|USB3 }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{No| }} || <!--Test Distro--> || <!--Comments-->2020 64bit - 14" 1080p - dell round ac 19.50 VDC 4.50 mm x 2.90 mm 65W(19.5V-3.34A) round 4.5mm tip -
|-
| <!--Name-->Inspiron 5415, Inspiron 5515 || <!--Chipset-->AMD Ryzen 3 5300U, Ryzen 5 5500U, Ryzen 7 5700U || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|nvme}} || <!--Gfx-->VESA 2D for AMD Radeon || <!--Audio-->{{No|HDaudio with realtek ALC3254 codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2021 64bit 14" or 15.6in - avoid knocking usb-c charging whilst in use or use dell round ac 65W 4.5MM x 3.0MM - replacing keyboard not easy - 1 ddr4 sodimm -
|-
| <!--Name-->Vostro 3425, Vostro 3525, Vostro 5625 || <!--Chipset-->AMD Ryzen 3 5425U, Ryzen 5 5625U || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D for AMD Radeon || <!--Audio-->{{no|HDAudio with codec}} || <!--USB-->{{maybe|USB4}} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2021 64bit - 14in 15.6" to 16" FHD 1080p - dell round ac 65w 4.5MM x 3.0MM or avoid knocking usb-c charging whilst in use -
|-
| <!--Name-->Dell Inspiron 15 Model 3535, Inspiron 14 7435 || <!--Chipset-->AMD Ryzen 5 7520U, AMD Ryzen 5 7530U, 7 7730U || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->{{No| hdmi 1.4 but no gpmi}} || <!--Audio-->{{No|HDaudio with codec }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2024 64bit - 14.0" or 15.6" 1080p - dell round ac 65w 4.5MM x 3.0MM or usb-c charging - full sd card slot -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|}
====Fujitsu-Siemens====
[[#top|...to the top]]
Order of build quality (Lowest to highest)
<pre >
Amilo
Esprimo
Lifebook
</pre >
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="5%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->Fujitsu [http://www.labri.fr/perso/fleury/index.php?page=bug_transmeta FMV-Biblo Loox S73A (Japan P1100) LifeBook P1120 Biblo Loox T93C (Japan P2120) P2020] || <!--Chipset-->Transmeta Crusoe CPU TM5600 633MHz with Ali M1535 chipset || <!--IDE-->{{Yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->ATI Rage Mobility M with 4MB SDRAM || <!--Audio-->{{No|AC97 Ali M1535 + STAC9723 Codec}} || <!--USB-->USB 1.1 only || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{N/A}} || <!--Test Distro--> || <!--Comments-->1999 32bit 10" 1280 x 600 matte LCD - QuickPoint IV mouse - metal chassis with palm rest plastic - 15GB 2.5 inch drive and SR 8175 8X DVD-ROM drive -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Lifebook S7000 S7010 S7010D S2020 || <!--Chipset-->Pentium M 1.6 or 1.7GHz || <!--IDE-->{{Yes| }} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Maybe|use VESA - Intel 855}} || <!--Audio-->{{maybe|AC97 with STAC 9751T or 9767 codec}} || <!--USB--> || <!--Ethernet-->{{No|Broadcom}} || <!--Wireless-->{{No|Atheros, Broadcom or Intel 2200BG - FN,F10}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2002 32bit 14.1 inch with minimal support
|-
| <!--Name-->Lifebook e8010 || <!--Chipset--> || <!--IDE-->{{Yes| }} || <!--SATA--> || <!--Gfx-->{{Maybe|use VESA Intel 855GM}} || <!--Audio-->AC97 STAC9767 or ALC203 codec || <!--USB--> || <!--Ethernet-->{{No|Broadcom NetXtreme BCM5705M}} || <!--Wireless-->Intel PRO Wireless 2200BG || <!--Test Distro-->Icaros 1.3.1 || <!--Comments-->2002 32bit 15.1 inch
|-
| <!--Name-->Stylistic ST5000 ST5010 ST5011 ST5012 ST5020 ST5021 ST5022 || <!--Chipset-->1.0GHz P-M and later 1.1GHz on Intel 855GME || <!--IDE--> || <!--SATA-->{{N/A}} || <!--Gfx-->Intel 800 use VESA || <!--Audio-->Intel AC97 || <!--USB--> || <!--Ethernet-->Broadcom BCM5788 tg3 || <!--Wireless-->{{No|Intel 2200BG}} || <!--Test Distro--> || <!--Comments-->2003 32bit charged via a proprietary port power connector 16V 3.75A with wacom serial pen interface - indoor Screen transmissive 10.1 and later 12.1 XGA TFT -
|-
| <!--Name-->Amilo Pro V2010 || <!--Chipset-->VIA CN400 PM880 || <!--IDE--> || <!--SATA-->{{N/A}} || <!--Gfx-->{{No|S3 unichrome use VESA}} || <!--Audio-->{{No|VIA AC97 VT8237 with codec}} || <!--USB--> || <!--Ethernet-->Rhine 6102 6103 || <!--Wireless-->RaLink RT2500 || <!--Test Distro-->2017 Icaros 2.1.2 || <!--Comments-->2003 32bit boot mount - unknown bootstrap error then crashes
|-
| <!--Name-->Amilo Li 1705 CN896 || <!--Chipset--> with VIA P4M900 || <!--IDE--> || <!--SATA-->{{Maybe|IDE}} || <!--Gfx-->ATi || <!--Audio-->{{No|VIA VT8237 HD Audio with codec}} || <!--USB-->VT82xx 62xx || <!--Ethernet-->{{Yes|VIA Rhine}} || <!--Wireless-->{{No|Atheros G}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2005 32bit random freezes
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name--> Esprimo Mobile V5535 Skt mPGA 478MN
| <!--Chipset-->
| <!--IDE--> {{yes|IDE and EIDE}}
| <!--SATA--> {{maybe|IDE mode with SIS 5513}}
| <!--Gfx--> {{maybe|SiS 771 / 671 (VESA only)}}
| <!--Audio--> {{yes|HD Audio SIS968 SIS966 SI7012 with ALC268 codec}}
| <!--USB--> {{no|USB 1.1 and 2.0 issues}}
| <!--Ethernet--> {{no|SiS 191 gigabit}}
| <!--Wireless--> {{yes|Atheros AR5001 mini pci express}}
| <!--Test Distro-->aros one 1.5 usb
| <!--Comments-->2005 32bit 20v barrel - f2 setup f12 multi boot - random freezing short time after booting - chipset SIS 671MX -
|-
| <!--Name-->Amilo SI 1520 1521p || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Yes|GMA 2D}} || <!--Audio-->{{No|HD Audio Conexant codec}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{Yes|Intel Pro 100}} || <!--Wireless--> || <!--Test Distro-->Icaros 1.4.2 || <!--Comments-->2005 32bit - Set Bios option ATA Control Mode to Compatible
|-
| <!--Name-->Lifebook S7020 S7020D || <!--Chipset--> Pentium M 740 1.73MHz || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel 915 || <!--Audio-->HD Audio ALC260 codec || <!--USB-->{{Yes| }} || <!--Ethernet-->Broadcom BCM5751M Gigabit || <!--Wireless-->Intel PRO Wireless 2200BG or Atheros 5k || <!--Test Distro--> || <!--Comments-->2006 32bit
|-
| <!--Name-->Stylistic ST5030 ST5031 ST5032 || <!--Chipset-->1 to 1.2GHx Pentium M with 915GM || <!--IDE--> || <!--SATA-->{{N/A}} || <!--Gfx-->Intel 900 || <!--Audio--> || <!--USB-->{{Yes| }} || <!--Ethernet-->Marvell || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2006 32bit charged via a proprietary port power connector 6.0 x 4.4 mm round - 200 pin ddr2 ram
|-
| <!--Name-->Stylistic ST5110 ST5111 ST5112 || <!--Chipset-->945GM with 1.2GHz Core Duo and Core2 Duo || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->Intel 900 || <!--Audio-->HD audio with STAC9228 codec || <!--USB-->{{No| }} || <!--Ethernet--> || <!--Wireless-->Intel 3945 ABG or optional atheros || <!--Test Distro--> || <!--Comments-->2006 either 32 or 64 bit - charged via a proprietary port power connector 6.0 x 4.4 mm round - SigmaTel® touchscreen -
|-
| <!--Name-->E8110 S7110 E8210 || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Yes|945GM}} || <!--Audio-->{{Yes|HD Audio with ALC262 codec playback}} || <!--USB-->{{Yes}} || <!--Ethernet-->{{No|Marvell 88E8055 Gigabit}} || <!--Wireless-->{{No|Intel PRO Wireless 3945ABG}} || <!--Test Distro-->Icaros 2.0 || <!--Comments-->2006 32bit Core Duo
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || CHIPSET || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Lifebook PH521 || <!--Chipset-->AMD E-350 E-450 1.65GHz || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->HD 6310M 6320M || <!--Audio-->Realtek ALC269 || <!--USB-->{{No| }} || <!--Ethernet-->Realtek || <!--Wireless-->{{No|Atheros 802.11 bgn}} || <!--Test Distro--> || <!--Comments-->2011 64bit does not support AVX or SSE 4.1 - 11.6 inch 1366x768 pixels - DDR3 1066MHz -
|-
| <!--Name-->LIFEBOOK E752/E782/S752/S782 || <!--Chipset--> with Intel Core i3-2328M to i3-3110M || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->{{Maybe| }} || <!--Audio-->{{yes| }} || <!--USB-->{{yes| }} || <!--Ethernet-->{{no|Intel 82579V 1000 }} || <!--Wireless-->{{no|Intel Wireless 6205 may be able to swap for Atheros 5k }} || <!--Test Distro-->Aros One 64bit || <!--Comments-->2012 64bit
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
====HP Compaq====
[[#top|...to the top]]
Build quality (Lowest to highest)
<pre >
Presario
Pavilion
Omnibook
ProBook
Armada
Elitebook
</pre >
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->1c00 series Compaq Presario [http://users.utu.fi/sjsepp/linuxcompaqarmada100s.html Armada 100S made by Mitac], 1247 || <!--Chipset-->K6-II with PE133 MVP-4 || <!--IDE--> || <!--SATA--> || <!--Gfx-->use VESA - Trident Blade3D AGP sp16953 || <!--Audio-->VIA ac'97 audio [rev20] with AD1881A codec || <!--USB-->{{Maybe|usual VIA issues [rev10]}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{N/A}} || <!--Test Distro--> || <!--Comments-->1998 32bit 192MB max - PCcard Texas PC1211 no support - 1200 XL1 1200-XL1xx, XL101, XL103 XL105 XL106 XL109 XL110 XL111 XL116 XL118 XL119 XL125
|-
| <!--Name-->1c01 series Armada 110, Evo N150 || <!--Chipset-->Intel with VIA PLE133 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Use VESA - Trident Cyber Blade i1 chipset || <!--Audio-->VIA 686 rev20 82xxx 686a || <!--USB--> || <!--Ethernet-->Intel 82557 Pro 100 || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->1998 32bit max 192mb sodimm 100Mhz 133Mhz ram memory - 1200-XL405A 12XL405A XL502A 12XL502A 1600XL
|-
| Armada M300 M700 E500 || 440BX || {{Yes| }} || {{N/A}} || {{maybe|ATI Rage LT M1 Mobility (VESA only)}} || {{no|AC97 ESS Maestro 2E M2E ES1987 sound}} || {{yes|USB1.1 only}} || {{No|[http://perho.org/stuff/m300/index_en.html Intel PRO 100+ Mini PCI]}} || {{N/A}} || Aspire OS 2012, Nightly 30-01 2013 and 04-05 2013 || 1999 32bit - F10 bios options and Fn+F11 reset CMOS with 64mb ram already on board
|-
| <!--Name-->HP Omnibook XE3 || <!--Chipset-->Intel BX 600Mhz GC model 256mb or AMD GD 500Mhz || <!--IDE--> || <!--SATA--> || <!--Gfx-->Use VESA - S3 Inc. 86C270 294 Savage IX-MV (rev 11) || <!--Audio-->{{No|ESS ES1988 Allegro 1 (rev 12)}} || <!--USB-->Intel 82371AB PIIX4 USB (rev 01) || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{N/A}} || <!--Test Distro--> || <!--Comments-->2002 32bit no cardbus pcmcia support - no audio from Polk Audio Speakers -
|-
| <!--Name-->HP Omnibook XE3 || <!--Chipset-->82830 ICH3 P3-M 750MHz 800Mhz 900MHz || <!--IDE-->{{Yes| }} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Maybe|use VESA - CGC 830MG}} || <!--Audio-->{{No|ESS ES1988 Maestro 3i}} || <!--USB-->{{Yes|only one 1.1 port}} || <!--Ethernet-->{{Yes|e100 82557}} || <!--Wireless-->{{N/A|}} || <!--Test Distro-->Icaros 1.51 || <!--Comments-->2002 32bit Boots USB Stick via Plop boot floppy - Memory for GF 256-512mb, GS up 1GB
|-
| <!--Name-->TC1000 TC-1000 Tablet PC || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->NVIDIA NV11 [GeForce2 Go] (rev b2) || <!--Audio-->VIA AC97 Audio (rev 50) || <!--USB-->OHCI NEC USB 2.0 (rev 02) || <!--Ethernet-->Intel 82551 QM (rev 10) || <!--Wireless-->Atmel at76c506 802.11b || <!--Test Distro--> || <!--Comments-->2002 32bit Transmeta LongRun (rev 03) with VT82C686 - Texas Instruments TI PCI1520 PC card Cardbus
|-
| <!--Name-->HP Compaq R3000 ZV5000 (Compal LA-1851) || <!--Chipset-->Nvidia nForce 3 with AMD CPU || <!--IDE--> || <!--SATA--> || <!--Gfx-->Nvidia NV17 [GeForce4 420 Go 32M] || <!--Audio-->Nvidia || <!--USB--> || <!--Ethernet-->Broadcom or Realtek RTL8139 || <!--Wireless-->{{Maybe|Broadcom BCM4303 BCM4306 or Atheros bios locked}} || <!--Test Distro--> || <!--Comments-->2003 32bit - HPs have a setting to automatically disable wireless if a wired connection is detected
|-
| <!--Name-->Compaq [http://www.walterswebsite.us/drivers.htm Presario 700 series] || <!--Chipset-->VT8363 VT8365 [Apollo Pro KT133 KM133] || <!--IDE-->{{yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{maybe|VT8636A (S3 Savage TwisterK) (VESA only)}} || <!--Audio-->{{Maybe|VIA AC97 [rev50] with AD1886 codec}} || <!--USB-->{{maybe|VIA UHCI USB 1.1 [rev1a]}} || <!--Ethernet-->{{yes|RealTek RTL8139}} || <!--Wireless-->{{no|Broadcom BCM4306}} || <!--Test Distro--> || <!--Comments-->2003 32bit poor consumer grade level construction - jbl audio pro speakers - no support for cardbus pcmcia TI PCI1410 - 700A EA LA UK US Z 701AP EA BR FR 701Z 702US 703US AP JP audio sp18895 Sp19472
|-
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| N400c || P3-M 82845 || {{yes|82801 CAM IDE U100}} || {{N/A}} || {{maybe|Rage Mobility 128 (VESA only)}} || {{No|Maestro 3 allegro 1}} || {{yes|USB1.1}} || {{yes|Intel PRO 100 VM (KM)}} || {{N/A}} || Icaros 1.2.4 || 2003 32bit Has no optical disc drive
|-
| N410c || P3-M 82845 || {{yes|82801 CAM IDE U100}} || {{N/A}} || {{maybe|Radeon Mobility M7 LW 7500 (VESA only)}} || {{yes|Intel AC97 with AD1886 codec}} || {{yes|USB1.1}} || {{yes|Intel PRO 100 VM (KM)}} || {{N/A}} || Icaros 1.2.4 || 2003 32bit Has no optical disc drive
|-
| Evo N600c || Pentium 4 || {{yes|IDE}} || {{N/A}} || {{partial|ATI Radeon Mobility M7 (VESA only)}} || {{No|ESS ES1968 Maestro 2}} || {{yes|USB}} || {{yes|Intel PRO 100}} || {{dunno}} || Icaros 1.3 || 2003 32bit
|-
| Evo N610c || Pentium 4 || {{yes|IDE}} || {{N/A}} || {{partial|ATI Radeon Mobility M7 (VESA only)}} || {{yes|Intel ICH AC97 with AD1886 codec}} || {{yes|USB}} || {{yes|Intel PRO 100}} || {{dunno}} || Icaros 1.2.4 ||
|-
| N800c || P4 || {{Yes|IDE}} || {{N/A}} || {{partial|ATI Radeon Mobility 7500 (VESA only)}} || {{yes|AC97}} || {{yes|USB}} || {{yes|Intel PRO 100}} || {{N/A}} || Icaros 1.2.4 || 2003 32bit P4M CPU can get very warm
|-
| <!--Name-->NX7010 || <!--Chipset-->Intel || <!--IDE-->{{yes|IDE}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{partial|ATI mobility 7500 or 9000 Radeon 9200 64MB (VESA only)}} || <!--Audio-->{{yes|AC97 ADI codec}} || <!--USB-->{{yes|uhci (1.1) and ehci (2.0)}} || <!--Ethernet-->{{yes|Realtek 8139}} || <!--Wireless-->{{No|Intel 2200b bios locked}} || <!--Test Distro--> || <!--Comments-->2003 32bit
|-
| <!--Name-->Compaq Preasrio V5000 (Compal LA-2771) || <!--Chipset-->AMD Sempron 3000+ or Turion ML with SB400 || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|use VESA - Ati RS480M Xpress 200}} || <!--Audio-->{{No|AC97 ATI with Conexant CX 20468 codec}} || <!--USB--> || <!--Ethernet-->{{Yes|Realtek 8100 8101L 8139}} || <!--Wireless-->{{No|bcm4318 bios locked}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2004 64bit single core machine V5001 V5002 V5002EA V5003
|-
| <!--Name-->TC1100 TC-1100 Tablet PC || <!--Chipset-->855PM || <!--IDE--> || <!--SATA--> || <!--Gfx-->Nvidia Geforce4 Go || <!--Audio-->AC97 || <!--USB--> || <!--Ethernet-->{{Maybe|BCM 4400}} || <!--Wireless-->{{Maybe|Atheros wlan W400 W500 or ? bios locked}} || <!--Test Distro--> || <!--Comments-->2004 32bit
|-
| <!--Name-->NC6000 NC8000 NW8000 || <!--Chipset-->855PM with Pentium M 1.5 1.6 1.8GHz 2.0GHz || <!--IDE-->max 160 GB for NW 8000 || <!--SATA--> || <!--Gfx-->{{Maybe|Ati RV350 mobility 9600 M10 Fire GL T2 ISV use VESA 2D as no laptop display}} || <!--Audio-->{{Yes|Intel AC97 with ADI codec playback only}} || <!--USB-->{{Yes|2 ports}} || <!--Ethernet-->{{No|Broadcom BCM 5705M}} || <!--Wireless-->{{Maybe|mini pci Atheros 5212 BG W400 W500 or Intel - all bios locked}} || <!--Test Distro--> || <!--Comments-->2005 based [http://amigaworld.net/modules/newbb/viewtopic.php?topic_id=41916&forum=47 works] - Firewire TI TSB43AB22/A - 8 pound 2.5 kg travel weight - an SD slot as well as two PC Card slots - 15-inch UXGA screen (1,600 x 1,200) or 15" SXGA+ (1400 x 1050) (4:3 ratio)
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Compaq NC6110 NX6110 NC6120 NC6220 NC4200 NC8200 TC4200 || <!--Chipset-->GMA 915GML || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Yes|2D GMA 900}} || <!--Audio-->{{Yes|AC97 with ADI AD1981B playback}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{Unk|440x or BCM 5705M or 5751M}} || <!--Wireless-->{{No|Intel IPW 2200 bios locked}} || <!--Test Distro-->Icaros 1.5.2 || <!--Comments-->2005 32bit Sonoma based - Wifi with Atheros AR5007eg if apply hacked bios RISKY else use USB one - (INVENTEC ASPEN UMA MV) (INVENTEC ASPEN DIS PV) -
|-
| <!--Name-->Compaq C500 CTO aka HP G7000 || <!--Chipset-->Intel 945GM || <!--IDE--> || <!--SATA--> || <!--Gfx-->GMA 950 || <!--Audio-->HD Audio with realtek ALC262 codec || <!--USB--> || <!--Ethernet-->Realtek 8139 || <!--Wireless-->Broadcom BCM 4311 bios locked || <!--Test Distro--> || <!--Comments-->2005 32bit
|-
| <!--Name-->HP DV6000 || <!--Chipset-->945GMS || <!--IDE--> || <!--SATA--> || <!--Gfx-->GMA 950 || <!--Audio-->HD Audio IDT 92HD 91B || <!--USB--> || <!--Ethernet-->Intel PRO 100 VE || <!--Wireless-->{{No|Intel 3945 bios locked}} || <!--Test Distro--> || <!--Comments-->2006 32 bit only - Mosfet FDS6679 common cause of shorts giving no power to the tip. To reset adapter, unplug from AC (mains) and wait 15-30 sec. Then plug in again -
|-
| Presario F700 series, HP G6000 f730us F750 F750us F755US F756NR F765em || AMD Turion Mono MK-36 2.0Ghz NForce 560m or Twin X2 TK-55 with nForce 610m MCP67 || {{N/A| }} || {{Yes|but needs special sata adapt bit and caddy}} || {{Yes|GF Go 7000m 2D and 3D 640x350 to 1280x800 - ball solder issues due to poor cooling}} || {{Maybe| }} || {{Maybe|uhci and ehci boots}} || {{No|Nvidia }} || {{Yes|Atheros AR5007 bios locked}} || Icaros 1.3.1 and Aros One 1.6 USB || 2006 64bit - f9 boot device f10 bios setup - random freezes after a minutes use means internal ventilation maintenance needed each year essential - No sd card and overall limited phoenix bios options -
|-
| <!--Name-->Presario v6604au v6608au V3500 || <!--Chipset-->NVIDIA MCP67M with AMD Athlon64 X2 TK 55 amd 1.8ghz || <!--IDE--> || <!--SATA-->{{Yes|SATA 150}} || <!--Gfx-->NVIDIA GeForce Go 7150M 630i or C67 630M MCP67 || <!--Audio-->conexant codec || <!--USB--> || <!--Ethernet-->Nvidia or Realtek 10/100 || <!--Wireless-->{{No|Broadcom 4311 bios locked}} || <!--Test Distro--> || <!--Comments-->2006 64bit Altec Lansing Stereo Speakers - ball solder issues -
|-
| <!--Name-->Compaq presario v6610 v6615eo v6620us || <!--Chipset-->Turion 64 X2 mobile TK-55 / 1.8 GHz to athlon 64x2 @ 2.4ghz || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|SATA 150}} || <!--Gfx-->{{Yes|geforce 7150 or 7300m 2d and 3d}} || <!--Audio-->{{Yes|AMD HD Audio with IDT codec stereo playback only}} || <!--USB-->3 OHCI EHCI || <!--Ethernet-->{{Maybe| }} || <!--Wireless-->{{No|Broadcom bios locked}} || <!--Test Distro-->Icaros 1.3 - || <!--Comments-->2007 [http://amigaworld.net/modules/newbb/viewtopic.php?topic_id=40956&forum=48 works well] - 1 x ExpressCard/54 - SD Card slot - AO4407 test voltage of the Drain side (pins 5-8) with AC adapter and no battery, see 0 volts, connect the battery you should have 10-14v -
|-
| <!--Name-->v6630em v6642em || <!--Chipset-->nForce 630M with AMD Turion 64 X2 Mobile TL-58 || <!--IDE--> || <!--SATA--> || <!--Gfx-->NVIDIA GeForce 6150M or 7150M || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless-->{{No|Broadcom bios locked}} || <!--Test Distro--> || <!--Comments-->2007 64bit 15.4 in 1280 x 800 ( WXGA ) -
|-
| <!--Name-->HP Compaq NC6400 || <!--Chipset-->945GM Core Duo || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|GMA 950 2D issues and no 3d}} || <!--Audio-->{{No|HD Audio AD1981HD}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No|BCM }} || <!--Wireless-->{{No|Broadcom locked}} || <!--Test Distro-->Icaros || <!--Comments-->2007 - replaced with Atheros AR5007eg if apply hacked bios RISKY else use USB g -
* 32bit Core Duo T2400
* 64bit Core 2 Duo T5600 T7600
|-
| <!--Name-->HP Compaq NV NC6400 || <!--Chipset-->Core Duo + 945PM || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Maybe|use VESA Radeon x1300M (2D)}} || <!--Audio-->{{Maybe|HD Audio with ADI1981 low volume}} || <!--USB-->{{yes}} || <!--Ethernet-->{{no|BCM 5753M}} || <!--Wireless-->{{No|Intel 3945 ABG bios locked}} || <!--Test Distro--> Icaros 1.4.2 || <!--Opinion-->2007 Harmon Kardon speakers
|-
| <!--Name-->HP Compaq NC6320 || <!--Chipset-->945GM with
* 32bit Core Duo 1.83GHz T2400
* 64bit Core2 Duo 1.83GHz T5600
|| <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Yes|GMA 950 2D with a little 3D tunnel 213}} || <!--Audio-->{{Maybe|Intel HD Audio with AD1981HD codec}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No|BCM 5788}} || <!--Wireless-->{{No|Intel 3945 bios locked}} || <!--Test Distro-->Icaros 2 || <!--Comments-->2007 replaced with Atheros AR5007eg if applying hacked wifi bios RISKY!! else use USB - 14.1" or 15 inch XGA 1024x768 - noisy cpu fan for core2 - trackpad rhs acts as window scroller -
|-
| <!--Name-->HP NC4400 TC4400 Tablet || <!--Chipset-->Core Duo with 82945 chipset || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|bios F.07 limits to 100GB 120GB}} || <!--Gfx-->{{yes|2D and 3D 282 tunnel and gearbox 150}} || <!--Audio-->{{Yes|HD Audio with ADI 1981HD codec via ear phones}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{No|BCM 5753M}} || <!--Wireless-->{{No|Intel 3945 or BCM 4306 - Whitelist BIOS F.0C needed but risky}} || <!--Test Distro-->2017 Icaros 2.1.2 || <!--Comments-->2008 64 bit possible with Core2 - TI SD card reader non bootable - wacom serial digitiser pen not working -
* 32bit 1.86GHz core duo
* 64bit 2Ghz T7200, 2.16Ghz Core 2 Duo T7600 2.33GHz
|-
| <!--Name-->HP Pavilion DV2000 CTO || <!--Chipset-->945GMS || <!--IDE--> || <!--SATA--> || <!--Gfx-->GMA 950, X3100, Nvidia 8400M || <!--Audio-->HD Audio Conexant CX 20549 Venice || <!--USB--> || <!--Ethernet-->Nvidia MCP51 || <!--Wireless-->{{No|Broadcom BCM 4311 or Intel 3945 4965 ABG bios locked}} || <!--Test Distro--> || <!--Comments-->2008 Atheros AR5007eg if apply hacked bios RISKY
|-
| <!--Name-->Compaq Presario C700 || <!--Chipset-->GMA960 || <!--IDE--> || <!--SATA--> || <!--Gfx-->X3100 || <!--Audio-->HD Audio || <!--USB--> || <!--Ethernet-->RTL 8139 || <!--Wireless-->{{Maybe|Atheros AR5007 AR5001 AR242x}} || <!--Test Distro--> || <!--Comments-->2008
|-
| <!--Name-->Compaq 2510p 6510b 6710b 6910b || <!--Chipset-->GMA 965GM GL960 || <!--IDE-->{{yes| }} || <!--SATA--> || <!--Gfx-->{{yes|X3100 some 2d but slow software 3d only}} || <!--Audio-->{{maybe|HD Audio ADI AD1981 HD low volume on head phones}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{no|Intel 82566 or Broadcom BCM 5787M}} || <!--Wireless-->{{No|Intel 3945ABG or 4965ABG bios locked}} || <!--Test Distro-->Aspire OS Xenon 2014 || <!--Comments-->2008 no sd card boot support - F9 to choose boot option - [http://forums.mydigitallife.info/threads/7681-This-is-no-request-thread!-HP-COMPAQ-bioses-how-to-modify-the-bios/page111?p=333358#post333358 whitelist removal (risky) bios block for wifi card swap]
|-
| <!--Name-->CQ40 CQ41 || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|VESA Intel}} || <!--Audio-->HD Audio || <!--USB--> || <!--Ethernet-->Realtek RTL8101E || <!--Wireless-->{{No|Broadcom BC4310 bios locked}} || <!--Test Distro--> || <!--Comments-->2008
|-
| <!--Name-->Compaq Presario CQ35 CQ36 || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|VESA }} || <!--Audio--> || <!--USB--> || <!--Ethernet-->Realtek RTL8101E RTL8102E || <!--Wireless-->{{No|Broadcom BCM4312 bios locked}} || <!--Test Distro--> || <!--Comments-->2008 Compal LA-4743P -
|-
| <!--Name-->HP Compaq CQ42 CQ43 CQ45 || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|VESA }} || <!--Audio-->HD Audio with Coxenant codec || <!--USB--> || <!--Ethernet-->Realtek || <!--Wireless-->{{No|Realtek RTL8191SE, Realtek 8188CE}} || <!--Test Distro--> || <!--Comments-->2008 (Quanta AX1)
|-
| <!--Name-->Compaq Presario CQ50 CQ56 || <!--Chipset-->Nvidia MCP78S || <!--IDE--> || <!--SATA--> || <!--Gfx-->Geforce 8200M || <!--Audio-->nVidia HD Audio with codec || <!--USB--> || <!--Ethernet-->nvidia MCP77 || <!--Wireless-->{{unk|Atheros AR928X bios locked}} || <!--Test Distro--> || <!--Comments-->2008 [http://donovan6000.blogspot.co.uk/2013/06/insyde-bios-modding-wifi-and-wwan-whitelists.html bios modding risky] MCP72XE MCP72P MCP78U MCP78S
|-
| <!--Name-->CQ60 || <!--Chipset-->Single core Sempron to dual turion || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|VESA for Nvidia 8200M}} || <!--Audio-->{{yes|HD Audio}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{no| }} || <!--Wireless-->{{No| bios locked}} || <!--Test Distro--> || <!--Comments-->2008
|-
| <!--Name-->HP DV6700 || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{no|Vesa for Nvidia 8400M}} || <!--Audio-->{{no| }} || <!--USB-->{{no| }} || <!--Ethernet-->{{no| }} || <!--Wireless-->{{No|Intel }} || <!--Test Distro--> || <!--Comments-->2008 64bit -
|-
| <!--Name-->CQ60 || <!--Chipset-->Intel C2D || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|VESA for Nvidia 9200M}} || <!--Audio-->{{yes|HD Audio}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{no| }} || <!--Wireless-->{{No| bios locked}} || <!--Test Distro--> || <!--Comments-->2009 64bit -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->CQ57z || <!--Chipset-->AMD slow E-300 || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->{{Maybe|VESA ATi HD 6310 wrestler}} || <!--Audio-->{{unk| }} || <!--USB-->{{yes| }} || <!--Ethernet-->{{maybe|Realtek RTL8101 RTL8102}} || <!--Wireless-->{{No|RaLink RT5390}} || <!--Test Distro--> || <!--Comments-->2011 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name-->HP CQ58z 103SA E5K15EA || <!--Chipset-->AMD slow Dual-Core E1-1500 APU with A68M FCH || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->{{Maybe|VESA 2D for Radeon HD 7310}} || <!--Audio-->Realtek idt codec || <!--USB-->{{yes| }} || <!--Ethernet-->{{yes|Realtek 10/100 BASE-T}} || <!--Wireless-->{{No|Broadcom}} || <!--Test Distro--> || <!--Comments-->2011 64bit does not support AVX or SSE 4.1 - 39.6 cm (15.6") HD BrightView LED-backlit (1366 x 768)
|-
| <!--Name-->HP 635 DM1 || <!--Chipset-->AMD slow E-300, E-450 later E2-1800 on SB7x0 SB8x0 SB9x0 || <!--IDE-->{{N/A}} || <!--SATA-->ATI non efi SATA AHCI - IDE mode || <!--Gfx-->{{Maybe|use VESA 2D - AMD HD6310, 6320 to HD7340}} || <!--Audio-->{{Yes|Realtek ALC270A GR but not Wrestler HDMI Audio}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{Yes|rtl8169 driver covers Realtek RTL8101E RTL8102E}} || <!--Wireless-->{{unk|Atheros AR9285}} || <!--Test Distro--> || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 - 14" 1366 x 768 - f9 f10 - external battery - 2 stacked ddr3l sodimm slots max 16Gb under one base plate - removable keyboard -
|-
| <!--Name-->HP G6 2000-2b10NR 2000-2d10SX 2000-2d80NR || <!--Chipset-->AMD very slow E1-2000 E2-3000M on A50M (soldered) A4-3305A on A60M (socket) || <!--IDE-->{{N/A}} || <!--SATA-->2.5in || <!--Gfx-->{{Maybe|VESA AMD Radeon 6320, 6620G, 6520G, 6480G, 6380G}} || <!--Audio-->{{No| }} || <!--USB-->{{No| }} || <!--Ethernet-->{{maybe|Realtek 100 1000}} || <!--Wireless-->{{No|Realtek}} || <!--Test Distro--> || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 - 39.6-cm (15.6-in) HD LED BrightView (1366×768) - 1 or 2 ddr3l max 8G - 19VDC 3.42A Max 65W Tip 7.4mm x 5.0mm -
|-
| <!--Name-->HP ProBook 6465B || <!--Chipset-->AMD massively slow A6-3310MX or A6-3410MX with A60M || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->{{Maybe|VESA AMD 6480G or 6520G}} || <!--Audio-->{{No|IDT 92HD81B1X}} || <!--USB-->{{No| }} || <!--Ethernet-->{{maybe|rtl8169 Realtek 8111}} || <!--Wireless-->{{No|Intel AC 6205 or broadcom 4313 bios locked}} || <!--Test Distro--> || <!--Comments-->2013 64bit does not support AVX or SSE 4.1 - 13-inch or 14-inch runs hot -
|-
| <!--Name-->HP Elitebook 8470p 8570p || <!--Chipset-->Intel Quad i7-3840QM, i7-3610QM, i7-3520M, i5-3210M, i3-3130M, i3-2370M on Intel QM77 chipset || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|set the bios boot options to not fastboot and drive mode IDE rather than AHCI }} || <!--Gfx-->{{Maybe|Vesa 2d for HD4000 with some having switchable Radeon M2000 or 7570M}} || <!--Audio-->{{yes|HDAudio for IDT codec}} || <!--USB-->{{yes|USB2}} || <!--Ethernet-->{{No|Intel 82579LM }} || <!--Wireless-->{{No|Intel, Broadcom, Atheros}} || <!--Test Distro-->64 bit boots from CD* if safe mode 2 is used, although it is possible to remove the 'nodma' and 'debug' entries and boot || <!--Comments-->2013 64bit with SSE4.1 and AVX - 14in 1600 x 900 to 1366 x 768 - 2 DDR3L sodimm slots max 16Gb - TPM 1.2 - dual boot 32/64 bit is working fine -
|-
| <!--Name-->HP ProBook 6475b, Probook 4445s 4545s, HP Pavilion 15-b115sa, [https://support.hp.com/gb-en/document/c04015674#AbT6 HP mt41 Mobile Thin Client PC] || <!--Chipset-->AMD very slow A4 4300M, A6 4400M 4455M or A8 4500M with AMD A70M A76M FCH || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->{{Maybe|VESA 7420 7520G 7640G 7660G}} || <!--Audio-->{{no|HD Audio with idt or realtek codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{No|Realtek RTL8151FH-CG}} || <!--Wireless-->{{No|Intel 6205 or Broadcom BCM 43228 bios locked}} || <!--Test Distro--> || <!--Comments-->2014 64bit does support AVX or SSE 4.1 - 15.6-inch -
|-
| <!--Name-->HP ENVY 15-k112nl K1Y78EA || <!--Chipset-->Intel® Core™ i7 i7-4510U || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe| }} || <!--Gfx-->Intel HD4400 and/without NVIDIA® GeForce® GTX 850M || <!--Audio-->{{maybe| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{no| }} || <!--Wireless-->{{no| }} || <!--Test Distro-->Deadwood usb3 test iso || <!--Comments-->2014 64bit - 15.6" 768p to 1080p - 19.5V 3.33A/4.62A/6.15A 65W/90W/120W AC -
|-
| <!--Name-->HP ProBook 255 G1, 455 G1 F2P93UT#ABA, 645 G1, Envy 15-j151ea G7V80EA, Envy m6-1310sa (E4R01EA#ABU) || <!--Chipset-->AMD very slow Dual-Core E1-1500, or AMD Quad A4-4300M A8-4500M A10-4600M A4-5150M A6-5350M 2.9Ghz A10-5750M || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->{{Maybe|VESA 2D for 7310, 7420G 7520G 7640G 7660G 8350G 8450G or 8550G, 8650G, 8750G }} || <!--Audio-->{{No|HD Audio IDT 92HD91 codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|realtek}} || <!--Wireless-->{{No|Atheros}} || <!--Test Distro--> || <!--Comments-->2015 64bit does support AVX or SSE 4.1 - 14in and 15in 1366 x 768 - external battery - 2 ddr3l sodimm slots - 19.5v / 4.62A psu runs hot -
|-
| <!--Name-->HP ProBook 245 G4, 255 G2, 455 G2, 255 G3, 455 G3, 255 G4 80CB, 255 G5 82F6, 355 G2, HP Pavilion 15-p038na 15-g092sa 15-p091sa 15-G094S 15-p144na 15-p142na, 15-Af156sa || <!--Chipset-->AMD very slow A4-5000 A6-5200, E2-6110, E1-6010 E2-2000, E1-2100 E2-3800, A4-6210 A6-6310 A8-6410, E2-7110, A6-7310 A8-7410 APU on A68M || <!--IDE-->{{N/A}} || <!--SATA-->sata some with cdrw dvdrw || <!--Gfx-->{{Maybe|VESA Radeon R2 R4 R5}} || <!--Audio-->{{no|HD Audio ALC3201-GR}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 RTL8102E or Atheros 1GbE}} || <!--Wireless-->{{unk|Qualcomm Atheros AR9565}} || <!--Test Distro--> || <!--Comments-->2015 64bit most have SSE4 AVX but E2-2000 does not - 15.6-inch (1366 x 768) - 2 ddr3l sodimm slots - small 31Whr or 41Whr external battery covers 240 G4, 245 G4, 250 G4, 255 G4, 256 G4, 14G, 15G - keyboard repair swap requires removal of all components -
|-
| <!--Name-->HP Elitebook 725 G2, 745 G2, 755 G2 || <!--Chipset-->Amd Quad very slow A6-7050B A8-7150B 1.9GHz A10-7350B || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->{{Maybe|VESA on AMD R4 R5 Radeon R6 with DP and vga}} || <!--Audio-->{{No|HD audio with IDT 92HD91}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 PCIe GBE}} || <!--Wireless-->{{no|Broadcom or Atheros}} || <!--Test Distro--> || <!--Comments-->2016 64bit - 12.5-inch, 14" or 15.6in (all 1366 x 768) - 19.5V 65w 45W AC adapter - internal pull up tab battery under base which slides off - 2 ddr3l sodimm slots - keyboard swap requires removal of all components -
|-
| <!--Name-->HP ProBook 645 g2, Probook 445 G2, Probook 245 G2 most have cmos rtc battery || <!--Chipset-->AMD very slow A6-8600 A8-8700 a10- || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->{{Maybe|VESA 2D for Radeon R5 R6}} || <!--Audio-->{{No|HD Audio }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{No|Intel I219V 100/1000}} || <!--Wireless-->{{No|Intel or Qualcomm Atheros}} || <!--Test Distro--> || <!--Comments-->2016 64bit - 14in and 15.6-inch HD (1366 x 768) or FHD 1080p - 2 ddr3l sodimm slots max 16GB - internal battery - hp ac psu tip -
|-
| <!--Name-->HP Probook 455 G3 should have a cmos battery || <!--Chipset-->AMD slow A10-8700P || <!--IDE-->{{N/A}} || <!--SATA-->1 2.5in sata and most should have 9.5mm dvd-rw || <!--Gfx-->{{Maybe|VESA 2D for Radeon R5}} || <!--Audio-->{{No|HDAudio with Conexant CX7501 codec }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 Realtek RTL8111HSH-CG}} || <!--Wireless-->{{no|RTL8188EE }} || <!--Test Distro--> || <!--Comments-->2016 64bit - 2 ddr3l sodimm slots - keyboard swap problematic -
|-
| <!--Name-->HP Elitebook 725 G3, 745 G3, 755 G3, 725 G4, 745 G4, 755 G4, HP mt43 || <!--Chipset-->Amd slow A8-8600B, A10-8700B, A12-8800B to Quad A8 Pro 9600B to A10 9800 || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->{{Maybe|VESA on AMD R5 R6 R7 with DP and vga but screen is low res, dull colours, and blurry}} || <!--Audio-->{{No|HD audio with IDT codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{No|Broadcom 5762 PCIe GBE}} || <!--Wireless-->{{no|Realtek RTL8723BE-VB}} || <!--Test Distro--> || <!--Comments-->2016 64bit - 12.5-inch (1366 x 768) to 14" and 15.6in - 2 sodimm ddr3 - 19.5V 45W AC slim 4.5mm hp adapter - randomly shuts down and the noisy fans constantly on - keyboard swap problematic -
|-
| <!--Name-->HP ProBook 645 G3, 655 G3 should have a cmos rtc battery underside of mb || <!--Chipset-->AMD 8th Gen slow A10-8730B, A8-9600B (4c4t) A6-8530B (2c2t) || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->{{Maybe|VESA 2d for AMD R5}} || <!--Audio-->{{No|HD Audio}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 RTL8111HSH}} || <!--Wireless-->{{No|Intel or Realtek}} || <!--Test Distro--> || <!--Comments-->2016 64bit - 15.6in - 2 ddr4 sodimm slots - keyboard repair swap requires removal of all components -
|-
| <!--Name-->HP ProBook 250 G5 easy cmos and external main battery || <!--Chipset-->Intel i7-6500U, i5-6200U, i3-6100U to slow i3-6006U, N3710 all sse4.1 and avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe| }} || <!--Gfx-->{{maybe|VESA 2D for iGPU Intel HD405 to HD520 dGPU or AMD Radeon R5 430M}} || <!--Audio-->{{unk|HDAudio with Realtek ALC3227 (or ALC282) codec 0x0282 }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 rtl8111HSH}} || <!--Wireless-->{{no| }} || <!--Test Distro-->Deadwoods' latest usb3 test iso with noacpi || <!--Comments-->2016 64bit - 15.6 inch 768p - HP ac psu - 2 ddr4 sodimm slots -
|-
| <!--Name-->HP ProBook 250 G6 SL52 LA-E801P - easy cmos battery and external battery || <!--Chipset-->Intel tested '''7200U''' untested 7500U to slow N3060 || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|ahci on M.2 sata or 2.5in whichever installed with 1 m.2 permanent and internal dvdrw}} || <!--Gfx-->{{Maybe|VESA 2D for Intel Intel HD Graphics 620 or AMD Radeon 520}} || <!--Audio-->{{yes|HDAudio 0x8086, 0xa170 or 0x8086, 0x9dc8 with ALC3227 aka ALC282 codec 0x10EC, x0282}} || <!--USB-->{{maybe|intel sunrise point-lp USB3.0 xHCI}} || <!--Ethernet-->{{yes|rtl8169 Realtek RTL8111}} || <!--Wireless-->{{No|RTL8821CE or Intel wifi}} || <!--Test Distro-->Deadwoods' latest usb3 test iso with noacpi || <!--Comments-->2017 64bit 768p or 1080p - 19.5V 65W - 2 DDR4 sodimm slots max 16Gb - keyboard swap problematic - synaptics touchpad - poor hinges -
|-
| <!--Name-->HP Pavilion 14-BS, HP 15-BS LA-E802P cmos battery and external battery || <!--Chipset-->Intel i3-7200U to slow Celeron || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata 2.5in (possibly requires the drive cable and M.2 sata3, most have no cdrw dvdrw}} || <!--Gfx-->{{Maybe|VESA 2d for Intel}} || <!--Audio-->{{No|HDAudio 0x8086, 0x9d70 with ALC codec 0x10EC, x0}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|Realtek rtl8169}} || <!--Wireless-->{{No|RTL8188CTV, RTL8821CE or Intel Dual Band Wireless-AC 3168}} || <!--Test Distro-->Deadwoods' latest usb3 test iso || <!--Comments-->2017 64bit 768p all - 19.5V 65W - DDR4 slot max 8Gb - keyboard swap problematic - synaptics touchpad -
|-
| <!--Name-->HP 14-bw022na - cmos coin battery and external battery || <!--Chipset-->AMD very slow A6-9120 APU || <!--IDE-->{{N/A}} || <!--SATA-->m.2 sata || <!--Gfx-->{{Maybe|VESA 2D for R3}} || <!--Audio-->{{no|HDAudio VOID with conexant CX7501 codec}} || <!--USB-->{{maybe|USB3 not working but port on the right works}} || <!--Ethernet-->{{yes|Realtek GbE}} || <!--Wireless-->{{No|Realtek}} || <!--Test Distro-->Deadwoods' latest usb3 test iso with noacpi || <!--Comments-->2017 64bit 768p to 900p - keyboard swap problematic -
|-
| <!--Name-->HP Probook 455 G4, Probook 455 G5, cmos battery on underside of mb take off back cover and below wifi card || <!--Chipset-->AMD very slow A10-9600P APU, A9-9410, A6-9210 APU || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->{{Maybe|VESA Radeon R4, R5 or R6}} || <!--Audio-->{{No|HD }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|realtek 1GbE}} || <!--Wireless-->{{no|realtek or intel Wireless-AC 7265}} || <!--Test Distro--> || <!--Comments-->2017 64bit 15.6in 768p - 2 ddr4 sodimm slots - keyboard swap problematic - rr03xl battery -
|-
| <!--Name-->HP ProBook 255 G6 (), easy cmos and external battery || <!--Chipset-->AMD very slow E2-9000e, A9-9420, 9220P, A4-9125 (all 2c) AMD A6-9225 AMD A9-9425 || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata 2.5in (possibly requires the drive cable and M.2 sata3 and internal cdrw dvdrw}} || <!--Gfx-->{{Maybe|VESA 2d for R2 R3 R4}} || <!--Audio-->{{No|HDAudio 0x1022, 0x157a or 0x1002, 0x15b3 with ALC codec 0x10EC, x0}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|Realtek rtl8169}} || <!--Wireless-->{{No|RTL8188CTV, RTL8821CE or Intel Dual Band Wireless-AC 3168}} || <!--Test Distro--> || <!--Comments-->2017 64bit 768p all - 19.5V 65W - DDR4 slot max 8Gb - keyboard swap problematic - synaptics touchpad -
|-
| <!--Name-->HP ProBook 255 G7 (la-g078p) - no cmos battery so needs internal battery || <!--Chipset-->AMD very slow E2-9000e, A9-9420, 9220P, A4-9125 (all 2c) AMD A6-9225 AMD A9-9425 || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata 2.5in (possibly requires the drive cable and M.2 sata3, most have no internal cdrw dvdrw}} || <!--Gfx-->{{Maybe|VESA 2d for R2 R3 R4}} || <!--Audio-->{{No|HDAudio 0x1022, 0x157a or 0x1002, 0x15b3 with ALC codec 0x10EC, x0}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|Realtek rtl8169}} || <!--Wireless-->{{No|RTL8188CTV, RTL8821CE or Intel Dual Band Wireless-AC 3168}} || <!--Test Distro--> || <!--Comments-->2017 64bit 768p all - 19.5V 65W - DDR4 slot max 8Gb - keyboard swap problematic - synaptics touchpad -
|-
| <!--Name-->ProBook 245 g8 - no cmos rtc coin battery but uses internal battery || <!--Chipset-->AMD very slow A6-9225, A4-9125, A6-8350B, A4-5350B APU || <!--IDE-->{{N/A}} || <!--SATA-->m.2 sata || <!--Gfx-->{{Maybe|VESA R4 R6}} || <!--Audio-->{{no|HDAudio}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|Realtek GbE}} || <!--Wireless-->{{No|Realtek}} || <!--Test Distro-->Deadwoods' latest usb3 test iso || <!--Comments-->2017 64bit 768p - many later variants - keyboard swap problematic -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Probook 255 G7 84AE 7DE72EA 7DE73EA (epv51 la-g076p) - CMOS Error (502) replace main internal battery HT03XL to have bios remember settings || <!--Chipset-->Ryzen 3 2200U 2300U (2c4t), R5 2500U, R7 2700U (4c8t) Raven Ridge || <!--IDE-->{{N/A}} || <!--SATA-->{{no|M.2 (Sata or NVMe) and very optional 2.5in sata, most have mini sata port}} || <!--Gfx-->{{Maybe|VESA 2d 640p to 768p for AMD Vega 3, 6, or 8}} || <!--Audio-->{{unk|HDAudio 0x1022, 0x15e3 with ALC236 0x10ec, 0x0236 codec}} || <!--USB-->{{maybe|USB3 }} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no|Realtek RTL8821CE, 8822BE or Intel AC 8265}} || <!--Test Distro-->AROS x64 deadwoods' iso does not boot with cd/dvd and installed to 2.5in ssd, boots to grub choice, select but no further and reboots || <!--Comments-->2017 64bit - 12.5 to 15.6in 768p mostly to 1080p - 1 on smaller laptops or 2 ddr4 2400mhz sodimm slots on larger laptops max 16Gb - hp 4.5mm blue tip charging - keyboard swap problematic - esc boot options f9 boot order f10 bios - synaptics touchpad -
|-
| <!--Name-->HP EliteBook 725 G5, 735 G5, 745 G5, 755 G5, Probook 455 G6, ProBook 645 G6 || <!--Chipset-->Ryzen 3 2200U 2300U (2c4t), R5 2500U, R7 2700U (4c8t) Raven Ridge || <!--IDE-->{{N/A}} || <!--SATA-->{{no|M.2 (Sata or NVMe) and very optional 2.5in sata, some have mini sata port but no cdrw dvdrw}} || <!--Gfx-->{{Maybe|VESA 2d 640p to 768p for AMD Vega 3, 6, or 8}} || <!--Audio-->{{No|HDAudio 0x1022, 0x15e3 with ALC 0x10ec, 0x0 codec}} || <!--USB-->{{maybe|USB3 }} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no|Realtek RTL8821CE, 8822BE or Intel AC 8265}} || <!--Test Distro-->Deadwoods' latest usb3 test iso does not boot software error || <!--Comments-->2017 64bit - 12.5 to 15.6in 768p mostly to 1080p - 1 on smaller laptops or 2 ddr4 2400mhz sodimm slots on larger laptops max 16Gb - hp 4.5mm blue tip charging - keyboard swap problematic - esc boot options f9 boot order f10 bios - synaptics touchpad -
|-
| <!--Name-->HP 14-cm, 15-bw0, HP 15-db0043na, HP 15-db0996na, HP 15-db0997na, 17-ca0007na, 17-ca1, ProBook 645 G4 - no cmos battery || <!--Chipset-->Ryzen 2200U (2c 4t) 2500U (4c 8t) with AMD Carrizo FCH 51 || <!--IDE-->{{N/A}} || <!--SATA-->{{no|1 M.2 and 1 2.5in on some larger models and hdd port }} || <!--Gfx-->{{Maybe|VESA Radeon R5 and later Vega 3 or 7}} || <!--Audio-->{{No|HDaudio 0x1002, 0x103c or 0x1022, 0x157a with Realtek ALC3227 0x10ec, 0x0282 but ATI HDMI}} || <!--USB-->{{Maybe|USB3 USB boot drive stuck on kitty's eyes}} || <!--Ethernet-->rtl8169 RTL8111E || <!--Wireless-->{{No|RTL 8723DE 8821 bios locked}} || <!--Test Distro-->2020 Icaros 2.3 USB, Deadwoods' latest usb3 test iso does not boot software error || <!--Comments-->2018 64bit 2kg - screen is dim 14in, 15.6in or 17.3" 768p or 1080p - 65W 19.5V ac adapter - internal 3-cell 41 Wh Li-ion battery does not last long - 2 ddr4 sodimm slots - no DVD-Writer - keyboard swap problematic -
|-
| <!--Name-->HP ProBook 250 G7, 250 G8 - no cmos battery so needs internal battery and needs usb3 boot due to garbage bios boot options || <!--Chipset-->Intel 8235U 8265U || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|M.2 nvme not working, optional sata 2.5in requires LS-G072P and ribbon cable, if internal cdrw dvdrw partial boot}} || <!--Gfx-->{{Maybe|VESA 2D for Intel WhiskeyLake-U 620 GT2 UHD}} || <!--Audio-->{{No|HDAudio 0x8086, 0xa170 or 0x8086, 0x9dc8 with ALC236 codec 0x10EC, x0236}} || <!--USB-->{{maybe|Cannon Point-LP USB3.1 xHCI}} || <!--Ethernet-->{{maybe|rtl8169 Realtek RTL8111}} || <!--Wireless-->{{No|RTL8821CE or Intel Dual Band Wireless-AC 3168}} || <!--Test Distro-->Deadwoods' latest usb3 test iso does not boot stuck on kittys eyes || <!--Comments-->2018 64bit 1080p all - 19.5V 65W - DDR4 slot max 16Gb - keyboard swap problematic - synaptics touchpad -
|-
| <!--Name-->HP 255 G7 7DC73EA 2D200EA 87CE (fpp55 la-g07jp), - CMOS Error (502) replace 41.04Wh ht03xl hto3xl dynapack suzhou main battery to have bios remember settings || <!--Chipset-->'''tested''' R5 3500U (4c8t) '''untested''' mostly dual cores - AMD Athlon Gold 3150U (2c2t), Silver 3050U APU (2c2t), Ryzen 3 Pro 3145U APU, 3200U (2c4t) || <!--IDE-->{{N/A}} || <!--SATA-->{{no|1 m.2 NVMe or sata3 up to 2280, optional 2.5in sata, many have mini-sata slimline 6+7 internal port but no physical 9mm drive}} || <!--Gfx-->{{Maybe|VESA 2D from 640p to 1080p for AMD Vega 3, 6 or 8 with up to 2gb ram taken}} || <!--Audio-->{{unk|HDAudio 0x1022, 0x15e3 with realtek ALC236 codec 0x10ec, 0x0236}} || <!--USB-->{{maybe|USB3 but no usb-c}} || <!--Ethernet-->{{maybe|rtl8169 Realtek GbE RTL8111HSH}} || <!--Wireless-->{{No|Realtek 8822BE}} || <!--Test Distro-->2025 Aros One 32bit and 64bit burnt iso does not fully boot (stuck on kitty's eyes) and installed onto 2.5in on another compatible computer, sometimes has dosboot bootstrap error -6 || <!--Comments-->2018 64bit - 14in / 15.6in dim tn panel 768p or 1080p - 2 ddr4 sodimm slots max 16gb - hp 19.5V 45W 65W AC blue tip round 4.5 mm - keyboard swap problematic - synaptics touchpad - caps lock blinking 3 times then 2 quick pulses means ram or bios issue - f9 boot order f10 uefi - laptop needs usb3 to boot and use so avoid until usb3 arrives
|-
| <!--Name-->HP ProBook 450 G5 needs main battery for bios settings saved || <!--Chipset-->Intel i7-8550U, i5-8250U, i3-8130U, i7-7500U, i5-7200U, i3-7100U, i3-7020, i3-6006U all sse4.1 and avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe| }} || <!--Gfx-->{{maybe|VESA 2D for Intel UHD}} || <!--Audio-->{{unk|HDAudio with codec }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 rtl8111HSH}} || <!--Wireless-->{{no| }} || <!--Test Distro-->Deadwoods' latest usb3 test iso with noacpi || <!--Comments-->2018 64bit - 15.6 inch 768p or 1080p - HP ac psu, 1 ddr4 sodimm slot -
|-
| <!--Name-->[https://support.hp.com/gb-en/document/c06955717 ProBook 245 g8], Probook 445R G6, 455R G6, HP14-dk0599sa, pavilion 15-cw1511na 15-cw1507sa, HP 15s-eq1516sa no cmos battery || <!--Chipset-->AMD Athlon Gold 3150U (2c2t), Silver 3050U APU (2c2t), Ryzen 3 Pro 3145U APU, 3200U (2c4t) and 3500U (4c8t) || <!--IDE-->{{N/A}} || <!--SATA-->{{no|1 m.2 (NVMe or sata3 up to 2280), optional 2.5in sata but resets}} || <!--Gfx-->{{Maybe|VESA 2D from 640p to 1080p for AMD Vega 3, 6 or 8 with up to 2gb ram taken}} || <!--Audio-->{{unk|HDAudio 0x1022, 0x15e3 with realtek ALC codec 0x10ec, 0x0}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 Realtek GbE RTL8111HSH}} || <!--Wireless-->{{No|Realtek 8822BE}} || <!--Test Distro-->Aros || <!--Comments-->2018 64bit - 14in / 15.6in dim tn panel 768p or 1080p - 2 ddr4 sodimm slots max 16gb - hp 19.5V 45W 65W AC blue tip round 4.5 mm - keyboard swap problematic - synaptics touchpad - f9 boot order f10 uefi
|-
| <!--Name-->HP ProBook 450 G6 needs main battery for bios settings saved || <!--Chipset-->Intel i7-8565U, i5-8265U, i3-8165U all sse4.1 and avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe| }} || <!--Gfx-->{{maybe|VESA 2D for Intel UHD 620}} || <!--Audio-->{{unk|HDAudio with Realtek ALC3246 aka ALC295 codec }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 rtl8111HSH}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2019 64bit - 15.6 inch 768p or 1080p - 45W 19.5V HP ac psu - 2 ddr4 sodimm slots -
|-
| <!--Name-->Elitebook 735 G6 5VA23AV, Elitebook 745 G6, 255 g8, HP 15s-dy - no cmos battery || <!--Chipset-->AMD® Ryzen™ 5-3500U Ryzen 3-3300U AMD Ryzen 3-3250U AMD Athlon® Gold 3150U AMD Athlon Silver 3050U AMD 3020e || <!--IDE-->{{N/A}} || <!--SATA-->{{no|m.2 2280 nvme in legacy - hp sure start and secure boot disabled but still issues with gpt installs - LS-H323P LS-K201P}} || <!--Gfx-->{{Maybe|VESA for Vega 8, 5 or 3}} || <!--Audio-->{{No|HDAudio 6.34 ahi with realtek ALC codec 0x10EC, 0x0295}} || <!--USB-->{{maybe|USB3 type-A port boots stick partially to kitty eyes}} || <!--Ethernet-->{{Maybe|rtl8169 realtek RTL8111E or 8111H}} || <!--Wireless-->{{No|realtek or intel}} || <!--Test Distro-->2020 Icaros 2.3 onto USB and AROS One 1.8 USB, Deadwoods' latest usb3 test iso with noacpi || <!--Comments-->2019 64bit - 15.6in 1366x768 to 1920x1080 - 2 3200MHz DDR4 sodimms - 19.5V 2.31A or 20V 2.25 45W 4.5X3.0MM hp - esc bios setup, f9 boot device select - low travel keyboard - poor hw03xl or battery life - plastic hooked base with retained screws - touchpad? -
|-
| <!--Name-->HP ProBook 445 G7, 455 G7 || <!--Chipset-->Ryzen 3 4300U 5 4500U 4700U || <!--IDE-->{{N/A}} || <!--SATA-->1 sata and 1 nvme || <!--Gfx-->{{Maybe|VESA Vega 3}} || <!--Audio-->{{unk|HDAudio with realtek alc236 codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|realtek rtl8111ep}} || <!--Wireless-->{{No|realtek RTL8822CE or intel AC 9260 or Wi-Fi 6 AX200}} || <!--Test Distro-->Deadwoods' latest usb3 test iso || <!--Comments-->2020 64bit - 14 inch 768p or 1080p - 2 ddr4 sodimm slots - smart 45w 65w hp or usb-c charging - keyboard swap problematic - RE03XL battery -
|-
| <!--Name-->HP ProBook 450 G7 || <!--Chipset-->Intel || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe| }} || <!--Gfx-->{{maybe|VESA 2D for Intel UHD}} || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 rtl8111EP}} || <!--Wireless-->{{no| }} || <!--Test Distro-->Deadwoods' latest usb3 test iso with noacpi || <!--Comments-->2020 15.6 inch 768p or 1080p - 1 ddr4 sodimm slot -
|-
| <!--Name-->HP EliteBook 745 G7, 845 G7, HP 15-EH0006NA || <!--Chipset-->AMD Ryzen 3 4300U, 5 4500U, PRO 4650U || <!--IDE-->{{N/A}} || <!--SATA-->SSD M.2 || <!--Gfx-->{{Maybe|VESA AMD Radeon Vega 8}} || <!--Audio-->{{unk|Hdaudio with codec 0x10EC, 0x0257}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{No| }} || <!--Test Distro--> || <!--Comments-->2020 64bit - 15.6in 1080p - 1 ddr4 sodimm slot - Bang & Olufsen speakers - keyboard swap problematic -
|-
| <!--Name-->HP ProBook 255 G8, HP 245 G9, ProBook 255 G9 816C2EA#ABE, - no cmos battery only internal battery || <!--Chipset-->AMD RYZEN 3 5300u, 5425U, 5 5500U 5625U, 7 5700u || <!--IDE-->{{N/A}} || <!--SATA-->{{no|NVMe}} || <!--Gfx-->{{Maybe|VESA AMD Vega 6 or 8 hdmi 1.4B}} || <!--Audio-->{{unk|HDAudio}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 Realtek RTL8111HSH-CG GbE}} || <!--Wireless-->{{No|Realtek RTL8822CE or Intel}} || <!--Test Distro--> || <!--Comments-->2021 64bit - 14" to 15.6in 768p to 1080p poor gamut - 45 or 65w hp psu - 2 ddr4 sodimm slots max 16GB - keyboard swap problematic -
|-
| <!--Name-->HP ProBook 450 G9 || <!--Chipset--> || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe| }} || <!--Gfx-->{{maybe|VESA 2D for Intel Iris Xe}} || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 rtl8111H}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2020 15.6 inch - 1 ddr4 sodimm slot -
|-
| <!--Name-->HP EliteBook 645 g7, 835 G8, 845 g8, HP ENVY x360 13 15, HP 17-cp0021na || <!--Chipset-->AMD Ryzen 5 5650U, 7 5800U, R7 Pro 5850U || <!--IDE-->{{N/A}} || <!--SATA-->NVMe || <!--Gfx-->{{Maybe|VESA 2D for AMD Radeon}} || <!--Audio-->{{unk|HDAudio 0x, 0x with ALC3247 aka ALC236 codec 0x10ec, 0x0236}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{Maybe|Realtek 1Gbe on 645 only}} || <!--Wireless-->{{No| }} || <!--Test Distro--> || <!--Comments-->2021 64bit - 13.3" or 14" 1080p - poor screens low nits and srgb score - 845 gets hot ue to poor cooling - slim round hp ac - keyboard swap problematic -
|-
| <!--Name-->HP Dev One, HP ProBook 455 G8 || <!--Chipset-->AMD Ryzen 7 5800U, R7 5850U || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Maybe|VESA }} || <!--Audio-->{{unk| }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2021 64bit 15.6" 1080p - 2 internal sodimm slots - hp barrel charging -
|-
| <!--Name-->Elitebook 655 g9 669y1ut#aba, || <!--Chipset-->AMD Ryzen 5 PRO 5675U || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Maybe|VESA }} || <!--Audio-->{{unk| }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2021 64bit 15.6" 1080p - 1 or 2 internal sodimm slots - usb-c charging -
|-
| <!--Name-->HP probook 635 Aero G8 || <!--Chipset-->AMD Ryzen 5 5600U || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2921 64bit - 14in 1080p - 2 ddr4 slots - ec chip nuvoton NPCX797HA1B - bios winbond 250256JYEN -
|-
| <!--Name-->HP PROBOOK X360 435 G8 cmos battery || <!--Chipset-->RYZEN 5 5600U || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe| }} || <!--Gfx-->{{maybe|Vesa 2D }} || <!--Audio-->{{maybe|HDaudio with ALC236 codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no|RTL8822CE or Intel AX200}} || <!--Test Distro--> || <!--Comments-->2021 64bit - hp round ac plug -
|-
| <!--Name-->HP Elitebook 845 g9 || <!--Chipset-->AMD 6000 series 6850u || <!--IDE-->{{N/A}} || <!--SATA-->M.2 NVMe || <!--Gfx-->{{Maybe|VESA 2D for Vega 8}} || <!--Audio-->{{unk|HDaudio with codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no| }}Qualcomm Atheros || <!--Test Distro--> || <!--Comments-->2022 64bit aluminum case - 14in 1080p to 2140p 16:10 poor screen again - 2 internal ddr5 sodimm slots - usb-c ac charging avoid any knocks - keyboard swap problematic -
|-
| <!--Name-->HP ProBook 445 G10, 455 G10 || <!--Chipset-->AMD Ryzen 5 7530U || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D for AMD Vega 7 || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2023 64bit - 15.6in - hp round ac -
|-
| <!--Name-->Hp 455 G11 || <!--Chipset-->AMD Ryzen 3 7335U (4c8t), 5 7535U (6c12t), 7 7735U (8c16t) || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D for AMD Vega 7 || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 RTL8111HSH}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2023 64bit - 35.6 cm (14.0 in) 1920x1200 or 2560x1600 - usb-c 45w or 65w ac - 2 ddr5 sodimm slots max 32gb -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|}
====IBM/Lenovo====
[[#top|...to the top]]
Build quality (Lowest to highest)
<pre >
iSeries
Edge
Ideapad
Thinkpad - good cases and construction but electronic internals same as anyone else
</pre >
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->Thinkpad 390X 390E (2626) || <!--Chipset-->Neo Magic MM2200 with C400 P2-266 to P3 500MHz || <!--IDE--> || <!--SATA--> || <!--Gfx-->use VESA || <!--Audio-->{{No|256AV or ESS Solo-1}} || <!--USB--> || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{N/A}} || <!--Test Distro--> || <!--Comments-->1998 32bit
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Thinkpad 600x || <!--Chipset-->Intel 440BX || <!--IDE-->{{Maybe| }} || <!--SATA--> || <!--Gfx-->{{Maybe|use VESA Neomagic NM2360 MagicMedia 256ZX}} || <!--Audio-->{{No|Crystal CS4297A codec}} || <!--USB--> || <!--Ethernet-->{{N/A| }} || <!--Wireless-->{{N/A| }} || <!--Test Distro-->Icaros 1.3.1 || <!--Comments-->1998 32bit a little support - earlier 600 and 600e were Pentium 2 based
|-
| <!--Name-->Thinkpad X20 (2662-32U) X21 || <!--Chipset-->Intel 440 BX ZX DX || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio-->{{no|AC97 with Cirrus Logic Crystal cs4281}} || <!--USB-->1.1 || <!--Ethernet-->no mini pci intel e100 || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2002 32bit
|-
| Thinkpad T20 (2647) T21 (26) T22 || 440BX || {{Maybe| }} || {{N/A}} || {{partial|Savage IX-MV (VESA only)}} || {{no|Cirrus Logic CS 4614/22/ 24/30}} || {{yes|USB 1.1}} || {{yes|Intel PRO 100}} || {{N/A}} || Icaros 1.2.4 || 2002 32bit
|-
| <!--Name-->A21e (2628, 2655) A22e || <!--Chipset-->440MX || <!--IDE--> || <!--SATA--> || <!--Gfx-->Ati rage mobility || <!--Audio-->{{no|AC97 Cs4299 CS4229}} || <!--USB--> || <!--Ethernet-->intel e100 || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2002
|-
| Thinkpad T23 (2647) || i810 || {{yes|IDE}} || {{N/A}} || {{maybe|S3 Super Savage IX/C SDR (VESA only)}} || {{maybe|AC'97 CS4299}} || {{yes|USB 1.1}} || {{yes|Intel ICH3 PRO 100 VE}} || {{no|Realtek RTL8180L others with bios hacking risky}} || || 2003 32bit with some support
|-
| <!--Name-->Thinkpad X22 X23 X24 || <!--Chipset-->830 || <!--IDE--> || <!--SATA--> || <!--Gfx-->ATi Mobility M6 LY || <!--Audio-->Ac97 CS4299 || <!--USB-->2 x 1.1 || <!--Ethernet-->Intel Pro 100 || <!--Wireless-->Actiontec Harris Semi Intersil Prism 2.5 (X23 and X24 only) || <!--Test Distro--> || <!--Comments-->2003 32bit with slice Ultrabase X2 -
|-
| <!--Name-->A30 A30p || <!--Chipset-->830 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Ati Radeon M6 || <!--Audio-->AC97 CS 4299 || <!--USB--> || <!--Ethernet-->Intel Pro 100 ve || <!--Wireless-->{{No|Intel 2200 bios locked}} || <!--Test Distro--> || <!--Comments-->2003 32bit
|-
| <!--Name-->A31 A31p R31 R32 T30 || <!--Chipset-->830 || <!--IDE-->{{yes| }} || <!--SATA-->{{N/A| }} || <!--Gfx-->Ati Radeon 7500 or FireGL || <!--Audio-->{{yes|AC97 Intel with AD1881A codec}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{yes| Intel Pro 100 ve}} || <!--Wireless-->{{No|Intel bios locked}} || <!--Test Distro-->[https://forums.lenovo.com/t5/Android-Ecosystem-Developers/AROS-An-operation-system-inside-Android/td-p/1441741 Icaros 1.5.2] || <!--Comments-->2003 32bit Also tested with Icaros 2.0.3.
|-
| Thinkpad X30 (2673) X31 (2884-xx2) X31t || i830 || {{yes}} || {{N/A}} || {{maybe|VESA only Radeon M6 Mobility}} || {{yes|AC97 - AD1981B codec}} || {{yes|USB 1.1}} || {{yes|Intel PRO 100}} || {{no|Cisco Aironet or Intel 2915 but atheros with bios hacking}} || Icaros 1.4 || 2004 32bit sound bit distorted
|-
| <!--Name-->R50e R51 || <!--Chipset-->855M || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|Intel 855M use VESA}} || <!--Audio-->intel AC97 with AD1981B codec || <!--USB--> || <!--Ethernet-->{{Yes|Intel 100 VE}} || <!--Wireless-->{{No|Intel PRO Wireless 2200BG bios locked}} || <!--Test Distro--> || <!--Comments-->2004 32bit -
|-
| IBM Thinkpad T40 (2373) T41 T41p (2379) T42 T42p T43 T43p || Intel 8xx || {{partial|PIO}} || {{N/A}} || {{partial|ATI mobility 7500 9000 (VESA only)}} || {{yes|AC97 playback}} || {{yes|uhci 1.1 and ehci 2.0}} || {{no|e1000}} || {{Maybe|Intel 2200bg bios locked but possible AR5BMB-44 AR5212 FRU 39T0081 mini PCI}} || Icaros 1.2.4 || 2004 32bit 16v IBM plug - Centrino Needs ATA=nodma option - issues with the inner chip of the SMT BGA graphics chip
|-
| Thinkpad X32 || i855 || {{yes|40, 60 or 80GB 2.5" PATA HDD}} || {{N/A}} || {{maybe|VESA only ATI Mobility Radeon 7000 with 16MB}} || {{maybe| Intel AC'97 Audio with a AD1981B codec}} || {{yes|USB}} || {{no|Intel 1000}} || {{no|Intel 2200 but atheros with bios hacking}} || 2016 Icaros 2.1 || 2004 32bit - 12.1" TFT display with 1024x768 resolution; 256 or 512MB PC2700 memory standard (2GB max)
|-
| <!--Name-->Thinkpad X40 X40t by Quanta || <!--Chipset--> || <!--IDE--> || <!--SATA-->{{N/A}} || <!--Gfx-->{{maybe|Intel 800 (VESA only)}} || <!--Audio-->{{yes|AC97 AD1981B}} || <!--USB-->{{yes}} || <!--Ethernet-->{{no|Intel e1000}} || <!--Wireless-->{{Maybe|Intel but most atheros with bios hacking - difficult though}} || <!--Test Distro--> || <!--Comments-->2004 32bit last IBM design
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Thinkpad X41 (IBM) MT 1864 1865 2525 2526 2527 2528 x41t (Lenovo) MT 1866 1867 || <!--Chipset-->Intel with single core 1.5 1.6 and tablet 1.2GHz || <!--IDE-->{{yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Yes|Intel 915GML 2D}} || <!--Audio-->{{yes|AC97 AD1981B}} || <!--USB-->{{yes}} || <!--Ethernet-->{{no|Broadcom BCM5751M tg3}} || <!--Wireless-->{{Maybe|Intel or MiniPCI Wi-Fi Atheros AR5BMB FRU 39T0081 but ordinary atheros 54meg needs risky bios hacking}} || <!--Test Distro--> || <!--Comments-->2005 32bit - amongst first Lenovo design
|-
| <!--Name-->R52 (most 18xx) || <!--Chipset-->Intel 915 || <!--IDE-->{{Yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Yes|Intel 915GML 2D}} || <!--Audio-->{{yes|AC97 AD1981B}} || <!--USB-->{{yes}} || <!--Ethernet-->{{no|Broadcom}} || <!--Wireless-->{{no|Broadcom bios locked}} || <!--Test Distro--> || <!--Comments-->2005 32bit
|-
| <!--Name-->R52 1846, 1847, 1848, 1849, 1850, 1870 || <!--Chipset-->ATi 200m || <!--IDE-->{{Yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{No|ATI}} || <!--Audio-->{{yes|AC97 AD1981B}} || <!--USB-->{{yes}} || <!--Ethernet-->{{no|Broadcom BCM5751M tg3}} || <!--Wireless-->{{no|Broadcom bios locked}} || <!--Test Distro--> || <!--Comments-->2005 32bit
|-
| <!--Name-->Thinkpad T60 T60P
* 64bit - 6 or 8 is 16:10 on T60/p, eg. 8742-CTO 15.4"
* 32bit - 1 and 2 are 14", 15" 4:3, like 2007-YM3 or 1952-CTO
|| <!--Chipset-->*any* T60/p will take a Core 2 Duo CPU with newer BIOS || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->Intel GMA (2D) with "p" graphics card (ATi V5200 or V5250) || <!--Audio-->{{no|HD Audio}} || <!--USB-->{{yes}} || {{no|e1000e 82573L}} || <!--Wireless-->{{No|Intel ipw3945 ABG but atheros with Middleton's or Zender BIOS hacking risky}} || Icaros 1.4 || <!--Comments-->2006 -
|-
| <!--Name-->X60 x60s x60t tablet || <!--Chipset-->945GMS 940GML || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{yes|Intel GMA (2D)}} || <!--Audio-->{{no|AD1981 HD Audio}} || <!--USB-->{{yes}} || <!--Ethernet-->{{no|Intel}} || <!--Wireless-->{{no|Intel 3945 ABG or fru 39T5578 Atheros 5K AR5BXB6 ar5007eg with bios hacking}} || <!--Comments-->Icaros 1.4 || 2006 32bit - perhaps needs a zendered bios update but risky
|-
| <!--Name-->R60 R60e || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->intel 950 with optional radeon x1300 x1400 || <!--Audio-->HD Audio with 1981HD codec || <!--USB--> || <!--Ethernet-->Intel or Broadcom || <!--Wireless-->{{Maybe|Intel 3945 or atheros fru 39T5578 bios locked}} || <!--Test Distro--> || <!--Comments-->2006 32bit
|-
| Thinkpad T61 T61p without Middleton's or Zender BIOS || Core 2 Duo CPU T7300 T8300 || {{N/A}} || <!--SATA-->{{yes| }} || Intel GMA (2D), NVS 140m or Quadro FX 570M () || {{maybe|HD Audio with Analog Devices AD1984 or AD1984A HD Audio Codec routed to the line output}} || <!--USB-->{{yes}} || {{no|intel e1000e 82573L}} || {{No|Intel but atheros with bios hacking risky}} || Icaros 1.6, AROS One || 2007 64bit
|-
| <!--Name-->X61 x61s X61T Tablet || <!--Chipset-->Core Duo T8100 on i965 || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->{{yes|Intel GMA 3100 (2D) slow 3D}} || <!--Audio-->{{no|AD1984 HD Audio}} || <!--USB-->{{yes|USB 2.0}} || <!--Ethernet-->{{no|Intel 82566DM}} || <!--Wireless-->{{maybe|Atheros AR5212 (some revisions use Intel WLAN runs very hot) bios locked}} || <!--Test Distro--> || <!--Opinion-->2007 64bit ultrabook running very hot - ddr2 max 4gb -
|-
| <!--Name-->R61 R61i || <!--Chipset-->Intel 965 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->intel 965 || <!--Audio-->HD Audio with conexant codec || <!--USB--> || <!--Ethernet-->Broadcom BCM5787M || <!--Wireless-->{{No|Intel 3945 bios locked}} || <!--Test Distro--> || <!--Comments-->2008 64bit
|-
| Lenovo 3000 N200 || <!--Chipset-->Santa Rosa || {{N/A}} || <!--SATA-->{{maybe| }} || {{yes|Geforce 7300 (2D)}} || {{yes|ALC262 HD Audio}} || <!--USB-->{{yes}} || {{no|Broadcom}} || {{no|Intel 3945 bios locked}} || Icaros 1.4 || 2007 64bit 3D graphics parts are supported but buggy.
|-
| Lenovo 3000 N200 / V200 || GM965 ICH9-M with Intel Mobile Core 2 Duo T5450 || {{N/A}} || <!--SATA-->{{maybe| }} || {{yes|X3100 (2D)}} || {{Maybe|HD Audio ALC269VB or CX20549}} || {{yes| }} || {{no|BCM5906M}} || {{no|Intel 3965 / 4965AGN bios locked}} || Icaros 1.4.1 2.1 || 2007 64bits of laptop works
|-
| <!--Name-->X300 || <!--Chipset-->Core 2 Duo Merom SL7100 1.2GHz || <!--IDE-->{{N/A}} || <!--SATA-->1.8 inch || <!--Gfx-->{{maybe|Intel X3100}} || <!--Audio-->HD Audio AD1984A || <!--USB--> || <!--Ethernet-->Intel || <!--Wireless-->{{No|Intel 4965 bios locked}} || <!--Test Distro--> || <!--Comments-->2007 64bit 13.3" TFT 1440x900 (WXGA+) with LED backlight
|-
| <!--Name-->Thinkpad Edge 11″ AMD K325 || <!--Chipset-->M880G || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{maybe|VESA for ATI HD4200}} || <!--Audio-->{{maybe| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 8111}} || <!--Wireless-->{{no|8192CE (Realtek 8176) bios locked}} || <!--Test Distro--> || <!--Comments-->2007 little support
|-
| <!--Name-->Thinkpad X301 || <!--Chipset-->Core 2 Duo Penryn SU9400 Su9600 with GM45 chipset || <!--IDE-->{{N/A}} || <!--SATA-->1.8 inch micro SATA (uSATA) || <!--Gfx-->{{maybe|Intel X4500}} || <!--Audio-->AD1984A || <!--USB--> || <!--Ethernet-->Intel || <!--Wireless-->{{No|Intel 5xxx WiFi link 5100, 5150, 5300 and 5350 (WiMAX) bios locked}} || <!--Test Distro--> || <!--Comments-->2009 WXGA+ (1440×900) LED backlight display - 2774 or 4057 Alps and 2776 Synaptics touchpad - optical bay interface is Legacy IDE (PATA) - Addonics ADMS18SA, Lycom ST-170m
|-
| <!--Name-->X100e || <!--Chipset-->AMD Athlon Neo Single-Core (MV-40) and dual cores || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|2.5in tray in ide mode in bios}} || <!--Gfx-->{{Maybe|Vesa ATI HD3200}} || <!--Audio-->{{yes|HD Audio with CX20582 codec playback}} || <!--USB-->{{Maybe| }} || <!--Ethernet-->{{Yes|Realtek 8111}} || <!--Wireless-->{{no|Realtek r8192se bios locked}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2009 64bit 11.6in 1366 x 768 - 20v 65W round barrel - enter f1 setup f11 diagnostics f12 boot list - runs very warm -
|-
| <!--Name-->SL400 SL500 || Intel || {{N/A}} || {{Yes|IDE mode}} || {{Maybe|Nvidia 9400M}} || {{Maybe|ALC269}} || {{yes|USB 2.0}} || {{Maybe|RTL8169}} || {{Maybe| bios locked}} || ||
|-
| <!--Name-->SL410 SL510 || 965 || {{N/A}} || {{maybe|IDE mode}} || {{maybe|Intel GMA X4500M (some 2D)}} || {{yes|HD Audio with ALC269 codec - speaker and ear phones}} || {{yes|USB 2.0}} || {{yes|RTL8169}} || {{Maybe| bios locked}} || [http://www.amiga.org/forums/showpost.php?p=645774&postcount=28 Icaros 1.3] || 2009 64bit SL-410
|-
| <!--Name-->T400 ODM Wistron || <!--Chipset-->i || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE in BIOS}} || <!--Gfx-->{{Maybe|Intel 4500MHD works limited 2d no 3d - optional switchable Nvidia or ATi HD3470 untested}} || <!--Audio-->{{Yes|HD Audio with Codec CX20561 (T400)}} || <!--USB--> || <!--Ethernet-->{{no|Intel e1000e}} || <!--Wireless-->{{No|Intel Wifi Link 5100 (AGN) half height card with FRU 43Y6493 or 5300 bios locked}} || <!--Test Distro--> || <!--Comments-->2009 64bit 20v lenovo plug - non-free firmware required iwlwifi
|-
| <!--Name-->T400s || <!--Chipset-->i || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE in BIOS}} || <!--Gfx-->{{Maybe|VSEA for Intel 4500MHD works limited 2d no 3d}} || <!--Audio-->{{Maybe|HD Audio with CX20585}} || <!--USB--> || <!--Ethernet-->{{no|Intel e1000e}} || <!--Wireless-->{{No|Intel Wifi Link 5100 (AGN) half height card with FRU 43Y6493 or 5300 bios locked}} || <!--Test Distro--> || <!--Comments-->2009 64bit non-free firmware required iwlwifi
|-
| <!--Name-->Lenovo T500 T510 || <!--Chipset-->i || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE in BIOS}} || <!--Gfx-->{{maybe|VESA for switchable Intel / AMD HD 3640}} || <!--Audio-->{{maybe|Intel HD Audio with a CX20561 (t500) and CX20585 (T510) codec}} || <!--USB--> || <!--Ethernet-->{{no|Intel }} || <!--Wireless-->{{no|Intel or Lenovo branded unit Atheros AR5007EG AR5BHB63 bios locked}} || <!--Test Distro--> || <!--Comments-->2009 64bit
|-
| <!--Name-->X200 ODM Wistron [http://itgen.blogspot.co.uk/2008/12/installing-arch-linux-on-lenovo.html X200s] and x200t tablet model without [http://fsfe.soup.io/post/590865884/the-unconventionals-blog-English-Flashing-Libreboot-on Risky flash of the Libreboot BIOS] || <!--Chipset-->GM45 GS45 with slow Celeron, SU or faster SL Core 2 Duos CPUs || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE in BIOS}} || <!--Gfx-->{{maybe||Intel GMA 4500 MHD 2D but slow software 3D tunnel 10 gearbox 8 tests}} || <!--Audio-->{{yes|Intel HD Audio with Conexant CX20561 codec playback}} || <!--USB-->{{{Yes|USB 2.0 USB SD card reads and writes}} || <!--Ethernet-->{{no|Intel 82567LM Gigabit}} || <!--Wireless-->{{no|Intel Pro 5100 5150 5300 5350 AGN due to whitelist prevention bios locked}} || <!--Test Distro-->Icaros 2.0.1 || <!--Comments-->2009 64bit 12.1" CCFL (webcam version) or LED backlit (no webcam). no support for 54mm express cards or Authentec 2810 fingerprint reader - thinkpoint only no trackpad - thinklight -
|-
| <!--Name-->Lenovo T410 T410s T410si || <!--Chipset-->qm57 with i5 m || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE in BIOS}} || <!--Gfx-->{{maybe|use vesa Intel 5700MHD (Ironlake) core processor igp with optional Nvidia Quadro NVS 3100M}} || <!--Audio-->{{yes|HD Audio Conexant CX20585 codec playback}} || <!--USB-->{{Yes|2.0}} || <!--Ethernet-->{{no|Intel 82577lm gigabit}} || <!--Wireless-->{{unk|Intel n 6200 or Atheros AR9280 AR5BHB92 half size minipcie bios locked}} || <!--Test Distro-->Icaros 2.2 xmas || <!--Comments-->2009 64bit battery life much lower with Nvidia graphics version - no support firewire ricoh r5c832 - ricoh sd card - series 5 3400
|-
| <!--Name-->X201 X201s x201t || <!--Chipset-->QM57 Core i3 370m, i5 M520 2.4GHz or i7 620LM 2.0GHz || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE in BIOS}} || <!--Gfx-->{{Maybe|vesa 2d on Intel GMA HD}} || <!--Audio-->{{yes|Intel HD with [https://ae.amigalife.org/index.php?topic=94.0 Conexant 20585] codec}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{no|Intel}} || <!--Wireless-->{{No|bios locked}} || <!--Test Distro--> || <!--Comments-->2010 X201 arrandale power consumption limits battery life to 3-4 hours for 48Whr though to 6 on 72Whr - 12.5" WXGA
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Ideapad B470, B570, V370, V470, V570 || <!--Chipset-->Intel® Core™ i5 i5-2430M, i5-2450M, || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata}} || <!--Gfx-->Vesa 2d for Intel || <!--Audio-->HDaudio 0x8086, 0x1c20 with codec || <!--USB-->USB3 || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no|whitelisted}} || <!--Test Distro--> || <!--Comments-->2011 64bit - 14in or 15.6in 768p -
|-
| <!--Name-->T420 type 4180 4236, t420s , T520 4239 L520 || <!--Chipset-->i5 2540, 2520 or i7 2860QM 2620 has sse4.1 avx || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE in BIOS but not AHCI}} || <!--Gfx-->{{Maybe|Vesa 136 x 768 - Intel HD 3000 with optional NVS 4200M Nvidia optimus or Radeon HD 565v }} || <!--Audio-->{{Yes|HD Audio playback ear phones only with Conexant CX20672 codec - AHI 6.27}} || <!--USB-->{{Maybe| }} || <!--Ethernet-->{{No|Intel PRO 1000 82579LM}} || <!--Wireless-->{{No|Realtek 1x1, Intel Ultimate-N 6205 6250 2x2 6300 3x3 all bios locked}} || <!--Test Distro-->Icaros 2.2.2 add noacpi to grub boot options || <!--Comments-->2011 64bit - screen 1600x900 or 1366x768 - 2 ddr3l sodimm slots max 16gb -
|-
| <!--Name-->Thinkpad W520 || <!--Chipset--> has sse4.1 avx || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE in BIOS}} || <!--Gfx-->{{Maybe|VESA Intel HD 3000 with nvidia quadro 1000m 2000m optimus issues with Nvidia Intel hybrids}} || <!--Audio-->{{Maybe|Intel Hd with CX 20585 codec}} || <!--USB--> || <!--Ethernet-->{{No|Intel 82579 Lm}} || <!--Wireless-->{{No|Intel 6000s}} || <!--Test Distro--> || <!--Comments-->2011 64bit - 15.6" TFT display with 1366x768 (HD), 1600x900 (HD+) or 1920x1080 (FHD) resolution with LED backlight
|-
| <!--Name-->X220 x220t || <!--Chipset-->QM67 express, dual i5 2520M or i7 dual 2620M sse4.1 avx support || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE in BIOS but not AHCI}} || <!--Gfx-->{{Maybe|VESA 2D 1024 x 768 for Intel HD Graphics 3000}} || <!--Audio-->{{Yes|Intel HD playback with Conexant 20672 codec ear phones and speaker - AHI 6.27 6.34}} || <!--USB-->{{Yes|USB 2.0}} || <!--Ethernet-->{{No|Intel 82579LM}} || <!--Wireless-->{{No|Intel Centrino Advanced-N 6205 Wi-Fi bios locked}} || <!--Test Distro-->Icaros 2.3, Aros One USB 1.6 || <!--Comments-->2011 64bit possible - uses slimmer 7 mm storage sata devices - NEC USB 3.0 on i7's - unwanted trackpad gestures when palms rests on it - 2 ddr3 sodimm slots - external battery -
|-
| <!--Name-->Thinkpad X120e, x121e Quanta FL8A DAFL8AMB8D0 Rev D || <!--Chipset-->Hudson M1 with slow AMD E350 has no sse4.1 or avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata}} || <!--Gfx-->{{Maybe|VESA ATI 0x9802}} || <!--Audio-->{{Maybe|ATI SBx00 Azalia HD Audio}} || <!--USB-->USB 2.0 || <!--Ethernet-->RTL8169 RTL8111 || <!--Wireless-->{{no|Broadcom 0x0576 bios locked}} || <!--Test Distro--> || <!--Comments-->2011 64bit 11.6 inch screen - 1 inch think - chiclet keyboard
|-
| <!--Name-->Ideapad S205 G575 G585, Edge 11 E325 || <!--Chipset-->Slow E-350 later E-450 with A75 or AMD Athlon II Neo has no sse4.1 or avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata}} || <!--Gfx-->{{Maybe|VESA HD6310}} || <!--Audio-->{{Yes| }} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No|Atheros}} || <!--Wireless-->{{No|Broadcom}} || <!--Test Distro--> || <!--Comments-->2011 64bit does not support AVX or SSE 4.1 - removeable and plug in battery - 2pin CR2032 CMOS battery -
|-
| <!--Name-->Ideapad S206 || <!--Chipset-->AMD E300 1.3GHZ Dual has no sse4.1 or avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata}} || <!--Gfx-->{{Maybe|VESA }} || <!--Audio-->{{Maybe|Intel HD Audio with CX20672 codec}} || <!--USB-->{{Maybe|3.0}} || <!--Ethernet-->Broadcom 10/100 || <!--Wireless-->{{unk|Atheros AR9285}} || <!--Test Distro--> || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 - 11.6" and integrated battery - Conexant®
|-
| <!--Name-->Lenovo x130e or x131e edu || <!--Chipset-->Slow AMD E-300 or E-450 has no sse4.1 or avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata}} || <!--Gfx-->{{Maybe|VESA Radeon HD 6310 or 6320 }} || <!--Audio-->{{Maybe|HD Audio Realtek ALC269VC / ALC3202 codec}} || <!--USB-->{{Maybe|USB 30 and USB 20}} || <!--Ethernet-->{{maybe|Realtek RTL8111 RTL8168B}} || <!--Wireless-->{{No|Realtek RTL8188CE or Broadcom BCM43228 bios locked}} || <!--Test Distro--> || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 - rubber edged bumper for K12 education market - 2pin CR2032 CMOS battery -
|-
| <!--Name-->Thinkpad Edge E135 E335 || <!--Chipset-->amd dual E-300, E2-1800 or E2-2000 slow atom like A68M FCH has no sse4.1 or avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|SATA 3.0Gb/s 2.5" wide 7mm high}} || <!--Gfx-->{{Maybe|VESA radeon 6310 or 7340 vga or hdmi}} || <!--Audio-->{{Maybe|HDAudio with Realtek ALC3202 codec}} || <!--USB-->{{maybe|2 usb3, 1 powered usb2}} || <!--Ethernet-->{{maybe|rtl8169 8111f}} || <!--Wireless-->{{no|Realtek WLAN whitelist bios locked}} || <!--Test Distro--> || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 - 11.6 inch to 13.3in 1366x768 - Acrylonitrile-Butadiene-Styrene (ABS) plastic case - external battery - 20v 65w lenovo barrel ac - 2 ddr3 sodimm 8Gb max -
|-
| <!--Name-->ThinkPad Edge E525 E535 LENOVO IDEAPAD Z575 || <!--Chipset-->AMD A6-3420M A8-3500M later A8-4500M has no sse4.1 or avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata}} || <!--Gfx-->{{Maybe|VESA AMD 6620G later 7640G}} || <!--Audio-->{{No|HDAudio with Conexant codec}} || <!--USB-->{{Maybe|USB2 but not usb3}} || <!--Ethernet-->{{maybe|rtl8169 Realtek 8111}} || <!--Wireless-->{{No|Broadcom bios locked}} || <!--Test Distro--> || <!--Comments-->2013 64bit does not support AVX or SSE 4.1 - 15.6in 1368 x 768 matt - 65W 20v lenovo round psu - thick desktop replacement - ThinkPad Edge E520 E520S E525 E530 E545 E535 E530C Laptop Keyboard swap -
|-
| <!--Name-->T430 t430i T530 || <!--Chipset-->ivy bridge i5 3320 3230m on Intel QM77 has sse4.1 and avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata}} || <!--Gfx-->{{Maybe|VESA 1366 x 768 for Intel HD 4000 with optional Nvidia 5400M}} || <!--Audio-->{{Maybe|Intel HD with Realtek ALC3202 aka ALC269VC codec playback ear head phones - HDA 6.27}} || <!--USB-->{{Yes|USB 2 ports and usb2.0 devices thru usb 3.0 ports}} || <!--Ethernet-->{{No|Intel e1000}} || <!--Wireless-->{{unk|Intel or Atheros AR9285 bios locked}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2013 64bit fan noise and chiclet keyboard, synaptics trackpad - HD+ 768p -
|-
| <!--Name-->Thinkpad X230 x230t || <!--Chipset-->Intel QM67 express i5 has sse4.1 and avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata}} || <!--Gfx-->{{Maybe|VESA }} || <!--Audio-->{{Maybe|Intel HD with ALC269 aka ALC3202}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{no|Intel }} || <!--Wireless-->{{No|I}} || <!--Test Distro--> || <!--Comments-->2013 64bit - 12.2 in 1366 x 768 - 2 ddr3 sodimm slots - external battery -
|-
| <!--Name-->Thinkpad T440 t440s t440p T540 L440 L540 || <!--Chipset-->intel haswell 8 series Core i3 to i7 has sse4.1 and avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata}} || <!--Gfx-->{{Maybe|VESA - Intel 4600 or Nvidia}} || <!--Audio-->Intel HD with Realtek ALC3232 alc269 codec or ALC292 || <!--USB-->{{maybe| }} || <!--Ethernet-->{{No|Intel}} || <!--Wireless-->{{No|Intel AC 7260 bios locked}} || <!--Test Distro--> || <!--Comments-->2014 64bit - 14 and 15" models with glitchy trackpad and no physical buttons - keyboard repair not easy as well as 4 variants of key caps - 2pin CR2032 CMOS battery -
|-
| <!--Name-->Thinkpad X240 x240t ultrabook TN (20AL0081GE), HD IPS display without touch (20AL007NGE) and touch (20AL0076GE) but all 65% sRGB || <!--Chipset-->haswell i7-4600U i5 4200U 4210U 4300U i3-4100U - two batteries, one internal 3cell 45N1110 (45N1111) or 45N1112 (FRU 45N1113) and external 3 / 6cell 45N1126 (FRU 45N1127) || <!--IDE-->{{N/A}} || <!--SATA-->2.5in 7mm sata (torq t7), m.2 2242 in WWAN slot (m and b key NGFF Sata) || <!--Gfx-->{{Maybe|use VESA for Intel 4400 for vga or mini-dp}} || <!--Audio-->{{No|HDAudio 0x8086, 0x0a0c 0x8086, 0x9c20 with Realtek ALC3232 aka ALC292 0x10ec, 0x0292}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{no|Intel® 82577LM Gigabit (Hanksville) }} || <!--Wireless-->{{no|Realtek or Intel 7260n I218-V or I218-LM bios locked}} || <!--Test Distro-->AROS One USB || <!--Comments-->2014 64bit - 12.2in 1366 x 768 or 1080p - 1 ddr3l sodimm slot - no keyboard spill drainage and at least 2 variants of key caps - lenovo rectangle pwr ac - TPM 1.2 - Bluetooth 4.0 no support - bottom panel with 8 retained screws - 2pin CR2032 CMOS battery -
|-
| <!--Name-->ThinkPad Edge E545
* key cap swap with E440 E531 E540 L440 L450 T431S T440S T440P T540
* Keyboard swap L540 T540p W540 Edge E531 E540 W541 T550 W550S L560 P50S T560
|| <!--Chipset-->AMD Socket FS1r2 A6-5350M (2c2t) or A8-4500M, A8-5550M, A10-5750M (4c4t) with A76M FCH has sse4.1 and avx || <!--IDE-->{{N/A}} || <!--SATA-->2.5in 9.5mm - enter UEFI bios with Enter or ESC, config section, sata into compatibility and security, secure boot disabled - mini sata DVD burner PLSD DS8A9SH || <!--Gfx-->{{Maybe|VESA 2D for AMD 7640G, 8450G, 8550G, 8650G ?? Islands}} || <!--Audio-->{{no|VOID for HDAudio 6.34 0x1022, 0x780d with Conexant CX20590 Analog 0x14f1, 0x506e CX20671 codec 0x14f1, 0x5069 or audio over Trinity HDMI}} || <!--USB-->{{maybe|boots pen drives from yellow usb port but not from blue USB3 ones, issues with AMD usb3 hardware quirks}} || <!--Ethernet-->{{yes|rtl8169 1GbE 8111F}} || <!--Wireless-->{{No|Broadcom BCM43142 bios locked}} || <!--Test Distro-->AROS One 2.3 USB works with noacpi added to end of grub2 boot line but not booting on AROS One 64bit 1.1 via usb2 stick or iso burnt to dvd || <!--Comments-->2015 64bit - 15.6in 1366 x 768 matt - 20v 65w 90w round lenovo plug psu - 2 DDR3 SODIMM slots 16GB Max - external 6 Cell Li-Ion Battery 48Wh l11s6y01 45n1043 - 2pin CR2032 CMOS battery in wifi area jp1202 - amd v(tm) virtualization not working -
|-
|<!--Name-->AMD platform codes
*Beema: ABM,
*Carizzo-L: ACL,
*Carizzo: ACZ,
*Godavari: AGR,
*Kaveri: AKV,
*Stoney Ridge: ASR,
*Stoney Ridge: AST (NB),
|| <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
*Summit Ridge: ASU,
*Bristol Ridge-L: ABL,
*Bristol Ridge: ABR,
*Raven Ridge: ARR,
*Picasso: API
|-
| <!--Name-->[https://www.laptop-schematics.com/db/78/V%20series%20laptops%20(Lenovo)/ V110-14AST (14in) V110-15AST, V110-14ISK V110-15ISK 80TL (15")], || <!--Chipset-->AMD E1-9000, A6-9210 to A9-9410 all dual core and intel 6006u, 6100u, 6200u || <!--IDE-->{{N/A}} || <!--SATA-->1 2.5in sata most 7mm some 9.5mm || <!--Gfx-->{{Maybe|VESA 2D for AMD R2, R3, R5 or R6 or Intel Gfx}} || <!--Audio-->{{No|HDAudio with codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2016 64bit - 14in to 15.6in mostly 768p 220 nits - 20v 45W or 65W lenovo slim rectangle end ac - keyboard swap hard - integrated 24WHr battery - 4gb ddr4 ram soldered and 1 2133Mhz ddr4 slot max 12Gb - abs plastic -
|-
|<!--Name-->
*ThinkPad A275 12in (1 ddr4 1866MHz sodimm)
*Thinkpad A475 14in (2 ddr4 1866MHz sodimm) - both internal (main) and external (secondary) battery
|| <!--Chipset-->A10-8730B A10-9700B 2.500Ghz later A12-8830B A12-9800B all 4c4t (AVX2 on 9000s) || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe|7mm 2.5in sata with mbr and not gpt, setup in another machine - secure boot disabled, bios startup boot set to legacy then uefi - WWAN slot cannot use M.2 2242 sata with M and B key}} || <!--Gfx-->{{Maybe|VESA 2D for AMD R5 or R7}} || <!--Audio-->{{No|HDAudio 6.34 ahi 0x1022, 0x157a with ALC3268 aka ALC298 codec 0x10ec, 0x0298 - VOID even with QUERY / QUERYD added}} || <!--USB-->{{no|USB3 error on boot suspect AMD usb3 quirk}} || <!--Ethernet-->{{Yes|rtl8169 RTL8111EPV}} || <!--Wireless-->{{No|Realtek RTL8822BE WLAN whitelist locked cannot swap}} || <!--Test Distro-->{{maybe|AROSOne USB 32bit 1.8 with noacpi noapic noioapic added to grub2 boot line but Aros One 64bit 1.2 USB has krnPanic }} || <!--Comments-->2016 64bit 12 or 14in 768p - 45W or 65w lenovo rectangle ac adapter - F1 enter bios and F12 boot order - 6 retained screws and snap on base - 2100 error message no solution except using only efi/gpt bios option -
|-
|<!--Name-->320S-15AST, 320S-15ABR, ideapad Slim 1-11AST-05 81VR || <!--Chipset-->AMD A6-9220e, AMD A6-9225, A9-9425, A10-9600P 7th Gen || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata 2.5in}} || <!--Gfx-->{{maybe| Vesa 2D for AMD}} || <!--Audio-->{{No| }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{No|Qualcomm Atheros QCA9377 or Realtek RTL8821CE}} || <!--Test Distro--> || <!--Comments-->2018 64bit AVX2 - 14in or 15.6" 768p - 1 ddr4 sodimm slot - keyboard swap problematic -
|-
|<!--Name-->Lenovo Ideapad S145-14AST S145-15AST 81N3 || <!--Chipset-->AMD A6-9225, A9-9425, A10-9600P 7th Gen, AMD A12-9720P Mobo 5B20P11110 NMB341 Bristol Ridge || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata 2.5in}} || <!--Gfx-->{{Maybe|VESA Radeon 8670A 8670M 8690M GCN 3}} || <!--Audio-->{{No| }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{No|Qualcomm Atheros QCA9377 or Realtek RTL8821CE}} || <!--Test Distro--> || <!--Comments-->2018 64bit AVX2 - 14in or 15.6" 768p or 1080p - 1 ddr4 sodimm slot -
|-
|<!--Name-->Lenovo Ideapad V145-14AST V145-15AST, 81mt, Ideapad 310, Ideapad 320-15ABR, Ideapad 330-14AST 330-15AST 330-17AST || <!--Chipset-->AMD A6-9225, A9-9425 (2c2t), A10-9600P 7th Gen, AMD A12-9720P Mobo 5B20P11110 NMB341 Bristol Ridge || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata 2.5in with optional dvd}} || <!--Gfx-->{{Maybe|VESA Radeon 8670A 8670M 8690M GCN 3}} || <!--Audio-->{{unk|HDaudio with ALC3240-va3-cg aka ALC236? codec 0x10de, 0x0236}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{no|rtl8169 8106E 10/100 only}} || <!--Wireless-->{{No|Qualcomm Atheros QCA9377 or Realtek RTL8821CE}} || <!--Test Distro--> || <!--Comments-->2017 64bit AVX2 - 14in or 15.6" 768p or 1080p - 1 ddr4 sodimm slot - 45w 65w slim ac adapter -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
|<!--Name-->Lenovo V330-14ARR 81B1, V330-15ARR 81, 330-14ARR 81 330-15ARR 81D2 - battery internal about 30whr || <!--Chipset-->AMD Ryzen R3 2200U, 2300U or R5 2500U Raven Ridge || <!--IDE-->{{N/A}} || <!--SATA-->M.2 nvme/sata, optional 2.5in sata but no dvd || <!--Gfx-->{{Maybe|VESA Vega 3, 6 or 8 up to 1Gb of soldered ram memory taken}} || <!--Audio-->{{No|HDAudio 0x1002, 0x15de with Realtek® ALC5682I-VD codec 0x10de, 0x or coxenant CX11802 codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|Realtek 1GbE}} || <!--Wireless-->{{no|Realtek}} || <!--Test Distro--> || <!--Comments-->2018 64bit - 14" 768p 20mm thick 1.8kg - 20v 2.25a 45w ac round barrel - chiclet keyboard - 4Gb soldered and 1 ddr4 sodimm - TPM 2.0 in bios - 4GB soldered -
|-
|<!--Name-->Ideapad 330s-14ARR, 330s-15ARR, ideapad 330S-14IKB, 330S-15IKB, - battery internal about 30whr || <!--Chipset-->AMD Ryzen R3 2200U, 2300U or R5 2500U Raven Ridge || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|nvme}} || <!--Gfx-->{{Maybe|VESA 2D for AMD or Intel 610, 620 up to 1Gb of soldered ram memory taken}} || <!--Audio-->{{No|HD Audio with codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no|Realtek}} || <!--Test Distro--> || <!--Comments-->2018 64bit - 14" 20mm thick 1.8kg - 20v 2.25a 45w ac round barrel - chiclet keyboard - 4Gb soldered and 1 ddr4 sodimm - TPM 2.0 in bios - 4GB soldered -
|-
|<!--Name-->Thinkpad Edge E485 E585 - internal battery only || <!--Chipset-->AMD Ryzen R3 2300U R5 2500U R7 2700U || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|m.2 nvme optional 1 2.5in sata}} || <!--Gfx-->{{Maybe|VESA for Vega 3, 8 or 10}} || <!--Audio-->{{No|HDAudio with CX11852 codec }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 rtl8111GUS}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2018 64bit - 14in or 15.6in 768p or 1080p - USB-C 20V 2.25A 3.25A avoid knocking charging port as damages easily - 2 ddr4 sodimm slot max 2400Mhz 32GB - TPM 2.0 software -
|-
|<!--Name-->Thinkpad A285 - internal and external battery || <!--Chipset-->AMD Ryzen PRO 3 2200U 5 2500U || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|m.2 nvme/sata}} || <!--Gfx-->{{Maybe|VESA Vega up to 2Gb of soldered ram memory taken}} || <!--Audio-->{{unk|HD Audio with ALC ALC3287 codec aka ALC257 }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{No|Mini-Ethernet/Docking}} || <!--Wireless-->{{no|Realtek or Qualcomm - WLAN whitelist no more??}} || <!--Test Distro--> || <!--Comments-->2018 64bit - 12.5in 1080p - avoid usb-c port being lifted/moved whilst in use as damages laptop easily - soldered ram 8gb or 16gb - WWAN whitelist - keyboard swap problematic -
|-
|<!--Name-->Thinkpad A485 bios setting [https://github.com/PSPReverse/PSPTool AMD PSP Platform Security Processor Key] - internal and external battery || <!--Chipset-->AMD Ryzen PRO 5 2500U || <!--IDE-->{{N/A}} || <!--SATA-->sata port and m.2 nvme port || <!--Gfx-->{{Maybe|VESA Vega }} || <!--Audio-->{{unk|HD Audio with ALC ALC3287 codec aka ALC 257 }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 RTL8111GUL}} || <!--Wireless-->{{no|Realtek or Qualcomm wifi - WLAN whitelist no more??}} || <!--Test Distro--> || <!--Comments-->2018 64bit - 14in 768p, 1080p or 1440p - avoid usb-c port being lifted/moved whilst in use as damages laptop easily - 2 ddr4 sodimm slots max 32gb - WWAN whitelist - keyboard swap problematic -
|-
|<!--Name-->[https://www.diy-laptoprepair.com/forum/fix-Lenovo-V155-15-repair-guide-schematics.php Lenovo v155-15api 81V5] V155 (15" AMD) budget all plastic build - MS new protocol, HID over I2C so [https://askubuntu.com/questions/1033033/elantech-touchpad-does-not-work-i2c-hid i2c] [https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/drivers/input/mouse/elantech.c?h=v6.17 i2c] [https://www.kernel.org/doc/html/v4.16/input/devices/elantech.html PS2 hybrid trackpad] [https://cgit.freebsd.org/src/tree/sys/dev/atkbdc/psm.c?h=releng/14.3 elantech] [https://cvsweb.openbsd.org/cgi-bin/cvsweb/src/sys/dev/pckbc/?only_with_tag=OPENBSD_7_8_BASE i2c-hid] 04F3:3140 touchpad not working - internal sunwoda battery L18D3PF1, L18L3PF1, L18C3PF2 35Whr most dead after 5 years || <!--Chipset-->'''tested''' Ryzen 5 3500U and Ryzen 3 3200U - '''untested''' AMD Athlon 300U with bios winbond 25q64fwsiq soic 1.8v bios near nvme || <!--IDE-->{{N/A}} || <!--SATA-->1 M.2 nvme and usually 2.5in 7mm sata - install on mbr not gpt 2.5in in another compatible machine - mini sata dvd/cd da-8aesh11b will boot cd or dvd aros || <!--Gfx-->{{Maybe|VESA 2D to 1080p work for Vega 3 or 8 with up to 2Gb of soldered ram memory taken but hdmi 1.4b no output}} || <!--Audio-->{{Yes|HDAudio add 0x1022, 0x15E3 with ALC3287 aka Realtek ALC257 codec 0x10ec, 0x0257 with 32bit on external speaker and most of the time works on 64bit}} || <!--USB-->{{maybe|2 USB3.0, on left hand side, detected but no usb-c ports}} || <!--Ethernet-->{{yes|rtl8169 RTL8111GUS works well with 32bit and 64bit}} || <!--Wireless-->{{no|Realtek or Intel wifi}} || <!--Test Distro-->2025 AROS One 2.8 DVD 32bit and AROS One x64 1.1 and 1.2 iso DVD burnt || <!--Comments-->2019 64bit - 15.6in 768p or 1080p 200nits tn panel - 4Gb ddr4 2400MHz soldered with 1 dimm slot max 20Gb - round ac 20V 65W psu 4.0mm x 1.7mm - Fn+F2 to enter bios and F12 boot order - no sd card slot - 2pin cr2032 cmos coin battery -
|-
|<!--Name-->V15-ADA 82C700E4UK- elan touchpad not working - internal battery 34whr L16M2PB2 l16l2pb3 || <!--Chipset-->AMD r5 3500U || <!--IDE-->{{N/A}} || <!--SATA-->1x 2.5" HDD + 1x M.2 SSD NVMe near fan, no cd dvd || <!--Gfx-->{{Maybe|VESA 2D for Vega 3, 8 with up to 1080p with 2Gb of soldered ram memory taken}} || <!--Audio-->{{Yes|HD Audio 6.36 0x1022, 0x15E3 with R155189 ALC236 codec 0x10ec, 0x0236 on 32bit and on 64bit}} || <!--USB-->{{maybe|3 USB3, on left hand side,}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no|Realtek or Qualcomm wifi}} || <!--Test Distro-->2025 3500U with Aros One 32bit 2.8 installed to 2.5in drive on another machine and same for 64bit || <!--Comments-->2019 64bit - 14 or 15.6in 768p on low spec machines to 1080p - 4GB soldered with 1 ddr4 sodimm slot - 2pin cr2032 cmos coin battery - sd card slot - noisy fan -
|-
|<!--Name-->V15-ADA 82C7 - elan touchpad not working - internal battery 34whr L16M2PB2 l16l2pb3 || <!--Chipset-->AMD Athlon Silver 3020e, Ryzen 3 3050U, 3150U, 3250U || <!--IDE-->{{N/A}} || <!--SATA-->1x 2.5" HDD + 1x M.2 SSD NVme near fan, no cd dvd || <!--Gfx-->{{Maybe|VESA 2D for Vega 3, 8 with up to 1080p with 2Gb of soldered ram memory taken}} || <!--Audio-->{{No|HD Audio 6.36 0x1022, 0x15E3 with RTS5119 R155119 ALC230 codec}} || <!--USB-->{{maybe|3 USB3.0, on left hand side,}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no|Realtek or Qualcomm wifi}} || <!--Test Distro-->2025 Aros One 32bit 2.8 and 64bit || <!--Comments-->2019 64bit - 14 or 15.6in 768p on low spec machines to 1080p - 4GB soldered with 1 ddr4 sodimm slot - 2pin cr2032 cmos coin battery - sd card slot - for this mbd bios ram disable doesn't work - noisy fan -
|-
|<!--Name-->Lenovo V14-ADA 82C6, - elan touchpad not working - if blank black display, bios bug going from uefi->legacy so reset bios rhs push in with pin, then Down, ent, Right x3, ent, up, ent, right, ent x2 - internal battery 34whr L16M2PB2 l16l2pb3 || <!--Chipset-->'''tested''' 3250U - '''untested''' AMD Athlon Silver 3020e, Ryzen 3 3050U, 3150U - for this mbd GV451&GV551 NM-D151 bios ram disable doesn't work || <!--IDE-->{{N/A}} || <!--SATA-->1x 2.5" HDD if cbl + 1x M.2 SSD NVMe near fan, no cd dvd || <!--Gfx-->{{Maybe|VESA 2D for Vega 3 up to 1080p with 2Gb of soldered ram memory taken}} || <!--Audio-->{{no|HD Audio 6.36 0x1022, 0x15E3 with Realtek ALC3223 RTS5119 R185199 aka ALC230 codec 0x10ec, 0x0230 on 32bit and on 64bit}} || <!--USB-->{{maybe|3 USB3, on left hand side,}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no|Realtek or Qualcomm wifi}} || <!--Test Distro-->2025 AMD 3250U with Aros One 32bit 2.8 installed to 2.5in drive on another machine and same for 64bit || <!--Comments-->2019 64bit - 14 or 15.6in 768p on low spec machines to 1080p - 4GB soldered with 1 ddr4 sodimm slot - 2pin cr2032 cmos coin battery - sd card slot - F2 bios F12 select -
|-
|<!--Name-->IdeaPad 1 14ADA5 (low spec cpus) ideaPad 3 14ADA05, IdeaPad 3 15ADA05 81W100QVUK, IdeaPad 3 17ADA05 - elan touchpad not working - internal battery 34whr L16M2PB2 l16l2pb3 || <!--Chipset-->AMD Athlon Silver 3020e, Ryzen 3 3050U, 3150U, 3250U, Ryzen 5 3500U on mobo NM-C821 REV 0.2 1.0 || <!--IDE-->{{N/A}} || <!--SATA-->1x 2.5" HDD if cbl + 1x M.2 SSD NVMe near fan, no cd dvd || <!--Gfx-->{{Maybe|VESA 2D for Vega 3, 8 up to 1080p with 2Gb of soldered ram memory taken}} || <!--Audio-->{{no|HD Audio 6.36 0x1022, 0x15E3 with ALC230 codec 0x10ec, 0x0230 on 32bit and on 64bit}} || <!--USB-->{{maybe|3 USB3, on left hand side,}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no|Realtek or Qualcomm wifi}} || <!--Test Distro-->2025 Aros One 32bit 2.8 installed to 2.5in drive on another machine and same for 64bit || <!--Comments-->2019 64bit - 14 or 15.6in 768p on low spec machines to 1080p - 4GB soldered with 1 ddr4 sodimm slot - 2pin cr2032 cmos coin battery - sd card slot - F2 bios F12 boot select -
|-
|<!--Name-->Lenovo IdeaPad L340-15API 81LW001CUS L340-17API - elan trackpad not functioning - internal battery L18M3PF2 || <!--Chipset-->AMD Athlon 300U, Ryzen 3 3200U r5 3500U || <!--IDE-->{{N/A}} || <!--SATA-->1 M.2 nvme and usually 2.5in sata if ribbon cable present - mini sata dvd/cd da-8aesh11b || <!--Gfx-->{{Maybe|VESA 2D for Vega 3 or 8 with up to 2Gb of soldered ram memory taken - hdmi 1.4b}} || <!--Audio-->{{unk|HDAudio add 0x1022, 0x15E3 with Realtek ALC236 0x10ec, 0x0236}} || <!--USB-->{{maybe|USB3 not detected}} || <!--Ethernet-->{{maybe|rtl8169 RTL8111GUS}} || <!--Wireless-->{{no|Realtek or Intel wifi}} || <!--Test Distro-->AROS One 2.8 USB - install on mbr not gpt 2.5in in another compatible machine || <!--Comments-->2019 64bit - 15.6in 768p or 1080p 200nits - 4Gb ddr4 2400MHz soldered with 1 dimm slot max 20Gb - round ac 20V 65W psu 4.0mm x 1.7mm - Return or F1 to enter bios and F12 boot order - no sd card slot -
|-
|<!--Name-->[https://www.laptop-schematics.com/db/78/T%20series%20laptops%20(ThinkPad)/ ThinkPad T295 T495] || <!--Chipset-->Ryzen 3 3300U, R5 Pro 3500U or R7 3700U || <!--IDE-->{{N/A}} || <!--SATA-->1 NVMe up to 2280 || <!--Gfx-->{{Maybe|VESA Vega 6, 8 or 10 up to 2Gb of soldered ram memory taken}} || <!--Audio-->{{unk|HD Audio with Realtek® ALC3287 codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 Realtek RTL8111EPV}} || <!--Wireless-->{{No|Realtek RTL8822BE or Intel AC 9260}} || <!--Test Distro--> || <!--Comments-->2019 64bit - 14in 768p but mostly FHD 1080p 250 nits - internal battery - ram 8gb or 16gb 2400Mhz soldered with 1 ddr4 slot on T495 only - TPM 2.0 - usb-c charging avoid knock whilst in use - keyboard swap problematic -
|-
|<!--Name-->ThinkPad T495s (14in) X395 (13in) || <!--Chipset-->Ryzen 3 3300U, R5 Pro 3500U or R7 3700U || <!--IDE-->{{N/A}} || <!--SATA-->1 NVMe up to 2280 || <!--Gfx-->{{Maybe|VESA Vega 6, 8 or 10 up to 2Gb of soldered ram memory taken}} || <!--Audio-->{{unk|HD Audio with Realtek® ALC3287 codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{unk| needs Lenovo ThinkPad Ethernet Adapter Gen 2 SC10P42352 or SC10P42354}} || <!--Wireless-->{{No|Realtek RTL8822BE or Intel AC 9260 wifi}} || <!--Test Distro--> || <!--Comments-->2019 64bit - 13in or 14in 768p but mostly FHD 1080p 250 nits - internal battery - ram 8gb or 16gb 2400Mhz soldered - TPM 2.0 - usb-c charging avoid knock whilst in use - keyboard swap problematic -
|-
|<!--Name-->ThinkPad E14 Gen2, E15 Gen 2 (AMD) 20T8, - lenovo has a mobile phone PC Diagnostic App for error/beep codes || <!--Chipset-->AMD Ryzen 3 4300U, 5 4500U, 7 4700U || <!--IDE-->{{N/A}} || <!--SATA-->2 m.2 nvme, 1 2242 and 1 2280 || <!--Gfx-->{{Maybe|VESA 2D for AMD Radeon up to 2Gb of soldered ram memory taken}} || <!--Audio-->{{unk|HD Audio with ALC ALC3287 codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 RTL8111GUS}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2020 15.6in 1080p 220 nits - TPM 2.0 - usb-c charging of internal 45Whr battery - 4gb ddr4 3200Mhz soldered and 1 ddr4 sodimm slot max 20Gb - keyboard swap problematic - plastic bendy case -
|-
|<!--Name-->Lenovo ThinkPad T14 Gen 1, ThinkPad P14s Gen 1 (AMD) || <!--Chipset-->AMD Ryzen 3 4300u, 5 4500U, Ryzen 5 Pro 4650U, Ryzen 7 Pro 4750U || <!--IDE-->{{N/A}} || <!--SATA-->1 NVMe || <!--Gfx-->{{Maybe|VESA 2D for AMD Vega }} || <!--Audio-->{{unk|HDAudio with Realtek® ALC3287 0x10EC, 0x0257}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 RTL8111EPV (DASH models) or RTL8111HN}} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2020 64bit - USB-C charging avoid moving whilst in use - 14" or 15" 1080p - keyboard swap problematic - 8gb or 16gb 3200MHz soldered with 1 ddr4 sodimm slot - sd card slot -
|-
|<!--Name-->Thinkpad L14 Gen 1, L15 Gen 1, || <!--Chipset-->AMD Ryzen 3 4300u, 5 4500U, Ryzen 5 Pro 4650U, Ryzen 7 Pro 4750U || <!--IDE-->{{N/A}} || <!--SATA-->1 NVMe || <!--Gfx-->{{Maybe|VESA 2D for AMD Vega }} || <!--Audio-->{{unk|HDAudio with Realtek® ALC3287 0x10EC, 0x0257}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{no|rtl8169 needs dongle RTL8111EPV (DASH models) or RTL8111HN}} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2020 64bit - USB-C charger avoid moving whilst in use - 14" or 15" 1080p - keyboard swap problematic - 8gb or 16gb 3200MHz soldered with 1 ddr4 sodimm slot - sd card slot -
|-
|<!--Name-->Lenovo ThinkPad X13 Gen1 AMD, || <!--Chipset-->AMD RYZEN 3 4450U, 5 4650U or 7 4750U || <!--IDE-->{{N/A}} || <!--SATA-->One drive, up to 512GB M.2 2242 SSD or 1TB M.2 2280 SSD NVMe || <!--Gfx-->{{partial|VESA Radeon up to 2Gb of soldered ram memory taken}} || <!--Audio-->{{unk|HDAudio with Realtek® ALC3287 codec}} || <!--USB-->{{maybe| but USB-C ports can fail}} || <!--Ethernet-->{{no|Realtek RTL8111EPV, mini RJ-45 to RJ-45 via optional ThinkPad Ethernet Extension Adapter Gen 2}} || <!--Wireless-->{{no|Realtek Wi-Fi 6 RTL8852AE}} || <!--Test Distro--> || <!--Comments-->2020 13.3" HD 1366x768 to 1080p - USB-C port care needed as damages easily - Memory soldered to systemboard, no slots, dual-channel DDR4-3200 -
|-
|<!--Name-->Lenovo ThinkBook 14 G2, 15 G2 Are || <!--Chipset-->Ryzen 5 4500u, 7 4700U || <!--IDE-->{{N/A}} || <!--SATA-->14in has 2 m.2 nvme but 15in has 1 nvme and might have 2.5in sata metal caddy if smaller battery version || <!--Gfx-->VESA 2d for AMD Radeon up to 2Gb of soldered ram memory taken || <!--Audio-->{{unk|HDAudio with ALC???? codec 0x10EC, 0x0}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 }} || <!--Wireless-->{{No| wifi}} || <!--Test Distro--> || <!--Comments-->2020 64bit - 14in or 15in 1080p - usb-c charging but high failure rate on the charging port - 4gb or 8gb soldered with 1 ddr4 sodimm slot 3200mhz - hinge(s) issues -
|-
|<!--Name-->IdeaPad 5 14ARE05 (81YM), Ideapad 5 15ARE05 (), IdeaPad 3 17ARE05 (model 81W5) - elan touchpad MSFT0004:00 06CB:CD98 not working || <!--Chipset-->'''tested''' 4500u - '''untested''' AMD 3 4300U (4c4t), 4600U (6c12t), 7 4700u (8c16t) on AMD Promontory Bixby FCH || <!--IDE-->{{N/A}} || <!--SATA-->{{no|1x M.2 2242 slot and 1x M.2 2280 NVMe which will take sata m.2 will boot to grub then laptop reset after choice}} || <!--Gfx-->{{Maybe|VESA 2D for Vega 6 via hdmi output up to 2Gb of soldered ram memory taken}} || <!--Audio-->{{unk|HDAudio 6.36 0x1637 0x15e3 with Realtek ALC3287 aka ALC257 codec 0x10ec 0x0257}} || <!--USB-->{{maybe|USB 3.1 or 3.2 gen 1}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no|Intel ax200 wifi 6}} || <!--Test Distro-->4500u with AROS One 64bit 1.2 usb installed to m.2 sata on another machine || <!--Comments-->2020 64bit 14inch 768p or 1080p - round lenovo ac - 4gb, 8gb, or 16gb ddr4 3200Mhz ram soldered with 1 slot - keyboard swap problematic - integrated battery -
|-
|<!--Name-->Ideapad Flex 5 81X2, Lenovo Yoga 6 13ALC6 || <!--Chipset-->AMD R5 4500u, R7 4800U, R3 5300 R5 5500U || <!--IDE-->{{N/A}} || <!--SATA-->M.2 NVMe ssd || <!--Gfx-->{{Maybe|VESA AMD Vega up to 2Gb of soldered ram memory taken}} || <!--Audio-->{{unk|HD Audio with ALC? codec}} || <!--USB-->{{maybe|USB3.1 gen 1}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no|realtek ac wifi}} || <!--Test Distro--> || <!--Comments-->2020 64bit abs plastic case 14in convertible 1080p touch low nits - 65w usb-c psu ac - possible wacom esr note taking pen supplied - ram soldered DDR4 - keyboard swap problematic -
|-
|<!--Name-->ThinkPad T14 Gen 2, P14s Gen 2 || <!--Chipset-->AMD 5850U || <!--IDE-->{{N/A}} || <!--SATA-->NVme || <!--Gfx-->VESA 2D || <!--Audio-->{{unk|HDaudio with ALC3287-CG codec 0x10EC, 0x0}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{Maybe| }} || <!--Wireless-->{{No| }} || <!--Test Distro--> || <!--Comments-->2021 - usb-c power 90% failure rate on the charging port -
|-
|<!--Name-->Lenovo ThinkBook 14 G3, 15 G3 ACL, || <!--Chipset-->Ryzen 5 5500U || <!--IDE-->{{N/A}} || <!--SATA-->m.2 nvme || <!--Gfx-->VESA 2d for AMD Radeon || <!--Audio-->{{unk|HDAudio with ALC codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 }} || <!--Wireless-->{{No| }} || <!--Test Distro--> || <!--Comments-->2021 64bit - 14in or 15in 1080p - usb-c charging powered -
|-
|<!--Name-->ThinkPad E14 G3, E15 Gen 3 (AMD) || <!--Chipset-->AMD 5300U 5500U 5650U 5700U 5800U || <!--IDE-->{{N/A}} || <!--SATA-->up to 2 m.2 nvme || <!--Gfx-->{{Maybe|VESA }} || <!--Audio-->{{unk|HDaudio with Realtek® ALC3287 codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 RTL8111GUS}} || <!--Wireless-->{{no|realtek or intel }} || <!--Test Distro--> || <!--Comments-->2021 64bit - 15.6in 1080p - - usb-c charging issues - keyboard swap problematic - 4gb or 8gb soldered with 1 ddr4 3200Mhz sodimm slot - plastic bendy case -
|-
|<!--Name-->V14 Gen 2 (82KA, 82KC)
*ALO
*ALC 82KD
|| <!--Chipset-->Ryzen 3 5300U, 5 5500U, 7 5700U || <!--IDE-->{{N/A}} || <!--SATA-->1 nvme 2280 and optional 2.5in sata after sourcing ribbon cable and connector, no dvd || <!--Gfx-->VESA 2D for AMD radeon || <!--Audio-->{{unk|HDAudio with Realtek® ALC3287 codec}} || <!--USB-->{{maybe|USB3 }} || <!--Ethernet-->{{maybe|rtl8169 Realtek RTL8111H-CG}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2022 64bit - 15.6" FHD 1080p - 4gb or 8gb soldered with 1 ddr4 sodimm slot - 65w round ac adaptor -
|-
|<!--Name-->V15 G2 Gen2 (82KB, 82KD)
*ALO
*ALC 82KD
|| <!--Chipset-->Ryzen 3 5300U, 5 5500U, 7 5700U || <!--IDE-->{{N/A}} || <!--SATA-->1 nvme 2280 and optional 2.5in sata after sourcing ribbon cable and connector, no dvd || <!--Gfx-->VESA 2D for AMD radeon || <!--Audio-->{{unk|HDAudio with Realtek® ALC3287 codec}} || <!--USB-->{{maybe|USB3 }} || <!--Ethernet-->{{maybe|rtl8169 Realtek RTL8111H-CG}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2022 64bit - 15.6" FHD 1080p - 4gb or 8gb soldered with 1 ddr4 sodimm slot - 65w round ac adaptor -
|-
|<!--Name-->ThinkPad L15 Gen 2 (15″, AMD) || <!--Chipset-->AMD 5000 series AMD Ryzen 3 5400U (4c8t), 5 5600U, 5 5650U (6c12t), 7 PRO 5850U (8c16t) || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->VESA 2D for AMD Radeon || <!--Audio-->{{unk|HDAudio with Realtek® ALC3287}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{no|rtl8169 needs dongle RTL8111EPV (DASH models) or RTL8111HN}} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2022 64bit - 15.6in 768p or 1080p - usb-c charging - 4gb soldered with 1 ddr4 3200Mhz sodimm slot -
|-
|<!--Name-->ThinkPad E14 Gen 4, E15 Gen 4 (15″, AMD) || <!--Chipset-->AMD 3 5425u, 5 5625U, 7 5825u || <!--IDE-->{{N/A}} || <!--SATA-->1 (14") or 2 (15") nvme || <!--Gfx-->VESA 2D for AMD Radeon || <!--Audio-->{{unk|HDAudio with ALC3287 codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 }} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2023 64bit - 15.6in 1080p - usb-c charging - 4gb or 8gb soldered with 1 ddr4 3200Mhz sodimm slot - L19M3PDA 45Whr battery - U24 TPS65994 and QB6 QB5 mosfet issues - plastic bendy case -
|-
|<!--Name-->ThinkPad T14 Gen 3 Machine types MT 21AH 21AJ 21CF and 21CG, P14s Gen 3 || <!--Chipset-->AMD 6850U || <!--IDE-->{{n/a}} || <!--SATA-->NVme || <!--Gfx-->VESA 2d || <!--Audio-->{{unk| ALC3287-VA2-CG codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{Maybe|rtl8169 }} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2022 64bit - 14in
|-
|<!--Name-->ThinkPad T14s Gen 3 || <!--Chipset-->AMD 6500U || <!--IDE-->{{n/a}} || <!--SATA-->NVme || <!--Gfx-->VESA 2d || <!--Audio-->{{unk| ALC3287-VA2-CG codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{no|Ethernet support via optional Lenovo® USB-C® to Ethernet Adapter}} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2022 64bit - 14in
|-
|<!--Name-->V14 G3, V15 G3 Gen3 ALC || <!--Chipset-->Ryzen 5 6500U || <!--IDE-->{{N/A}} || <!--SATA-->nvme and optional 2.5in sata if smaller 38Wh battery and after sourcing ribbon cable and connector, no dvd || <!--Gfx-->VESA 2D for AMD Radeon || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 }} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2023 64bit - 15"FHD - battery BYD L20B2PFO -
|-
|<!--Name-->ThinkPad L15 Gen 3 (15″, AMD) || <!--Chipset-->AMD 6000 series || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D for AMD Radeon || <!--Audio-->{{No| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{no|rtl8169 needs dongle}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2023 64bit- 15.6in 1080p -
|-
|<!--Name-->Lenovo Yoga 7 14ARB7 || <!--Chipset-->AMD Ryzen 5, 6600U, 7 6800U || <!--IDE-->{{N/A}} || <!--SATA-->1 nvme || <!--Gfx-->AMD 660M or 680M || <!--Audio-->{{No|HDaudio with ALC3306 aka alc287 codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2022 64bit - 14in 1800p ips 300 nits - usb-c ac charging 71whr integrated battery - sd card slot - digital pen input - 8gb, 6gb or 32gb soldered ddr5 ram -
|-
|<!--Name-->ThinkPad T14 Gen 4, P14s Gen 4 || <!--Chipset-->AMD Ryzen Pro 5 7540U, Ryzen Pro 7 7840U (AI NPU) || <!--IDE-->{{n/a}} || <!--SATA-->NVme || <!--Gfx-->VESA 2D for AMD 740M 780M|| <!--Audio-->{{unk|HDAudio ALC3287 codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 }} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2023 64bit - 14in 1920x1200 - 8gb, 16gb or 32gb lpddr5 soldered - usb-c charging -
|-
|<!--Name-->ThinkPad E14 g5, E15 Gen 5 (15″, AMD) || <!--Chipset-->AMD 7000 series Ryzen 5-7530U, 7-7730U || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D for AMD Radeon || <!--Audio-->{{unk|HDAudio with codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe| }} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2023 64bit- 15.6in 1080p -
|-
|<!--Name-->Thinkbook 14 G6 ABP IRL, ThinkBook 16 G6ABP (21KK001CUK) || <!--Chipset-->AMD Ryzen 7530U 7730U || <!--IDE-->{{N/A}} || <!--SATA-->m.2 nvme || <!--Gfx-->VESA 2d for AMD Radeon || <!--Audio-->{{unk|HDaudio with codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 untested}} || <!--Wireless-->{{No| wifi}} || <!--Test Distro--> || <!--Comments-->2023 64bit - 14in 1200p or 1440p - 100W USB-C AC power adapter -
|-
|<!--Name-->IdeaPad Slim 5 Light 14ABR8 Laptop || <!--Chipset-->AMD Ryzen 3 7330U (4c8t) 5 7530U (6c12t) 7 7730U (8c16t) || <!--IDE-->{{N/A}} || <!--SATA-->2 m.2 nvme slot - 1 2242, 1 2280 || <!--Gfx-->VESA 2d for AMD Radeon || <!--Audio-->{{unk|HDaudio with Realtek® ALC3287 codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{No| wifi}} || <!--Test Distro--> || <!--Comments-->2023 64bit - 14in 1080p - 8Gb or 16Gb soldered ram - usb-c charging only -
|-
|<!--Name-->ThinkPad X13 Gen 4 (13" AMD) || <!--Chipset-->AMD 7480U 7040U || <!--IDE-->{{N/A}} || <!--SATA-->NVMe || <!--Gfx-->{{partial|VESA}} || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2023 - avoid usb-c port damage -
|-
|<!--Name-->ThinkPad L14 (Gen4), L15 Gen 4 (15" AMD) || <!--Chipset-->MD Ryzen 5 PRO 7530U, 7480U 7040U || <!--IDE-->{{N/A}} || <!--SATA-->NVMe || <!--Gfx-->{{partial|VESA}} || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{no|rtl8169 needs dongle}} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2023 64bit - elan trackpad -
|-
|<!--Name-->Lenovo Gen 4 V14 (82YT, 82YV, 83A0, 83A1, 83CC, 83FR, 82YX, 83FG), V15 (82YU, 82YW, 83FS, 82YY, 83CR), V17 (83A2), || <!--Chipset-->AMD AMD Athlon™ Gold 7220U (2c4t), AMD Athlon™ Silver 7120U (2c2t), AMD Ryzen™ 3 7320U (4c8t), AMD Ryzen™ 5 7520U (4c8t) || <!--IDE-->{{N/A}} || <!--SATA-->nvme and 2.5in sata if smaller 38Wh battery, no dvd || <!--Gfx-->{{Maybe|VESA 2d for AMD 610M HDMI® and USB-C}} || <!--Audio-->{{unk|HDaudio with ALC3287 codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{no|Gigabit Ethernet, 1x RJ-45}} || <!--Wireless-->{{no|wifi 6}} || <!--Test Distro--> || <!--Comments-->2023 64bit - 15.6" FHD 1080p - 8 or 16Gb soldered - 65W round tip (3-pin) AC adapter or USB-C -
|-
|<!--Name-->ThinkPad e14 G6, e15 Gen 6 (15″, AMD) || <!--Chipset-->AMD 7000 series AMD Ryzen™ 7 7735HS || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D for AMD Radeon || <!--Audio-->{{unk|HDAudio codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe| }} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2023 64bit- 15.6in 1080p -
|-
|<!--Name-->ThinkPad L16 (16" AMD), || <!--Chipset-->AMD 8000 || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D || <!--Audio-->{{unk|HDAudio with codec}} || <!--USB-->{{maybe|USB4}} || <!--Ethernet-->{{no|rtl8169 needs dongle}} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2025 64bit
|-
|<!--Name-->ThinkPad T14 Gen 5, P14s Gen 5 || <!--Chipset-->AMD Ryzen 7 PRO 8840U, AMD Ryzen™ 5 PRO 8540U || <!--IDE-->{{N/A}} || <!--SATA-->NVME || <!--Gfx-->VESA 2d || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 }} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2025 64bit - 14inch 1920 x 1200 -
|-
|<!--Name--> Lenovo WinBook 300e SKU: 82GKS00000 || <!--Chipset-->AMD 3015E || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2023 64bit 4GB 64GB SSD 11.6 Inch Touchscreen Windows 10 Pro Laptop
|-
|<!--Name-->ThinkPad || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
|<!--Name-->Lenovo Yoga Slim 7a || <!--Chipset-->AMD Ryzen AI 7350 || <!--IDE-->{{N/A}} || <!--SATA-->1 nvme || <!--Gfx-->AMD 860M || <!--Audio-->{{No|HDaudio with ALC3306 aka alc287 codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2025 64bit - 14in 1800p ips 300 nits - usb-c ac charging 71whr integrated battery - sd card slot - digital pen input - 8gb, 6gb or 32gb soldered ddr5 ram -
|-
|<!--Name-->ThinkPad || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|<!--Name-->ThinkPad || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
====Samsung====
[[#top|...to the top]]
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="2%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->NP-Q1 Q1 || <!--Chipset-->Celeron-M 353 ULV 600Mhz || <!--IDE-->{{Yes|1.8" SFF HDD 20 / 60 GB }} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Yes|GMA 915 2D and 3D opengl1 tunnel 95 gearbox 68}} || <!--Audio-->{{Yes|HD Audio with codec - head phones only}} || <!--USB-->{{Yes}} || <!--Ethernet-->{{No|Marvell}} || <!--Wireless-->{{Yes|Atheros 5006EX}} || <!--Test Distro-->2016 Icaros 2.1 || <!--Comments-->2005 32bit old style tablet UltraMobile PC UMPC - Wacom serial resistive pen or finger no support - 1 sodimm ddr2 max 1Gb - LCD 7" WVGA (800 x 480) - CompactFlash port Type II -
|-
| <!--Name-->NP Q1U Ultra Mobile PC UMPC Q1F NP-Q1-F000 || <!--Chipset-->Intel A100 600 / A110 Stealey 800 MHz CPU || <!--IDE-->{{Yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Maybe|GMA 950 2D and 3D opengl1}} || <!--Audio-->{{No|HD Audio 1986}} || <!--USB--> || <!--Ethernet-->Intel || <!--Wireless-->{{Maybe|Atheros 5006EX}} || <!--Test Distro-->2016 Icaros 2.1 || <!--Comments-->2006 32bit 1024×600 - sd card slot -
|-
| <!--Name-->NP P500 family P500Y || <!--Chipset-->AMD with SB600 || <!--IDE-->{{N/A| }} || <!--SATA-->{{Yes| }} || <!--Gfx-->{{Maybe|use VESA Ati x1250}} || <!--Audio-->{{Yes| Audio with codec }} || <!--USB--> || <!--Ethernet-->{{No|Marvell 88E8039 yukon}} || <!--Wireless-->{{yes|Atheros G}} || <!--Test Distro-->2017 Icaros 2.1.2 || <!--Comments-->64bit possible - 15.4 tft display - cheap plastic okay build - 19v propriety end -
|-
| <!--Name-->R505 R510 || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless-->Atheros G || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->R520 R522 R610H R620 || <!--Chipset-->Intel Mobile Core i3 Intel PM45 82801M ICH9-M|| <!--IDE--> || <!--SATA--> || <!--Gfx-->ATI Mobility Radeon HD 4650 (RV730) || <!--Audio-->Intel HD Audio with Realtek ALC272 || <!--USB--> || <!--Ethernet-->Marvell Yukon 88E8057 || <!--Wireless-->Atheros AR5007EG || <!--Test Distro--> || <!--Comments-->2010 64 bit possible
|-
| NP-R530 || || {{N/A}} || {{partial|IDE mode}} || {{yes|Intel GMA (2D)}} || {{partial|HD Audio playback}} || {{yes|USB 2.0}} || {{no|Marvell}} || {{unk|Atheros AR9285}} || Icaros 1.5.2 || <!--Comments-->
|-
| <!--Name-->Samsung R730 17.3 Essential Notebook NP-R730-JA02UK, NP-R730-JA01SE, R730-JT06 || <!--Chipset-->Intel HM55 Dual Core T4300 i3-370M || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|use VESA for Intel 4500MHD and GeForce G 310M with 1 VGA, 1 HDMI}} || <!--Audio-->{{Yes|HDAudio ALC??? codec Realtek}} || <!--USB-->{{yes|USB2}} || <!--Ethernet-->{{No|Marvell Yukon 88E8059 PCI-E}} || <!--Wireless-->{{unk|Broadcom, Intel or Atheros 9k AR9285}} || <!--Test Distro-->Deadwoods ISO 2023-11 || <!--Comments-->2010 64bit - 17.3in HD 1280 x 720 pixels low contrast or some 1600x900 - 2 DDR3 sodimm slots - 2.84 kg 6.26 lbs -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->[http://www.notebookcheck.net/Review-Samsung-305U1A-A01DE-Subnotebook.68246.0.html Series 3 Samsung 305u1a] || <!--Chipset-->AMD Zacate E350 or E450 || <!--IDE--> || <!--SATA--> || <!--Gfx-->AMD Radeon 6320 || <!--Audio-->ALC ACL 269 || <!--USB--> || <!--Ethernet-->Realtek 8111 8169 || <!--Wireless-->Broadcom 4313 || <!--Comments-->2011 64bit
|-
| <!--Name-->NP-RV415 NP-RV515 || <!--Chipset-->E350 or E450 plus A50M chipset || <!--IDE--> || <!--SATA--> || <!--Gfx-->AMD Radeon HD 6470 || <!--Audio-->HD Audio Realtek || <!--USB--> || <!--Ethernet-->{{unk|RTL8169 Realtek RTL8111 8168B}} || <!--Wireless-->{{unk|Atheros AR9285}} || <!--Test Distro--> || <!--Comments-->2012 64bit slow -
|-
| <!--Name-->Series 5 NP535U3C || <!--Chipset-->A6-4455M || <!--IDE-->{{N/A}} || <!--SATA-->2.5in || <!--Gfx-->radeon || <!--Audio-->HDAudio || <!--USB-->USB2 || <!--Ethernet-->Realtek GbE || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2012 64bit slow - 13.3in 1368 x 768 - plastic build - 65w 19v psu -
|-
| <!--Name-->series 3 NP355V5C || <!--Chipset-->A6-4400M, A8-4500M, A10-4600M || <!--IDE-->{{N/A}} || <!--SATA-->2.5in || <!--Gfx-->7640M || <!--Audio-->HDAudio || <!--USB-->USB2 || <!--Ethernet-->Realtek GbE || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2012 64bit - 15.4in 1368 x 768 - plastic build - 65w 19v psu -
|-
| <!--Name-->Samsung ATIV Book 9 Lite NP905S3G || <!--Chipset-->AMD A6-1450 quad 1GHz Temash atom like || <!--IDE--> || <!--SATA-->128gb || <!--Gfx-->AMD 8250 || <!--Audio-->HD Audio || <!--USB--> || <!--Ethernet-->{{Maybe|Realtek rtl8169 but only with mini LAN AA-AE2N12B Ethernet Adapter RJ45 dongle}} || <!--Wireless-->{{unk|Atheros AR9565}} || <!--Test Distro--> || <!--Comments-->2014 64bit - 13.3 TN glossy 1366 x 768 200nits 60% srgb - plastic case - 26W battery built in with 4hr life - 19V 2.1A 3.0*1.0mm psu - 1 ddr3l slot max 4gb - 720p webcam - mini hdmi out - 1w speakers -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
====Toshiba====
[[#top|...to the top]]
Order of Build Quality (Lowest to highest)
<pre >
Equium
Satellite (Pro)
Libretto
Portege
Tecra
</pre >
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| Tecra 8100 8200 9000 || 440BX || {{yes|IDE}} || {{N/A}} || {{maybe|S3 Savage MX 3D (VESA only)}} || {{no|Yamaha DS-XG ymf744 ymf-754}} || {{yes|USB1.1 only}} || {{N/A}} || {{N/A}} || Icaros 1.5 || little support
|-
| <!--Name-->Tecra 9100 || <!--Chipset-->810 || <!--IDE-->{{Yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{maybe|S3 Savage IX}} || <!--Audio-->{{no|ymf754}} || <!--USB-->USB 1.1 || <!--Ethernet-->eeee pro100 || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->PSU Adapter For Toshiba Tecra 9000 9100 A1 A10 A11 A3 A3X A4 A5 A7 M1 M2 M3 M4 M5 M7 M9 R10 S1 series 75 Watt 15V 5A
|-
| [http://tuxmobil.org/toshiba_sp4600.html Satellite Pro 4600] || i810 || IDE || {{N/A}} || {{maybe|Trident Cyber Blade XP (VESA only)}} || {{no|YAMAHA DS-XG AC97 ymf754}} || {{yes|USB}} || {{yes|Intel e100}} || {{no|Agere (internal PCMCIA)}} || || little support
|-
| Satellite 2805 S603 || Intel 815 || {{yes|IDE}} || {{N/A}} || {{maybe|nVidia GeForce2 Go}} || {{no|Yamaha Corp YMF 754}} || {{yes|USB}} || {{yes|Intel PRO/100}} || {{dunno}} || || little support
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Satellite A10 S167 S1291 - A15 A20 A25 || <!--Chipset-->P4M || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel 852GM or Radeon || <!--Audio--> || <!--USB--> || <!--Ethernet-->RTL 8139 || <!--Wireless-->{{Maybe|Intel 2100, Agere or Atheros PA3399U 1MPC minipci}} || <!--Test Distro--> || <!--Comments-->a few models came with antenna leads
|-
| Satellite [http://eu.computers.toshiba-europe.com/innovation/jsp/SUPPORTSECTION/discontinuedProductPage.do?service=EU&com.broadvision.session.new=Yes&PRODUCT_ID=76230 A30-714] || P4-M / 82845 i845 || {{yes|82801}} || {{N/A}} || {{maybe|VESA}} || {{yes|AC97}} || {{yes}} || {{yes|RTL8139}} || {{N/A}} || Icaros 1.2.4 || nice laptop, drawbacks: heavy, really hot (P4-3.06 GHz!!) - A30 (EU) A33 (Australian) A35 (USA) -
|-
| <!--Name-->Satellite A40 A45 || <!--Chipset-->P4M or Celeron M with Intel 845 865 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel 852GME or Radeon 7000 Mobility || <!--Audio-->AC97 Realtek || <!--USB-->USB2.0 || <!--Ethernet--> || <!--Wireless-->Atheros 5002G 5004G - PA3299U mini pci || <!--Test Distro--> || <!--Comments-->2003 32bit - A40 S161 A40-S1611 A40-2701, A45-S120 A45-S1201 S130 S1301 S1501 -
|-
| <!--Name-->Satellite a50 A55 a60-s156 Equium A60 PSA67E A65 || <!--Chipset-->P4M or Celeron M with Intel 845 865 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel 852GME or Radeon 7000 Mobility || <!--Audio-->AC97 Realtek || <!--USB-->USB2.0 || <!--Ethernet--> || <!--Wireless-->Atheros 5002G 5004G - PA3299U mini-pci || <!--Test Distro--> || <!--Comments-->2003 32bit -
|-
| <!--Name-->Satellite A70 A75-S206 A80 A85-S107 || <!--Chipset-->P4M or Celeron-M with Intel 845 865 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel 852GME or Radeon 7000 Mobility || <!--Audio-->AC97 Realtek || <!--USB-->USB2.0 || <!--Ethernet--> || <!--Wireless-->Atheros 5002G 5004G - PA3299U mini-pci || <!--Test Distro-->Icaros 1.5.1 || <!--Comments-->2003 32bit -
|-
| Toshiba Satellite Pro M30 || intel 855 || {{yes|boots with ATA=nodma option}} || {{N/A}} || {{maybe|VESA}} || {{yes|AC97}} || {{yes|USB2.0}} || {{yes|Intel PRO/100 VE}} || {{dunno}} || Icaros 1.5 || nice laptop with some support
|-
| <!--Name-->Portege M300 - M200 tablet || <!--Chipset-->855GM with 1.2GHz Pentium M 753 || <!--IDE-->{{yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{maybe|VESA 2d only - tablet with nvidia 5200 go}} || <!--Audio-->{{no|AC97 STAC 9750}} || <!--USB-->{{yes}} || <!--Ethernet-->{{yes|Intel PRO 100}} || <!--Wireless-->{{no|Intel PRO Wireless 2200BG}} || <!--Test Distro--> || <!--Comments-->little support
|-
| <!--Name-->Tecra M2 M2-S || <!--Chipset-->Intel 855P Pentium-M || <!--IDE--> || <!--SATA-->{{N/A}} || <!--Gfx-->nvidia fx go5200 32mb or 64mb agp || <!--Audio-->AC97 1981B || <!--USB--> || <!--Ethernet--> || <!--Wireless-->Intel Pro || <!--Test Distro--> || <!--Comments-->2003 32bit - PSU 15V 5A -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Satellite Pro L20 267 (PSL2YE PSL2XE) PSL25E L30 || <!--Chipset-->Celeron M 370 1.4 1.5GHz, 1.73Ghz with RC410M SB400 || <!--IDE-->{{N/A| }} || <!--SATA-->{{yes|IDE mode}} || <!--Gfx-->{{Maybe|use VESA - Ati x200}} || <!--Audio-->{{No|[https://forums.gentoo.org/viewtopic-t-490297-start-0.html ALC861]}} || <!--USB-->{{Maybe|Boots usb sticks}} || <!--Ethernet-->{{yes|rtl8139 Realtek 8139}} || <!--Wireless-->{{No|Atheros mini-pci should work maybe not working with ATi chipset or need to swap??}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2004 32bit 14" pioneer dvd-rw - 19v
|-
| <!--Name-->Satellite L30 PSL30E L33 PSL33E || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel 800 or ATi RC410 x200 || <!--Audio-->AC97 AD1981B or HD Audio ALC861 || <!--USB--> || <!--Ethernet-->realtek 8139 || <!--Wireless-->Atheros or Intel || <!--Test Distro--> || <!--Comments-->L30 PSL30L 101 PSL33E 113 115 134 00M019 -
|-
| Satellite Pro M40 313 psm44e || AMD with Ati || {{yes|boots with ATA=nodma}} || {{N/A}} || {{maybe|VESA}} || {{yes|AC97}} || {{yes|USB2.0}} || {{yes|}} || {{maybe|atheros askey ar5bmb5 mini pci}} || || 2005 32bit - nice laptop with some support
|-
| <!--Name-->Satellite L40 PSL40E PSL40L, PSL43E || <!--Chipset-->945GM with U7700 1.3GHz ULV || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel 945 || <!--Audio-->{{No|Intel HD with AD1986A codec}} || <!--USB-->2 USB2.0 || <!--Ethernet-->realtek 8139 || <!--Wireless-->Atheros AR24xx Askey || <!--Test Distro-->Icaros 2.0.3 || <!--Comments-->2006 32bit only - - 12X 13G 139 14B 143 15J 19O -
|-
| <!--Name-->Satellite L45 PSL40U S7409 S2416 || <!--Chipset-->945GM with Celeron M 440 1.86 GHz || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel 945 || <!--Audio-->{{No|Intel HD with AD1986A codec}} || <!--USB-->2 USB2.0 || <!--Ethernet-->realtek 8139 || <!--Wireless-->Atheros AR24xx Askey || <!--Test Distro-->Icaros 2.0.3 || <!--Comments-->2006 32bit only -
|-
| <!--Name-->Satellite Pro A100 || <!--Chipset-->940G || <!--IDE--> || <!--SATA--> || <!--Gfx-->Nvidia G72M Quadro NVS 110M GeForce Go 7300 / Ati (PSAA3E)|| <!--Audio-->HD Audio with ALC861 codec || <!--USB--> || <!--Ethernet-->Intel 100 || <!--Wireless-->Intel 3945 swap with atheros || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->Satellite A110 159 (PSAB0), Equium A110 (PSAB2E), Satellite A110 233 (PSAB6), || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio-->ALC861 || <!--USB--> || <!--Ethernet-->Realtek 8136 || <!--Wireless-->Atheros || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->Satellite Pro A120 PSAC0 PSAC1 PSAC1E || <!--Chipset-->Core Solo GMA 950 to T2300 || <!--IDE--> || <!--SATA--> || <!--Gfx-->GMA 945 || <!--Audio-->ALC262 or AC97 AD1981B || <!--USB-->UHCI EHCI || <!--Ethernet--> || <!--Wireless-->Atheros Ar5001 or Intel or Broadcom || <!--Test Distro--> || <!--Comments-->15V 4A charger -
|-
| <!--Name-->Satellite Pro A120 || <!--Chipset-->Core Duo ATi RS480 + SB450 || <!--IDE--> || <!--SATA--> || <!--Gfx-->use VESA - ATI RC410 Radeon Xpress 200M || <!--Audio-->ALC262 || <!--USB-->OCHI UHCI || <!--Ethernet-->RTL 8139 || <!--Wireless-->Intel 3945 or Atheros Ar5001 || <!--Test Distro--> || <!--Comments-->15v 5a proprietary charger needed
|-
| <!--Name-->Satelite A130 PSAD6U || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet-->Realtek 8101E || <!--Wireless-->Atheros or Intel || <!--Test Distro--> || <!--Comments-->ST1311 s1311 ST1312 S2276 S2386 -
|-
| <!--Name-->Satellite A135 S2686 (Compal LA 3391P) || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet-->Realtek 8101E || <!--Wireless-->Atheros or Intel || <!--Test Distro--> || <!--Comments-->S2246 S2346 S2256 S4477 S4666 S4827 -
|-
| <!--Name-->Satellite A200 PSAE1E (Inventec MW10M) || <!--Chipset-->Pentium M with 945GM Express Celeron M 520 1.6Ghz or Pentium® Core Duo T2130 1.86 GHz || <!--IDE--> {{N/A}}|| <!--SATA--> {{Maybe|SATA}}|| <!--Gfx--> {{Yes|Intel GMA 950 (2D and 3D)}}|| <!--Audio--> {{Yes|HD Audio ALC862}}|| <!--USB--> {{Yes| }}|| <!--Ethernet--> {{yes|RTL8101E rtl8139}}|| <!--Wireless--> {{yes|Atheros 5000 - FN,F5 or FN,F8 or switch}} || <!--Test Distro-->2016 AspireOS 1.8 || <!--Comments-->2006 Excellent 32 bit support! - make sure that your WLAN card is enabled, do this using the hardware switch and FN+F8 key combination
|-
| <!--Name--> A210, Satellite A215 AMD (Inventec 10A) S5808 || <!--Chipset--> Ati with SB690 || <!--IDE--> {{N/A}}|| <!--SATA-->{{Maybe|SATA}}|| <!--Gfx-->{{Maybe|use VESA HD2600 Mobility M76}} || <!--Audio-->HD Audio ALC268 || <!--USB--> {{Yes| }}|| <!--Ethernet-->{{yes|RTL8101E}}|| <!--Wireless--> {{yes|Atheros 5000}}|| <!--Test Distro-->2018 AspireOS 1.8 || <!--Comments-->A215-S7422 A215-S7472 A215-S4697 (USA) -
|-
| <!--Name--> [http://www.amiga.org/forums/showthread.php?t=62036 A215 S4757] || <!--Chipset--> Ati X1200 with SB600 || <!--IDE--> {{N/A}}|| <!--SATA-->{{Maybe|SATA}}|| <!--Gfx-->{{Maybe}} || <!--Audio-->HD Audio || <!--USB--> {{Yes| }}|| <!--Ethernet-->{{yes|RTL8101E}}|| <!--Wireless--> {{yes|Atheros 5000}}|| <!--Test Distro-->2017 AspireOS 1.8 || <!--Comments-->
|-
| <!--Name-->Qosmio G30 (PQG31C-HD202E) || <!--Chipset-->945 with Duo T2500 || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->{{yes|Nouveau Nvidia Go 7600 2d and 3d}} || <!--Audio-->{{yes| }} || <!--USB-->{{yes| }} || <!--Ethernet-->{{no| }} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2006 32bit - 17" UXGA 1920x1200,
|-
| <!--Name-->Tecra A10 || <!--Chipset--> || <!--IDE--> {{N/A}} || <!--SATA--> {{Maybe|IDE mode}} || <!--Gfx--> {{Maybe|Intel GMA 4500M (2D)}} || <!--Audio--> {{Yes|HD Audio}} || <!--USB--> {{Yes|USB 2.0}} || <!--Ethernet-->{{No|Intel PRO 1000}} || <!--Wireless-->{{No|Intel WiFi Link 5100}} || <!--Test Distro--> || <!--Comments-->64 bit possible
|-
| <!--Name-->L35 - L40 PSL48E - L45 S7423 || <!--Chipset-->GL960 with Intel Celeron || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Maybe|X3100 some 2D but software 3d tunnel 9 gearbox 4}} || <!--Audio-->{{Yes|HD Audio with ALC660 codec playback}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{Yes|REALTEK 8139}} || <!--Wireless-->{{No|Realtek 8187b replace with Atheros 5k}} || <!--Test Distro-->2017 Icaros 2.1.2 || <!--Comments-->1,73Ghz M 520 or M 540 or Dual T2310 (1.46 GHz) T2330 (1.6 GHz) - 14H 14N 15B 17H 17K 17R 17S 18Z -
|-
| <!--Name-->Satellite a300 - inventec potomac 10s pt10s A300D 21H || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->ATI Mobility Radeon HD 3650 || <!--Audio-->HD Audio - Realtek || <!--USB--> || <!--Ethernet-->Realtek 8102E || <!--Wireless-->Atheros 5005 || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->satellite L300D-224 PSLC8E PSLC9E, l305 (inventec ps10s) || <!--Chipset-->AMD M780 with Turion RM70 or QL-64 || <!--IDE--> {{yes|IDE}} || <!--SATA--> {{yes|SATA}} || <!--Gfx--> {{Maybe|use VESA for Radeon 3100}} || <!--Audio-->{{maybe|HD Audio with Realtek ALC268}} || <!--USB--> {{yes|USB 2.0}} || <!--Ethernet--> {{no|rtl8169 Realtek RTL8101E RTL8102E}} || <!--Wireless-->{{no|Atheros G XB63L or Intel or Realtek}} || <!--Test Distro--> Icaros Desktop Live 2.3 AROS One 2.3 || <!--Comments--> Wireless-handler crashing when using Atheros-Wireless-Card
|-
| <!--Name-->Satellite P300 (PSPC0C-01D01C) || <!--Chipset-->945GM with Intel Core 2 Duo T5750 || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->{{maybe| }} || <!--Audio-->{{No| codec}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{no| }} || <!--Wireless-->{{No| swap with Atheros 5k }} || <!--Test Distro-->AROS One 64bit || <!--Comments-->2007
|-
| <!--Name-->satellite l300-1bw PSLBDE-005005AR, L300-148 PSLB0E, l300-20D PSLB8E-06Q007EN, l300-294 L300-23L PSLB9E || <!--Chipset-->Intel GM45 + PGA478 socket Celeron 900, Pentium T1600, T2390, T3400 (Socket P) to Core2 Duo T6400 T6670 || <!--IDE--> {{unk|IDE}} || <!--SATA--> {{unk|SATA}} || <!--Gfx--> {{Maybe|use VESA for Intel gma 4500M}} || <!--Audio-->{{maybe|HD Audio with Realtek ALC???}} || <!--USB--> {{unk|USB 2.0}} || <!--Ethernet--> {{unk|rtl8169 Realtek 810xE}} || <!--Wireless-->{{no|Intel or Realtek}} || <!--Test Distro--> || <!--Comments-->2009 64-bit - new unfamiliar Bios called insyde H20 -
|-
| <!--Name-->satellite l350d || <!--Chipset-->AMD Athlon (tm) X2 QL-60 + RS780M || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->Radeon HD 3100 || <!--Audio-->HD Audio with Realtek || <!--USB--> || <!--Ethernet-->Realtek || <!--Wireless-->Realtek 8187b || <!--Test Distro--> || <!--Comments-->2009 64bit
|-
| <!--Name-->Satellite L450 12 13 14 || <!--Chipset-->AMD Sempron, 2.1GHz with AMD RS780M || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->Radeon HD 3200 (based on HD 2400) || <!--Audio--> || <!--USB--> || <!--Ethernet-->Realtek RTL8101E RTL8102E || <!--Wireless-->Realtek 8172 || <!--Test Distro--> || <!--Comments-->2009 64bit - 12X 13P 13X 14V PSLY6E00C006EN
|-
| <!--Name-->Satellite Pro L450 (Compal LA-5821P) 179 || <!--Chipset-->intel celeron 900 2.20 Ghz no sse4.1 or avx || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->intel 4500m || <!--Audio-->HD Audio with codec || <!--USB--> || <!--Ethernet-->RTL8101 /2 /6E PCI Express Gigabit || <!--Wireless-->RTL8191 SEvB || <!--Test Distro--> || <!--Comments-->2009 64bit - 39.6cm (15.6”) Toshiba TruBrite® HD TFT 16:9 768p
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Toshiba Satellite P775, P775-S7320 and P775-10K || <!--Chipset-->Intel Core i5 (2nd Gen) 2430M i7-2630QM || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Maybe|Vesa 2D for Intel}} || <!--Audio-->{{maybe| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{no| }} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2011 17.3" - 1600 x 900 (HD+) - 2 DDR3 sodimm max 16Gb -
|-
|<!--Name-->Toshiba Satellite C660D-19X || <!--Chipset-->AMD E-300 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{maybe|Vesa 2D for ATi}} || <!--Audio-->{{no|HD Audio with Realtek codec}} || <!--USB-->{{no| }} || <!--Ethernet-->{{Maybe|r8169 rtl8101e}} || <!--Wireless-->{{no|Realtek RTL8188 8192ce rtl8192ce}} || <!--Test Distro--> || <!--Comments-->2011 64bit -
|-
| <!--Name-->L755D (E-350) L750D (E-450) || <!--Chipset-->AMD E350 E450 no sse4.1 or avx || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->Radeon HD 6310 6320 || <!--Audio-->HDAudio conexant codec || <!--USB--> || <!--Ethernet--> || <!--Wireless-->Realtek || <!--Test Distro--> || <!--Comments-->2012 64bit
|-
| <!--Name-->Satellite Pro SP C640 C660D-15X (PSC1YE) C670D- () || <!--Chipset-->AMD E350 no sse4.1 or avx || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->6310G || <!--Audio-->HD Realtek ALC259 || <!--USB-->USB2 || <!--Ethernet-->Realtek || <!--Wireless-->Broadcom || <!--Test Distro--> || <!--Comments-->2012 64bit
|-
| <!--Name-->C70D-A C75D-A || <!--Chipset-->E1-1200 no sse4.1 or avx || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{maybe|AMD HD8330}} || <!--Audio-->{{no|HA Audio CX20751 11Z}} || <!--USB-->{{no| }} || <!--Ethernet-->{{no|Atheros AR8162 alx}} || <!--Wireless-->{{no|Realtek 8188e}} || <!--Test Distro--> || <!--Comments-->2013 64bit -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
|}
====Misc====
[[#top|...to the top]]
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->Time 500 Packard Bell EasyOne 1450 1550 || <!--Chipset-->K6-3 500Mhz + VIA MVP4 vt82c686a || <!--IDE-->{{N/A|Issues}} || <!--SATA-->{{N/A}} || <!--Gfx-->Use VESA || <!--Audio-->{{No|VIA AC97 3058 with wolfson codec WM9703 WM9704 WM9707 WM9708 or WM9717}} || <!--USB-->via 3038 2 ports USB 1.1 untested || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{N/A}} || <!--Test Distro-->NB May 2013 || <!--Comments-->2001 32bit grub runs but stalls around [PCI] Everything OK
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->Sony Vaio PCG FX201/FX202 FX210/FX215 FX401/FX402 FX404/FX405 972M, FX501/FX502 FX504/FX505 || <!--Chipset-->VIA KT133A KM133 Duron 800Mhz Athlon 1.3Ghz || <!--IDE-->{{partial|boot issue with 2013 kernel VIA [rev 06]}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{partial|ATI Rage Mobility Pro (VESA only)}} || <!--Audio-->{{Yes|VIA AC97 686b [rev 50] AD1881A Ear phone and Mic}} || <!--USB-->{{Maybe|issues}} || <!--Ethernet-->{{Yes|RTL 8139}} || <!--Wireless-->{{N/A}} || <!--Comments-->Nightly 1st March 2013 || <!--Comments-->booting usb pendrive from Plop Boot Loader floppy (no bios USB boot). Can freeze coz hardware issue or a ram slot problem - no support for iLink firewire VT8363/8365 pci - vt82c686b
|-
| <!--Name-->Sony Vaio PCG FX601/FX602, FX604/FX605 FXA53(US), FX701/FX702, FX704/FX705, FX801/FX802 FX804/FX805 || <!--Chipset-->VIA KT133A KM133 Duron 800Mhz Athlon 1.3Ghz || <!--IDE-->{{partial|boot issue with 2013 kernel VIA [rev 06]}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{partial|ATI Rage Mobility Pro (VESA only)}} || <!--Audio-->{{Yes|VIA AC97 686b [rev 50] AD1881A Ear phone and Mic}} || <!--USB-->{{Maybe|issues}} || <!--Ethernet-->{{Yes|RTL 8139}} || <!--Wireless-->{{N/A}} || <!--Comments-->Nightly 1st March 2013 || <!--Comments-->booting usb pendrive somes works
|-
| <!--Name-->Sony Vaio PCG FX100 R505LE || <!--Chipset-->Intel i815 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Use VESA Intel 82815 CGC || <!--Audio-->Intel ICH AC97 with ADI AD1881A codec || <!--USB--> || <!--Ethernet-->Intel e100 || <!--Wireless-->{{N/A}} || <!--Test Distro--> || <!--Comments-->PCG-FX105 FX105K PCG-FX108 FX108K PCG-FX109 FX109K FX200 FX203/FX203K FX205 FX205K FX209 FX209K FX220 [http://juljas.net/linux/vaiofx240/ FX240] FX250 FX270 FX290 FX301 FX302 FX340 FX370 FX390 FX403 FX503 FX950
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| Sony VAIO VGN X505VP || Pentium M ULV and Intel 855GM || {{yes}} || {{N/A}} || {{maybe|Intel 855 (VESA only)}} || {{yes|AC97}} || {{yes|USB}} || {{yes|Intel PRO 100 VE}} || {{N/A}} || || 2004 32bit - 0.38 inches at its thinnest point - first laptop to feature a "chiclet" keyboard resemble Chiclets gum -
|-
| <!--Name-->Sony Z505LE Z505JE || <!--Chipset-->P3 || <!--IDE--> || <!--SATA-->n/a || <!--Gfx-->Rage Mobility M1 AGP mach64 || <!--Audio-->no Yamaha DS-XG PCI YMF744 || <!--USB--> || <!--Ethernet-->Intel 8255x based PCI e100 || <!--Wireless-->n/a || <!--Test Distro--> || <!--Comments-->2004 32bit -
|-
| <!--Name-->Panasonic Toughbook CF-18 || <!--Chipset-->Core || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{yes|gma for i915}} || <!--Audio-->{{yes|AC97 SigmaTel}} || <!--USB-->{{yes|usb2 }} || <!--Ethernet-->{{yes|RTL 8139C}} || <!--Wireless-->{{no|Intel swap for atheros 5k}} || <!--Test Distro-->Deadwoods' D02 test || <!--Comments-->2003 32bit
|-
| <!--Name-->Panasonic Toughbook CF-29 CF-30 || <!--Chipset-->Core || <!--IDE--> || <!--SATA--> || <!--Gfx-->use VESA || <!--Audio-->AC97 SigmaTel || <!--USB--> || <!--Ethernet-->RTL 8139C || <!--Wireless-->Intel || <!--Test Distro--> || <!--Comments-->2003 32bit
|-
| <!--Name-->MSI Microstar PR210 || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|use VESA ATi RS690M}} || <!--Audio-->{{Yes|HD Audio through speaker / head phones but not hdmi}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{yes|Realtek 8111 8169}} || <!--Wireless-->Atheros AR242x AR542x aw-ge780 mini pci-e || <!--Test Distro-->2017 Icaros 2.1.2 || <!--Comments-->2004 32bit - ENE PCI based SD card with no bios boot option
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Advent 7106 EAA-88 || <!--Chipset-->Pentium M 1.7GHz with 915GM || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Yes|2D and 3D tunnel 187 gearbox 67}} || <!--Audio-->{{Yes|AC97 Intel ICH6 with Conexant Cx20468 31 codec playback head phones only}} || <!--USB--> || <!--Ethernet-->{{Yes|Realtek 8169}} || <!--Wireless-->{{No|Intel 2200BG Fn/F2 replaced with atheros mini pci in small base panel - startup errors in wireless manager}} || <!--Test Distro-->2017 Icaros 2.1.1 || <!--Comments-->2005 32bit 14" cheap rubbish sadly - fan noise through audio channel -
|-
| <!--Name-->Motion Computing LE1600 PC Slate || <!--Chipset-->915 || <!--IDE--> || <!--SATA--> || <!--Gfx-->915 || <!--Audio-->Intel AC97 SigmaTel STAC9758 9759 || <!--USB--> || <!--Ethernet-->Realtek 8169 || <!--Wireless-->Intel PRO Wireless 2200BG || <!--Test Distro--> || <!--Comments-->2005 serial Wacom digitiser not usb
|-
| <!--Name-->Panasonic Toughbook CF-51 CF-P1 CF-T5 CF-Y2 || <!--Chipset-->945GMS || <!--IDE--> || <!--SATA--> || <!--Gfx-->GMA 950 || <!--Audio-->HD Audio || <!--USB--> || <!--Ethernet-->Broadcom || <!--Wireless-->Intel || <!--Test Distro--> || <!--Comments-->2006 32bit
|-
| <!--Name-->Sony Vaio VGN-AR11S || <!--Chipset-->ntel Core Duo T2500 || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{yes| Nvidia Go 7600}} || <!--Audio-->{{yes| }} || <!--USB-->{{yes| }} || <!--Ethernet-->{{no| }} || <!--Wireless-->{{No| }} || <!--Test Distro-->Aros One 32bit || <!--Comments-->2006 32bit - 17" 1920x1200 - blu-ray -
|-
| Sony Vaio VGN SR29VN || Intel ICH9 || {{N/A}} || {{maybe|IDE legacy}} || {{partial|ATI HD 3400 (VESA only)}} || {{partial|HD Audio (too quiet)}} || {{yes|USB1.1 and USB2.0}} || {{no|Marvell 8040}} || {{no|Intel 5100}} || Icaros 1.5 || 2007 32bit -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Wyse XM Class DELL WYSE Xn0m LAPTOP || <!--Chipset-->AMD T-G56N 1.6 1.65Ghz || <!--IDE-->{{N/A| }} || <!--SATA-->decased 2.5in ssd || <!--Gfx-->{{Maybe|Vesa 2d only AMD 6320}} || <!--Audio-->{{Maybe| }} || <!--USB-->{{Maybe|EHCI 2.0 with NEC uPD720200 USB 3.0}} || <!--Ethernet-->{{Yes|Realtek rtl8169 8111E}} || <!--Wireless-->{{No|Atheros 93xx}} || <!--Test Distro--> || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 - 1366 x 768 14" - 2 ddr3l slots max 16gb - 19v coax barrel plug psu -
|-
| <!--Name-->Panasonic Toughpad FZ-G1 MK2 || <!--Chipset-->Core i5-3437U, 1.9GHz || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet-->{{N/A}} || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2014 64bit -
|-
| <!--Name-->ToughPad FZ-G1 Mk3 || <!--Chipset-->Intel Core i5-4310U || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->Intel HD 4400 || <!--Audio-->HDaudio Codec ALC255 || <!--USB--> || <!--Ethernet-->{{N/A}} || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2015 64bit -
|-
| <!--Name-->[https://wiki.recessim.com/view/Panasonic_Toughpad_FZ-G1_MK4 Panasonic Toughpad FZ-G1 MK4] || <!--Chipset-->intel 6300U || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->Intel 520 || <!--Audio-->HDaudio with ALC256 codec - o/c or s/c fails early || <!--USB-->{{maybe|USB3 but options on the right hand side of screen case}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no|intel ac 8260}} || <!--Test Distro--> || <!--Comments-->2016 64bit - 10.1in 1600x1200 - 4gb ddr3l soldered - waterproof pen left hand side base - optional slot-in 4g lte and sdhc - 16v 4.06A 64.96W panasonic barrel -
|-
| <!--Name-->Panasonic Toughpad FZ-G1 MK5 || <!--Chipset-->intel i5-7300U || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->Intel 620 || <!--Audio-->HDaudio ALC295 codec - o/c or s/c fails early || <!--USB-->{{maybe|USB3 but optional usb2 plugin r.h.s. of screen casing}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no|Intel}} || <!--Test Distro--> || <!--Comments-->2018 64bit - 8gb ddr3l soldered - 10.1" WUXGA 1920 x 1200 with LED backlighting screen 2-800 nit - 10-point capacitive multi touch + Waterproof Digitizer pen l.h.s -
|-
| <!--Name-->ToughPad FZ-M1 || <!--Chipset-->Intel® Core TM m5-6Y57 vPro TM || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->Intel HD 4200 || <!--Audio-->HDaudio with ALC codec || <!--USB-->{{maybe| }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2016 64bit - 7in 800p - 8gb ddr3l soldered -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Any Razor Razer laptops || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->AVOID unable to remove secure boot
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
===Netbook===
[[#top|...to the top]]
* PC to write Aros image onto an USB pendrive with Raspberry PI writer, USB writer or Rufus for boot purposes on a netbook
* SD card sometimes can boot like Dell 2100, EeePC 1001P, ASUS EeePC 900, acer aspire one d150, MSI Wind U100,
====Acer Packard Bell Netbooks====
[[#top|...to the top]]
{| class="wikitable sortable" width=100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| Aspire One AOA110 (A110) (ZG5) || Intel 945GSE || {{N/A}} || {{Maybe|IDE legacy mode}} || {{Yes|Intel GMA (2D and 3D) tunnel 99 and gearbox 84 score}} || {{Yes|HD Audio ALC6628}} || {{Yes|USB1.1 and USB2.0}} || {{Yes|rtl8169 RTL8101E}} || {{Yes|AR5006}} atheros 5k || 2016 AspireOS 1.8, 2025 Aros One 2.6 32bit USB || 2007 32bit 1 core - 19v barrel A13-045N2A 19V2.37A 45W 5.5x1.7mm -
|-
| Aspire One AOA150 (A150) (ZG5) || Intel 945GSE || {{N/A}} || {{Maybe|ide mode}} || {{Yes|Intel GMA 2D and accelerated 3D with tunnel 99 and gearbox 84.1 result}} || {{Yes|HD Audio ALC6628}} || {{Yes|uhci and ehci}} || {{Yes|rtl8169 RTL8101E}} || {{Yes|AR5006}} atheros 5k || 2016 AspireOS 1.8, 2025 aros one 2.6 32bit USB || 2007 32bit 1 core - 19v barrel -
|-
| Aspire One AOD150 D150 (Compal LA-4781P), AOD110 D110 (ssd) || Intel 945GME || {{N/A}} || {{Maybe|ide legacy}} || {{Yes|Intel GMA 950 (2D)}} || {{Yes|HDAudio with alc272}} || {{Yes|USB}} || {{No|Atheros AR8121 AR8113 AR8114 l1e}} || {{Maybe|AR5007EG AR5BXB63 works but Broadcom BCM4312 has no support}} || 2010 Icaros Desktop 1.3, 2024 Aros one 32bit USB || 2008 32bit 1 core - 19v barrel -
|-
| Aspire One (ZG8) || Intel 945G and N270 || {{N/A}} || {{Maybe|ide mode}} || {{Yes|Intel GMA 2D and accelerated 3D}} || {{maybe|HD Audio }} || {{Yes|uhci and ehci}} || {{No|Broadcom }} || {{no|Intel}} || 2014 AspireOS 1.8 || 2009 32bit -
|-
| Aspire One AOD250 D250 emachines em250 || 945GME || {{N/A}} || {{Maybe|ide legacy}} || {{Yes|Intel GMA (2D)}} || {{Yes|alc272 HD Audio}} || {{Yes}} || {{No|AR8132 (L1c)}} || {{No|BCM4312 or Atheros AR5B95}} || 2010 Icaros 1.3 || 2009 32bit 1 core - 19v barrel -
|-
| <!--Name-->Aspire AO532H (Compal LA-5651p) 533H Pineview || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio-->{{Yes|HD Audio playback}} || <!--USB--> || <!--Ethernet-->{{No|AR8132 (L1c)}} || <!--Wireless-->{{No|Atheros 9k}} || [http://www.amigaworld.net/modules/news/article.php?mode=flat&order=0&item_id=5968 Tested AspireOS June 2011] || <!--Comments-->
|-
| <!--Name-->emachines eM350 NAV51 || <!--Chipset--> with N450 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel 3150 || <!--Audio-->HD Audio with codec || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro-->Icaros 2.2 || <!--Comments-->Single core 64bit - 160GB HDD 1GB RAM 10.1" LED backlit screen and Webcam - 3 cell li-ion battery for 3 hours usage -
|-
| <!--Name-->emachines eM355 || <!--Chipset--> with N455 || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->64bit support possible -
|-
| <!--Name-->Aspire One 533 || <!--Chipset-->N455 with NM10 || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes}} || <!--Gfx-->{{Yes|2D 0x8086 0xa011}} || <!--Audio-->{{Yes| ALC272 codec ich7}} || <!--USB-->{{Yes}} || <!--Ethernet-->{{No|Atheros AR8152 v1.1 1c}} || <!--Wireless-->{{No|Broadcom 4313}} || <!--Test Distro-->2016 Icaros 2.1 and AROS One 2.3 || <!--Comments-->2011 64bit - f2 setup - 10.1inch 1024 x 768 -
|-
| Aspire One AOD255 AOD255e AOD260 AOHAPPY (Compal LA-6221P) || N570 and Nm10 || {{N/A}} || {{Maybe|SATA}} || {{Maybe|Intel GMA 3150}} || Audio || USB || {{No|Atheros AR8152 V1.1 (1lc)}} || {{No|Broadcom BCM4313}} || || a little support
|-
| Aspire One 522 AO522 (Compal LA-7072p) || 1GHz dual C-50 C50 or C-60 C60 + Hudson M1 || {{N/A}} || SATA || AMD 6250 (ATI 9804) or 6290 || ATI SB CX20584 HD Audio || USB || Atheros 8152 v2.0 l1c || {{No|Broadcom BCM4313 or Atheros ath9k}} || ||
|-
| <!--Name-->AAOD270 Aspire One D270 || <!--Chipset-->N2600 Cedarview || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes| }} || <!--Gfx-->{{Yes|2D on Intel GMA 3650}} || <!--Audio-->{{Yes| }} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{Yes|RTL 8169 RTL8101E}} || <!--Wireless-->{{No|Broadcom BCM4313 but swap for Atheros 5k}} || <!--Test Distro--> || <!--Opinion-->2011 64bit atom - ddr2 so-dimm 2gb max -
|-
| <!--Name-->Aspire One AO532G (Compal LA-6091p) || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->Aspire One D257 (Quanta ZE6) || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->Acer Aspire One 722 AO722 P1VE6 || <!--Chipset-->AMD C-60 C60 with SB900 || <!--IDE-->{{N/A| }} || <!--SATA--> || <!--Gfx-->{{Maybe| use VESA Ati 6290}} || <!--Audio-->{{Yes|HD Audio with codec but no Wrestler HDMI output}} || <!--USB--> || <!--Ethernet-->{{No|Qualcomm Atheros AR8152 v2.0}} || <!--Wireless-->{{unk|Atheros AR9485}} || <!--Test Distro-->2017 Icaros 2.1.2 || <!--Comments-->
|-
| <!--Name-->Aspire One AO721 (Wistron SJV10-NL) || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->AO751 AO751H (Quanta ZA3) || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->Packard Bell Dot .S || <!--Chipset-->N280 + || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|legacy}} || <!--Gfx-->{{yes|Intel GMA950 (2D)}}|| <!--Audio-->HD Audio ALC272X || <!--USB--> USB2.0 || <!--Ethernet--> {{no|Atheros l1e}} || <!--Wireless-->{{no|Atheros 9k}} || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->Packard Bell Dot .SE || <!--Chipset-->N450 + || <!--IDE-->{{N/A}} || <!--SATA-->legacy || <!--Gfx-->Intel GMA950 (2D) || <!--Audio-->HD Audio ALC|| <!--USB-->USB2.0 || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->Packard Bell Dot .S2 NAV50 || <!--Chipset-->N455 NM10 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->Intel X3150 || <!--Audio-->HD Audio ALC269 || <!--USB--> || <!--Ethernet-->Atheros || <!--Wireless-->Atheros || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->Packard Bell Dot M/A || <!--Chipset-->1.2GHz Athlon L110 + RS690E || <!--IDE-->{{N/A}} || <!--SATA-->legacy mode? || <!--Gfx-->AMD ATI Radeon Xpress X1270 (VESA only) || <!--Audio-->HD Audio ATI SBx00 || <!--USB--> || <!--Ethernet-->Realtek RTL8101E RTL8102E rtl8169 || <!--Wireless-->{{unk|Atheros AR9285}} || <!--Test Distro--> || <!--Opinion-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
====Asus Netbooks====
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| [http://wiki.debian.org/DebianEeePC/Models eeePC] 700 701 2G 4G 8G Surf || Intel 910GML + ICH7 || {{N/A}} || {{Maybe|IDE legacy mode}} || {{Yes|Intel GMA 900 2D and 3D tunnel 68 gearbox 43 on 701 800x480}} || {{Yes|ALC662 HD Audio}} || {{Yes|UHCI and EHCI}} || {{No|Atheros L2}} || {{Yes|Atheros 5k AR5007EG (AR2425 works}} || 2016 Icaros 2.1.1, 2.1.2, Aros One 2.5 32bit USB, || 2007 32bit - power supplies fail due to bad caps issue 9.5V 2.5A 24W Charger AD59930 4.8*1.7MM -
|-
| [http://wiki.debian.org/DebianEeePC/Models eeePC] 701SD || Intel 910GML + ICH7 || {{N/A}} || {{Maybe|IDE legacy mode}} || {{Maybe|Intel GMA 900 (2D)}} || {{Yes|ALC662 HD Audio}} || {{Yes|UHCI and EHCI}} || {{No|Atheros L2}} || {{No|RTL8187SE swap with Atheros 5k}} || 2014 AspireOS 1.7, || 2007 32bit - boot issues but does boot with ATA=32bit,nopoll or ATA=nodma,nopoll
|-
| [http://wiki.debian.org/DebianEeePC/Models eeePC] 900 || Intel 910GML + ICH7 || {{N/A}} || {{Maybe|IDE legacy mode}} || {{Maybe|Intel GMA 900 (2D, 3D in some models)}} || {{Yes|ALC662 HD Audio}} || {{Yes|UHCI and EHCI}} || {{No|Atheros L2}} || {{Maybe|depends on chipset AR5007EG (AR2425) works but not RaLink}} || 2014 AspireOS 1.7, || 2008 32bit - boot issues but does boot with ATA=32bit,nopoll or ATA=nodma,nopoll. 900's may need BIOS upgrade to boot usb optical drives. 3D available in some model revisions - AD59230 9.5v 2.31a psu -
|-
| eeePC 900A || 945GSE || {{N/A}} || {{Maybe|IDE legacy mode}} || {{Yes|Intel GMA 950 (3D)}} || {{Yes|HD Audio ALC269}} || {{Yes|USB2.0}} || {{No|Atheros L1e [1969 1026]}} || {{Yes|Atheros 5k AR242x}} || Nightly Build 2012, 2023 Aros One 32bit 2.4 || 2009 32bit
|-
| eeePC 901 1000 || 945GM || {{N/A}} || {{Maybe|IDE legacy mode}} || {{yes|Intel GMA 950 (2D)}} || {{Yes|ALC269 HD Audio}} || {{Yes|USB}} || {{No|Atheros L1E (AR8121 AR8113 AR8114)}} || {{No|RaLink Device 2860 swap with Atheros 5k}} || 2011 Icaros 1.4, || 2009 32bit - 12v 3a psu -
|-
| eeePC Seashell 1000HA 1000HE 1008 1005HA || N280 + Intel GMA950 || {{N/A}} || SATA || {{Yes|Intel GMA (2D)}} || {{Yes|HD Audio ALC269}} || {{Yes|USB}} || {{Maybe|Realtek but not Atheros AR8132 (L1c)}} || {{unk|Atheros AR9285}} || 2014 Aspire OS 1.6, || 2010 32bit - 12v 3a psu -
|-
| <!--Name-->eeePC 1001ha || <!--Chipset-->GMA945 || <!--IDE-->{{N/A}} || <!--SATA-->legacy || <!--Gfx-->Intel GMA 950 (2D) || <!--Audio-->ALC269 HD Audio || <!--USB--> || <!--Ethernet-->{{No|Attansic Atheros AR8132 l1c}} || <!--Wireless-->{{No|RaLink RT3090 swap with Atheros 5k}} || <!--Test Distro-->untested || <!--Opinion-->2010 32bit
|-
| eeePC 1001P T101MT 1005PX 1005PE 1015PE Pineview 1001PXD || NM10 and N450 N455 CPU || {{N/A}} || {{Maybe|IDE mode}} || {{Yes|Intel GMA 3150 (2D)}} || {{Yes|HD Audio}} || {{Yes|USB 2.0}} || {{No|Atheros AR8132 (l1c)}} || {{unk|Atheros AR928x 802.11n}} || 2010 Icaros 1.3.3, || 2011 64bit - 19V 2.1A 2.3x0.7 -
|-
| EeePC 1015B 1215B || single C-30 C30 or dual C-50 C50 + Hudson M1 || {{N/A}} || SATA || {{partial|AMD 6250 (VESA only)}} || ATI SBx00 HD Audio || USB || {{No|AR8152 v2.0 atl1c}} || {{No|Broadcom BCM4313 [14e4 4727]}} || untested recently || 2011 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name-->Flare X101CH Cedarview || <!--Chipset-->N2600 + N10 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->Intel GMA 6300 || <!--Audio--> || <!--USB--> || <!--Ethernet-->{{No|Atheros l1c 2.0}} || <!--Wireless-->{{unk|Atheros 9k AR9285}} || <!--Test Distro--> || <!--Comments-->2012 64bit
|-
| <!--Name-->Flare 1025CE 1225CE || <!--Chipset-->N2800 + N10 || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{dunno|Intel GMA 3600}} || <!--Audio--> || <!--USB--> || <!--Ethernet-->{{No|Atheros l1c 2.0}} || <!--Wireless-->{{unk|Atheros 9k AR9285}} || <!--Test Distro--> || <!--Comments-->2012 64bit
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
====Dell Netbooks====
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| Inspiron 910 Mini 9 PP39S Vostro A90 || GMA945 || {{Maybe|STEC 8G 16G 32G IDE PATA Parallel ATA miniPCIE SSD 50MM / 70MM very slow}} || {{N/A| }} || {{yes|Intel GMA 2D and 3D opengl1}} || {{yes|ALC268 HD Audio}} || {{yes|USB2 boots and works}} || {{yes|rtl8169 Realtek RTL8102E}} || {{no|Broadcom BCM4310 and 4312 swap with atheros 5k bx32}} || ICAROS 1.3 but Icaros 2.3 (pci issues), AROS One 2.6 and Tiny AROS (digiclock startup) mouse cursor vanishes || 2008 32bit - 9inch 1024x600 screen - 1 ddr2 sodimm slot max 2gig - 19v 1.58a - 0 boot disk select - cr2032 battery under laptop base cover, while mem 2GB max under base flap -
|-
| <!--Name-->Inspiron Mini 10 1010 PP19S || <!--Chipset-->Atom Z520 Z530 Intel US15W Poulsbo || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{maybe|Intel GMA 500 (VESA only)}} || <!--Audio-->{{Maybe|HD Audio ALC269 codec}} || <!--USB--> || <!--Ethernet-->{{yes|rtl8169 RTL8102E}} || <!--Wireless-->{{no|Intel or BCM4312}} || <!--Test Distro-->untested || <!--Comments-->2008 32bit - 10.10 inch 16:9, 1366 x 768 glossy - 28whr or 56wHr battery options -
|-
| [https://wiki.ubuntu.com/HardwareSupport/Machines/Netbooks#Dell%20Mini%2010v%20(Inspiron%201011) Mini 10v 1011] [http://wiki.debian.org/InstallingDebianOn/Dell/InspironMini10v ] || Intel 950 || {{N/A}} || {{maybe|ide legacy mode}} || {{yes|Intel GMA (2D)}} || {{maybe|HDAudio}} || {{yes|USB}} || {{yes|RTL8102E 8103E}} || {{no|Dell 1397 Wireless}} || untested || 2008 32bit -
|-
| <!--Name-->Inspiron Mini 1018 || <!--Chipset-->Intel Atom N455 || <!--IDE-->{{N/A}} || <!--SATA-->{{partial|IDE mode }} || <!--Gfx-->{{yes|Intel GMA 3150 (2D, no VGA output)}} || <!--Audio-->{{partial|HD Audio head phones only - speaker and micro phone do not work}} || <!--USB-->{{yes|USB 2.0}} || <!--Ethernet-->{{yes|RTL8169}} || <!--Wireless-->{{unk|RTL8188CE or AR928X}} || <!--Test Distro-->2011 Icaros 1.5.1, || <!--Comments-->2009 64bit - 1 DDR3 max 2gb -
|-
| Latitude 2100 || Intel Atom N270 N280 1.60Ghz GMA 945GME || {{N/A}} || {{Yes|set to IDE in bios as ahci not working || {{yes|Intel GMA 950 (2D and 3D with tunnel 98 and gearbox 84)}} || {{yes|HD Audio with ALC272 codec}} || {{yes|USB2.0}} || {{No|Broadcom BCM5764M}} || {{No|Intel 5100 or BCM4322 DW 1510 half height mini pcie use small Atheros 5k}} || <!--Test Distro-->2016 AspireOS 1.8, Icaros 2.1.1 and AROS One USB 2.4 || 2009 32bit ddr2 sodimm max 2G - [https://sites.google.com/site/arosaspireone/about-aspire-one Webcam and card reader not working] lcd cable over hinge an issue - f12 bios and boot -
|-
| <!--Name-->Latitude 2110 2120 || <!--Chipset-->N470 1.83Ghz, N455 1.6Ghz, N550 1.5Ghz || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|ATA mode in bios not ahci}} || <!--Gfx-->{{Yes|Intel 3150 2D only}} || <!--Audio-->{{Maybe|HD Audio with ALC269 codec}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No| }} || <!--Wireless-->{{No| swap for Atheros}} || <!--Test Distro-->2014 Icaros 2.3, || <!--Comments-->2011 64bit does not support AVX or SSE 4.1 - ddr2 sodimm
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
====HP Compaq Netbooks====
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| HP Mini 2133 || VIA C7-M P4M900 / 8237 VX700 || {{N/A}} || {{maybe|SATA}} || {{maybe|VIA Chrome 9 HC (VESA only)}} || {{no|VT1708/A HD Audio}} || USB || {{no|Broadcom Corp NetXtreme BCM5788}} || {{no|Broadcom Corp BCM4312}} || untested || 2008 32bit -
|-
| HP mini 1000 Mi 2140 ks145ut || N270 + 945GM || {{N/A}} || SATA || <!--Gfx-->{{Yes|Intel GMA 950 (2D and opengl1 3d)}} || <!--Audio-->{{Yes|HD Audio (playback tested)}} || <!--USB-->{{Yes| }} || {{no|Marvell 88E8040}} || {{no|Broadcom Corp BCM4312 hard blocked}} || untested || 2009 32Bit - unable to change wifi card
|-
| <!--Name-->HP Mini 700 702 || <!--Chipset-->N270 + 945GSE || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{Yes|Intel GMA 950 (2D)}} || <!--Audio-->{{Yes|HD Audio IDT 92HD75B (111d:7608, only playback tested)}} || <!--USB-->{{Yes| }} || <!--Ethernet--> || <!--Wireless-->{{No|Broadcom hard locked}} || <!--Test Distro-->untested || <!--Comments-->2009 32bit -
|-
| Compaq HP Mini 110 110-3112sa || 945GM Express || {{N/A}} || {{maybe|IDE mode}} || {{yes|Intel GMA 950 (2D)}} || {{yes|HD Audio IDT STAC 92xx}} || {{yes|USB 2.0}} || {{no|Atheros}} || {{no|Broadcom hard blocked Fn+F12}} || untested || 2009 32bit - unable to change wifi
|-
| HP Mini 200 210 || 945GM NM10 Express || {{N/A}} || SATA || Intel GMA 950 || {{Maybe|HDAudio with }} || USB || RTL8101E RTL8102E || {{no|Broadcom BCM4312 hard locked}} || untested || 2009 32bit -
|-
| HP Mini 311 DM1 (Quanta FP7) || N280 + ION LE || {{N/A}} || SATA || nVidia Geforce ION || {{maybe|HDAudio with }} || USB || eth || {{No|hard locked}} || untested || 2009 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|}
====Lenovo Netbooks====
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| IdeaPad S9 S9e(3G) S10 S10e(3G) || 945GME || {{N/A}} || {{maybe|SATA}} || {{yes|Intel GMA (2D)}} || {{maybe|ALC269 or SigmaTel HD Audio}} || {{yes|USB}} || {{no|Broadcom NetLink BCM5906M}} || {{no|Broadcom BCM4312 hard blocked}} || untested || 2009 32bit -
|-
| IdeaPad S12 || Intel Atom N270 + Nvidia ION LE MCP79 || {{N/A}} || SATA || nVidia C79 ION [Quadro FX 470M] || {{maybe|ALC269 HD Audio}} || USB || {{no|Broadcom}} || {{no|Intel locked down}} || 2012 Icaros 2.0, || 2009 32bit - does not boot - cause unknown
|-
| S10-2 || 945GME and N280 CPU || {{N/A}} || SATA || {{yes|Intel GMA (2D)}} || {{maybe|ALC269 HD Audio}} || {{yes}} || {{yes|rtl8169}} || {{no|Broadcom BCM4312 hard blocked}} || 2011 Icaros 1.3, || 2009 32bit -
|-
| S10-3 || NM410 and N450 CPU || {{N/A}} || SATA || {{yes|Intel GMA 3150 (2D)}} || {{maybe|HD Audio ALC269}} || {{yes|USB}} || {{yes|rtl8169}} || {{no|Atheros 9285 or Broadcom BCM4312 hard blocked}} || 2011 Icaros 1.3, || 2009 32bit -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
====Samsung Netbooks====
[[#top|...to the top]]
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| [http://www.amigaworld.net/modules/newbb/viewtopic.php?post_id=616910&topic_id=33755&forum=28#616910 NC10] || 945GME || {{N/A}} || {{maybe|SATA}} || {{yes|Intel GMA 950 (2D)}} || {{partial|SigmaTel HD Audio (playback only)}} || {{yes|USB}} || {{maybe|rtl8169 works but not Marvell 88E8040 sky2}} || {{yes|AR5007EG}} || 2011 Icaros 1.4, || 2009 32bit - Nano silver on keyboard and lcd ribbon cable over hinge issues
|-
| [http://www.sammywiki.com/wiki/Samsung_NC20 NC20] || VIA VX800 || {{N/A}} || SATA || {{maybe|VIA Chrome9 (VESA only)}} || ALC272 GR (VT1708A) HD Audio || {{yes|USB}} || {{no|Marvell 88E8040}} || {{yes|Atheros AR5001}} || untested || 2009 32bit -
|-
| NP-N110 NP-N120 || 945GSE || {{N/A}} || SATA || {{yes|Intel GMA 950 (2D)}} || {{yes|ALC272 HD Audio or ALC6628}} || {{yes|USB}} || {{no|Marvell 88E8040}} || {{no|Realtek rtl8187}} || untested || 2009 32bit - Namuga 1.3M Webcam none
|-
| NP-N130 || 945GSE || {{N/A}} || {{yes|SATA in IDE mode}} || {{yes|Intel GMA 2D and opengl 1.x 99.5 tunnel 99 gearbox}} || {{yes|Intel HD with ALC272 ALC269 codec playback}} || {{yes|USB}} || {{yes|RTL 8169.device - 8101e 8102e}} || {{no|rtl 8192se rtl8187 too small an area to swap for atheros 5k}} || untested || 2009 32bit - 10.x inch 1024 x 600 - Namuga 1.3M Webcam - front slide power on and f2 setup bios - keyboard 17.7mm Pitch is made with Silver Nano (Anti-Bacterial) tech - small touchpad - 1 ddr2 2rx16 sodimm slot 2G max - 44Wh
|-
| <!--Name-->Go NP-N310 || <!--Chipset-->N270 + 945GME || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|IDE legacy mode}} || <!--Gfx-->{{yes|Intel GMA 950 (2D)}} || <!--Audio-->{{yes|HD Audio ALC6628}} || <!--USB-->{{yes}} || <!--Ethernet-->{{yes|rtl8169}} || <!--Wireless-->{{yes|Atheros5k}} || <!--Test Distro-->untested || <!--Opinion-->2010 32bit - N280 version changed specs
|-
| NP-N510 || N270 euro N280 uk + ION MCP79 || {{N/A}} || SATA || nVidia C79 ION [Quadro FX 470M] || HD Audio || USB || Marvell 88E8040 || Realtek 8192E || untested || 2010 32bit - does not boot - cause unknown
|-
| NP-N145 Plus || n450 + NM10 || {{N/A}} || {{maybe|IDE legacy mode}} || {{yes|Intel GMA 3150 (2D, no VGA output)}} || {{yes|Realtek HD Audio}} || {{yes|USB2.0}} || {{no|Marvell 88E8040}} || {{unk|Atheros AR9285}} || untested || 2010 some support but often the trackpad does not work
|-
| <!--Name-->NC110 Axx || <!--Chipset-->NM10 || <!--IDE-->{{N/A}} || <!--SATA-->Sata || <!--Gfx--> || <!--Audio-->HDAudio with ALC269 codec A9M22Q2 || <!--USB--> || <!--Ethernet-->{{Maybe|Rtl8169}} || <!--Wireless-->{{No|Broadcom BCM4313 or Atheros}} || <!--Test Distro-->untested || <!--Comments-->2011 64bit -
|-
| NF210 Pineview || n455 or n550 + N10 || {{N/A}} || {{maybe|SATA}} || {{maybe|Intel GMA 3150 (needs retesting, VESA works)}} || {{yes|HD Audio}} || {{yes|USB}} || {{no|Marvell 88E8040}} || Wireless || untested || 2011 64bit - some support
|-
| <!--Name-->NS310 NP-NS310-A03UK || <!--Chipset-->N570 with NM10 || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->{{Maybe|use Vesa 2d }} || <!--Audio-->{{yes| ich7}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{yes|rtl8169 realtek 810xe }} || <!--Wireless-->{{no|bcm4313 }} || <!--Test Distro-->2022 AROS One 2.3, || <!--Comments-->2011 64bit Atom N570 or 1.5 GHz Intel Atom N550 dual core processor, 1 DDR3 sodimm slot memory, a 250GB hard drive, and a 10.1 inch, 1024 x 600 pixel 10.1" W7St - 2300mAh short life -
|-
| <!--Name-->[https://wiki.archlinux.org/index.php/Samsung_N150 N150] NB30 || <!--Chipset-->MN10 || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Yes|Intel GMA 3150 (2D)}} || <!--Audio-->{{No| }} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No|Marvell 88E8040}} || <!--Wireless-->{{unk|Atheros AR9285 or Realtek 8192E}} || <!--Test Distro-->untested || <!--Comments-->2011 a little support
|-
| <!--Name-->[http://www.kruedewagen.de/wiki/index.php/Samsung_N220 N210 N220] N230 || <!--Chipset-->N450 + NM10 || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Yes|Intel GMA 3150 (2D)}} || <!--Audio-->HD Audio ALC269 || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No|Marvell}} || <!--Wireless-->{{unk|Atheros AR9285}} || <!--Test Distro-->untested || <!--Comments-->2011 64bit no sse4.1 or avx -
|-
| <!--Name-->NC110 Pxx Cedarview || <!--Chipset--> || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{dunno|Intel GMA 3600}} || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless-->{{No|Intel 6000g}} || <!--Test Distro-->untested || <!--Comments-->2012 64bit
|-
|}
====Toshiba Netbooks====
[[#top|...to the top]]
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->NB100 || <!--Chipset-->945GM || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|legacy}} || <!--Gfx-->{{yes|Intel GMA (2D)}} || <!--Audio-->{{yes|ALC262 HD Audio}} || <!--USB--> || <!--Ethernet-->{{yes|rtl8169}} || <!--Wireless-->{{yes|AR5001}} || <!--Test Distro-->untested || <!--Comments-->2009 32bit -
|-
| <!--Name-->Mini NB200 series NB205 || <!--Chipset-->N280 + GSE945 || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|IDE legacy mode}}|| <!--Gfx-->{{yes|Intel GMA (2D)}} || <!--Audio-->ALC272 HD Audio || <!--USB-->{{yes}} || <!--Ethernet-->{{yes|RTL8169}} || <!--Wireless-->{{maybe|AR9285}} || <!--Test Distro-->untested || <!--Opinion-->2009 32bit -
|-
| <!--Name-->Mini 300 series NB305 || <!--Chipset-->N455 with NM10 || <!--IDE-->{{N/A}} || <!--SATA-->legacy || <!--Gfx-->Intel GMA 3150 (2D) || <!--Audio-->ALC272 HD Audio || <!--USB--> || <!--Ethernet-->{{maybe|RTL8101E RTL8102E}} || <!--Wireless-->{{maybe|AR9285}} || <!--Test Distro-->untested || <!--Opinion-->2010 64bit -
|-
| <!--Name-->Mini 500 series NB505 NB520 NB550-10v || <!--Chipset--> || <!--IDE-->{{N/A}} || <!--SATA-->legacy || <!--Gfx-->Intel GMA 3150 (2D) || <!--Audio-->HD Audio || <!--USB--> || <!--Ethernet-->{{maybe|RTL8101E RTL8102E}} || <!--Wireless-->{{no|Realtek 8176 RTL 8188CE}} || <!--Test Distro-->untested || <!--Opinion-->2011 64bit -
|-
| [http://www.notebookcheck.net/Review-Toshiba-NB550D-AMD-Fusion-Netbook.46551.0.html Mini NB550D 10G] 108 (c30) 109 (c50) || C-50 + M1 || {{N/A}} || SATA || AMD 6250 (VESA only) || HD Audio || USB || {{maybe|rtl8169 Realtek 8111e}} || {{maybe|Atheros 9k}} || untested || 2011 64bit Realtek SD card reader
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
====Misc Netbooks====
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="30%" |Comments
|-
| Cammy's A1600 || GME945 || {{N/A}} || {{maybe}} || {{yes|Intel GMA950 (2D)}} || {{yes|HD Audio playback}} || {{yes}} || {{no|JMC 250/260}} || Wireless || 2010 Icaros 1.2.4, || 2009 32bit -
|-
| <!--Name-->Fujitsu Siemens Amilo Mini Ui 3520 || <!--Chipset-->Intel 945 || <!--ACPI--> || <!--SATA-->{{yes}} || <!--Gfx-->{{yes|Intel GMA (2D)}} || <!--Audio-->ALC269 HD Audio || <!--USB-->{{yes}} || <!--Ethernet-->{{yes|rtl8169}} || <!--Wireless-->{{yes|AR5001}} || <!--Test Distro-->untested || <!--Comments-->2009 32bit -
|-
| Guillemot Hercules eCafe EC-900 H60G-IA], Mitac MiStation and Pioneer Computers Dreambook Light U11 IL1 || Intel 945GME || {{N/A}} || {{maybe}} || {{yes|Intel GMA950 (2D)}} || {{Yes|HD Audio (playback only)}} || {{yes|uhci and ehci}} || {{yes|rtl8169}} || {{no|RAlink RT2860}} || untested || 2009 32bit -
|-
| <!--Name-->Hannspree Hannsnote SN10E2 24 48 || <!--Chipset-->N450 + NM10 || <!--IDE-->{{N/A}} || <!--SATA-->IDE legacy mode || <!--Gfx-->Pineview Intel (2D) || <!--Audio-->ALC HD Audio || <!--USB-->USB2.0 || <!--Ethernet-->Atheros l1c || <!--Wireless-->{{unk|Atheros AR9285}} || <!--Test Distro-->untested || <!--Opinion-->2009 32bit -
|-
| MSI Wind U90/U100 || GME945 || {{N/A}} || {{maybe}} || {{yes|Intel GMA 950 (2D)}} || {{partial|HD Audio ALC888s (playback only?)}} || {{yes|uhci 1.1 and ehci 2.0}} || {{yes|rtl8169}} || {{no|RaLink RT2860 RT2700E or rtl8187se (u100x)}} || 2011 Icaros 1.3, || 2009 32bit -
|-
| Advent 4211 || 945GSE || {{N/A}} || {{maybe|IDE legacy mode}} || Intel GMA950 (2D) || ALC HD Audio || USB || rtl8169 || {{no|Intel 3945 ABG}} || untested || 2009 32bit - MSI U100 clone
|-
| <!--Name-->Hannspree Hannsnote SN10E1 || <!--Chipset-->N270 + GMA945 || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|IDE legacy mode}} || <!--Gfx-->{{yes|Intel GMA 950 (2D)}} || <!--Audio-->ALC HD Audio || <!--USB-->USB2.0 || <!--Ethernet-->{{yes|Realtek RTL8101E RTL8102E RTL8169}} || <!--Wireless-->{{no|RaLink RT2860}} || <!--Test Distro-->untested || <!--Comments-->2009 32bit MSI U100 clone
|-
| <!--Name--> Vaio VGN-P11Z
| <!--Chipset-->
| <!--IDE--> {{dunno}}
| <!--SATA--> {{N/A}}
| <!--Gfx--> {{Partial|Intel (VESA only)}}
| <!--Audio--> {{no|HD Audio}}
| <!--USB--> {{yes|USB 2.0}}
| <!--Ethernet--> {{no|Marvell}}
| <!--Wireless--> {{unk|Atheros AR928X}}
| <!--Test Distro-->2012 Icaros 2.0.3
| <!--Comments-->2008 32bit Rarely boots!
|-
| <!--Name-->Sony VPC-W11S1E
| <!--Chipset-->N280 with 945GSE
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Yes| }}
| <!--Gfx-->{{yes|Intel GMA950 - hdmi}}
| <!--Audio-->HD Audio with realtek codec
| <!--USB-->3 USB2
| <!--Ethernet-->{{No|Atheros AR8132}}
| <!--Wireless-->{{unk|Atheros AR9285}}
| <!--Test Distro-->untested
| <!--Comments-->2009 32bit - 10.1" 1366 x 768 glossy - 3hr battery life -
|-
| <!--Name-->Archos 10 Netbook || <!--Chipset-->Atom with ICH7 NM10 945GSE || <!--IDE-->{{No }} || <!--SATA--> || <!--Gfx-->GMA 950 || <!--Audio-->HD Audio with ALC662 codec || <!--USB--> || <!--Ethernet-->Realtek 8139 || <!--Wireless--> || <!--Test Distro-->untested || <!--Comments-->2008 32bit -
|-
| <!--Name-->MSI Wind U135 DX MS-N014 || <!--Chipset-->Intel N455 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{Yes|2D only accelerated}} || <!--Audio-->{{No|ALC662 rev 1}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{Maybe|RTL}} || <!--Wireless-->{{No|Atheros AR 9K}} || <!--Test Distro-->2015 Icaros 2.1, || <!--Comments-->2009 32bit - needs noacpi notls added to grub boot line to start up
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
===Desktop Systems===
[[#top|...to the top]]
{| class="wikitable sortable" width="100%"
| <!--OK-->{{Yes|'''Works well'''}} || <!--May work-->{{Maybe|'''Works a little'''}} || <!--Not working-->{{No|'''Does not work'''}} || <!--Not applicable-->{{N/A|'''N/A not applicable'''}}
|-
|}
====Acer====
{| class="wikitable sortable" width="100%"
! width="15%" |Name
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Integrated Gfx
! width="10%" |Audio
! width="10%" |USB
! width="10%" |Ethernet
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->[https://www.acer.com/ac/en/ID/content/support-product/486;-; Veriton X270 VTX270] Intel Core 2 Duo ED7400C or Pentium dual-core UD7600C with 630i
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->{{Maybe|Vesa 2d Nvidia 7100 VGA and HDMI connections}}
| <!--Audio-->{{Maybe| with realtek codec}}
| <!--USB-->{{Maybe|4 rear and 5 front}}
| <!--Ethernet-->{{Maybe| nForce}}
| <!--Test Distro-->Icaros 2.3 dvd
| <!--Comments-->2009 64bit capable but would not fully boot, DHCP address timeout too short and failed often. Put in a third party NIC, worked - 1 PCI Express x16 slot and a free PCI x1 slot - internal thin long psu with 12pin -
|-
| <!--Name--> Imedia S1710 with Intel Dual Core E5200
| <!--IDE--> {{Yes|SATA/AHCI}}
| <!--SATA--> {{Maybe|Native IDE}}
| <!--Gfx--> {{Yes|Nvidia nForce 7100}}
| <!--Audio--> {{Yes|Nvidia MCP73}}
| <!--USB--> {{Yes|USB 2.0}}
| <!--Ethernet--> {{No|NVIDIA MCP73 Ethernet}}
| <!--Test Distro--> Nightly Build 14-09-2023, AROS One 2.3
| <!--Comments--> 2009 64-bit - Boot over USB not working on front - 2 DDR2 dual channel max 8GB - DEL for entering Bios - F12 for boot menu - Bus weird, could be reason for Ethernet issue
|-
| <!--Name-->Acer Revo AR1600, R1600 AR3600, R3600 Packard Bell iMax Mini, ACER Veriton N260G N270G slim nettop subcompact
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Maybe|Native IDE mode, '''when it works''' boots}}
| <!--Gfx-->{{Maybe|Nvidia ION GeForce 9300M - nouveau 3d - '''when it boots''' 400 fps in shell'ed gearbox, 278 in tunnel, 42 in teapot}}
| <!--Audio-->{{Maybe|HD Audio with alc662 codec but nothing from HDMI audio}}
| <!--USB-->{{Maybe|Nvidia USB boot usb2 stick issues and slower with usb3 drives}}
| <!--Ethernet-->{{No|MCP79 nForce}}
| <!--Test Distro-->
| <!--Comments-->2009 64bit does not support AVX or SSE 4.1 Intel Atom 230 N280 - 20cm/8" high 1 ltr noisy fan - very often boot stuck around ehciInit - DEL setup F12 boot options - 2 ddr2 sodimm slots max 4GB - 19v special barrel size 5.5mm/1.7mm psu - 2 ddr2 sodimm slots max 4GB - atheros 5k AR5BXB63 wifi -
|-
| <!--Name-->Revo AR3610 R3610 3610 Atom 330 nettop subcompact dual core
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Maybe|Native IDE mode, '''when it works''' boots}}
| <!--Gfx-->{{Maybe|Nvidia ION GeForce 9400M LE MCP79MX - nouveau 3d - '''when it boots''' 400 fps in shell'ed gearbox, 278 in tunnel, 42 in teapot}}
| <!--Audio-->{{Yes|HD Audio with Realtek alc662 rev1 alc662-hd later ALC885 codec but nothing from HDMI audio}}
| <!--USB-->{{Maybe|Nvidia USB with 1% chance boot with usb2 sticks, more issues with usb3 drives}}
| <!--Ethernet-->{{No|RTL 8211CL MCP79 nForce}}
| <!--Test Distro-->{{no|AROS One 32bit 1.5, 1.6 and 2.4 usb and 64bit 1.2 USB}}
| <!--Comments-->2010 64bit does not support AVX or SSE 4.1 20cm/8" high 1 ltr noisy fan - boot often stuck at Kernel or around ehciInit, SATA, etc try ATA=off, non usb hub keyboard, - DEL bios setup, F12 BBS POPUP/drive boot - 2 ddr2 sodimm slots max 4GB - 19v barrel psu with smaller inner pin size 5.5mm/1.7mm - replace wifi RT3090 ver c (linux) with atheros 5k -
|-
| <!--Name-->Revo N281G
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Maybe| }}
| <!--Gfx-->{{maybe|GMA 2d for GMA 3100}}
| <!--Audio-->HD audio codec
| <!--USB-->USB2
| <!--Ethernet-->Realtek
| <!--Test Distro-->
| <!--Comments-->2011 64bit does not support AVX and SSE 4.1 Atom D425 - 19v 65w barrel psu thinner inner pin - 2 DDR3L single channel max 4GB - replace wifi RT3090 ver d with atheros 5k mini pci-e - 1lr or 1.5 ltr dvdrw case 209.89 mm, (D) 209.89 mm, (H) 35.35 mm - del enter bios -
|-
| <!--Name-->REVO AR3700 R3700 3700 Atom D525 dual core - ACER Veriton N282G
*one long beep followed by two short, bios damaged
*looping one long two short, a video card fault
*two short beeps... CMOS damaged
*got one long and one short beep... board error?
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Yes|IDE ready in Bios}}
| <!--Gfx-->{{Yes|Nvidia ION2 GT218 ION vga fine '''but''' hdmi fussy over display used - nouveau 2d & 3d gearbox 404 tunnel 292 teapot 48}}
| <!--Audio-->{{Yes|HDA Intel with Realtek ALC662 rev1 codec, head phones only but nothing from NVidia HDMI}}
| <!--USB-->{{Yes|Intel® NM10 Express (NM10 is basically an ICH7 with a die shrink and IDE removed) USB boots usb, installs usb, accesses ok}}
| <!--Ethernet-->{{Yes|Realtek 8169 8111g}}
| <!--Test Distro-->AROS one 32bit USB 1.5 and 1.6 and ArosOne 64bit usb 1.2
| <!--Comments-->2011 64bit does not support AVX or SSE 4.1 20cm/8" high 1 ltr noisy fan - early 2 ddr2 sodimm slots but later 2 ddr3 sodimm slots 1Rx8 max 4GB - 19v barrel psu thinner pin - replace wifi RT3090 ver d with atheros 5k mini pci-e - ACPI Suspend Mode = S1, S3 (STR), S4 - Power on PCIe
* Known Acer issue, Boot into bios, set bios to UEFI and reboot, set bios back to defaults and reboot, blank display, repair with reflash of 8 pin Winbond W25Q socketed bios chip with ch341a using 2011/09/19 P01.B0L, 2011/05/09 P01.A4, 2011/05/03 P01.A3L, 2010/12/27 P01.A2L, 2010/12/27 P01.A2 amiboot.rom -
|-
| <!--Name-->Revo 70 (RL70) with or without dvdrw
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->6320 or 6310
| <!--Audio-->HD audio ALC662-VCO-GR codec
| <!--USB-->USB2, 1.1 Hudson D1
| <!--Ethernet-->Realtek 8111E
| <!--Test Distro-->
| <!--Comments-->2012 64bit does not support AVX or SSE 4.1 AMD E450 1.65GHz - 19v 65w barrel psu thinner inner pin - 2 DDR3L single channel max 4GB - replace wifi RT3090 ver d with atheros 5k mini pci-e - 1lr or 1.5 ltr dvdrw case 209.89 mm, (D) 209.89 mm, (H) 35.35 mm - del enter bios -
|-
|}
====Asus====
{| class="wikitable sortable" width="100%"
! width="15%" |Name
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Integrated Gfx
! width="10%" |Audio
! width="10%" |USB
! width="10%" |Ethernet
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->EEEbox B202
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Intel GMA950
| <!--Audio-->Intel Azalia HDaudio with Realtek ALC662 or ALC888-GR CODEC
| <!--USB-->
| <!--Ethernet-->Realtek 8111 or JM250
| <!--Test Distro-->Icaros
| <!--Comments-->internal 3 types of wifi chipset not supported
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
|}
====Dell====
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Integrated Gfx
! width="10%" |Audio
! width="10%" |USB
! width="10%" |Ethernet
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name--> Precision 340
| <!--IDE--> {{yes}}
| <!--SATA--> {{n/a}}
| <!--Gfx--> {{n/a}}
| <!--Audio--> {{yes|Intel AC97}}
| <!--USB--> {{yes|USB 1.1 (UHCI)}}
| <!--Ethernet--> {{yes|3Com}}
| <!--Test Distro--> Nightly Build 2014 09-27
| <!--Comments-->
|-
| <!--Name-->Dimension 2400
| <!--IDE-->{{Yes}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->{{Yes|Intel 82845GL Brookdale G/GE (VESA 640x480 by 16)}}
| <!--Audio-->{{Unk|AC97 with ADI codec}}
| <!--USB-->{{Yes|UHCI EHCI}}
| <!--Ethernet-->{{Maybe|Broadcom 440x 4401}}
| <!--Test Distro-->[http://eab.abime.net/showthread.php?p=832495 Icaros 1.4]
| <!--Comments-->Graphics chipset is capable of higher resolution.
|-
| <!--Name-->Dimension 4600
| <!--IDE-->{{yes}}
| <!--SATA-->{{dunno}}
| <!--Gfx-->{{partial|Intel Extreme (VESA only)}}
| <!--Audio-->{{yes|Intel AC97 (use rear black port)}}
| <!--USB-->{{Yes|UHCI/EHCI}}
| <!--Ethernet-->{{yes|Intel PRO/100}}
| <!--Test Distro-->Icaros 1.5.2
| <!--Comments-->
|-
| <!--Name--> Optiplex 170L
| <!--IDE--> {{yes|IDE}}
| <!--SATA--> {{partial|IDE mode}}
| <!--Gfx--> {{partial|Intel Extreme (VESA only)}}
| <!--Audio--> {{no|Intel AC97}}
| <!--USB--> {{yes|USB 2.0}}
| <!--Ethernet--> {{yes|Intel PRO/100}}
| <!--Test Distro--> {{dunno}}
| <!--Comments-->
|-
| <!--Name--> Optiplex GX260
| <!--IDE--> {{yes|IDE}}
| <!--SATA--> {{N/A}}
| <!--Gfx--> {{partial|Intel Extreme (VESA only)}}
| <!--Audio--> {{yes|Intel AC97}}
| <!--USB--> {{yes|USB 2.0}}
| <!--Ethernet--> {{no|Intel PRO/1000}}
| <!--Test Distro--> Nightly Build 2014 09-27
| <!--Comments-->
|-
| Optiplex GX270
| {{yes|Working}}
| {{partial|IDE mode}}
| {{partial|Intel Extreme (VESA only)}}
| {{yes|Intel AC97}}
| {{yes|USB 2.0}}
| {{no|Intel PRO/1000}}
| Icaros 1.5.2
| <!--Comments-->
|-
| Optiplex GX280
| {{yes|Working}}
| {{partial|IDE mode}}
| {{maybe|Intel GMA (only VESA tested)}}
| {{yes|Intel AC97}}
| {{yes|USB 2.0}}
| {{no|Broadcom}}
| Nightly Build 2014 09-27
| <!--Comments-->
|-
| <!--Name--> Optiplex GX520
| <!--IDE--> {{yes|IDE}}
| <!--SATA--> {{partial|IDE mode}}
| <!--Gfx--> {{yes|Intel GMA}}
| <!--Audio--> {{partial|Intel AC97 (no line-out)}}
| <!--USB--> {{yes|USB 2.0}}
| <!--Ethernet--> {{no|Broadcom}}
| <!--Test Distro--> {{dunno}}
| <!--Comments-->
|-
| <!--Name--> Optiplex 745
| <!--IDE--> {{N/A}}
| <!--SATA--> {{partial|IDE mode}}
| <!--Gfx--> {{partial|Intel GMA (VESA only)}}
| <!--Audio--> {{partial|HD Audio (no volume control)}}
| <!--USB--> {{partial|Only keyboard mouse (legacy mode)}}
| <!--Ethernet--> {{no|Broadcom}}
| <!--Test Distro--> {{dunno}}
| <!--Comments-->
|-
| <!--Name--> Optiplex 755
| <!--IDE--> {{N/A}}
| <!--SATA--> {{partial|IDE mode}}
| <!--Gfx--> {{partial|Intel GMA (VESA only)}}
| <!--Audio--> {{no|HD Audio}}
| <!--USB--> {{yes|USB 2.0}}
| <!--Ethernet--> {{no|Intel Gigabit}}
| <!--Test Distro--> Icaros 1.5.1
| <!--Comments--> Around 25 second delay in booting from USB
|-
| <!--Name--> Optiplex 990
| <!--IDE--> {{N/A}}
| <!--SATA--> {{partial|non-RAID mode}}
| <!--Gfx--> {{partial|Intel HD (VESA only)}}
| <!--Audio-->{{no|HD Audio}}
| <!--USB--> {{yes|USB 2.0}}
| <!--Ethernet--> {{no|Intel Gigabit}}
| <!--Test Distro--> Nightly Build 2014 09-27
| <!--Comments-->
|-
| <!--Name-->Optiplex 360
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->{{maybe|ordinary boot gives VGA mode only - VESA}}
| <!--Audio-->{{no|HD Audio (Analog Devices ID 194a)}}
| <!--USB-->
| <!--Ethernet-->{{no|Broadcom}}
| <!--Test Distro-->Aspire Xenon
| <!--Comments-->poor support
|-
| <!--Name-->Dell Wyse Vx0 (V90 V30), Vx0L (V10L V90L), Vx0LE (V30LE V90LE) from VIA C7 800GHz to Eden 1.2GHz
| <!--IDE-->{{Maybe| }}
| <!--SATA-->{{N/A| }}
| <!--Gfx-->{{Maybe|Vesa 2d for S3 UniChrome Pro}}
| <!--Audio-->{{No|AC97 VIA VT8233A with ?? codec}}
| <!--USB-->{{yes|2 back and 1 front USB2}}
| <!--Ethernet-->{{Maybe|early models work but later VT6102-3 do not}}
| <!--Test Distro-->AROS One 2.2
| <!--Comments-->2006 to 2009 32bit - 12V 4A Coax 5.5mm/2.1mm - 1 sodimm DDR 333MHz SO-DIMM later DDR2 - early V90s do seem to have a reliability problem -
|-
| <!--Name-->[https://www.poppedinmyhead.com/2021/01/wyse-cx0-thin-client-notes-experiences.html Dell Wyse Cx0] C00LE, C10LE, C30LE, C50LE, C90LE, C90LE7, C90LEW VIA C7 Eden 1GHz
| <!--IDE-->{{Maybe| }}
| <!--SATA-->{{N/A| }}
| <!--Gfx-->{{Maybe|Vesa 2d VX855 VX875 Chrome 9}}
| <!--Audio-->{{Maybe|some VIA VT8237A VT8251 HDA with ?? codec work}}
| <!--USB-->{{yes|4 outside 2 inside USB2}}
| <!--Ethernet-->{{No|VT6120 VT6121 VT6122 Gigabit}}
| <!--Test Distro-->Icaros 2.3
| <!--Comments-->2010 to 2013 32bit - [https://ae.amigalife.org/index.php?topic=815.0 boots and works] - 12V 2.5A Coax 5.5mm/2.1mm - 1 sodimm ddr2 -
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->Dell RxxL Rx0L Wyse thin client
*R00L Cloud PC of Wyse WSM
*R10L Wyse Thin OS
*R50L Suse Linux Enterprise
*R90L Win XP Embedded
*R90LW Win Embedded Standard 2009
*R90L7 Win Embedded Standard 7
| <!--IDE-->128Mb IDE or 1GB
| <!--SATA-->{{Maybe|SATA Hyperdisk}}
| <!--Gfx-->AMD 690E RS690M Radeon Xpress 1200 1250 1270
| <!--Audio-->
| <!--USB-->4 usb2
| <!--Ethernet-->Realtek
| <!--Test Distro-->
| <!--Comments-->2009 64bit AMD Sempron™ 210U SMG210UOAX3DVE 1.5GHz SB600, up to 4GB single slot 240-pin DDR2 DIMM, 19v barrel psu, DEL key bios - Late 2012 2 data sockets added but only CN18 be used with two white sockets (CN13 & CN15) can used to power the SATA device "4-pin Micro JST 1.25mm
|-
| <!--Name-->Optiplex 390 sff small form factor - mt mini tower desktop - dt full desktop
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->{{maybe|1 pci-e}}
| <!--Audio-->{{maybe|HD Audio}}
| <!--USB-->
| <!--Ethernet-->{{maybe|realtek}}
| <!--Test Distro-->aros one 1.6 usb
| <!--Comments-->2011 64bit dual i3 2xxx - kettle iec plug psu cable - add nvidia gf218 gfx - error code 3 mobo or cpu -
|-
| <!--Name-->Optiplex 3010 sff small form factor
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->{{maybe|1 pci-e}}
| <!--Audio-->{{maybe|HD Audio}}
| <!--USB-->{{maybe| }}
| <!--Ethernet-->{{no|Broadcom 57XX}}
| <!--Test Distro-->
| <!--Comments-->2012 64bit dual i3 3xxx - kettle iec plug psu cable -
|-
| <!--Name-->Optiplex 7010 sff small form factor
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->{{maybe|1 pci-e}}
| <!--Audio-->{{maybe|HD Audio}}
| <!--USB-->
| <!--Ethernet-->{{no|Broadcom or Intel 825xx}}
| <!--Test Distro-->
| <!--Comments-->2012 64bit dual i3 3xxx Q77 - kettle iec plug psu cable - add pci-e ethernet and nvidia gf218 gfx -
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->Dell Wyse 5010 thin client ThinOS D class (D10D D00D D00DX, Dx0D), PCoIP (D10DP) or D90D7, 5040
*username: Administrator, admin, [blank]
*password: Fireport, DellCCCvdi, rappot, Wyse#123, Administrator, administrator, r@p8p0r+
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Yes|IDE mode may need 30cm ext cable as small area for half-slim sata ssd - decased new ssd??}}
| <!--Gfx-->{{Maybe|Vesa 2d 1400x1050 HD6250E IGP by using DVI to hdmi cable and 1 display port, no hdmi port}}
| <!--Audio-->{{Maybe|HD 6.34 audio chipset detected but codec alc269 working from one case speaker - none if v6.29 used}}
| <!--USB-->{{Yes|most 5010 have 4 USB 2.0 but D90Q7 has 2 USB3 instead}}
| <!--Ethernet-->{{Yes|rtl8169 Realtek 8168 8169 - rev 1.?? 8111? - rev 1.91 8111E}}
| <!--Test Distro-->Icaros 2.3
| <!--Comments-->2011 64bit no SSE4.1 or AVX slow AMD G-T44R 1.2Ghz later G-T48E 1.4Ghz Dual Bobcat Brazos BGA413 - Del for BIOS - p key to select boot with noacpi - single DDR3 sodimm slot max 4Gb, (8Gb hynix 2rx8 ddr3l)? (remove small board to upgrade) - passive no fan - 15cm/6" small 1ltr case and lack of expansion options - PA16 19v barrel psu Coax 5.5mm/2.5mm
|-
| <!--Name-->Dell Wyse 7010 DTS thin client (Z class Zx0D)
*2011 Zx0 Z90D7 2GF/2GR
*2013 Z10D
*2014 Z50D 2GF/2GR
*2012 Cisco VXC 6000 CVXC-6215-K9 white
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Yes|Bios set Sata mode to IDE mode and grub boot add 'noacpi' for half slim sata2 ssd or/with 50cm sata ext cable}}
| <!--Gfx-->{{Maybe|VESA 2d HD6310 HD6320 Terascale 2 through DVI and sometimes DP 1.1a - no hdmi port}}
| <!--Audio-->{{Maybe|HD Audio 6.34 detected but ALC269VB codec works on the one case speaker only}}
| <!--USB-->{{Yes|2.0 works but NEC 720200 3.0 not working}}
| <!--Ethernet-->{{Yes|rtl8169 Realtek 8169 8111e 8111F}}
| <!--Test Distro-->Icaros 2.3 and Aros One 32bit 1.5, 1.9 and 2.3 usb and 64bit 1.2
| <!--Comments-->2011 64bit does not support AVX or SSE 4.1 slow AMD G-t52R 1.5GHz later G-T56N 1.65 GHz Dual with A50M FCH - 20cm/8" high 1.5ltr larger fanless black plastic case with metal ventilated box inside - 2 desktop DDR3L DIMM slots max 16GB - PA-16 19v external psu Coax 5.5mm/2.5mm - 2 40cm SMA female WiFi Antenna to IPEX IPX u.fl Ufl Cable pigtail needed - does not like uefi boot devices -
|-
| <!--Name-->Wyse 7020 Thin Client
* 2013 Quad-core AMD GX-420CA 2.0 GHz (25W) -
* 2018 Zx0Q Quad-core AMD GX-415GA 1.5 GHz (15W) with Quad display 3dp and 1dvi
| <!--IDE-->{{N/A}}
| <!--SATA-->1 sata port
| <!--Gfx-->{{Maybe|Vesa 2d only for AMD Radeon HD8400E radeonsi (dual display) or AMD Radeon HD 8330E IGP with AMD Radeon E6240 Seymour E6460 (quad display), no hdmi ports}}
| <!--Audio-->
| <!--USB-->4 x USB2.0 works but 2 USB3.0
| <!--Ethernet-->rtl8169 Realtek 8169 8111
| <!--Test Distro-->
| <!--Comments-->2013 64bit does support AVX or SSE 4.1 quad eKabini Jaguar cores - two SODIMM sockets layered in centre of mobo DDR3L RAM - Coax 5.5mm/2.5mm ac psu 9mm plug is too short but 14mm length is fine - 15cm/6" high smaller 1ltr case and lack of expansion options -
|-
| <!--Name-->Dell Wyse Dx0Q (5020) D90Q8 NJXG4 AMD G-Series
| <!--IDE-->{{N/A}}
| <!--SATA-->1 sata port
| <!--Gfx-->HD 8330E
| <!--Audio--> with Realtek codec
| <!--USB-->4 x USB2.0 works but 2 USB3.0
| <!--Ethernet-->rtl8169 Realtek 8169 8111
| <!--Test Distro-->
| <!--Comments-->2014 64bit does support AVX or SSE 4.1 Quad-core AMD GX-415GA 1.5 GHz - 2 layered near edge of mobo 204-pin DDR3L SODIMM (bottom one tricky to insert) - 19v Coax 5.5mm/2.5mm - passive no fan - 15cm/6" high smaller 1ltr case and lack of expansion options
|-
| <!--Name-->Dell Wyse 5060 N07D thin client
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Yes|IDE bios mode for sata2 port}}
| <!--Gfx-->{{maybe|Vesa 2d - AMD R5E GCN2 IGP Sea Islands thru dp1 with an hdmi adapter no output thru dp2 - no hdmi dvi ports}}
| <!--Audio-->{{maybe|HD Audio with Realtek ALC231 codec head phones only}}
| <!--USB-->{{Maybe|4 x USB2.0 works but 2 USB3.0}}
| <!--Ethernet-->{{yes|rtl8169 realtek 8169 8111h}}
| <!--Test Distro-->AROS One 1.6 usb
| <!--Comments-->2017 64bit does support AVX or SSE 4.1 quad GX-424CC 19.5v external psu - CN-0Y62H1 mobo with 2 layered ddr3l 16Gb max sodimm slots at edge of mobo, bottom 0 one blocking - passive no fan so quiet - 15cm/6" high smaller 1ltr case and lack of expansion options -
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
|}
====Fujitsu Siemens====
{| class="wikitable sortable" width="100%"
! width="15%" |Name
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Integrated Gfx
! width="10%" |Audio
! width="10%" |USB
! width="10%" |Ethernet
! width="15%" |Test Distro
! width="20%" |Comments
|-
| Scenic [http://uk.ts.fujitsu.com/rl/servicesupport/techsupport/ProfessionalPC/Scenic/ScenicE/ScenicE.htm E600] (compact desktop)
|
|
| {{partial|VESA only}}
| {{yes|AC97}}
|
| {{no|Intel PRO/1000}}
| {{dunno}}
| Nice small, silent PC with good AROS support.
|-
| Scenic T i845
| {{dunno}}
| {{n/a}}
| {{n/a}}
| {{dunno|Intel AC97}}
| {{dunno|UHCI}}
| {{dunno|Intel PRO/100}}
| Icaros 1.5.2
| AROS does not boot
|-
| <!--Name-->Futro S200 S210 S220 and later S300
| <!--IDE-->{{yes| compactflash CF card max ??}}
| <!--SATA-->
| <!--Gfx-->{{maybe|VESA Silicon Integrated Systems [SiS] 315PRO PCI/AGP }}
| <!--Audio-->{{unk|AC97 via }}
| <!--USB-->{{unk|via uhci and ehci}}
| <!--Ethernet-->{{unk|via VT6102 [Rhine-II] (rev 74) }}
| <!--Test Distro-->
| <!--Comments-->2008 32bit - TR5670 Rev 1.4 mother with Transmeta TM5800 cpu - pci socket - single SODIMM socket for DDR memory PC2700S max 512MB -
|-
| <!--Name-->Futro S400
| <!--IDE-->{{yes| but swap with compactflash CF card already with AROS installed}}
| <!--SATA-->
| <!--Gfx-->{{maybe|VESA Silicon Integrated Systems [SiS] SiS741CX }}
| <!--Audio-->{{unk|AC97 SiS7018}}
| <!--USB-->{{unk|sis uhci and ehci}}
| <!--Ethernet-->{{unk|rtl8169 }}
| <!--Test Distro-->
| <!--Comments-->2008 32bit - AMD Geode NX1500 1GHz gets hot - SiS 963L / SiS 741CX chipset - 12V 4.2A 4-pin (DP-003-R) psu - single SODIMM socket for DDR PC2700S max 1G - large case 246 x 48 x 177cms torx screws - pci socket -
|-
| <!--Name-->FUJITSU Futro S700 and S900 Thin Client (based on mini-ITX motherboard D3003-A12, D3003-C1 lesser variant of [https://www.parkytowers.me.uk/thin/Futro/s900/TechNotes_V3.1_Mini-ITX_D3003-S.pdf D3003-S])
*G-T56N 1.65GHz
*G-T40N 1.00GHz
*G-T44R 1.20GHz
| <!--IDE-->{{N/A}}
| <!--SATA-->1 sata data socket but mSata 18+8pins 1GB-16GB
| <!--Gfx-->Radeon HD 6320, HD 6250, HD 6290 dvi or displayport (DP runs higher)
| <!--Audio-->HDAudio
| <!--USB-->{{yes|two USB2 front sockets and four on the rear}}
| <!--Ethernet-->{{Maybe|Realtek}}
| <!--Test Distro-->
| <!--Comments-->2011 64bit AMD slow atom-like and fanless - 20V 2A psu 5.5mm/2.1mm coax (S900) - 2 DDR3L SODIMM sockets max 8GB tricky to run 1333 MHz on the Futro S900 - proprietary X2 PCI-e - 1 PCI socket but need a right-angle adaptor -
|-
| <!--Name-->esprimo p420 e85 desktop case
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Maybe|IDE mode}}
| <!--Gfx-->Intel 4600 or old Geforce in pci-e slot
| <!--Audio-->HDAudio realtek alc671 codec
| <!--USB-->USB3
| <!--Ethernet-->rtl8169 8111
| <!--Test Distro-->
| <!--Comments-->2013 64bit - 2 ddr3 dimm slots - 16 pin special psu -
|-
| <!--Name-->esprimo E420 e85+ SFF case
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Maybe|IDE mode}}
| <!--Gfx-->Intel 4600 or low profile pci-e card
| <!--Audio-->HDAudio realtek alc671 codec
| <!--USB-->USB3
| <!--Ethernet-->rtl8169 8111G
| <!--Test Distro-->
| <!--Comments-->2013 64bit - 2 ddr3 dimm slots - 16ish pin special psu - hd under front metal bracket, take front cover off first with 3 tabs - 3 slim pci-e slots -
|-
| <!--Name-->Futro S520 AMD dual 1.0Ghz codenamed "Steppe Eagle"
* GX-210HA @ 1.0GHz
* GX-212ZC @ 1.2GHz
| <!--IDE-->{{N/A}}
| <!--SATA-->no sata - 4Gb or 16Gb flash memory soldered to the board
| <!--Gfx-->AMD Radeon HD 8210E (GX210HA) or AMD Radeon R1E (GX212ZC)
| <!--Audio-->HDAudio
| <!--USB-->
| <!--Ethernet-->rtl8169 rtl8111e
| <!--Test Distro-->
| <!--Comments-->2016 64bit does support AVX or SSE 4.1 - smaller than ITX 160mm x 160mm Fujitsu D3314-A11 - 19V 3.4A PSU standard 5.5mm/2.1mm coax plug - 1 ddr3 sodimm slot -
|-
| <!--Name-->Fujitsu Futro S720 ThinClient D3313-B13 D3313-F
*2014 64bit AMD GX-217GA 1.65GHz VFY:S0720P8009FR VFY:S0720P8008DE VFY:S0720P4009GB
*2015 64bit AMD GX-222GC 2.20GHz VFY:S0720P702BDE VFY:S0720P702BFR
all begin VFY:S0720P and end two digit country code
| <!--IDE--> {{N/A|}}
| <!--SATA--> {{Yes|up to 2 Sata-cable-connector with space in casing so normal SSD/HDD over Sata was running very well on AHCI and IDE-Mode and 2242 mSata}}
| <!--Gfx--> {{Maybe|use VESA 2D for AMD Radeon HD 8280E IGP ( islands) or later R5E IGP ( islands)}}
| <!--Audio--> {{yes|HDAudio ALC671 codec partially working, external audio speaker}}
| <!--USB--> {{yes|4 rear USB 2.0 but not front 2 USB 3.1}}
| <!--Ethernet-->{{yes|rtl8169 Realtek 8169}}
| <!--Test Distro-->AROS One USB 2.0
| <!--Comments-->2014 64bit supports AVX and SSE 4.1 - 1 ddr3 Sodimm slot max 8Gb - 19V-20V 2A 5.5mm/2.5mm coax - D3313-B13 stripped down Mini-ITX mobo D3313-S1/-S2/-S3 (eKabini) D3313-S4/-S5/-S6 - SATA data socket can be located under the fins of the cpu heatsink is fanless - mPCIe socket for wireless card -
|-
| <!--Name-->Fujitsu FUTRO S920 D3313-E D3313-G
*2016 AMD GX-222GC SOC 2.20GHz Dual
*2017 AMD G-Series GX-415GA (1.50 GHz, Quad Core, 2 MB, AMD Radeon™ HD 8330E)
*2017 AMD G-Series GX-424CC 2.40 GHz Quad
| <!--IDE--> {{N/A}}
| <!--SATA--> {{yes|2242 mSata and 1 Sata-cable-connector with space in casing so normal SSD/HDD over Sata possible}}
| <!--Gfx--> {{yes|use VESA 2D for Radeon R5E GCN2/3 IGP}}
| <!--Audio--> {{yes|HDAudio ALC671 codec partially working}}
| <!--USB--> {{yes|4 rear USB 2.0, front 2 USB 3.1 downgradable to 2.0 in BIOS setting}}
| <!--Ethernet--> {{yes|rtl8169 Realtek 8169}}
| <!--Test Distro--> AROS One USB 2.4
| <!--Comments-->2016 64bit does support AVX or SSE 4.1 - 2 so dimm slot with max of 8 GB - 19v barrel psu 5.5mm 2.5mm - SATA data socket can be located under the fins of the heatsink - mPCIe a e keyed socket for wireless card - propetary X2 connector with official raizer to X1 connector - almost silent background noise, not affecting sound quality in any way
|-
| <!--Name-->Fujitsu Thin Client Futro S5011 S7011
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->{{maybe|Vesa 2D for AMD Vega 3 on 2 dp 1.4}}
| <!--Audio-->{{No|HDAudio with ALC623 codec}}
| <!--USB-->{{maybe|USB3 USB 3.2 Gen 2 front and 3 usb2 rear }}
| <!--Ethernet-->rtl8169 Realtek RTL8111H
| <!--Test Distro-->
| <!--Comments-->2019 64bit - AMD Ryzen Dual Core R1305G or R1505G 1ltr case - 2 ddr4 sodimm slots - TPM 2.0 - 19v 3.42amp round coax or usb-c 20c 3.25a external psu -
|-
| <!--Name-->Fujitsu FUTRO S9011 Thin Client VFY:S9011THU1EIN || <!--IDE-->{{N/A}} || <!--SATA-->NVMe || <!--Gfx-->{{maybe|Vesa 2D for AMD Vega 3 on 2 dp 1.4}} || <!--Audio-->{{No|HDAudio with ALC623 codec}} || <!--USB-->{{maybe|USB3 USB 3.2 Gen 2 front and 3 usb2 rear }} || <!--Ethernet-->rtl8169 Realtek RTL8111H || <!--Test Distro--> || <!--Comments-->2020 64bit Ryzen Embedded R1606G - 2 ddr4 sodimm slots - TPM 2.0 -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
|}
====HP Compaq====
{| class="wikitable sortable" width="100%"
! width="15%" |Name
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Integrated Gfx
! width="10%" |Audio
! width="10%" |USB
! width="10%" |Ethernet
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->Compaq presario 7360
| <!--IDE-->{{yes|Working}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->{{Maybe|VESA}}
| <!--Audio-->{{Maybe|AC97 via}}
| <!--USB-->{{Maybe|issues}}
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->Compaq EP Series 6400/10
| <!--IDE--> {{yes|IDE}}
| <!--SATA--> {{N/A}}
| <!--Gfx--> {{N/A}}
| <!--Audio--> {{no|ISA}}
| <!--USB--> {{yes|USB 1.1}}
| <!--Ethernet--> {{N/A}}
| <!--Test Distro--> {{dunno}}
| <!--Comments-->
|-
| <!--Name-->Compaq Evo D510
| {{yes|Working}}
| {{N/A}}
| {{partial|Intel Extreme (VESA only)}}
| {{yes|AC97}}
| {{yes|Working}}
| {{yes|Intel PRO/100}}
| Icaros 1.5
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->Compaq DX2000 MT
| <!--IDE-->{{yes}}
| <!--SATA-->{{maybe}}
| <!--Gfx-->{{maybe|Intel Extreme 2 (VESA only)}}
| <!--Audio-->{{no|detects AC97 but no support for ADI AD1888 codec}}
| <!--USB-->{{yes|OHCI/EHCI }}
| <!--Ethernet-->{{no|Intel 82526EZ e1000}}
| <!--Test Distro--> Icaros 1.51
| <!--Comments-->boots ok but no audio
|-
| <!--Name-->Compaq DX 2200
| <!--IDE-->{{yes}}
| <!--SATA-->{{maybe}}
| <!--Gfx-->{{maybe|RC410 [Radeon Xpress 200] (VESA only)}}
| <!--Audio-->{{dunno|HD Audio}}
| <!--USB-->{{maybe|OHCI/EHCI issues }}
| <!--Ethernet-->{{N/A}}
| <!--Test Distro--> {{dunno}}
| <!--Comments-->issues
|-
| <!--Name--> d230
| <!--IDE--> {{yes|UDMA}}
| <!--SATA--> {{N/A}}
| <!--Gfx--> {{partial|Intel Extreme (VESA only)}}
| <!--Audio--> {{partial|Intel AC97 (speaker and headphones only, no line-out)}}
| <!--USB--> {{yes|USB}}
| <!--Ethernet--> {{Maybe|Broadcom BCM4401}}
| <!--Test Distro--> Icaros 1.4.5
| <!--Comments-->
|-
| <!--Name-->HP Pavilion a220n || <!--IDE-->{{Yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Yes|VESA 1024x768 on nVidia GF4 MX with 64MB shared video ram}} || <!--Audio-->{{Yes|Realtek ALC650 AC'97 comp.}} || <!--USB-->{{Yes|USB 2.0}} || <!--Ethernet-->{{Yes|Realtek 8201BL 10/100 LAN}} || <!--Test Distro-->AROS One 2.5|| <!--Comments-->2004 32bit athlon xp 2600+ Socket 462 / Socket A - 2 dimm ddr pc2700 -
|-
| <!--Name-->t500
| <!--IDE-->{{Yes}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->{{Yes|FX5200 (2D; 3D with older driver)}}
| <!--Audio-->{{Yes|AC97 ICH4 ALC658D}}
| <!--USB-->{{Yes|UHCI/EHCI}}
| <!--Ethernet-->{{Yes|RTL 8101L 8139}}
| <!--Test Distro-->Nightly Build 2012-09-22
| <!--Comments-->2004
|-
| <!--Name-->DC7700
| <!--IDE-->{{Yes}}
| <!--SATA-->{{Yes}}
| <!--Gfx-->{{Yes|GMA 2D}}
| <!--Audio-->{{Yes| ICH8}}
| <!--USB-->{{Yes}}
| <!--Ethernet-->{{No|82566DM e1000e}}
| <!--Test Distro-->Nightly Build 2013-??-??
| <!--Comments-->2006 Some support at low cost
|-
| <!--Name-->HP dc 7600 CMT
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->{{Yes|Intel Graphics Media Accelerator 950}}
| <!--Audio-->{{Yes|Realtek ACL 260}}
| <!--USB-->{{Yes|USB 2.0}}
| <!--Ethernet-->{{No|Intel PRO/1000 GT}}
| <!--Test Distro-->
| <!--Comments-->2007
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->HP t5000 thin client series t5500 t5510 t5515 PC538A or PC542A t5700 t5710 Transmeta Crusoe Code Morphing TM 5400 5600 800Mhz
| <!--IDE-->128mb to 512MB
| <!--SATA-->{{N/A}}
| <!--Gfx-->Ati Radeon 7000M
| <!--Audio-->VIA with codec
| <!--USB-->{{No|Issues}}
| <!--Ethernet-->VIA Rhine 2
| <!--Test Distro-->
| <!--Comments-->2006 32bit - ddr max 1GB - F10 setup - all t51xx and some t55xx units will not include a SODIMM slot -
|-
| <!--Name-->HP t5000 thin client series CN700
*HSTNC-002L-TC t5135, t5530
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Vesa 2d 128Mb Via S3 32-bit colour
| <!--Audio-->AC97
| <!--USB-->
| <!--Ethernet-->VIA VT6102 VT6103 [Rhine-II] (rev 78)
| <!--Test Distro-->
| <!--Comments-->2007 32bit t5135 appears identical to the t5530 except the CPU VIA Esther 400 MHz - RAM 64Mb (? max) - 8 x USB2.0 - 12V 3.33A Coax 5.5mm/2.1mm
|-
| <!--Name-->HP t5720, t5725 HSTNC-001L-TC
| <!--IDE-->{{unk| }}
| <!--SATA-->{{N/A}}
| <!--Gfx-->VESA 2d SiS741GX 2048 x 1536 32-bit colour
| <!--Audio-->AC97 SiS SiS7012 AC'97
| <!--USB-->6 x USB2.0
| <!--Ethernet-->VIA VT6102 VT6103 [Rhine-II] (rev 8d)
| <!--Test Distro-->
| <!--Comments-->2007 32bit AMD Geode NX1500 1GHz socketed - RAM 512MB or 1GB, 256MB, 512MB or 1GB - 12V psu - sis DDMA support - custom 1.13 BIOS - pci low profile -
|-
| <!--Name-->t5000 series VX800 HSTNC-004-TC t5145, t5540, t5545, t5630
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Vesa 2d VIA Chrome9
| <!--Audio-->HD Audio VIA
| <!--USB-->
| <!--Ethernet-->{{No|VT6120 VT6121 VT6122 Gigabit (rev 82)}}
| <!--Test Distro-->
| <!--Comments-->2010 32bit - RAM 64Mb (? max) - 8 x USB2.0 - 12V 4.16A Coax: 5.5mm/2.1mm -
|-
| <!--Name-->t5730w HSTNC-003-TC t5730
| <!--IDE-->{{n/a|ATA 44pin DOM Flash}}
| <!--SATA-->
| <!--Gfx-->Vesa 2d ATI Radeon X1250 2048 x 1536 no 3D
| <!--Audio-->HD audio with codec
| <!--USB-->{{Yes|6 x USB2.0}}
| <!--Ethernet-->{{No|Broadcom 5707M tg3 10/100/1000}}
| <!--Test Distro-->
| <!--Comments-->2008 64bit AMD Sempron 2100+ 1GHz - 1 slot of ddr2 sodimm (Max 2GB) - 12V 4.16A Coax 5.5mm/2.1mm - F10 enter bios F12 boot devices -
|-
| <!--Name-->HSTNC-005-TC gt7720, gt7725
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Vesa 2d AMD RS780G HD 3200 - 2560 x 1600 DVI-D & DVI-H
| <!--Audio-->
| <!--USB-->8 x USB2.0
| <!--Ethernet-->{{No|Broadcom BCM5787M}}
| <!--Test Distro-->
| <!--Comments-->2009 64bit AMD Turion Dual Core CPU 2.3GHz - 1 DDR2 200-pin SODIMM - 19V 4.16A Coax 7.4mm/5.0mm (gt7725) -
|-
| <!--Name-->HP t5740 Thin Client HSTNC-006-TC t5740, t5745, st5742
| <!--IDE-->1 port
| <!--SATA-->1 port
| <!--Gfx-->{{Maybe|VESA for Intel CL40 VGA and DisplayPort connectors}}
| <!--Audio-->{{Yes|HD audio with IDT codec}}
| <!--USB-->{{Maybe| }}
| <!--Ethernet-->{{No|Broadcom BCM57780 Gigabit}}
| <!--Test Distro-->Nightly build and Icaros
| <!--Comments-->2009 32bit Atom N280 - F10 on power up to get into the BIOS screens. F12 brings up the boot options - hp 19V one with a coax connector, outer diameter 4.8mm with inner to be 1.7mm to 1.4mm - 2 ddr3 sodimm slots max 3gb due to 32bit - 1 pci-e slot completely non standard -
|-
| <!--Name-->t5000 series HSTNC-012-TC VIA Nano u3500 VX900
*t5550 512MB/1GB Windows CE6 R3
*t5565 1GB/1GB HP ThinPro
*t5570 2GB/1GB WES 2009
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Vesa 2d VIA ChromotionHD 2.0 GPU Chrome9
| <!--Audio-->VIA 9170 VT1708S codec
| <!--USB-->
| <!--Ethernet-->{{No|Broadcom BCM57780 Gigabit}}
| <!--Test Distro-->
| <!--Comments-->32bit - 1 sodimm - 19V 3.42A supply connector standard yellow-tip coax plug 4.8mm/1.8mm "Standard HP Compaq DC Power Plug 4.8mm x 1.5mm / 1.7mm Yellow Tip Connector -
|-
| <!--Name-->HP t510 Via Eden X2 U4200 HSTNC-012-TC shares features with t5570e, t5565z
| <!--IDE-->2G ATA Flash DOM
| <!--SATA-->one
| <!--Gfx-->{{Maybe|Vesa 2d for Chrome9 VIA ChromotionHD 2.0 gfx}}
| <!--Audio-->{{Maybe|VIA VT8237A VT8251 HDA with codec}}
| <!--USB-->{{Maybe|6 USB2 }}
| <!--Ethernet-->{{No|Broadcom Corporation NetLink BCM57780 Gigabit Ethernet PCIe}}
| <!--Test Distro-->
| <!--Comments-->2010 32bit - one slot ddr3 sodimm max 4GB - 19V 3.42A Coax 4.8mm/1.8mm -
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->HP T610 Thin Client and thicker PLUS version AMD G-T56N A55E
| <!--IDE-->{{Maybe|}}
| <!--SATA-->2 sata
| <!--Gfx-->Radeon 6320 1 dp port 1 dvi
| <!--Audio-->HDAudio with ALC codec
| <!--USB-->two USB2 on the front, two USB2 and two USB 3 ports on the rear
| <!--Ethernet-->{{No|Broadcom BCM57780}}
| <!--Test Distro-->
| <!--Comments-->2010 64bit does not support AVX SSE 4.1 - 2 204-pin DDR3 1600MHz SODIMMs PC3-12800 under motherboard via removable panel - 19.5V 3A Coax male 7.4mm/5.0mm + centre pin -
|-
| <!--Name-->HP T420 Thin Client
*AMD Embedded G-Series GX-209JA SOC (1 GHz, 2 cores)
| <!--IDE-->{{N/A}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->Radeon 8180 dvi vga
| <!--Audio-->HDAudio with ALC codec
| <!--USB-->2 front 2 rear USB2
| <!--Ethernet-->{{Yes|Realtek}}
| <!--Test Distro-->
| <!--Comments-->2015 64bit supports AVX SSE 4.1 - soldered in place 2GB DDR3 - smaller than usual 19.5V 2.31A Coax male 4.5mm/3.0mm + centre pin - usb stick internal for storage - E15 BBR -
|-
| <!--Name-->HP t520 TPC-W016
*AMD GX-212JC 1.2Ghz (2 core)
| <!--IDE-->{{N/A}}
| <!--SATA-->1 m.2 mounting holes for 2242 and 2260 SSDs SATA (not NVME)
| <!--Gfx-->Radeon R2E GCN2 IGP Sea Islands
| <!--Audio-->HDAudio with ALC codec
| <!--USB-->2 USB3 front, 4 USB2 back
| <!--Ethernet-->{{Yes|Realtek}}
| <!--Test Distro-->
| <!--Comments-->2014 2017 64 bit supports AVX SSE 4.1 - 1 204-pin DDR3 SODIMM - 19.5V 3.33A 7.4mm Coax with central pin
|-
| <!--Name-->HP t620 TPC-I004-TC
*AMD G-Series GX-217GA 2 core APU 1.65GHz (65W)
*AMD GX-415GA (65W)
and t620 PLUS (PRO wider version) TPC-I020-TC
*AMD GX-420CA SOC (Plus 85W)
| <!--IDE-->{{N/A}}
| <!--SATA-->{{yes|single M.2 2280 socket sata3, mSATA socket removed end of 2014}}
| <!--Gfx-->{{maybe|Vesa 2d for Radeon HD 8280E graphics 8330E Islands GCN2 IGP - 2 dp ports no dvi}}
| <!--Audio-->{{yes|HDAudio with Realtek ALC221 codec 0x10EC 0x0221}}
| <!--USB-->{{unk|4 front, 2 back, 1 inside limited space}}
| <!--Ethernet-->{{Yes|Realtek 8169}}
| <!--Test Distro-->Aros One 32bit
| <!--Comments-->2014 64bit supports AVX SSE 4.1 - 2 DDR3L SODIMMs side by side - mSATA ssd and M.2 SSD are M1.6 screws, M2.0 screws used on most SSDs - 19.5V 3.33A Coax male 7.4mm 5mm with centre pin - changed the network card to a Atheros 5000 compatible -
|-
| <!--Name-->HP T530
*AMD GX-215JJ (2 core) 1.5GHz
| <!--IDE-->{{N/A}}
| <!--SATA-->1 m.2 sata ssd up to 2280
| <!--Gfx-->Radeon R2E
| <!--Audio-->HDAudio with ALC codec
| <!--USB-->1 USB3.1, 1 usb-c front, 4 USB2 back
| <!--Ethernet-->{{Yes|Realtek}}
| <!--Test Distro-->
| <!--Comments-->2015 64 bit does support AVX SSE 4.1 - 1 204-pin DDR4 SODIMM - 19.5V 2.31A Coax male 4.5mm/3.0mm with centre pin -
|-
| <!--Name-->HP T730 Wider "Thin" Client TPC-I018-TC Pixar RX-427BB (2c4t) - no display and fans blowing full speed caused by '''disabling internal gpu in bios''' flash L43_0116.bin onto smc MX25L6473F (3.3V 8-PIN SOP (200mil) SPI 25xx) ([https://www.badcaps.net/forum/troubleshooting-hardware-devices-and-electronics-theory/troubleshooting-desktop-motherboards-graphics-cards-and-pc-peripherals/bios-schematic-requests/96303-hp-t730-password-locked-bios in the rom rcvry socket under a delicate thin narrow surface flap]) with ch341a alike switchable from 5v, 3.3v to 1.8v
| <!--IDE-->{{N/A}}
| <!--SATA-->{{partial|Storage bios option to IDE and not AHCI to prevent constant install error messages to DH0: - add noacpi to end of grub boot line - 1 M.2 SATA slot (Key B+M) up to 2280 with T8 torx secure stub}}
| <!--Gfx-->{{maybe|use VESA for non-vulkan Radeon R7 GCN 2 UVD4.2 Sea Islands with 4 dp outs '''but too easy bricking''' if swapping with 1 PCIe 3.0 x8 slot 30W slim factor low profile 8400gs gt210 nvs295 nvs310 gt1030}}
| <!--Audio-->{{yes|HDaudio 6.34 realtek alc221 codec thru case speaker only}}
| <!--USB-->{{yes|'''Works''' for 4 USB2 in the back with 2 in the front, 2 USB3.0 ports on front and 1 more internal (not bootable)}}
| <!--Ethernet-->{{yes|rtl8169 Realtek RTL8111HSH-CG set up first in Prefs/Network}}
| <!--Test Distro-->boots with AROS One 32bit and 64bit USB with added noacpi added to grub boot line - press e - Latest distros can select grub boot options with Aros One 64bit USB and Aros One USB 2.8 but system seems to freeze after choice
| <!--Comments-->2016 64bit supports AVX SSE 4.1 - 2 DDR3L sodimm stacked slots max 32GB - '''Larger''' 20cm/8" high 3.5ltr case noisy fan - TPM2 - esc/F9 boot selector F10 enter bios - 2 serial and 1 parallel old ports - Key E Wireless - PCIe slot (x16 physical, x8 electrical) - 19.5V 4.36A 85w TPC-LA561 HP 7.4mm black-ring-tip power plug, red flashing power button, wrong psu or bad MotherBoard MB -
|-
| <!--Name-->HP t630 Thin Client TPC-I020-TC
*AMD Embedded G-Series SoC GX-420GI quad core 2Ghz
| <!--IDE-->{{N/A}}
| <!--SATA-->{{yes|ahci.device mbr msdos partiton table for 2 Sata M.2, sata0 up to 2280 (1tb max), sata1 2242 (64gb max), both T8 torx secure stubs}}
| <!--Gfx-->{{maybe|use VESA for Radeon AMD Wani R7E with 2 displayport 1.2 sockets, use one nearest to power jack - no dvi / hdmi}}
| <!--Audio-->{{Yes|HDAudio 6.36 0x1022, 0x157a and ALC255 aka ALC3234 codec 0x10ec, 0x0255, pins 0x17 as LFE and 0x1b as int speaker but not ahi 6.34}}
| <!--USB-->{{yes|USB2 2 front and 2 rear, 2 front USB3 and 1 inside}}
| <!--Ethernet-->{{Yes|Realtek 8169 8111H}}
| <!--Test Distro-->AROS One USB 2.2, 2.8 and 64bit USB 1.0, 1.2 with noacpi added to the end of the grub bootline (press e)
| <!--Comments-->2016 64bit supports AVX SSE 4.1 - 2 DDR4 SODIMMs side by side speed 1866Mhz limit - 19.5V 3.33A 65W TPC-BA54 Coax male 7.4mm with centre pin - can be easily bricked, might reflash bios with M40 SP149736 - 20cm/8" high 1.5ltr larger fanless case - esc f1 f9 f10 -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->HP Compaq Elite 7200 7300 8200 8300 SFF with kettle IEC psu cable
| <!--IDE-->
| <!--SATA-->{{yes|IDE ata legacy only in BIOS}}
| <!--Gfx-->i pci-e
| <!--Audio-->{{Maybe|8200 works}}
| <!--USB-->{{yes| }}
| <!--Ethernet-->{{no|Intel or Broadcom}}
| <!--Test Distro-->icaros 2.3
| <!--Comments-->2013 64bit dual core - add pci-e rtl8169 ethernet card and pci-e gf210 nvidia low height -
|-
| <!--Name-->HP Compaq Pro 6305 Small Form Factor SFF AMD A75 chipset (FCH 6 SATA 6 Gb/s, 4 USB 3.0)
*AMD Quad A10-5800B
*AMD A8-5500B
*AMD Dual A6-5400B
*AMD A4-5300B
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Radeon 7000 Terascale iGPU series Radeon HD 7660D, Radeon HD 7560D, Radeon HD 7540D, Radeon HD 7480D
| <!--Audio-->HD ALC221
| <!--USB-->
| <!--Ethernet-->{{No|Broadcom 5761}}
| <!--Test Distro-->
| <!--Comments-->2012 64bit
|-
| <!--Name-->Elitedesk 705 G1 - SFF
*AMD A10-8850B, Quad-Core A10 PRO-7850B, A10-8750B
*AMD A10-7800B, A10 PRO-6800B, A8-7600B
*AMD A8-8650B, A6-8550B
*AMD A6-8350B, Dual A6 PRO 7400B, A4-7300B
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Maybe| }}
| <!--Gfx-->{{Maybe|VESA 2D with Radeon R7 or 8000}}
| <!--Audio-->{{Maybe|HD audio with Realtek ALC221 codec}}
| <!--USB-->{{Maybe| }}
| <!--Ethernet-->{{No|Broadcom or Intel}}
| <!--Test Distro-->
| <!--Comments-->2014 64bit - T15 security torx psu with 6pin PWR 200W connector -
|-
| <!--Name-->HP EliteDesk 705 G2, 705 G3 Mini PC USFF thin client
| <!--IDE-->{{N/A}}
| <!--SATA-->2.5in and m.2
| <!--Gfx-->Radeon R7
| <!--Audio-->HDAudio
| <!--USB-->USB3
| <!--Ethernet-->{{No|Broadcom BCM5762 GbE}}
| <!--Test Distro-->
| <!--Comments-->2014 64bit AM4 socket with 35W TDP A10-8770E (4c), AMD PRO A6-8570E (2c), AMD Pro A6-9500E, or AMD PRO A10-9700E on AMD B300 FCH - ddr4 sodimm slots - 77 x 175 x 34mm (6.97 x 6.89 x 1.34in) 1L and about 3lbs -
|-
| <!--Name-->HP EliteDesk 705 G4 Mini 1ltr USFF AMD Ryzen 3 2200G (4c t) or 5 2400G (4c t)
| <!--IDE-->{{N/A|}}
| <!--SATA-->{{Maybe|Nvme 2280 and 2.5in sata}}
| <!--Gfx-->Vega 8 thru DP1.2 port
| <!--Audio-->{{No|HD Audio Conexant codec}}
| <!--USB-->USB2 usb3
| <!--Ethernet-->rtl8169 realtek
| <!--Test Distro-->
| <!--Comments-->2016 64bit Am4 socket - 2 sodimm 16GB max - 19.5v hp socket ext psu -
|-
| <!--Name-->Elitedesk 705 G4 35w, HP Prodesk 405 G4 35W USFF - baseboard 83e9 35W - AMD Athlon PRO 200GE (2c 4t), 2200GE (4c t) or 2400GE (4c t) on AMD B350 FCH
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Maybe|Nvme 2280 and older models 2.5in sata}}
| <!--Gfx-->Vega 3, 8 or 11 with 2 dp1.2 ports
| <!--Audio-->{{no|HDAudio with Conexant CX20632 codec}}
| <!--USB-->USB3
| <!--Ethernet-->rtl8169 Realtek 8169 8111EPH 1Gbe or Realtek RTL8111F
| <!--Test Distro-->
| <!--Comments-->2017 64bit - realtek wifi 8821 or 8822 - up to 1 ddr4 dimm slots - hp barrel external ac -
|-
| <!--Name-->Elitedesk 705 G5, HP Elitedesk 806 G6, Prodesk 405 G6 || <!--IDE-->{{N/A}} || <!--SATA-->2x NVMe or 1x SATA + 1x NVMe, but not all three drives at the same time without serious modding of hd caddie || <!--Gfx-->Vega with DP1.4 port || <!--Audio-->{{no|HDAudio with Realtek ALC3205 codec}} || <!--USB-->USB3 || <!--Ethernet-->{{maybe|Realtek}} || <!--Test Distro--> || <!--Comments-->2018 64bit - 2 ddr4 sodimm slots - 3400GE Ryzen 5 PRO 3350GE (4c 8t), Ryzen 3 PRO 3200GE 3150GE (4c 4t), AMD Athlon Silver PRO 3125GE (2c 4t) on AMD PRO 565
|-
| <!--Name-->HP t540 1ddr4 slot, t640 2 DDR4 SDRAM sodimm SO-DIMM 260-pin non-ECC max 32gb thin client USFF
| <!--IDE-->{{N/A}}
| <!--SATA-->1 NVM Express (NVMe) 2230 or 2280
| <!--Gfx-->Vega 3 VGA, DisplayPort
| <!--Audio-->HD Audio with codec
| <!--USB-->2 USB3 gen1
| <!--Ethernet-->rtl8169 Realtek Realtek RTL8111HSH or RTL8111E PH-CG
| <!--Test Distro-->
| <!--Comments-->2019 64bit ryzen r1000 series Ryzen Embedded R1305G 1.5 GHz, R1505G dual (2c 4t) 2.0Ghz or R1606G ?.?Ghz (2c4t) - Realtek RTL8852AE wifi - 45W psu Coax male 4.5mm/3.0mm + centre pin -
|-
| <!--Name-->HP t740 SFF Thin Client
| <!--IDE-->{{N/A}}
| <!--SATA-->2 M.2, one is sata and other nvme
| <!--Gfx-->Vega 8 DisplayPort or + optional pci-e 30W Radeon E9173
| <!--Audio-->HD Audio with codec
| <!--USB-->USB3
| <!--Ethernet-->Realtek RTL8111E PH-CG 1Gbe
| <!--Test Distro-->
| <!--Comments-->2019 64bit - Ryzen Embedded V1756B 3.25Ghz quad - 90W 19.5V 4.62A psu Coax male 4.5mm/3.0mm + centre pin - sodimm DDR4 max 64Gb - slightly noisy fan -
|-
| <!--Name-->HP EliteDesk 805 G6 Mini 4750GE (8t 16t), Prodesk 405 G6 Ryzen 5 PRO 4650GE (6c 12t) or Ryzen 3 PRO 4350GE (4c 8t) on AMD PRO 565
| <!--IDE-->{{N/A}}
| <!--SATA-->2.5in carrier and 2 slots m.2 nvme
| <!--Gfx-->Vega 8 with DP1.4 and HDMI flex io2 output options
| <!--Audio-->HDAudio with Realtek ALC3205 codec
| <!--USB-->4 usb a - gen 2 10gig and gen 1 5gig ports
| <!--Ethernet-->{{N/A}}
| <!--Test Distro-->
| <!--Comments-->2021 64bit AMD Ryzen 4000 SBC unlocked - 2 sodimm ddr4 slots - wifi6 - 90W ac -
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|-
|}
====Lenovo====
{| class="wikitable sortable" width="100%"
! width="15%" |Name
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Integrated Gfx
! width="10%" |Audio
! width="10%" |USB
! width="10%" |Ethernet
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->Lenovo Nettop IdeaCentre Q150 (40812HU)
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->ION2
| <!--Audio--> realtek codec
| <!--USB-->USB2
| <!--Ethernet-->intel 10/100
| <!--Test Distro-->
| <!--Comments-->2011 64bit D510
|-
| <!--Name-->M625q Tiny (1L)
| <!--IDE-->{{N/A}}
| <!--SATA-->M.2 Sata
| <!--Gfx-->Stoney Radeon R2, R3 or R4 and later R5 with 2 dp ports
| <!--Audio-->HD audio with ALC233-VB2-CG codec 0x10EC 0x0233
| <!--USB-->{{No|3 usb3.1 Gen 1 and 3 usb2}}
| <!--Ethernet-->rtl8169 RTL8111
| <!--Test Distro-->
| <!--Comments-->2016 64bit all dual cores - e2-9000e or a4-9120e later A9-9420e - heatsink covers 70% area covers wifi - 65w or 135w lenovo rectangle ac - 1 ddr4 2666MHz slot max 8gb - tpm 2.0 -
|-
| <!--Name-->M715q Gen 1 AMD A6 A8 A10-9700E 9770E (2c2t)
| <!--IDE-->{{N/A}}
| <!--SATA-->m.2
| <!--Gfx-->R4
| <!--Audio-->HDAudio
| <!--USB-->USB3
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->2016 64bit -
|-
| <!--Name-->M715q Gen 2 Ryzen 5 PRO 2400GE 4C 8T
| <!--IDE-->{{N/A}}
| <!--SATA-->m.2
| <!--Gfx-->Vega 11
| <!--Audio-->HD Audio with codec
| <!--USB-->USB3
| <!--Ethernet-->1GbE
| <!--Test Distro-->
| <!--Comments-->2018 64bit - f1 enter setup, esc device boot - fixed 1.8v ch341a needed to reflash 1.8v bios if no boot SOP8 DIP8 Winbond W25Q64, MXIC MX25U1635, MX25U6435 -
|-
| <!--Name-->ThinkCenter M75n nano Ryzen3 3300U
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->ThinkCentre M75q M75q-1 Tiny 1ltr TMM
*AMD Ryzen 5 PRO Quad 3500 Pro 3400GE (4c 8t) 11a5 soe400
*AMD 3200GE (2c 4t) zen1+ 11a4
| <!--IDE-->{{N/A|}}
| <!--SATA-->{{Maybe|NVMe 2280 1Tb max - untested 2.5inch}}
| <!--Gfx-->Vega 11
| <!--Audio-->HD Audio Realtek ALC222-CG codec ALC3287
| <!--USB-->3 USB3 Gen 1
| <!--Ethernet-->rtl8169 Realtek 8169 8111
| <!--Test Distro-->
| <!--Comments-->2019 64bit - 65w 20v 3.25A to 135W rectangle psu - 2 sodimm ddr4 sodimm max 32GB locked 2666MHz -
|-
| <!--Name-->ThinkCentre Ryzen 7 PRO Tiny 1ltr Gen 2 AMD 4000 series
*AMD 4650GE (6c12t) 4750GE (8c16t) 4350G (4c8t) Zen2 -
| <!--IDE-->{{N/A|}}
| <!--SATA-->{{Maybe|NVme}}
| <!--Gfx-->Vega 8
| <!--Audio-->HD Audio codec
| <!--USB-->
| <!--Ethernet-->Realtek 8169 8111
| <!--Test Distro-->
| <!--Comments-->2021 64bit vendor locked - 20v psu - 2 sodimm -
|-
| <!--Name-->Thinkcenter M75q-2 Gen2 refresh
| <!--IDE-->{{N/A}}
| <!--SATA-->m.2 nvme
| <!--Gfx-->Radeon Vega
| <!--Audio-->HDAudio
| <!--USB-->USB3
| <!--Ethernet-->1GigE
| <!--Test Distro-->
| <!--Comments-->2022 64bit 5650GE (6c12t) 5750GE (8c16t) - vendor/PSB can lock your AMD CPU - f12 boot devices
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->Thinkcentre M75q Tiny Gen5
| <!--IDE-->{{N/A| }}
| <!--SATA-->2 NVMe
| <!--Gfx-->Radeon 780M dp1.4a or hdmi
| <!--Audio-->HDAudio with codec
| <!--USB-->USB3 usb-c
| <!--Ethernet-->1GBe port
| <!--Test Distro-->
| <!--Comments-->2024 Ryzen PRO 7 8700GE - 90W yellow rectangle connector psu - 2 DDR5 sodimm slots max 128Gb -
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|}
====Misc====
{| class="wikitable sortable" width="100%"
! width="15%" |Name
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Integrated Gfx
! width="10%" |Audio
! width="10%" |USB
! width="10%" |Ethernet
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->Impart impact Media Group IQ Box mini Digital Signage with MB896 mini itx
| <!--IDE-->{{Yes| }}
| <!--SATA-->{{N/A}}
| <!--Gfx-->GMA 915 gme
| <!--Audio--> via audio
| <!--USB-->{{yes| }}
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->2007 32bit - 1 ddr2 slot - pentium m 1.73GHz -
|-
| <!--Name-->[https://everymac.com/systems/apple/mac_mini/specs/mac_mini_cd_1.83-specs.html Apple A1176 Intel MacMini1,1]
| <!--IDE-->{{N/A}}
| <!--SATA-->{{unk|gpt/efi }}
| <!--Gfx-->{{Yes|gma950 2d and 3d}}
| <!--Audio-->{{No|HDAudio with ICH7 [https://answers.launchpad.net/ubuntu/+source/alsa-driver/+question/186749 Sigmatel Stac 9221] [https://android.googlesource.com/kernel/msm/+/android-wear-5.1.1_r0.6/sound/pci/hda/patch_sigmatel.c codec][https://alsa-devel.alsa-project.narkive.com/Yt20W6cE/sigmatel-stac9221-mux-amp-out-0x02-microphone-not-working mic]}}
| <!--USB-->{{Yes|USB2}}
| <!--Ethernet-->{{No|Marvell}}
| <!--Test Distro-->
| <!--Comments-->2006 32bit possible 1.83 GHz Intel “Core Duo” (T2400) - swap pci-e wifi for atheros 5k AR5007EG - maybe hack with a 2,1 firmware - max 4GB Ram ddr2 sodimms - external apple psu - dvd boot only with c key -
|-
| <!--Name-->[https://everymac.com/systems/apple/mac_mini/specs/mac-mini-core-2-duo-1.83-specs.html Apple A1176 Intel Mac Mini2,1]
| <!--IDE-->{{N/A}}
| <!--SATA-->{{unk|gpt/efi }}
| <!--Gfx-->{{Yes|gma950 2d and 3d}}
| <!--Audio-->{{No|HDAudio with ICH7 Sigmatel Stac 9221 codec}}
| <!--USB-->{{Yes|USB2}}
| <!--Ethernet-->{{No|Marvell}}
| <!--Test Distro-->Aros One 2.0/ Icaros
| <!--Comments-->2007 64bit - swap pci-e wifi for atheros 5k AR5007EG - hacked with a 2,1 firmware and replaced the cpu for T7600 2.33 Ghz C2D and max 4GB Ram ddr2 sodimms - external apple psu - dvd boot only via c key
|-
| <!--Name-->Apple iMac 5,1 "Core 2 Duo" 1.83GHz 17" T5600 MA710LL || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->GMA 950 with 64Mb || <!--Audio-->HDAudio idt codec || <!--USB-->3 USB2 || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->2006 64bit - 2 ddr2 667MHz sodimm slots - 17.0" TFT widescreen 1440x900 - polycarbonate
|-
| <!--Name-->Apple iMac 6,1 "Core 2 Duo" 2.16 2.33 24" only T7400 T7600 aka MA456LL/A A1200 (EMC 2111) || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->Nvidia 7300GT with 128 MB of GDDR3 SDRAM PCI Express or GeForce 7600GT with 256Mb mini dvi, vga || <!--Audio-->HDAudio || <!--USB-->3 USB2 || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->2006 64bit - 2 ddr2 667MHz sodimm slots - 24.0" TFT widescreen 1920 x 1200 - polycarbonate plastic case iMacs of this generation are the most difficult iMacs to service due to their front bezel design
|-
| <!--Name-->Neoware CA2
| <!--IDE-->flash DOM
| <!--SATA-->{{N/A}}
| <!--Gfx-->S3 Inc ProSavage PM133 (rev 02) vga
| <!--Audio-->VIA VT82C686 AC97 Audio
| <!--USB-->USB
| <!--Ethernet-->rtl8139
| <!--Test Distro-->
| <!--Comments-->2003 32bit - VIA Ezra 800MHz - 2 PC100 sodimm slots - riser board carries an ISA slot and a PCI slot - external 12V power supply.with 4 pins -
|-
| <!--Name-->Neoware CA5 Capio One
| <!--IDE-->44pin Disk On Module DOM
| <!--SATA-->{{N/A}}
| <!--Gfx-->SiS550 vga
| <!--Audio-->AC97 with SiS7019 codec
| <!--USB-->USB1.1
| <!--Ethernet-->rtl8139
| <!--Test Distro-->
| <!--Comments-->2004 32bit - internal power supply with mains lead has a "clover leaf" style - 2 144-pin PC100 or PC133 SODIMM might have 24MB of RAM soldered -
|-
| <!--Name-->Neoware CA10
*E140 model BL-XX-XX (800MHz CPU) later
*E100 model BK-XX-XX (1GHz CPU)
| <!--IDE-->
| <!--SATA-->{{N/A}}
| <!--Gfx-->VIA VT8623 (Apollo CLE266) vga
| <!--Audio-->AC97 with
| <!--USB-->4 USB2
| <!--Ethernet-->VIA VT6102/VT6103 [Rhine-II] (rev 74)
| <!--Test Distro-->
| <!--Comments-->2004/5 32bit - 12v 5.5mm/2.1mm - 2 184-pin DDR DIMM -
|-
| <!--Name-->VXL Itona thin client
*TC3200,
*TC3x41 (P3VB-VXL) TC3541 TC3641 TC3841,
*TC3xx1 (6VLE-VXL0) TC3931,
*TC43xx (Gigabyte C7V7VX) TC4321
| <!--IDE-->
| <!--SATA-->{{N/A}}
| <!--Gfx-->VIA vga
| <!--Audio-->AC'97 Audio with VIA VT
| <!--USB-->VIA USB
| <!--Ethernet-->Realtek 8100B
| <!--Test Distro-->
| <!--Comments-->2005 2006 32bit VIA Samuel 2, VIA C3 Nehamiah CPU, 1 DIMM slot, internal psu,
|-
| <!--Name-->Neoware Capio C50, model CA15 Thin Clients]
*Login Administrator Password Administrator
*Login User Password User
| <!--IDE-->1 flash Disk On Module
| <!--SATA-->{{N/A}}
| <!--Gfx-->VIA VT8623 (Apollo CLE266) vga
| <!--Audio-->AC97 with via codec
| <!--USB-->USB
| <!--Ethernet-->VIA
| <!--Test Distro-->
| <!--Comments-->2006 32bit VIA Eden (Samuel II core) CPU - 1 ddr sodimm slot max 512mb - slot - internal psu clover leaf -
|-
| <!--Name-->[http://etoy.spritesmind.net/neowareca21.html Neoware CA21 Thin Clients] Igel 3210 (and maybe the Clientron G270)
*Login Administrator Password Administrator
*Login User Password User
| <!--IDE-->1 flash Disk On Module DOM
| <!--SATA-->{{N/A}}
| <!--Gfx-->VIA CN700 vga
| <!--Audio-->AC97 with via codec
| <!--USB-->USB2
| <!--Ethernet-->VIA
| <!--Test Distro-->
| <!--Comments-->2007 32bit VIA C3 Nehemiah instead of Ezra-T - made 2 version of the CA 21, one with an Award bios and one with a Phoenix bios - 1 ddr2 sodimm slot max 1gb - VT6656 wireless - slot - internal psu iec -
|-
| <!--Name-->Neoware CA22 (e140), part number DD-L2-GE with BCOM WinNET P680 (V4) as the Igel 4210LX (Igel 5/4)
| <!--IDE-->1 VIA VT82C586A/B VT82C686/A/B VT823x/A/C PIPC Bus Master IDE (rev 06)
| <!--SATA-->{{N/A}}
| <!--Gfx-->VIA CN700 P4M800 Pro CE VN800 Graphics [S3 UniChrome Pro] (rev 01) vga
| <!--Audio-->AC97 with codec
| <!--USB-->USB2 VIA VT8237R Plus
| <!--Ethernet-->VIA VT6102/VT6103 [Rhine-II] (rev 78)
| <!--Test Distro-->
| <!--Comments-->2007 32bit - VIA Esther to later C7 1GHz - 1 ddr2 sodimm slots max 512mb - +12V DC/4.16A/50W 5.5mm/2.1mm coaxial -
|-
| <!--Name-->10Zig RBT402, Clientron U700,
| <!--IDE-->{{Yes|44 pin header very little room}}
| <!--SATA-->{{N/A|}}
| <!--Gfx-->{{Partial|VESA dvi}}
| <!--Audio-->{{unk|AC97 with codec}}
| <!--USB-->{{unk|VIA }}
| <!--Ethernet-->{{unk|}}
| <!--Test Distro-->
| <!--Comments-->2008 32bit - very small cases with very limited expansion - 1 sodimm 2GB max - 12v 3a psu - Password Fireport
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->Dell Optiplex FX170 D05U thin client, 10Zig 56xx range 5602, 5616v, 5617v, 5672v, Clientron U800, Devon IT TC5,
| <!--IDE-->{{Yes|44 pin header very little room}}
| <!--SATA-->{{N/A|}}
| <!--Gfx-->{{partial|GMA 950 dvi}}
| <!--Audio-->{{Yes|HD Audio with codec}}
| <!--USB-->{{Yes| }}
| <!--Ethernet-->{{No|Broadcom}}
| <!--Test Distro-->Icaros 2.3
| <!--Comments-->2009 32bit - very small cases with very limited expansion - 1 ddr2 sodimm 2GB max - 12v 3a psu - Password Fireport - ps2 keyboard socket -
|-
| <!--Name-->10Zig RBT-616V or Chip PC Technologies EX-PC (model number XPD4741)
| <!--IDE-->{{unk|44 pin header very little room}}
| <!--SATA-->{{N/A|}}
| <!--Gfx-->{{Yes|GMA 950}}
| <!--Audio-->{{unk|HD Audio with codec}}
| <!--USB-->{{unk| }}
| <!--Ethernet-->{{unk|rtl8169}}
| <!--Test Distro-->
| <!--Comments-->2010 32bit N270 on NM10 with ICH7 - very small cases with very limited expansion - 1 sodimm 2GB max - 12v 4a psu - Password Fireport
|-
| <!--Name-->Gigabyte Brix GS-A21S-RH (rev. 1.0) SFF
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->{{maybe|X3100}}
| <!--Audio-->{{No|HD Audio with ALC883-GR codec}}
| <!--USB-->Intel USB
| <!--Ethernet-->{{no|Intel 82566DC}}
| <!--Test Distro-->ICAROS 2.3
| <!--Comments-->2009 64bit Intel GME965 chipset with Intel ICH8M - 2 DDR2 Dimm slots - GA-6KIEH2-RH Rev.1.x mini ITX Case 213mm(D) x 64mm(W) x 234mm(H) - custom psu -
|-
| <!--Name-->VXL Itona MD+24 MD27 MD54 MD64 MD76 thin client
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->VIA Chrome 9
| <!--Audio-->HD Audio with VIA VT
| <!--USB-->VIA
| <!--Ethernet-->VIA
| <!--Test Distro-->
| <!--Comments-->2009 32bit VIA X2 U4200 - 12v-19v barrel psu -
|-
| <!--Name-->Acer Revo 100 RL100 AMD Athlon II X2 K325 || <!--IDE--> || <!--SATA--> || <!--Gfx-->NVIDIA® ION™ 9300m || <!--Audio-->HDAudio with ALC662 codec || <!--USB-->USB2 1 front 2 back || <!--Ethernet-->NVIDIA nForce 10/100/1000 || <!--Test Distro--> || <!--Comments-->2010 64bit but no AVX - 4Gb DDR3 sodimm - 500 GB - 19v 3.42a 65W - dvd but later BD drive -
|-
| <!--Name-->Asrock ION 330 330Pro HT-BD, Foxconn NT-330i, Zotac ION F (IONITX mini itx),
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->{{Maybe|ION geforce 9400}}
| <!--Audio-->{{Maybe| }}
| <!--USB-->{{Maybe|Nvidia USB}}
| <!--Ethernet-->{{No|Nvidia }}
| <!--Test Distro-->
| <!--Comments-->2010 32bit slow atom cpu - 2.5L 8" by 8" plastic case - 2 ddr2 sodimm max 4G - external 19v 65W 3.42A Plug 5.5mm X 2.5mm - little whiny fan -
|-
| <!--Name-->Zotac ZBOXHD-ND01
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->ION1
| <!--Audio-->HDaudio
| <!--USB-->USB2
| <!--Ethernet-->NVidia
| <!--Test Distro-->
| <!--Comments-->2009 32bit
|-
| <!--Name-->Zotac ZBOX HD-ID11
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->ION2
| <!--Audio-->HDaudio with ALC888 codec
| <!--USB-->USB2
| <!--Ethernet-->rtl8169 rtl8111D
| <!--Test Distro-->
| <!--Comments-->2010
|-
| <!--Name-->ZOTAC ZBOX Blu-ray 3D ID36 Plus
| <!--IDE-->{{N/A}}
| <!--SATA-->sata
| <!--Gfx-->ION2
| <!--Audio-->HDaudio
| <!--USB-->2 USB3
| <!--Ethernet-->GbE
| <!--Opinion-->2011 64bit -
|-
| <!--Name-->Shuttle XS35GT || <!--IDE--> || <!--SATA--> || <!--Gfx-->ION || <!--Audio-->HD audio IDT92HD81 || <!--USB--> || <!--Ethernet-->{{No|JMC261}} || <!--Test Distro--> || <!--Comments-->2011 64bit - Atom™ D510 NM10 - DDR2
|-
| <!--Name-->Shuttle XS35GT V2 || <!--IDE--> || <!--SATA--> || <!--Gfx-->ION2 || <!--Audio-->HD audio IDT92HD81 || <!--USB-->Intel || <!--Ethernet-->{{No|JMC251}} || <!--Test Distro--> || <!--Comments-->2011 64bit Atom™ D525 NM10 chipset - DDR3
|-
| <!--Name-->Sapphire Edge-HD || <!--IDE--> || <!--SATA--> || <!--Gfx-->ION2 GT218 with vga and hdmi || <!--Audio-->HDAudio realtek codec || <!--USB--> || <!--Ethernet-->{{Unk|Realtek}} || <!--Test Distro--> || <!--Comments-->2011 64bit - Atom™ D510 NM10 - DDR2 65 W AC, DC 19V~3.42A, 19.3L x 14.8w x 2.2H cm (1l), weight 530g,
|-
| <!--Name-->Sapphire Edge-HD2 || <!--IDE-->{{N/A}} || <!--SATA-->{{yes|IDE mode}} || <!--Gfx-->{{Yes|nouveau ION2 GT218 with vga and hdmi 2d and 3d}} || <!--Audio-->{{Yes|HDAudio}} || <!--USB-->{{Yes|Intel USB2}} || <!--Ethernet-->{{Yes|}} || <!--Test Distro--> || <!--Comments-->2011 64bit Atom™ D525 NM10 chipset - DDR3
|-
| <!--Name-->AOPEN Digital Engine DE67-HA(I)
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Maybe| }}
| <!--Gfx-->{{Maybe| Vesa 2d for Intel HD}}
| <!--Audio-->{{maybe|HDAudio for ALC662 codec}}
| <!--USB-->{{maybe|usb3}}
| <!--Ethernet-->{{no|Intel WG82579LM}}
| <!--Test Distro-->
| <!--Comments-->2011
|-
| <!--Name-->[https://www.jetwaycomputer.com/JBC600C99352W.html Jetway JBC600C99352W]
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->ION2
| <!--Audio-->{{No|C-Media CM108AH}}
| <!--USB-->USB2
| <!--Ethernet-->Realtek 8111DL
| <!--Test Distro-->
| <!--Comments-->2011 64bit D525 - DDR3 - 12v psu
|-
| <!--Name-->Foxconn nT-A3550 A3500 AMD A45 Chipset DDR3 Nettop Barebones - White
| <!--IDE-->{{N/A}}
| <!--SATA-->1 slot
| <!--Gfx-->AMD Radeon HD6310
| <!--Audio-->
| <!--USB-->4 USB2 back and 2 USB3 front
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->2012 64bit does not support AVX or SSE 4.1 AMD Dual-core E350 1.6GHz CPU - 1 ddr3 sodimm -
|-
| <!--Name-->Asus EeeBox PC EB1021 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Radeon HD6320M || <!--Audio-->HDAudio with ALC codec || <!--USB-->USB2 || <!--Ethernet-->Realtek GbE1 || <!--Test Distro--> || <!--Comments-->2012 64bit - AMD® Brazos E-350 SFF or E-450 with A50M - 2 ddr3l so-dimm - 40W ac -
|-
| <!--Name-->Xi3 Piston PC Athlon64 X2 3400e (X5A), AMD R-464L quad (X7A) Z3RO NUC
| <!--IDE-->{{N/A}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->AMD mobility HD3650 to radeon HD 7660G
| <!--Audio--> codec
| <!--USB-->4 USB2 3 USB3
| <!--Ethernet-->{{no|Atheros AR8161}}
| <!--Test Distro-->
| <!--Comments-->2012 - 2 sodimm 8GB max - 19v 3.3a round - Titan105 bios update -
|-
| <!--Name-->Sapphire Edge-HD3 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->Radeon HD6320M with vga and hdmi || <!--Audio-->HDAudio with Realtek ALC662 codec || <!--USB-->USB2 || <!--Ethernet-->Realtek GbE1 || <!--Test Distro--> || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 AMD® Brazos E-450 with A45M - ddr3l so-dimm - 65W ac - Wireless is Realtek 8191SU WiFi (802.11n) or AzureWave (802.11bgn) -
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->Samsung Syncmaster Thin Client Display TC-W Series 24" LF24 TOWHBFM/EN TC220W LED LF22TOW HBDN/EN || <!--IDE-->{{N/A}} || <!--SATA-->8gb SSD || <!--Gfx-->{{Maybe| VESA mode only Radeon HD 6290}} || <!--Audio--> || <!--USB-->2 USB 2.0 || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 thin Client C-50 C50 AMD® 1000 MHz and no wireless
|-
| <!--Name-->Advantech TPC-2140 thin client
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->{{Maybe|VESA }}
| <!--Audio-->
| <!--USB-->USB2
| <!--Ethernet-->{{Yes|Realtek}}
| <!--Test Distro-->
| <!--Comments-->2012 64bit does not support AVX or SSE 4.1 atom-like G-T56E 1.65Ghz up to SSE3, BGA413 soldered -
|-
| <!--Name-->CompuLab FIT-PC3 fitPC3 USFF PC AMD G-T56N || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->RADEON HD 6320 || <!--Audio-->{{yes|HDAudio ALC888 codec}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{yes|rtl8169 8111}} || <!--Test Distro--> || <!--Comments-->2012 64 bit does not support AVX or SSE 4.1 - 12v 3a - 2x sodimm DDR3 max 4GB - wifi rtl8188ce
|-
| <!--Name-->10Zig 6872 thin client
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->{{Maybe|VESA }}
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->{{Yes|Realtek}}
| <!--Test Distro-->
| <!--Comments-->2012 64bit does not support AVX or SSE 4.1 atom-like G-T56N up to SSE3 BGA413 (FT1) soldered - DDR3l single channel -
|-
| <!--Name-->10ZiG Technology 9972 1.6 GHz Linux 1.47 kg Black RX-216GD thin client
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->AMD Radeon 5E 3840 x 2160 @ 30Hz to 2560 x 1600 @ 60Hz 2 x Display Port
| <!--Audio-->
| <!--USB-->6 x USB2.0 2 x USB3.0
| <!--Ethernet-->{{Maybe|Realtek}}
| <!--Test Distro-->
| <!--Comments-->2016 64bit does support AVX or SSE 4.1 AMD RX-216TD - 1 ddr3 sodimm - 12V 4A Coax 5.5mm/2.1mm
|-
| <!--Name-->10ZiG 7800q thin client
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->AMD Radeon 5E 3840 x 2160 @ 30Hz to 2560 x 1600 @ 60Hz 2 x Display Port
| <!--Audio-->
| <!--USB-->6 x USB2.0 2 x USB3.0
| <!--Ethernet-->{{Maybe|Realtek}}
| <!--Test Distro-->
| <!--Comments-->2016 64bit does support AVX or SSE 4.1 AMD GX-424CC (Quad Core) 2.4GHz BGA769 (FT3b) - 1 ddr3 sodimm - 12V 4A Coax 5.5mm/2.1mm
|-
| <!--Name-->
*Itona VXL MZE12 AMD a4-5000 thin client
*VXL Itona LQ27 LQ+27 LQ44 LQ+44 LQ49 LQ+49 LQ50 LQ+50 LQ64 LQ+64 thin client
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->Ati 8330 vga hdmi dp
| <!--Audio-->
| <!--USB-->4 usb2 2 usb3
| <!--Ethernet-->Realtek
| <!--Test Distro-->
| <!--Comments-->2014 64bit quad BGA769 (FT3) soldered - 2 stacked sodimm ddr3 middle of mobo - 2 m.2 sata slots - 1 sata short cable half size space - limited 1ltr 8in case no fan - 19v hp style psu connector -
|-
| <!--Name-->Dell Wyse 5212 21.5" AIO Thin Client W11B
| <!--IDE-->{{N/A}}
| <!--SATA-->Sata
| <!--Gfx-->R3 out from DP or vga
| <!--Audio-->HDAudio
| <!--USB-->USB2
| <!--Ethernet-->Realtek
| <!--Test Distro-->
| <!--Comments-->2015 64bit slow atom like dual core AMD G-T48E 1.4 GHz - dell type round ac needed 90W 19.5V 4.62A - 21 inch 1080p screen -
|-
| <!--Name-->LG 24CK560N-3A 24' All-in-One Thin Client Monitor, 27CN650N-6N 27CN650W-AC 27', 34CN650W-AC 34',
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->2018 64bit AMD Prairie Falcon GX-212JJ
|-
| <!--Name-->CompuLab fit-PC4 fitPC4 4x 2Ghz AMD || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet-->{{no|Intel}} || <!--Test Distro--> || <!--Comments-->2018 64 - 2x DDR4 sodimm -
|-
| <!--Name-->IGEL Hedgehog M340C UD3 thin client
*2016 V1.0 AMD GX-412HC 1.2GHz-1.6GHz Radeon R3E, normal bios DEL for Bios or F12 boot selector
*2018 AMD GX-424CC 2.4GHz, Radeon R5E, UEFI hit DEL and choose boot or SCU icon
| <!--IDE-->{{N/A|}}
| <!--SATA-->SATA half slim version '''limited space''' with msata 8+18pins slot on earlier 2016 models
| <!--Gfx-->{{Maybe|VESA for Radeon R3E later R5E sea islands vulkan 1.2 with dvi dp output}}
| <!--Audio-->{{Yes|HD Audio with codec ?? (412) and Realtek ALC662-VD0-GR (424), both case speaker}}
| <!--USB-->amd usb3 boot usb2 with bios "disable usb" entry
| <!--Ethernet-->{{Yes|Realtek 8169 8111 (412) and (424)}}
| <!--Test Distro-->Aros One x86 USB 1.5, 1.8 and 2.2 but ArosOne 64bit 1.2 boot loop in usb2 port
| <!--Comments-->2016 64bit - 20cm/8" high case - 1 DDR3L sodimm slot max 8Gb 1600MHz - external '''12V 3A''' supply with 5.5mm/2.1mm coaxial - IDE like interface under base stand is for legacy addon ports RS232 parallel etc - capacitive touch power on - case opening 3 stages, remove stand and narrow black plastic strip from the back, top cover slides off to the back and lifts off -
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->10ZiG 6148v 6048qv (6100 series)
| <!--IDE-->{{N/A}}
| <!--SATA-->{{maybe| }}
| <!--Gfx-->
| <!--Audio-->{{maybe| }}
| <!--USB-->{{No| }}
| <!--Ethernet-->{{maybe| }}
| <!--Test Distro-->
| <!--Comments-->2018 64bit AMD Ryzen V1202B
|-
| <!--Name-->10ZiG 7111q
| <!--IDE-->{{N/A}}
| <!--SATA-->{{maybe| }}
| <!--Gfx-->
| <!--Audio-->{{maybe| }}
| <!--USB-->{{maybe| }}
| <!--Ethernet-->{{maybe| }}
| <!--Test Distro-->
| <!--Comments-->2019 64bit AMD Ryzen R2514 2.1 GHz -
|-
| <!--Name-->Shuttle DA320
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->R3 R5
| <!--Audio-->HD Audio with ALC662 codec
| <!--USB-->{{maybe| }}
| <!--Ethernet-->dual realtek 1GbE 8111H
| <!--Test Distro-->
| <!--Opinion-->2017 64bit AMD 2200G 2400G - Robust metal 1.3-liter case - A320 chipset DDR4 - 19V 6.32A DC PSU -
|-
| <!--Name-->IGEL UD7 H850C around december 2019 '''AMD Secure Processor''' is a built-in dedicated security system that checks if the BIOS has a valid signature and thus secures the next step in the boot process. This ensures that only devices with a signed BIOS will boot
| <!--IDE-->{{N/A}}
| <!--SATA-->None but 8gb emmc
| <!--Gfx-->Vega 3
| <!--Audio-->HD Audio with Realtek ALC897 or ALC888S codec
| <!--USB-->USB 3.2 and 2.0
| <!--Ethernet-->1GbE
| <!--Test Distro-->
| <!--Comments-->2018 64bit - AMD Ryzen™ Dual-Core 10W TDP - 2 DDR4 sodimms slots max 16Gb - 12V 4A psu - 2x DisplayPort 1.2 no dvi or hdmi - Intel® 9260 or SparkLAN WNFT-238AX wifi - 1x rear serial Prolific PL2303 chipset - locked down components and very limited expansion options
|-
| <!--Name-->IGEL UD7 H860C - '''AMD Secure Processor''' is a built-in dedicated security system that checks if the BIOS has a valid signature and thus secures the next step in the boot process. This ensures that only devices with a signed BIOS will boot
| <!--IDE-->{{N/A}}
| <!--SATA-->None but 8gb emmc
| <!--Gfx-->Vega 3
| <!--Audio-->HD Audio with Realtek ALC897 or ALC888S codec
| <!--USB-->USB 3.2 and 2.0
| <!--Ethernet-->1GbE
| <!--Test Distro-->
| <!--Comments-->2018 64bit - AMD Ryzen™ Dual-Core 10W TDP - 2 DDR4 sodimms slots max 16Gb - 12V 4A psu - 2x DisplayPort 1.2 no dvi or hdmi - Intel® 9260 or SparkLAN WNFT-238AX wifi - 1x rear serial Prolific PL2303 chipset - locked down components and very limited expansion options
|-
| <!--Name-->IGEL UD3 M350C (UEFI issues)
| <!--IDE-->{{N/A}}
| <!--SATA-->None but 8gb emmc
| <!--Gfx-->Vega 3
| <!--Audio-->HD Audio with Realtek ALC897 or ALC888S codec
| <!--USB-->USB 3.2 and 2.0
| <!--Ethernet-->1GbE
| <!--Test Distro-->
| <!--Comments-->2018 64bit - AMD Ryzen™ R R1505G Dual-Core 10W TDP - 2 DDR4 sodimms slots max 16Gb - 12V 4A psu - 2x DisplayPort 1.2 no dvi or hdmi - Intel® 9260 or SparkLAN WNFT-238AX wifi - 1x rear serial Prolific PL2303 chipset - locked down components and very limited expansion options
|-
| <!--Name-->IGEL UD7 H860C AMD Ryzen V1605B Thin Client - '''AMD Secure Processor''' is a built-in dedicated security system that checks if the BIOS has a valid signature and thus secures the next step in the boot process. This ensures that only devices with a signed BIOS will boot
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->HDAudio
| <!--USB-->{{maybe| }}
| <!--Ethernet-->1GbE
| <!--Test Distro-->
| <!--Comments-->2020 AMD Ryzen™ Embedded V1605B 2 – 3.6 GHz (Quad-Core) - 12v 5A psu - up to 16GB RAM DDR4 - locked down components and very limited expansion options
|-
| <!--Name-->Gigabyte Brix Barebone Mini PC BSRE-1605
| <!--IDE-->{{N/A}}
| <!--SATA-->2 M.2
| <!--Gfx-->Vega 8
| <!--Audio-->HD Audio ALC269 codec
| <!--USB-->USB3
| <!--Ethernet-->2 GbE
| <!--Test Distro-->
| <!--Comments-->2020 64bit AMD Ryzen V1605B - 2 DDR4 sodimm slots
|-
| <!--Name-->MINISFORUM Deskmini UM250 Mini PC
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->{{maybe| }}
| <!--Ethernet-->{{maybe| }}
| <!--Test Distro-->
| <!--Comments-->2020 64bit AMD Ryzen V1605B -
|-
| <!--Name-->T-Bao MN25 Mini PC 2500U
| <!--IDE-->{{N/A| }}
| <!--SATA-->{{Unk|Intel NVMe}}
| <!--Gfx-->{{No|VESA Radeon Vega 8}}
| <!--Audio-->{{Unk| }}
| <!--USB-->{{maybe|USB 3}}
| <!--Ethernet-->{{Yes|Realtek PCIe 1GbE}}
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->Atari VCS || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{maybe|Vesa 2D for AMD Vega 3}} || <!--Audio-->{{unk|HDAudio with ALC codec}} || <!--USB-->{{maybe|USB3 USB 3.2 Gen 2 front and 3 usb2 rear }} || <!--Ethernet-->rtl8169 Realtek RTL8111H || <!--Test Distro--> || <!--Comments-->2021 64bit Ryzen Embedded R1606G - 2 ddr4 sodimm slots - TPM 2.0 -
|-
| <!--Name-->Minis Forum M200 Silver Athlon M300 3300U
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->Vega 8
| <!--Audio-->
| <!--USB-->{{maybe|USB 3.1 gen 1 and 2}}
| <!--Ethernet-->{{No|Realtek PCIe 2.5G}}
| <!--Test Distro-->
| <!--Comments-->2021 64bit
|-
| <!--Name-->Minis Forum DeskMini UM300 3300U, UM350 DMAF5 3550H, UM370 and UM700 with 3750H
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->Vega 8
| <!--Audio-->
| <!--USB-->{{maybe|USB 3.1 gen 1 and 2}}
| <!--Ethernet-->{{No|Realtek PCIe 2.5G}}
| <!--Test Distro-->
| <!--Comments-->2021 64bit
|-
| <!--Name-->MinisForum X300 with AMD 3400G
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->Vega 8
| <!--Audio-->
| <!--USB-->{{maybe|USB 3.1 gen 1 and 2}}
| <!--Ethernet-->{{No|Realtek PCIe 2.5G}}
| <!--Test Distro-->
| <!--Comments-->2021 64bit
|-
| <!--Name-->Beelink SER3 GTR4
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->AMD Vega 3 or 10
| <!--Audio-->HD Audio with codec
| <!--USB-->{{maybe|USB3}}
| <!--Ethernet-->Realtek RJ45 1GbE
| <!--Test Distro-->
| <!--Comments-->2020 64bit 3200u or 3750h
|-
| <!--Name-->AsRock DeskMini X300
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->2020 Ryzen 7 Pro 4750G 5600G
|-
| <!--Name-->MinisForum Besstar Tech X400 with AMD 4650G
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->AMD
| <!--Audio-->
| <!--USB-->{{maybe|USB 3.1 gen 1 and 2}}
| <!--Ethernet-->{{No|Realtek PCIe 2.5G}}
| <!--Test Distro-->
| <!--Comments-->2021 64bit - MP1584 - kill NB679 NB679GD-Z=ALTM=AL** QFN-12 IC-REG-DL buck/linear synchronous chip IC with bad usb cables -
|-
| <!--Name-->Beelink SER4 GTR5
| <!--IDE-->{{N/A}}
| <!--SATA-->cant boot from installed SSDs unless its an M.2
| <!--Gfx-->AMD Vega
| <!--Audio-->
| <!--USB-->{{maybe|USB3}}
| <!--Ethernet-->1 or 2 Realtek
| <!--Test Distro-->
| <!--Comments-->2021 64bit 4700U or 5900HX
|-
| <!--Name-->MSI PRO DP20Z 5M Mini PC - AMD Ryzen 5 5300G
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->{{No|Realtek 2.5G LAN RTL8125}}
| <!--Test Distro-->
| <!--Comments-->2018-2021 R3 3200G Vega 8 - R5 3400G Vega 11 - Ryzen 5 5600G Vega 7 - Athlon 3000G
|-
| <!--Name-->Minisforum UM450
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->Vega
| <!--Audio-->HDaudio
| <!--USB-->USB3
| <!--Ethernet-->{{No|Realtek 2.5G LAN RTL8125}}
| <!--Test Distro-->
| <!--Comments-->2022 64bit - Ryzen 4500U -
|-
| <!--Name-->Gigabyte Brix
GB-BRR7-4800 (rev. 1.0)
GB-BRR7-4700 (rev. 1.0)
GB-BRR5-4500 (rev. 1.0)
GB-BRR3-4300 (rev. 1.0)
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->{{maybe|}}
| <!--Ethernet-->Realtek 2.5G LAN RTL8125
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->ASUS PN50 mini PC AMD Ryzen 7 4700U
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Vega
| <!--Audio-->HD audio with codec
| <!--USB-->{{maybe|3.1 gen1}}
| <!--Ethernet-->{{No|realtek 2.5GbE}}
| <!--Test Distro-->
| <!--Comments-->2022 64bit -
|-
| <!--Name-->ASUS PN51-S1 mini PC AMD Ryzen 7 5700U
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->Vega thru dp or hdmi
| <!--Audio-->HD audio with codec
| <!--USB-->{{maybe|3.1 gen1}}
| <!--Ethernet-->{{No|realtek 2.5GbE}}
| <!--Test Distro-->
| <!--Comments-->2022 64bit - 19v or 19.5v 90w psu round barrel - 32gb ddr4 sodimm -
|-
| <!--Name-->Minis Forum Bessstar Tech EliteMini B550
| <!--IDE-->{{N/A}}
| <!--SATA-->1 x 2.5in and 2 nvme
| <!--Gfx-->Vega 8
| <!--Audio-->
| <!--USB-->{{maybe|4 usb3.1}}
| <!--Ethernet-->{{No|realtek 8125 2.5GbE}}
| <!--Test Distro-->
| <!--Comments-->2022 64bit AMD 4700G 5700G desktop cpu - 19v 120w round barrel -
|-
| <!--Name-->ASRock A300 and later X300 Mini itx with Desktop AM4 socket
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->Vega
| <!--Audio-->HDAudio
| <!--USB-->USB3
| <!--Ethernet-->1GbE
| <!--Test Distro-->
| <!--Comments-->2022 64bit - choose your own AMD APU GE 35w based - DDR4 -
|-
| <!--Name-->ASRock 4x4 BOX-5800U Zen 3-based AMD Ryzen 7 5800U 15W -
| <!--IDE-->{{N/A}}
| <!--SATA-->m.2 slot gen 3 and sata
| <!--Gfx-->vega
| <!--Audio-->HD audio with codec
| <!--USB-->{{maybe|}}
| <!--Ethernet-->{{Maybe|1 GbE and 1 2.5GbE}}
| <!--Test Distro-->
| <!--Comments-->2022 64bit - WiFi 6E -
|-
| <!--Name-->Topton S500+ Gaming Mini PC - Morefine S500+ 5900HX Mini PC - Minisforum UM590 Ryzen AMD Zen3 Ryzen 9 5900HX 7 5800H 45W -
| <!--IDE-->{{N/A}}
| <!--SATA-->2 nvme 1 sata
| <!--Gfx-->Vega 8 thru HDMI 2.0, DP 1.4, and USB type-C
| <!--Audio-->
| <!--USB-->{{maybe|usb3.1}}
| <!--Ethernet-->{{Maybe|1 realtek rtl 8111h and 1 8125 2.5GbE bg-cg}}
| <!--Test Distro-->
| <!--Comments-->2022 64bit - 2 sodimm ddr4 3200MHz -
|-
| <!--Name-->Chuwi RzBox later Ubox
| <!--IDE-->{{N/A}}
| <!--SATA-->2 nvme
| <!--Gfx-->Vega 8 later to 660m vga, dp, hdmi
| <!--Audio-->HDaudio
| <!--USB-->{{maybe|usb-c usb2}}
| <!--Ethernet-->dual gigabit
| <!--Test Distro-->
| <!--Comments-->2022 2025 64bit amd 5800h 4800h 6600H - 90w psu -
|-
| <!--Name-->Beelink Mini PC SER5, Trigkey AZW S5, Asus PN52, ZHI BEN MX-JB560,
| <!--IDE-->{{N/A}}
| <!--SATA-->PCIe3 M.2 2280 nvme
| <!--Gfx-->AMD Vega 6 with 1 or 2 hdmi
| <!--Audio-->HDAudio
| <!--USB-->{{maybe|USB3.0}}
| <!--Ethernet-->{{Maybe|Realtek 1GbE}}
| <!--Test Distro-->
| <!--Comments-->2022 64bit 5500U 5560u 5600U to PRO 5600H 5800H - 19v 3.42W 65W psu -
|-
| <!--Name-->NIPOGI Kamrui ACEMAGICIAN AM06PRO Dual LAN Mini PC AMD Ryzen 7 5800U, 5 5500U or 5600U/5625U
| <!--IDE-->{{N/A}}
| <!--SATA-->M.2 and 2.5in sata
| <!--Gfx-->Vega 7
| <!--Audio-->HDAudio
| <!--USB-->USB3
| <!--Ethernet-->2 GbE ports
| <!--Test Distro-->
| <!--Comments-->2022 64bit - plastic build - 90w usb-c power - loud at 25W setting -
|-
| <!--Name-->Topton FU02 Fanless Mini PC AMD Ryzen 7 4700U 5600U 5800U 8 Core 16 Threads
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe and 2.5in sata
| <!--Gfx-->Vega
| <!--Audio-->HDAudio
| <!--USB-->4 3.0 with 2 2.0
| <!--Ethernet-->2 x 1G
| <!--Test Distro-->
| <!--Comments-->2022 64 - 2 ddr4 sodimm slots - fanless with copper cube from cpu to metal sheet which gets warm
|-
| <!--Name-->Xuu XR1 Lite (5300u 4c 8t) PRO 5400U MAX 5600U
| <!--IDE-->{{N/A}}
| <!--SATA-->1 NVMe 2242 slot
| <!--Gfx-->Vega 6
| <!--Audio-->HDAudio
| <!--USB-->2 3.0
| <!--Ethernet-->1G
| <!--Test Distro-->
| <!--Comments-->2022 64 quiet fan - very small case no expansions -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->MINISFORUM UM690 Venus Series
| <!--IDE-->{{N/A}}
| <!--SATA-->pcie4 nvme 2280 and 1 sata3 2.5in
| <!--Gfx-->680m RNDA2 12CU with 2 hdmi
| <!--Audio-->HD Audio with codec
| <!--USB-->{{maybe|1 USB4 and 2 USB3.2}}
| <!--Ethernet-->{{No|2.5G LAN}}
| <!--Test Distro-->
| <!--Comments-->2022 64bit 6900hx 8C16T - 2 ddr5 sodimmm - 19v ???W -
|-
| <!--Name-->Beelink Mini PC GTR6
| <!--IDE-->{{N/A}}
| <!--SATA-->PCIe4
| <!--Gfx-->AMD 680M RDNA2
| <!--Audio-->
| <!--USB-->USB3.2
| <!--Ethernet-->{{No|Realtek 2.5GbE or intel i225}}
| <!--Test Distro-->
| <!--Comments-->2022 64bit Ryzen 9 6900HX Zen3+ and a 2gb Radeon 680m 12CU ddr5 sodimm - 19v 120w psu -
|-
| <!--Name-->Asus PN53, Geekom AS 6,
| <!--IDE-->{{N/A}}
| <!--SATA-->pcie gen4 nvme and ata 2.5in
| <!--Gfx-->680m RNDA2 12CU with 2 hdmi and 1 dp
| <!--Audio-->HD Audio with codec
| <!--USB-->{{maybe|2 usb-c, 2 USB2.1 and 3 USB3.2}}
| <!--Ethernet-->{{No|1G LAN}}
| <!--Test Distro-->
| <!--Comments-->2022 64bit 6900hx 8C 16T - 2 slots ddr5 sodimmm (64Gb max) - 19v 120W - 4 retained base screws beware ribbon cable -
|-
| <!--Name-->Micro Computer (HK) Tech Ltd MinisForum UM773 Lite later UM750L slim, GMKtec K2 Mini PC
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe PCIe4.0
| <!--Gfx-->RDNA
| <!--Audio-->HD Audio
| <!--USB-->USB4
| <!--Ethernet-->2.5GbE
| <!--Test Distro-->
| <!--Comments-->2023 2025 64bit - AMD Zen 3+ (8c 16t) Ryzen 7 7735HS, 7840HS and AMD Ryzen 9 7845HX AMD Ryzen™5 7545U (6c12t) - 19v up to 120w ac adapter - ddr5 sodimm 4800Mhz -
|-
| <!--Name-->[https://www.asrockind.com/en-gb/4x4 ASrock 4x4 SBC]
| <!--IDE-->{{N/A}}
| <!--SATA-->sata or nvme
| <!--Gfx-->Vega or 680M
| <!--Audio-->HDAudio
| <!--USB-->USB3 or USB4
| <!--Ethernet-->Realtek 1GbE or intel 2.5GbE
| <!--Test Distro-->
| <!--Comments-->2022 64bit -
|-
| <!--Name-->Beelink Mini PC GTR7 SER7
| <!--IDE-->{{N/A}}
| <!--SATA-->PCIe4 nvme 2280 up to 2Tb
| <!--Gfx-->AMD 780M RDNA3 GPU output on hdmi and dp
| <!--Audio-->HDAudio
| <!--USB-->USB3.2
| <!--Ethernet-->{{No|1 or 2 2.5GbE}}
| <!--Test Distro-->
| <!--Comments-->2023 64bit AMD Phoenix APUs Zen 4 CPU Ryzen 7 7840HS or 9 7940HS (8c 16t) - 19v 5.26A 120w psu - del dios setup f7 choose boot - 2 usb-c on back - up to 64gb via 2 ddr5 sodimm slots -
|-
| <!--Name-->MINISFORUM BD770i Ryzen 7 7745HX (8c16t) or BD795i SE 790i 9 7945HX (16c32t) or F1FXM_MB_V1.1 795M LGA1700 mATX
| <!--IDE-->{{N/A}}
| <!--SATA-->2 NVMe
| <!--Gfx-->Radeon 610m over usb-c, dp or hdmi
| <!--Audio-->HDAudio with codec
| <!--USB-->USB3 with 2 rear USB2
| <!--Ethernet-->Realtek 2.5G
| <!--Test Distro-->
| <!--Opinion-->2024 mini-ITX M/B is the first MoDT (Mobile on Desktop) with soldered AMD CPU - 2 dual PCIe4.0 M.2 slots - 2 ddr5 sodimm slots max 5200Mhz - 8pin cpu power - battery not easily replaceable underneath -
|-
| <!--Name-->Minisforum ms-a1 MS-a2
* 5700G to 8700G apu
* 9955HX
| <!--IDE-->{{N/A}}
| <!--SATA-->2 nvme
| <!--Gfx-->AMD 610M
| <!--Audio-->HDAudio
| <!--USB-->USB3
| <!--Ethernet-->dual 2.5GbE
| <!--Test Distro-->
| <!--Comments-->2024 64bit - 19v ?A round barrel jack - 2 ddr5 so-dimm slots -
|-
| <!--Name-->AOOSTAR GT68
| <!--IDE-->{{N/A}}
| <!--SATA-->Nvme
| <!--Gfx-->680m
| <!--Audio-->HDaudio
| <!--USB-->USB3
| <!--Ethernet-->2 2.5Gb
| <!--Test Distro-->
| <!--Comments-->2025 Ryzen7 Pro 6850H,
|-
| <!--Name-->NextSBC 7840HS
| <!--IDE-->{{N/A}}
| <!--SATA-->Nvme
| <!--Gfx-->AMD 780M 12CU
| <!--Audio-->HDAudio with codec
| <!--USB-->USB4 and USB 3.2
| <!--Ethernet-->2 GbE
| <!--Test Distro-->
| <!--Comments-->2025 64bit - 32Gb soldered -
|-
| <!--Name-->Firebat A6 R7 6800H
| <!--IDE-->{{N/A}}
| <!--SATA-->nvme
| <!--Gfx-->AMD 680M
| <!--Audio-->HDaudio
| <!--USB-->USB3
| <!--Ethernet-->rtl8169
| <!--Test Distro-->
| <!--Comments-->2025 64bit -
|-
| <!--Name-->Minisforum UM760 7640HS
| <!--IDE-->{{N/A}}
| <!--SATA-->nvme
| <!--Gfx-->AMD 760
| <!--Audio-->HDaudio
| <!--USB-->USB4
| <!--Ethernet-->rtl8169 and 2.5Gb
| <!--Test Distro-->
| <!--Comments-->2025 64bit -
|-
| <!--Name-->Peladn WO4 Mini PC
| <!--IDE-->{{N/A}}
| <!--SATA-->nvme
| <!--Gfx-->AMD 760
| <!--Audio-->HDaudio
| <!--USB-->USB3
| <!--Ethernet-->rtl8169
| <!--Test Distro-->
| <!--Comments-->2025 64bit 7640HS - 19v 5.26A 120W -
|-
| <!--Name-->BossGame M4 Neo 7840HS
| <!--IDE-->{{N/A}}
| <!--SATA-->nvme
| <!--Gfx-->AMD 780
| <!--Audio-->HDaudio
| <!--USB-->USB3
| <!--Ethernet-->rtl8169
| <!--Test Distro-->
| <!--Comments-->2025 64bit -
|-
| <!--Name-->Minisforum UM870 || <!--IDE-->{{N/A}} || <!--SATA-->NVme || <!--Gfx-->AMD 780M || <!--Audio-->HDaudio || <!--USB-->USB3 || <!--Ethernet-->2.5GbE || <!--Test Distro--> || <!--Comments-->2025 64bit -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->GEEKOM A8 Max AI Mini PC AMD Ryzen™ 9 8945HS, Ryzen™ 7 8845HS or 8745HS
| <!--IDE-->{{N/A}}
| <!--SATA-->NVme
| <!--Gfx-->AMD 780M
| <!--Audio-->HDAudio with codec
| <!--USB-->{{maybe| USB4}}
| <!--Ethernet-->{{No|Dual 2.5 G Ethernet ports}}
| <!--Test Distro-->
| <!--Comments-->2025 64bit -
|-
| <!--Name-->Beelink SER 9
| <!--IDE-->{{N/A}}
| <!--SATA-->NVme
| <!--Gfx-->Radeon 890M
| <!--Audio-->HDaudio
| <!--USB-->USB4
| <!--Ethernet-->{{No| }}
| <!--Test Distro-->
| <!--Comments-->2025 64bit - Ryzen AI HX 370 strix point -
|-
| <!--Name-->GMKtec EVO-X2 mini pc
| <!--IDE-->{{n/a}}
| <!--SATA-->nvme
| <!--Gfx-->AMD 8060S iGPU RDNA3.5 RADV GFX1151
| <!--Audio-->HDaudio
| <!--USB-->USB4
| <!--Ethernet-->{{No| }}
| <!--Test Distro-->
| <!--Comments-->2025 64bit - amd ryzen AI Max+ 395 (16c32t) strix halo -
|-
| <!--Name-->BosGame M5
| <!--IDE-->{{n/a}}
| <!--SATA-->nvme
| <!--Gfx-->AMD 8060S iGPU RDNA3.5 RADV GFX1151
| <!--Audio-->HDaudio
| <!--USB-->USB4
| <!--Ethernet-->{{No| }}
| <!--Test Distro-->
| <!--Comments-->2025 64bit - amd ryzen AI Max+ 395 (16c32t) -
|-
| <!--Name-->Steam Machine GabeCube
| <!--IDE-->{{N/A}}
| <!--SATA-->nvme
| <!--Gfx-->semi-custom 1080p amd 7600m like with 28cu 8gb ddr6 gddr 10GFlops
| <!--Audio-->hdaudio with codec
| <!--USB-->usb3
| <!--Ethernet-->{{maybe|rtl8169}}
| <!--Test Distro-->
| <!--Comments-->2026 64bit amd 1772 hawk point2 6c12t zen4 avx512 FP7 socket with FCH51 - 16gb ddr5 -
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|}
===Server Systems===
[[#top|...to the top]]
====IBM====
{| class="wikitable sortable" width="100%"
! width="15%" |Name
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Integrated Gfx
! width="10%" |Audio
! width="10%" |USB
! width="10%" |Ethernet
! width="15%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->xSeries 206m
| <!--IDE-->{{yes}}
| <!--SATA-->{{yes}}
| <!--Gfx-->{{Maybe|ATI RN50b (VESA only)}}
| <!--Audio-->{{n/a}}
| <!--USB-->{{yes|USB 2.0 (UHCI/EHCI)}}
| <!--Ethernet-->{{no|Broadcom}}
| <!--Test Distro-->Nightly Build 2014-09-27
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
|}
===Motherboard===
[[#top|...to the top]]
* Late 2002, USB2.0 added and slightly better AROS sound support (AC97) appeared
* 2002-2005 and still, to a limited extent, ongoing [http://en.wikipedia.org/wiki/Capacitor_plague bad capacitors]
* Late 2003, ATX PSUs moved from 5V to 12v rails (extra 4pin on motherboard for CPU)
* Late 2005, PCI Express replaced AGP and HDAudio replaced AC97
* Late 2007, ATX PSUs added extra 12V PCI-E connectors and 4+4pin for CPUs
* Late 2010, USB3.0 appears on motherboards or needing a PCI-E motherboard slot
* Late 2014 Hardware USB2 removed from USB3 chipsets
====AMD Sockets====
[[#top|...to the top]]
=====Socket 7 (1997/1999)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->1997 VT82C586B (QFP-208) is the first from VIA with DDMA
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2000 VT82C686 has close to excellent DDMA support
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->SiS 5581/5582
SiS 5591/5595
SiS 530 /5595
SiS 600/5595
SiS 620/5595
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|}
=====Socket A 462 (2001/4)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->[http://www.sharkyextreme.com/hardware/motherboards/article.php/2217921/ABIT-NF7-S-nForce2-Motherboard-Review.htm Abit NF7-S]
| <!--Chipset-->nForce 2
| <!--ACPI-->
| <!--IDE-->2 ports
| <!--SATA-->SIL 3112A
| <!--Gfx-->
| <!--Audio-->{{yes|ALC650 AC97 (Nvidia APU)}}
| <!--USB-->{{yes}}
| <!--Ethernet-->Realtek RTL 8201LB
| <!--Opinion-->Firewire Realtek RTL8801B
|-
| <!--Name-->ASRock K7NF2
| <!--Chipset-->nforce2 ultra 400
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->{{yes|AGP 8x}}
| <!--Audio-->CMedia CMI 9761A AC'97
| <!--USB-->{{yes}}
| <!--Ethernet-->Realtek 8201
| <!--Opinion-->
|-
| <!--Name-->ASRock K7S8X
| <!--Chipset-->SIS 746FX
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->
| <!--Gfx-->{{yes|AGP 8x}}
| <!--Audio-->{{yes|AC'97 cmedia}}
| <!--USB-->{{maybe|USB2.0 works but does not boot}}
| <!--Ethernet-->{{yes|SiS900}}
| <!--Opinion-->
|-
| <!--Name-->ASRock K7S41GX
| <!--Chipset-->SIS 741GX + DDR 333
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->
| <!--Gfx-->{{maybe|onboard sis does not work with vga or vesa but AGP 8x works}}
| <!--Audio-->{{yes|AC97 SIS 7012}}
| <!--USB-->{{maybe|USB2.0 works but does not boot}}
| <!--Ethernet-->{{yes|SiS 900}}
| <!--Opinion-->works ok
|-
| <!--Name-->[http://www.asus.com ASUS A7N8X]
| <!--Chipset-->nForce2
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->Silicon Image Sil 3112A
| <!--Gfx-->1 AGP slot
| <!--Audio-->{{yes|ac97 ALC650}}
| <!--USB-->{{yes|ehci USB2.0}}
| <!--Ethernet-->{{yes|rtl8201BL - nforce}}
| <!--Opinion-->first total support for AROS in 2004/5 - damocles and M Schulz
|-
| <!--Name-->Biostar M7NCD
| <!--Chipset-->nForce2 Ultra 400
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->{{yes|ALC650 AC97}}
| <!--USB-->
| <!--Ethernet-->{{yes|RTL8201BL}}
| <!--Opinion-->
|-
| <!--Name-->Chaintech 7NJS Ultra Zenith
| <!--Chipset-->nForce2 Ultra 400
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->Promise PDC 20376
| <!--Gfx-->
| <!--Audio-->{{yes|CMI8738}}
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->DFI Lanparty NF2 Ultra
| <!--Chipset-->nForce2 Ultra 400
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->{{no|via ac97 VT1616}}
| <!--USB-->
| <!--Ethernet-->RTL8139C
| <!--Opinion-->
|-
| <!--Name-->ECS N2U400-A
| <!--Chipset-->nForce2 Ultra 400
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->{{no|Cmedia 9379A AC97}}
| <!--USB-->{{yes|usb2.0}}
| <!--Ethernet-->{{no|VIA VT6103L}}
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA7N400L
| <!--Chipset-->nForce2 Ultra 400
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->1 AGP 8x slot
| <!--Audio-->{{yes|AC97 ALC650}}
| <!--USB-->2 USB2.0
| <!--Ethernet-->RTL8100C
| <!--Opinion-->
|-
| <!--Name-->[http://www.gigabyte.lv/products/page/mb/ga-8siml Gigabyte 8SIML]
| <!--Chipset-->SIS 650
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->
| <!--Gfx-->{{maybe|VESA}}
| <!--Audio-->{{yes|AC'97}}
| <!--USB-->{{maybe|working}}
| <!--Ethernet-->{{no|Realtek RTL8100L LAN}}
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Matsonic [http://www.elhvb.com/mobokive/archive/matsonic/manual/index.html Manuals] MS83708E
| <!--Chipset-->SIS730
| <!--ACPI-->
| <!--IDE-->{{yes|SiS 5513}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->{{maybe|sis 305 no support use VESA}}
| <!--Audio-->{{no|sis7018}}
| <!--USB-->{{no|SiS 7001 USB 1.1 only}}
| <!--Ethernet-->{{yes|SIS900}}
| <!--Opinion-->little support
|-
| <!--Name-->[http://h10025.www1.hp.com/ewfrf/wc/document?docname=bph07585&lc=en&dlc=en&cc=us&dest_page=softwareCategory&os=228&tool=softwareCategory&query=Pavilion%20742n&product=89232 MSI MS-6367 HP 722n 742n (Mambo) (2001/2)]
| <!--Chipset-->Nvidia nforce 220D (2001/2)
| <!--ACPI-->
| <!--IDE-->{{Yes}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->GeForce2 AGP works 2D nouveau only
| <!--Audio-->{{Maybe|AC97 ADI 1885 no volume control on Units 0-3}}
| <!--USB-->{{Yes|4 USB1.1 ports AMD based - front 2 ports iffy}}
| <!--Ethernet-->{{No|nForce}}
| <!--Opinion-->Tested 20th Aug 2012 NB
|-
| <!--Name-->MSI K7N2 [http://us.msi.com/index.php?func=proddesc&maincat_no=1&prod_no=546/ Delta ILSR] Delta-L
| <!--Chipset-->nForce2 (2002/3)
| <!--ACPI-->
| <!--IDE-->{{yes|Primary & Secondary ports}} IDE Tertiary port (RAID)
| <!--SATA-->2 ports (RAID)
| <!--Gfx-->{{yes|when fitted with an agp video card}}
| <!--Audio-->{{yes|ac97 ALC650}}
| <!--USB-->{{yes}}
| <!--Ethernet-->{{yes|rtl8201BL - nforce}}
| <!--Opinion-->runs AROS well. Tested with Icaros 1.2.3
|-
| <!--Name-->MSI K7N2 Delta2-LSR Platinum
| <!--Chipset-->nForce2 (2002/3)
| <!--ACPI-->
| <!--IDE-->{{yes|Primary & Secondary ports}} IDE Tertiary port (RAID)
| <!--SATA-->2 ports (RAID)
| <!--Gfx-->{{yes|when fitted with an agp video card}}
| <!--Audio-->{{No|ac97 ALC655}}
| <!--USB-->{{yes}}
| <!--Ethernet-->{{yes|rtl8201BL - nforce}}
| <!--Opinion-->runs AROS well. Tested with Icaros 1.2.3
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->[http://www.sharkyextreme.com/hardware/motherboards/article.php/2204281/Soltek-SL-75MRN-L-nForce2-Motherboard-Review.htm Soltek 75FRN-L]
| <!--Chipset-->nForce2
| <!--ACPI-->
| <!--IDE-->{{yes|2 ports}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->AGP slot
| <!--Audio-->{{yes|ALC650}}
| <!--USB-->{{yes|2 usb2.0}}
| <!--Ethernet-->{{yes|Realtek RTL8201BL}}
| <!--Opinion-->good support
|-
| <!--Name-->[http://www.3dvelocity.com/reviews/mach4nf2ultra/mach4.htm XFX Pine Mach4 nForce2 Ultra 400]
| <!--Chipset-->nForce2
| <!--ACPI-->
| <!--IDE-->{{yes|3 ports}}
| <!--SATA-->{{maybe|2 ports VIA VT6240}}
| <!--Gfx-->1 AGP 8x slot
| <!--Audio-->{{yes|ALC650}}
| <!--USB-->{{yes|2 USB2.0}}
| <!--Ethernet-->{{yes|RTL8201BL}}
| <!--Opinion-->some support
|-
| <!--Name-->ASUS A7V266
| <!--Chipset-->via KT266A + 8233
| <!--ACPI-->
| <!--IDE-->{{no|issues}}
| <!--SATA-->
| <!--Gfx-->1 AGP slot
| <!--Audio-->AC97 with AD1980 codec
| <!--USB-->via 8233
| <!--Ethernet-->VIA VT6103
| <!--Opinion-->2002 issues with booting
|-
| <!--Name-->Asus A7V8X-X
| <!--Chipset-->VIA KT400
| <!--ACPI-->
| <!--IDE-->{{unk| }}
| <!--SATA-->{{N/A}}
| <!--Gfx-->{{yes|agp}}
| <!--Audio-->{{unk|AC97 with ADI AD1980 codec}}
| <!--USB-->{{unk|VIA 8235}}
| <!--Ethernet-->{{unk|Realtek 10/100}}
| <!--Opinion-->2003 not booting for Socket A for AMD Barton/Thoroughbred/Athlon XP/Athlon/Duron 2.25+ GHz CPU - 3 x DDR DIMM Sockets Max. 3 GB -
|-
|}
=====Socket 754 (2004/5)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->Abit NF8-V2
| <!--Chipset-->nForce3 250GB (2004/5)
| <!--ACPI-->
| <!--IDE-->{{yes|2 ports}}
| <!--SATA-->{{maybe|2 ports}}
| <!--Gfx-->1 AGP slot x8
| <!--Audio-->ALC658 ac97
| <!--USB-->{{yes|2 USB2.0}}
| <!--Ethernet-->{{no|RTL8201C}}
| <!--Opinion-->a little support but no Firewire VIA VT6306
|-
| <!--Name-->Biostar CK8 K8HNA Pro
| <!--Chipset-->nforce3 150
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->VT6420 thru ide legacy only
| <!--Gfx-->
| <!--Audio-->{{no|AC97 ALC655}}
| <!--USB-->
| <!--Ethernet-->Realtek RTL8110S
| <!--Opinion-->Firewire VT6307 no
|-
| <!--Name-->[http://www.extremeoverclocking.com/reviews/motherboards/Chaintech_ZNF3-150_3.html Chaintech ZNF3-150 Zenith]
| <!--Chipset-->nforce3 150
| <!--ACPI-->
| <!--IDE-->2 ports
| <!--SATA-->{{maybe|Sli3114 SATA via IDE emul}}
| <!--Gfx-->1 AGP slot
| <!--Audio-->{{no|VIA Envy24PT (VT1720) + VT1616}}
| <!--USB-->{{Maybe|2 USB2.0}}
| <!--Ethernet-->{{no|Broadcom GbE 5788}}
| <!--Opinion-->very little support needs PCI cards but no Firewire VIA VT6306
|-
| <!--Name-->DFI Lanparty UT nF3 250GB
| <!--Chipset-->nForce3 250gb
| <!--ACPI-->
| <!--IDE-->2 ports
| <!--SATA-->{{maybe|2 ports nForce3 and 2 Marvell SATA PHY}}
| <!--Gfx-->
| <!--Audio-->{{yes|AC97 ALC850}}
| <!--USB-->{{Maybe|2 USB2.0}}
| <!--Ethernet-->CK8S - Winfast NF3 250K8AA works and Marvell 88E1111 does not work
| <!--Opinion-->2005 some support but no Firewire VIA VT6307
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Gigabyte GA-K8N
| <!--Chipset-->NVIDIA nForce3 150
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->Realtek ALC658 AC97
| <!--USB-->
| <!--Ethernet-->Realtek RTL8100C
| <!--Opinion-->Firewire TI43AB23 no
|-
| <!--Name-->Gigabyte K8NNXP
| <!--Chipset-->nForce3 150
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->Sata sil3512
| <!--Gfx-->
| <!--Audio-->ALC658 AC97
| <!--USB-->
| <!--Ethernet-->RTl8110S
| <!--Opinion-->Firewire TI STB82AA2 no
|-
| <!--Name-->Gigabyte GA-K8NSNXP
| <!--Chipset-->nForce3 250GB
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->SiI 3512 CT128 Sata Sil3515
| <!--Gfx-->
| <!--Audio-->ALC850 AC97
| <!--USB-->
| <!--Ethernet-->{{No|Marvel 88E8001}}
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->MSI K8N Neo-FIS2R
| <!--Chipset-->nVIDIA NF3-250Gb
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->Realtek 7.1 AC'97 ALC850
| <!--USB-->
| <!--Ethernet-->{{No|Marvell 88E1111}}
| <!--Opinion-->
|-
| <!--Name-->[http://techreport.com/articles.x/5748/1 Shuttle AN50R]
| <!--Chipset-->nF3-150
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->Sil 3112
| <!--Gfx-->
| <!--Audio-->ALC650 AC97
| <!--USB-->
| <!--Ethernet-->Nvidia nF3 (10/100) Intel 82540EM Gigabit
| <!--Opinion-->Firewire VT6307 no
|-
| <!--Name--> Foxconn WinFast K8S755A
| <!--Chipset-->SiS755 + SiS964 (DDR333)
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio--> {{yes|AC97}}
| <!--USB-->
| <!--Ethernet--> {{yes|RTL8169}}
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket 939 (2005)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->Asus A8N-LA GeForce 6150 LE
| <!--Chipset-->Geforce 6150 (MCP51) + nForce 430 (PC-3200)
| <!--ACPI-->
| <!--IDE-->{{yes|two ATA 133}}
| <!--SATA-->{{maybe|four 3.0GB/s SATAII ports}}
| <!--Gfx-->built in or PCI-E x16
| <!--Audio-->Realtek ALC883 HD Audio
| <!--USB-->6 USB2.0
| <!--Ethernet-->Realtek RTL 8201CL
| <!--Opinion-->
|-
| <!--Name-->Asus A8N-SLI Premium
| <!--Chipset-->NVidia
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->{{Yes|PCIe slot}}
| <!--Audio-->{{Yes|AC97}}
| <!--USB-->{{Maybe}}
| <!--Ethernet-->{{Yes|nForce LAN but not Marvell}}
| <!--Opinion-->Works well
|-
| <!--Name-->DFI nF4 Ultra-D LanParty - Diamond Flower International sold to BenQ group 2010
| <!--Chipset-->nF4
| <!--ACPI-->
| <!--IDE-->2 ports
| <!--SATA-->4 ports SATA 2
| <!--Gfx-->2 PCIe x16 slots
| <!--Audio-->AC97 with ALC850 codec
| <!--USB-->
| <!--Ethernet-->Dual Gigabit Ethernet, PCIe by Vitesse VSC8201 PHY nee Cicada 8201, PCI by Marvel 88E8001
| <!--Opinion-->2006 64bit - Four 184-pin DDR Dual-Channel Slots - 1 pci on Ultra, 2 pci on sli,
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus A8V E SE
| <!--Chipset-->VIA K8T890 +VT8237R CHIPSET ATX AMD Motherboard with Athlon 64 X2 / Athlon 64 FX / Athlon 64
| <!--ACPI-->{{N/A}}
| <!--IDE-->{{Yes}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->{{N/A}}
| <!--Audio-->{{Maybe}} AC97 driver using Realtek ALC850 codec
| <!--USB-->{{Yes}} USB 2.0 only
| <!--Ethernet-->{{No}} Marvell 88E8053
| <!--Opinion-->Good base but needs additional PCI cards added for better support
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->ASUS A8V Deluxe (2004)
| <!--Chipset-->VIA K8T800 Pro (DDR400)
| <!--ACPI-->
| <!--IDE-->Promise 20378 2 ports
| <!--SATA-->2 SATA2
| <!--Gfx-->
| <!--Audio-->{{no|VIA VT8233A 8235 8237 AC97}}
| <!--USB-->
| <!--Ethernet-->{{no|Marvell 88E8001 Gigabit}}
| <!--Opinion-->needs extra PCI cards
|-
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->AsRock 939Dual-SATA2
| <!--Chipset-->Ali Uli M1695 PCIe with M1567 AGP
| <!--ACPI-->
| <!--IDE-->2 ports
| <!--SATA-->1 Sata with JMicron JMB360 chip
| <!--Gfx-->1 pci-e and 1 agp
| <!--Audio-->AC97 with ALC850 codec
| <!--USB-->
| <!--Ethernet-->Realtek RTL8201CL PHY ULi 10/100
| <!--Opinion-->64bit pci-e and agp combo on board - 4 ddr slots -
|}
=====Socket AM2 (2006/8) and AM2+ (2007-2010) =====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-M61PME-S2 (rev. 2.x)
| <!--Chipset-->NVIDIA® GeForce 6100 / nForce 430 chipset
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->{{maybe|VESA 2d for vga}}
| <!--Audio-->{{yes|HDAudio Realtek ALC662 Audio Codec}}
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus M2N61-AR mini itx
| <!--Chipset-->NVIDIA nForce 430
| <!--ACPI-->
| <!--IDE-->1
| <!--SATA-->2
| <!--Gfx-->GeForce 6150SE via vga or 1 pci-e slot
| <!--Audio-->HD Audio with codec
| <!--USB-->Nvidia
| <!--Ethernet-->Nvidia
| <!--Opinion-->2006 32bit - 1 pci - 2 ddr2 dimm slots non-eec -
|-
| <!--Name-->asus m2n68-am se2
| <!--Chipset-->nvidia 630a 630/a MCP68SE
| <!--ACPI-->
| <!--IDE-->1 ports
| <!--SATA-->2 ports MCP61 chipset is SATA over IDE, not SATA over AHCI and reports subsystem as 0x1 IDE, not 0x6 SATA
| <!--Gfx-->{{Yes|nvidia 7025 2d and 3d thru vga}}
| <!--Audio-->{{Yes|hd audio with realtek alc662 codec}}
| <!--USB-->{{Yes| }}
| <!--Ethernet-->{{Yes|nForce chipset RTL 8201CP}}
| <!--Opinion-->2007 64bit Phenom IIX2, Athlon 64 LE X2, Sempron, and Phenom FX processors - ddr2 667Mhz ram max 4Gb -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-MA770-UD3 (rev. 1.0)
| <!--Chipset-->AMD 770 with SB700
| <!--ACPI-->
| <!--IDE-->{{yes| }}
| <!--SATA-->{{yes| }}
| <!--Gfx-->pci-e
| <!--Audio-->{{yes|ALC888 codec }}
| <!--USB-->{{yes|USB2}}
| <!--Ethernet-->{{yes|rtl8169 8111C later 8111D}}
| <!--Opinion-->Good support for AM2+ / AM2 with 4 ddr2 ram - 4 x PCI Express x1, 2 x PCI slots - firewire T.I. TSB43AB23 chip no support -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus M3A32-MVP Deluxe
| <!--Chipset-->AMD 790FX RD790 + SB600
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->{{No|Marvell 88SE6121 SATA II}}
| <!--Gfx-->pci-e 1.1 support
| <!--Audio-->{{No|HD Audio ADI® AD1988}}
| <!--USB-->
| <!--Ethernet-->{{No|Marvell 88E8056}}
| <!--Opinion-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->ASROCK N68-S N68C-S
| <!--Chipset-->AMD based nForce 630a
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->{{yes|slimline DVD drive works}}
| <!--Gfx-->{{maybe|GF 7025 use vesa}}
| <!--Audio-->{{yes|HDAudio for VIA 1708S VT1705}}
| <!--USB-->{{Maybe|echi usb 2.0}}
| <!--Ethernet-->{{no|RTL8201EL / 8201CL - nforce}}
| <!--Opinion-->2008 unbuffered 1066Mhz ddr2 ram - N68C-S may need noacpi added to grub boot line to disable pci temporarily to run as it cannot get to [PCI] Everything OK -
|-
| <!--Name-->Asus M2N68-AM Plus
| <!--Chipset-->Athlon 64, Sempron, Athlon 64 X2, Athlon 64 FX with nvidia 630a
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->no vga, pci-e slot only
| <!--Audio-->{{yes|HD Audio with ALC662 codec}}
| <!--USB-->
| <!--Ethernet-->{{no|RTL8211CL Gigabit LAN}}
| <!--Opinion-->adding "noacpi noapic noioapic" to the GRUB options - Dual channel DDR2 1066, 800, 667 MHz -
|-
| <!--Name-->Gigabyte GA-M68M-S2 (1.0) S2P (2.3) S2L GA-M68SM-S2 (1.x)
| <!--Chipset-->nForce 630a chipset
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->NVIDIA® GeForce 7025, vga (s2 and s2p), dvi (s2l)
| <!--Audio-->ALC883 (S2), ALC888B (S2P), ALC662 (S2L),
| <!--USB-->
| <!--Ethernet-->RTL 8201CL (S2), 8211CL (S2P), 8211BL (S2L),
| <!--Opinion-->2008 64bit possible with AMD AM2+ CPU on AM2 motherboard, the system bus speed will downgrade from HT3.0(5200MHz) to HT1.0(2000 MT/s) spec
|-
| <!--Name-->ASUS M2N68-VM
| <!--Chipset-->nForce 630a (MCP68PVNT)
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Nvidia GeForce ® 7050PV hdmi, dvi and vga
| <!--Audio-->HD audio VIA 1708B codec
| <!--USB-->
| <!--Ethernet-->RTL 8211C
| <!--Opinion-->2008 64bit - ddr2 800Mhz
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket AM3 White socket (2010/11)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->Gigabyte GA-MA74GM-S2 GA-MA74GM-S2H
| <!--Chipset-->740g with sb710
| <!--ACPI-->
| <!--IDE-->{{yes| }}
| <!--SATA-->{{yes|bios IDE}}
| <!--Gfx-->Radeon 2100 and pci-e slot
| <!--Audio-->ALC888 (r1.x),ALC888b (r2.0), ALC888B (rev4.x)
| <!--USB-->USB2
| <!--Ethernet-->rtl8169 Realtek 8111C later 8111D
| <!--Opinion-->2010 64bit - 2 x 1.8V DDR2 DIMM sockets max 8 GB - Micro ATX Form Factor 24.4cm x 23.4cm -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->[http://www.vesalia.de/e_aresone2011.htm Aresone 2011]
| <!--Chipset-->760g
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Yes}}
| <!--Gfx-->{{Maybe|no Radeon HD3000 driver yet<br>vesa driver works<br>and add PCIe card}}
| <!--Audio-->{{Yes|HD Audio}}
| <!--USB-->{{Yes|USB2.0}}
| <!--Ethernet-->{{yes}}
| <!--Opinion-->Good support - 4 DDR3 memory sockets -
|-
| <!--Name-->Foxconn A76ML-K 3.0
| <!--Chipset-->AMD 760g rev3.0
| <!--ACPI-->
| <!--IDE-->{{Yes|1 }}
| <!--SATA-->{{Yes|4 in IDE mode }}
| <!--Gfx-->HD3000 with pci-e slot
| <!--Audio-->HDAudio with ALC662-GR codec
| <!--USB-->USB2
| <!--Ethernet-->rtl8169 rtl8111E
| <!--Opinion-->2011 64bit - 2 ddr3 slots - 2 pci slots -
|-
| <!--Name-->GA-MA770T-UD3P (rev. 1.0 to 1.4)
| <!--Chipset-->amd 770 with sb710
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->{{yes|4 sata}}
| <!--Gfx-->pci-e
| <!--Audio-->{{yes|HDAudio with Realtek ALC888 codec}}
| <!--USB-->{{yes| }}
| <!--Ethernet-->{{yes|rtl8168 rtl8111c/d}}
| <!--Opinion-->2011 64 - 4 ddr3 dimm slots -
|-
| <!--Name-->Gigabyte GA-MA770-UD3 (rev. 2.0 2.1)
| <!--Chipset-->AMD 770 with SB700
| <!--ACPI-->
| <!--IDE-->{{yes| }}
| <!--SATA-->{{yes| }}
| <!--Gfx-->pci-e
| <!--Audio-->{{yes|ALC888 codec }}
| <!--USB-->{{yes|USB2}}
| <!--Ethernet-->{{yes|rtl8169 8111C later 8111D}}
| <!--Opinion-->Good support for AM3 with 4 ddr2 ram - 4 x PCI Express x1, 2 x PCI slots - firewire T.I. TSB43AB23 chip no support -
|-
| <!--Name-->Asus M4A785TD-M PRO
| <!--Chipset-->785G and SB710
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Maybe|ide legacy}}
| <!--Gfx-->{{Maybe|ATI Radeon HD 4200 - use vesa}} or pci-e 2.0 slot
| <!--Audio-->{{Yes|HD Audio}}
| <!--USB-->{{Yes| }}
| <!--Ethernet-->{{Yes| }}
| <!--Opinion-->Good support with 1366 ddr3 ram -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->ASUS M4A88T-I Deluxe ITX
| <!--Chipset-->AMD 880G with AMD SB710
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->Three SATA 3Gbps
| <!--Gfx-->Radeon HD 4350 GPU with HDMI and DVI or One 16x PCI-Express 2.0
| <!--Audio-->HDAudio with Realtek ALC889
| <!--USB-->6 x USB 2, 2 x USB 3
| <!--Ethernet-->{{No|Realtek RTL8112L}}
| <!--Opinion-->2014 64bit - 2 SODIMM DDR3 slots max 8GB
|-
| <!--Name-->Asus M4A88T-M Version E5907 E5826
| <!--Chipset-->AMD 880G SB710
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Radeon 4250
| <!--Audio-->HD Audio with VIA VT 1708S codec
| <!--USB-->
| <!--Ethernet-->Realtek rtl8169 8111E
| <!--Opinion-->2010 64bit -
|-
| <!--Name-->GigaByte 890GPA-UD3H
| <!--Chipset-->AMD 890GX together with SB850
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->Yes
| <!--Gfx-->use pci-e nvidia
| <!--Audio-->Maybe - ALC892 rev. 1.0, ALC892 rev 2.1, ALC889 rev. 3.1
| <!--USB-->Yes
| <!--Ethernet-->Yes
| <!--Opinion-->works well overall
|-
| <!--Name-->Gigabyte GA-890FXA-UD7
| <!--Chipset-->AMD 890FX with SB850
| <!--ACPI-->
| <!--IDE-->{{yes| }}
| <!--SATA-->{{yes|IDE }}
| <!--Gfx-->
| <!--Audio-->ALC889 (rev 2.x)
| <!--USB-->{{Yes|AMD USB2 but limited with NEC D720200F1 USB3}}
| <!--Ethernet-->2 x Realtek 8111D
| <!--Opinion-->2012 64bit - XL-ATX Form Factor 32.5cm x 24.4cm - 4 ddr3 slots -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->MSI 890GXM-G65
| <!--Chipset-->890GX + SB750
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->{{Maybe|legacy}}
| <!--Gfx-->{{Maybe|ATI 4290 built-in (vesa)}}
| <!--Audio-->{{Maybe|ALC889 DD GR}} HD Audio crackles
| <!--USB-->{{Yes}}
| <!--Ethernet-->{{Yes|RTL 8169}}
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->ASRock N68-VS3 FX
| <!--Chipset-->NVIDIA® GeForce 7025 / nForce 630a
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4 Sata2
| <!--Gfx-->Integrated NVIDIA® GeForce 7025
| <!--Audio-->HD Audio with VIA® VT1705 Codec
| <!--USB-->USB2
| <!--Ethernet-->Realtek PHY RTL8201EL
| <!--Opinion-->2010 64bit - 2 x DDR3 DIMM slots -
|-
| <!--Name-->MSI GF615M-P35 MS-7597
| <!--Chipset-->NVIDIA® nForce 430
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->GeForce 6150SE
| <!--Audio-->{{Maybe|HD Audio with Realtek® ALC888S}}
| <!--USB-->{{No|freezes}}
| <!--Ethernet-->{{No|Realtek 8211CL}}
| <!--Opinion-->2010 64bit
|-
| <!--Name-->Gigabyte GA-M68MT-S2
| <!--Chipset--> nForce 630a
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->NVIDIA® GeForce 7025 vga
| <!--Audio-->ALC888B (1.3), ACL887 (3.1),
| <!--USB-->
| <!--Ethernet-->RTL8211CL (all)
| <!--Opinion-->2010 64bit possible, AMD AM3 CPU on this motherboard, the system bus speed will downgrade from HT3.0 (5200MT/s) to HT1.0 (2000 MT/s) spec
|-
| <!--Name-->Gigabyte GA-M68MT-S2P
| <!--Chipset--> nForce 630a
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->NVIDIA® GeForce 7025 vga
| <!--Audio-->ALC888B (1.x 2.x), ALC889 (3.0), ALC888B/889 (3.1),
| <!--USB-->
| <!--Ethernet-->RTL8211CL (all)
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus M4N78 PRO
| <!--Chipset-->NVIDIA GeForce 8300
| <!--ACPI-->
| <!--IDE-->1 xUltraDMA 133/100
| <!--SATA-->6 xSATA 3 Gbit/s ports
| <!--Gfx-->Integrated NVIDIA® GeForce® 8 series GPU with 1 PCIe 2.0 slot
| <!--Audio-->HD Audio with VIA1708S 8 -Channel codec
| <!--USB-->12 USB 2.0 ports (8 ports at mid-board, 4 ports at back panel)
| <!--Ethernet-->NVIDIA Gigabit
| <!--Opinion-->4 x DIMM, Max. 16 GB, DDR2 1200(O.C.)/1066*/800/667 ECC,Non-ECC,Un-buffered Memory - ATX Form Factor 12 inch x 9.6 inch ( 30.5 cm x 24.4 cm ) -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|}
=====Socket AM3+ Black socket (2012/15)=====
*095W FX-6300 FD6300WMHKBOX (bulldozer SSE4.1 AVX) 970 mobos with FX-8320E 8core Black Editions FD832EWMHKBOX FX-8370E (Vishera/Piledriver)
*125W FX-6310 (bulldozer) 970 mobos with FX-8320 FX-8350 FX-8370 (Vishera/Piledriver)
*220W 990FX mobos with FX-9000 FX-9370 FX-9590
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->ASUS M5A78L-M LX3
| <!--Chipset-->AMD 760G with SB710
| <!--ACPI-->
| <!--IDE-->{{yes| }}
| <!--SATA-->{{Yes|bios IDE mode}}
| <!--Gfx-->HD3000 with pci-e slot
| <!--Audio-->HDAudio with ALC887, V? ALC892 codecs
| <!--USB-->USB2
| <!--Ethernet-->{{No|Qualcomm Atheros 8161/8171 add realtek 8111? pci-e card}}
| <!--Opinion-->2012 64bit - uATX Form Factor 9.6 inch x 7.4 inch ( 24.4 cm x 18.8 cm ) - 2 x DIMM, Max. 16GB, DDR3 -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-78LMT-S2P
| <!--Chipset-->AMD 760G and SB710
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->{{yes|6 SATA2 ports}}
| <!--Gfx-->GT240 and a nv7900gs, both pci-e
| <!--Audio-->{{Maybe|ALC889 (r3.1), ALC??? (rev. 4.0), ALC887 (r5.x)}}
| <!--USB-->4 USB2
| <!--Ethernet-->{{Maybe|Realtek 8111E (r3.1), Atheros (rev4.0), Atheros (r5.x) }}
| <!--Opinion-->2012 offers very poor control over its EFI vs. BIOS booting partition features
|-
| <!--Name-->Gigabyte GA-78LMT-USB3 (r3.0), (r4.1 Blue board), (r5.0 dark board), (rev6 dark mobo)
| <!--Chipset-->AMD 760G and SB710
| <!--ACPI-->
| <!--IDE-->{{yes| }}
| <!--SATA-->{{yes|Bios IDE mode for SATA2 on early ones}}
| <!--Gfx-->AMD HD3000, pci-e GT240 and a nv7900gs
| <!--Audio-->{{Maybe|ALC??? (r3.0), ALC887 (r4.1), VIA VT2021 (r5.0), Realtek® ALC892 codec (rev6) }}
| <!--USB-->{{yes|AMD USB2 but not VIA® VL805 USB3}}
| <!--Ethernet-->Realtek GbE
| <!--Opinion-->2013 64bit - Micro ATX Form Factor 24.4cm x 24.4cm - 4 x DDR3 DIMM sockets -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->MSI 760GM
| <!--Chipset-->ATI 760G plus SB710
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->{{yes| }}
| <!--Gfx-->HD3000 Use Vesa
| <!--Audio-->{{Maybe|P33 VT1705; P34, P21 and P23 (FX) MS7641 v3.0 ALC887, E51 ALC892}}
| <!--USB-->{{yes| }}
| <!--Ethernet-->{{Yes|Realtek}}
| <!--Opinion-->P23 issues with audio ALC887 crackles thru earphones -
|-
| <!--Name-->Gigayte GA-MA770T-UD3P (rev. 3.1)
| <!--Chipset-->amd 770 with sb710
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sata
| <!--Gfx-->pci-e slot
| <!--Audio-->HDaudio with Realtek ALC888/892 codec
| <!--USB-->
| <!--Ethernet-->rtl8169 rtl8111d/e
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->ASRock 890FX Deluxe5 Extreme3
| <!--Chipset-->AMD 890FX + AMD SB850 or SB950 (Extreme3)
| <!--ACPI-->
| <!--IDE-->{{Yes}}
| <!--SATA-->{{Yes}}
| <!--Gfx-->{{N/A}}
| <!--Audio-->{{Maybe|ALC892}}
| <!--USB-->{{Yes}}
| <!--Ethernet-->{{Yes|RTL8111E rtl8169}}
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus M5A97 R2.0 EVO
| <!--Chipset-->AMD 970 and SB950
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->Asmedia SATA Controller
| <!--Gfx-->n/a
| <!--Audio-->HDAudio with Realtek ALC887 (LE), ALC887 (Regular), ALC892 (EVO) codec
| <!--USB-->4 USB 2.0 and 2 Asmedia USB3.0 Controller
| <!--Ethernet-->Realtek 8111F
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-970A-D3
| <!--Chipset-->AMD 970 with SB950
| <!--ACPI-->
| <!--IDE-->{{Yes| }}
| <!--SATA-->{{Yes|IDE mode}}
| <!--Gfx-->pci-e
| <!--Audio--> ALC??? (rev. 1.0/1.1), ALC887 (rev1.2), VIA VT2021 codec (rev 1.3 1.4 and rev3.0)
| <!--USB-->{{yes|AMD USB2 but not Etron EJ168 chip (USB3)}}
| <!--Ethernet-->Realtek GbE 8111E (all revisions),
| <!--Opinion-->2015 64bit - ATX Form Factor 30.5cm x 22.4cm - 4 x 1.5V DDR3 DIMM sockets -
|-
| <!--Name-->MSI 970 Gaming
| <!--Chipset-->970FX SB950
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->Realtek® ALC1150 Codec
| <!--USB-->6 usb2 with 2 USB3 VIA VL806 Chipset
| <!--Ethernet-->Killer E2205 Gigabit LAN
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus M5A99X EVO
| <!--Chipset-->990X - RD980 with SB920
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->2 pci-e gen ?
| <!--Audio-->HDAudio with ALC892 codec
| <!--USB-->
| <!--Ethernet-->rtl8169 realtek 8111e
| <!--Opinion-->2012 64bit -
|-
| <!--Name-->Gigabyte GA-990XA-UD3
| <!--Chipset-->AMD 990 with SB950
| <!--ACPI-->
| <!--IDE-->{{yes| }}
| <!--SATA-->{{yes| }}
| <!--Gfx-->
| <!--Audio-->ALC889 (rev 1.x, 3.0, 3.1),
| <!--USB-->{{yes|AMD USB2 not 2 x Etron EJ168 chips for USB3}}
| <!--Ethernet-->realtek rtl8169 8111e
| <!--Opinion-->2012 64bit - ATX Form Factor; 30.5cm x 24.4cm - 4 ddr3 slots -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====AMD Fusion (2011/14)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->
| 1.2GHz single Bobcat Fusion C30 + Hudson M1
| ACPI
| IDE
| SATA
| AMD 6250
| Audio
| USB
| Ethernet
| <!--Opinion-->2011 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2011 64bit does not support AVX or SSE 4.1 -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| Asus E35M1-M PRO uATX
| 1.6GHz 18W AMD Fusion E-350 dual core + Hudson M1
| ACPI
| {{N/A}}
| SATA
| AMD 6310 - no HD driver yet
| ALC887 VD2
| USB
| RTL8111E
| 2011 64bit does not support AVX or SSE 4.1 - EFI bios [http://www.anandtech.com/show/4023/the-brazos-performance-preview-amd-e350-benchmarked]
|-
| Asus E35M1-I Deluxe miniITX
| 1.6GHz dual AMD Fusion E350 + Hudson M1 + DDR3
| ACPI
| {{N/A}}
| SATA
| AMD 6310 - no HD driver yet
| ALC892
| USB
| Realtek 8111E
| 2011 64bit does not support AVX or SSE 4.1 - no support for Atheros AR5008 on a Mini PCI-E
|-
| ASRock E350M1 / USB3 (also version with USB3.0 added)
| 1.6GHz dual AMD Fusion E350 + Hudson M1
| ACPI
| {{N/A}}
| SATA - 4 SATA3
| {{Maybe|AMD 6310 - use vesa with hdmi and dvi}}
| {{Yes|Audio ALC892 playback but no HDMI output}}
| USB - 4 USB2.0 and 2 USB3.0
| {{Yes|rtl8169 for Realtek 8111E 8411 ethernet chipset}}
| 2011 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name-->Gigabyte GA-E350N-USB3 mini-ITX
| <!--Chipset--> Hudson M1 FCH
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 SATA3
| <!--Gfx--> plus HDMI, DVI
| <!--Audio-->ALC892
| <!--USB-->2 NEC USB3.0 with 4 USB2.0
| <!--Ethernet-->Realtek 8111E
| <!--Opinion-->2011 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name-->Gigabyte GA-E350N Win8 V1.0
| <!--Chipset-->Hudson M1 FCH A45
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 SATA3
| <!--Gfx-->{{maybe|Use VESA - AMD 6310 plus HDMI, DVI}}
| <!--Audio-->{{yes|ALC887 playback through headphones but not thru hdmi}}
| <!--USB-->{{maybe|4 USB2.0 needs more testing}}
| <!--Ethernet-->{{yes|Realtek 8111 8168B}}
| <!--Opinion-->2011 64bit does not support AVX or SSE 4.1 - works well but need to test with sata hard disk
|-
| <!--Name-->MSI E350IA-E45
| <!--Chipset-->e-350 + Hudson M1 + DDR3
| <!--ACPI-->no support
| <!--IDE-->{{N/A}}
| <!--SATA-->4 Sata3 ports
| <!--Gfx-->AMD 6310 gpu
| <!--Audio-->ALC HDA
| <!--USB-->6 USB2.0 and 2 USB3.0 through NEC 720200 chipset
| <!--Ethernet-->Realtek RTL8111E
| <!--Opinion-->2011 64bit does not support AVX or SSE 4.1 -
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->ASUS E45M1-M PRO
| <!--Chipset-->E450 APU with Hudson M1
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->ALC887
| <!--USB-->
| <!--Ethernet-->Realtek
| <!--Opinion-->2011 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name-->ASUS E45M1-I Deluxe
| <!--Chipset-->E-450 together
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->ALC892
| <!--USB-->
| <!--Ethernet-->Realtek 8111E
| <!--Opinion-->2011 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket FM1 (2011/13)=====
On board Graphic on CPU - HD6410D, HD6530D, HD6550D,
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->ASUS F1A55-M LE
| <!--Chipset--> with AMD A55 FCH (Hudson D2)
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->6 x SATA 3Gbit/s port(s), blue Support Raid 0, 1, 10, JBOD
| <!--Gfx-->PCI-e 2.0 slot or Integrated AMD Radeon™ HD 6000 in Llano APU
| <!--Audio-->Realtek® ALC887 Audio CODEC
| <!--USB-->6 USB2.0 ports
| <!--Ethernet-->Realtek 8111E rtl8169
| <!--Opinion-->2012 2011 64bit does not support AVX or SSE 4.1 - A-Series/E2- Series APUs up to 4 cores - 2 x DIMM, Max. 32GB, DDR3 2250(O.C.)/1866/1600/1333/1066 MHz Non-ECC, Un-buffered Memory Dual Channel Memory Architecture -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket FM2 White Socket (2012/13)=====
Onboard Gfx on CPU - HD6570, HD7480D, HD7540D,
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->
| <!--Chipset-->A75 A85X
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2012 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket FM2 Plus Black socket (2013/15)=====
Onboard Gfx on CPU - HD6570, HD7480D, HD7540D,
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->
| <!--Chipset-->A88X
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket AM1 FS1b socket (2014/1x)=====
5350 4 core Jaguar cores 2GHz with Integrated AMD Radeon R Series Graphics in the APU Kabini [Radeon HD 8400]
Later Beema APU with 2/4 core Puma (slightly updated Jaguar) cores, GCN graphics and a compute capable Radeon core, along with a brand new AMD security processor and FT3 BGA packaging (probably best avoided for long term survival).
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->ASUS AM1I-A
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->HD Audio Realtek® ALC887-VD
| <!--USB-->
| <!--Ethernet-->Realtek 8111GR 8168
| <!--Opinion-->2011 64bit may support AVX or SSE 4.1 -
|-
| <!--Name-->MSI AM1I
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->HD Audio ALC887
| <!--USB-->
| <!--Ethernet-->Realtek 8111G
| <!--Opinion-->
|-
| <!--Name-->MSI AM1M
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->HD Audio ALC887
| <!--USB-->
| <!--Ethernet-->Realtek 8111G
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->BGA FT3 AM1x
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket AM4 FM3 Summit Ridge Zen Zen+ (2016/22)=====
Jim Keller’s group designed x86 Zen CPU - new and covering the same AM4 platform/socket for desktop
Zen will also shift from Bulldozer’s Clustered Multithreading (CMT) to Simultaneous Multithreading (SMT, aka Intel’s Hyperthreading). CMT is the basis for Bulldozer’s unusual combination of multiple integer cores sharing a single FPU within a module, so the move to SMT is a more “traditional” design for improving resource usage
Trusted Platform Module, or fTPM, that Windows 11 requires. Ryzen processors using a firmware TPM are causing stutters, even when doing mundane tasks. To enable TPM 2.0 on your AMD system please follow the steps below.
<pre>
Power on system and press DEL or F2 to get into the BIOS.
Navigate to Advanced\CPU Configuration.
Enable AMD fTPM switch.
Press F10 to save changes.
</pre>
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->Asus ROG Crosshair VI Hero
| <!--Chipset-->X370
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->pci-e 3.0 (1x16 or 2x8)
| <!--Audio-->SupremeFX audio features an S1220 codec
| <!--USB-->
| <!--Ethernet-->Intel I211
| <!--Opinion-->Ryzen 7 1800X 1700X
|-
| <!--Name-->Biostar X370gtn Itx Am4
| <!--Chipset-->AMD X370
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->PCIe 3.0
| <!--Audio-->HDAudio with ALC892
| <!--USB-->
| <!--Ethernet-->Realtek Dragon LAN RTL8118AS
| <!--Opinion--> 2 ddr4 slots
|-
| <!--Name-->Gigabyte GA-AX370 K7
| <!--Chipset--> X370
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->PCIe 3.0
| <!--Audio-->HDAudio with 2 x Realtek® ALC1220 codec 0x10EC, 0x0295
| <!--USB-->
| <!--Ethernet-->1 intel and 1 E2500
| <!--Opinion--> 4 ddr4 slots
|-
| <!--Name-->MSI Xpower Gaming Titanium
| <!--Chipset--> X370
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->PCIe 3.0
| <!--Audio-->8-channel Realtek 1220 Codec 0x10EC, 0x0295
| <!--USB-->ASMedia® ASM2142 and amd cpu
| <!--Ethernet-->1 x Intel® I211AT Gigabit LAN
| <!--Opinion--> 2 ddr4 slots
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus Prime B350 Plus ATX
| <!--Chipset-->B350
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx--> x PCIe 3.0/2.0 x16 (x16 mode)
| <!--Audio-->Realtek® ALC887 8-Channel
| <!--USB-->
| <!--Ethernet-->Realtek® RTL8111H
| <!--Opinion-->Ryzen 5 1600x 1600 1500X 1400 - 4 x DIMM Max 64GB, DDR4 up to 2666MHz ECC and non-ECC Memory - ATX 12 inch x 9.35 inch ( 30.5 cm x 23.7 cm ) - 2 pci
|-
| <!--Name-->Asus PRIME B350M-A/CSM Micro ATX
| <!--Chipset-->AMD B350
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->PCIe 3.0
| <!--Audio-->HDaudio with
| <!--USB-->
| <!--Ethernet-->Realtek LAN
| <!--Opinion-->Ryzen 3 1300x 1200 1100
|-
| <!--Name-->AsRock Pro4 AB350
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->2 PCIe 3.0 x16, 4 PCIe 2.0 x1
| <!--Audio-->Realtek ALC892
| <!--USB-->
| <!--Ethernet-->Realtek
| <!--Opinion-->2017 64bit -
|-
| <!--Name-->ASRock AB350 Gaming-ITX/ac
| <!--Chipset--> B350
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->PCIe 3.0
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->Intel LAN
| <!--Opinion-->
|-
| <!--Name-->MSI B350 Tomahawk Arctic Mortar
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->1 x PCIe 3.0 x16 (x16 mode)
| <!--Audio-->Realtek ALC892
| <!--USB-->
| <!--Ethernet-->Realtek RTL8111H
| <!--Opinion-->white and grey colours - 2 pci-e and 2 pci slots - m.2 in middle - atx 12 in by 9.6 in and matx versions -
|-
| <!--Name-->Jginyue M-ATX B350M-TI
| <!--Chipset-->B350
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Jginyue B350I-Plus ITX
| <!--Chipset-->B350
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->ASRock A320M-ITX MINI ITX Rev1.0 Rev2 Rev2.1
| <!--Chipset-->A320
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->pci-e
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2018
|-
| <!--Name-->Asus PRIME A320M-C R2.0 rev1.1 A320M-K
| <!--Chipset-->A320 A/B300 SFF
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->PCIe 3.0
| <!--Audio-->HD audio with Realtek ALC887 alc897 CODEC
| <!--USB-->2 usb 3.1 gen 1
| <!--Ethernet-->Realtek 8111E
| <!--Opinion-->2019 64bit - 3rd/2nd/1st Gen AMD Ryzen™ / 2nd and 1st Gen AMD Ryzen™ with Radeon™ Vega
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->MSI A320M-A PRO MicroATX
| <!--Chipset-->AMD A320
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->pci-e 3.0
| <!--Audio-->HDAudio Realtek® ALC892
| <!--USB-->USB3
| <!--Ethernet-->Realtek® 8111H
| <!--Opinion-->2019 64bit -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus ROG X399 Zenith Extreme
| <!--Chipset-->AMD X399
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->PCIe 3.0
| <!--Audio--> supremefx s1220
| <!--USB-->
| <!--Ethernet-->intel
| <!--Opinion-->Threadripper 1950X 1920X 1900X TR4 skt
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->PCIe 3.0
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->AsRock Fatality X470 Gaming K4 mATX
| <!--Chipset-->X470
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->nvme
| <!--Gfx-->pci-e rebar possible
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->intel
| <!--Opinion-->
|-
| <!--Name-->Asrock Fatal1ty X470 Gaming-ITXac AMD AM4
| <!--Chipset-->AMD X470
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->intel
| <!--Comments-->
|-
| <!--Name-->ASUS ROG STRIX X470-I GAMING AM4 ITX Motherboard
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus B450-I Gaming
| <!--Chipset-->AMD B450
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->PCIe 3.0
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->high VRM temps - raven ridge 14nm+ like 2200G 2400G
|-
| <!--Name-->AsRock B450 Gaming K4
| <!--Chipset-->B450
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio--> alc892
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion--> 4 ddr4 slots - low VRM thermals 3900x 3950x
|-
| <!--Name-->Gigabyte B450 I Aorus Pro Wifi
| <!--Chipset-->AMD B450
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->1 nvme pcie3 with 4 sata
| <!--Gfx-->pcie
| <!--Audio-->HDAudio with Realtek® ALC1220-VB codec
| <!--USB-->
| <!--Ethernet-->Intel LAN
| <!--Opinion-->very high vrm temps
|-
| <!--Name-->Jginyue B450i Gaming ITX
| <!--Chipset-->B450
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sata3 - none nvme
| <!--Gfx-->pcie3
| <!--Audio-->HDAudio
| <!--USB-->
| <!--Ethernet-->1G
| <!--Opinion-->2021 64 2nd 3rd AMD - 2 ddr4 dimm slots
|-
| <!--Name-->MSI b450 tomahawk max
| <!--Chipset--> b450
| <!--ACPI-->
| <!--IDE-->{{n/A}}
| <!--SATA-->
| <!--Gfx-->PCIe 3.0
| <!--Audio-->HD audio with Realtek® ALC892 Codec
| <!--USB-->
| <!--Ethernet-->Realtek 8111H
| <!--Opinion-->
|-
| <!--Name-->MSI B450 Pro Carbon
| <!--Chipset-->B450
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio--> ALC codec
| <!--USB-->
| <!--Ethernet-->Intel LAN
| <!--Opinion-->
|-
| <!--Name-->MSI B450-A PRO
| <!--Chipset-->B450
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->ALC892
| <!--USB-->
| <!--Ethernet-->rtl8169 8111h
| <!--Opinion-->
|-
| <!--Name-->MSI B450I GAMING Plus AC ITX
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2019 - 2nd and 3rd gen AMD - 2 ddr4 slots -
|-
| <!--Name-->MSI B450 GAMING PLUS MAX
| <!--Chipset-->B450
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->HDAudio with Realtek® ALC892/ALC897 Codec
| <!--USB-->USB3
| <!--Ethernet-->rtl8169 8111H
| <!--Opinion-->
|-
| <!--Name-->MAXSUN AMD Challenger B450M M-ATX (aka Soyo)
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->ASRock X570 PHANTOM GAMING-ITX/TB3 Mini ITX AM4
| <!--Chipset-->X570
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->nvme
| <!--Gfx-->PCIe 4.0
| <!--Audio--> ALC1200
| <!--USB-->
| <!--Ethernet-->Intel LAN
| <!--Comments-->
|-
| <!--Name-->Asus ROG Crosshair VIII Dark Hero
| <!--Chipset-->AMD X570
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio--> SupremeFX7.1 codec
| <!--USB-->
| <!--Ethernet-->Intel® I211-AT and Realtek® RTL8125-CG 2.5G LAN
| <!--Opinion-->
|-
| <!--Name-->Asus ROG Strix X570-I Gaming Mini ITX AM4 Motherboard
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->MSI MPG X570 Gaming Plus
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio--> alc1220 codec
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus ROG Strix B550-i AM4 ITX Motherboard
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2022 -
|-
| <!--Name-->Jginyue Jingyue B550i Gaming itx
| <!--Chipset-->B550
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->3 with 1 nvme
| <!--Gfx-->1 pci-e 4
| <!--Audio-->HDAudio alc
| <!--USB-->
| <!--Ethernet-->1G
| <!--Comments-->2022 64bit max of Ryzen 5500 (c t), 5600, 5600g (6c12t) - 2 ddr4
|-
| <!--Name-->Asrock B550 PHANTOM GAMING ITX/AX
| <!--Chipset-->AMD B550
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio--> alc1220
| <!--USB-->
| <!--Ethernet-->intel 2.5G
| <!--Comments-->
|-
| <!--Name-->AsRock B550M-ITX/ac
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio--> Realtek ALC887/897 Audio Codec
| <!--USB-->
| <!--Ethernet-->Realtek Gigabit LAN
| <!--Opinion-->2022 - 2 ddr4 slots
|-
| <!--Name-->Asus ROG STRIX B550-A GAMING
| <!--Chipset-->B550
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->PCIe Gen4 x4 & SATA3
| <!--Gfx-->pci-e 4
| <!--Audio--> supremefx S1220A
| <!--USB-->
| <!--Ethernet-->Intel® I225-V 2.5Gb
| <!--Opinion-->
|-
| <!--Name-->Gigabyte AMD B550I AORUS PRO AX Mini-ITX rev 1.0
| <!--Chipset-->AMD B550
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->2 nvme pci-e3 with 4 sata3
| <!--Gfx-->pci-e
| <!--Audio-->Realtek® ALC1220-VB codec
| <!--USB-->
| <!--Ethernet-->Realtek® 2.5GbE LAN
| <!--Opinion-->2021 2 x DDR4 DIMM sockets 1Rx8/2Rx8/1Rx16 -
|-
| <!--Name-->Gigabyte B550 AORUS ELITE AX V2 ATX
| <!--Chipset-->B550
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->PCI-e 4.0 DP and hdmi
| <!--Audio-->HDAudio ALC1200
| <!--USB-->USB3 USB 3.2 Gen1 Type-C
| <!--Ethernet-->2.5GbE LAN
| <!--Opinion-->2022 64bit- finer tuning than A520's - AMD Ryzen 5000 Series/ 3rd Gen Ryzen and 3rd Gen Ryzen with Radeon Graphics CPU - Dual Channel ECC/ Non-ECC Unbuffered DDR4, 4 DIMMs -
|-
| <!--Name-->Gigabyte B550M DS3H mATX
| <!--Chipset--> B550
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->2 NVMe
| <!--Gfx-->PCI-e 4.0
| <!--Audio-->HDaudio ALC887
| <!--USB-->USB3
| <!--Ethernet-->realtek rtl8118
| <!--Opinion-->2021 64bit - 4 ddr4 dimms -
|-
| <!--Name-->MSI MPG B550 GAMING PLUS ATX
| <!--Chipset--> B550
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->PCI-e 4.0
| <!--Audio-->HDAudio ALC892
| <!--USB-->USB 3
| <!--Ethernet-->rtl8169 Realtek 8111H
| <!--Opinion-->2022 64bit - 3rd Gen AMD Ryzen Processors - 4 dimm ddr4 -
|-
| <!--Name-->MSI MAG B550 TOMAHAWK ATX
| <!--Chipset--> B550
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe 1 x M.2, Socket 3, M Key (up to Type 22110) and 1 x M.2, Socket 3, M Key (Type 2242/2260/2280)
| <!--Gfx-->PCI-e 4.0 with dp and hdmi
| <!--Audio-->HDaudio ALC1200
| <!--USB-->USB3 1 x USB 3.1 Type-C and 1 x USB 3.1 Type-A
| <!--Ethernet-->Realtek RTL8125B and Realtek RTL8111H
| <!--Opinion-->2022 64bit - 4 Dimm slots -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Jginyue A520M-H mATX
| <!--Chipset-->A520
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion--> old bios with random issues with APU ryzens -
|-
| <!--Name-->Gigabyte A520M S2H mATX
| <!--Chipset-->AMD A520
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->HDAudio
| <!--USB-->
| <!--Ethernet-->Realtek 1GbE
| <!--Opinion-->2022 64bit Zen3 65W and up - 2 ddr4 -
|-
| <!--Name-->Gigabyte A520I AC mITX mini-itx
| <!--Chipset-->AMD A520
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->HDAudio
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2022 64bit Zen3 65W and up 5600G (6c12t) or 5700G (8c16t) - 2 ddr4 dimm slots -
|-
| <!--Name-->MSI A520M-A PRO mATX
| <!--Chipset-->A520
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe 1 x M.2, Socket 3, M Key (Type 2242/2260/2280)
| <!--Gfx-->PCI-e 3.0
| <!--Audio-->HDAudio ALC892
| <!--USB-->USB3
| <!--Ethernet-->rtl8169 rtl8111H
| <!--Opinion-->2022 64bit - 2 ddr4 dimm slots - 3rd Gen AMD Ryzen Desktop and AMD Ryzen 4000 G-Series CPU
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|}
===== (Socket AM5 LGA1718 Zen4 Zen5 Zen6 2022/27)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->Asrock Steel Legend
| <!--Chipset-->x670e
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->PCI-e rnda2
| <!--Audio-->HD audio
| <!--USB-->USB3
| <!--Ethernet-->
| <!--Opinion-->2022 64bit - ddr5 ecc (10 chip) and non-ecc (8 chips) 64Gb @ 6000Mhz or 128GB @ 4800Mhz -
|-
| <!--Name-->Asrock TaiChi
| <!--Chipset-->x670e
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->PCI-e rnda2
| <!--Audio-->HD Audio
| <!--USB-->USB4 with Thunderbolt 4 equivalent
| <!--Ethernet-->{{No|Realtek killer E3000 2.5GbE}}
| <!--Opinion-->2022 64bit - ddr5 ecc (10 chip) and non-ecc (8 chips)
|-
| <!--Name-->Asus ROG Crosshair Hero
| <!--Chipset-->x670e
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->PCIe rnda2
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2022 64bit
|-
| <!--Name-->
| <!--Chipset-->x670e
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->rnda3
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2022 64bit 7950x3d 120W, 7900 7800 7600 90W
|-
| <!--Name-->
| <!--Chipset-->x670e
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->rnda3
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2022 64bit
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus B650E-I
| <!--Chipset-->B650
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->pci-e 5
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2023 - better sound with an actual AMP, PCIe 5, USB-C display outs -
|-
| <!--Name-->
| <!--Chipset-->x650 B650
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->x650 B650
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->x650 B650
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->MAXSUN AMD Challenger B650M WIFI M-ATX (aka Soyo)
| <!--Chipset-->B650
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->MSI b650i mini itx
| <!--Chipset-->B650
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->pci-e 4
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->Realtek
| <!--Opinion-->2023 - front panel connectors at the back of the board - dead rear nvme slot and a drained CMOS battery as the CMOS button being pressed during shipping -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->A620M Zen4
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->A620M
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->A620M
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->A620M
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset--> Zen5
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset--> Zen6
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name--> || <!--Chipset--> || <!--ACPI--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Opinion-->2026 FP8 Zen 6 Medusa Point 4bigC, 4 econC, 2lpC, 8coreGPU -
|-
| <!--Name--> || <!--Chipset--> || <!--ACPI--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Opinion-->2026 FP10 Zen 6 Medusa Point 4bigC, 4 econC, 2lpC, 8coreGPU -
|-
|}
===== (Zen7 AM6 2027/3x)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
===== (Zen AM 203x/3x)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
====Intel Sockets====
[[#top|...to the top]]
=====Socket 370 (2000/2)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->Intel D815EEA
| <!--Chipset-->866Mhz P3 and i815 chipset
| <!--ACPI-->
| <!--IDE-->{{Yes}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->{{Yes|Nvidia AGPx8 6200LE added}}
| <!--Audio-->{{N/A}}
| <!--USB-->{{Yes|2 USB1.1}}
| <!--Ethernet-->{{N/A}}
| <!--Opinion-->Tested AspireOS 1.7, simple basic board with useful 5 PCI slots
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|}
=====Socket 478 (2002/4)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->[http://translate.google.co.uk/translate?hl=en&sl=zh-CN&u=http://detail.zol.com.cn/motherboard/index46381.shtml&prev=/search%3Fq%3Dc.865pe.l%2Bmotherboard%26client%3Dfirefox-a%26hs%3DsZB%26rls%3Dorg.mozilla:en-US:official Colorful Technology C.865PE-L Silver Fighter Warrior V2.3]
| <!--Chipset-->865PE
| <!--ACPI-->{{dunno| }}
| <!--IDE-->{{Yes|tested with CDROM}}
| <!--SATA-->{{dunno| }}
| <!--Gfx-->{{Maybe|AGP slot}}
| <!--Audio-->{{Yes|ALC650 AC97}}
| <!--USB-->{{Yes|USB 1.1 and 2.0}}
| <!--Ethernet-->{{Yes|RTL 8100 8139}}
| <!--Opinion-->Still testing with NB (Nightly Build) May 2013
|-
| <!--Name-->Intel 845
| <!--Chipset-->865P
| <!--ACPI-->
| <!--IDE-->{{Yes}}
| <!--SATA-->
| <!--Gfx-->{{No|intel 800}}
| <!--Audio-->{{No|AC97 AD1985}}
| <!--USB-->{{Yes|USB1.1 and USB2.0}}
| <!--Ethernet-->{{No|e1000}}
| <!--Opinion-->Tested ICAROS 1.3
|-
| <!--Name-->Intel 845
| <!--Chipset-->865GC
| <!--ACPI-->
| <!--IDE-->{{Yes}}
| <!--SATA-->
| <!--Gfx-->{{No|intel 865 Extreme Graphics 2}}
| <!--Audio-->{{No|AC97 AD1985}}
| <!--USB-->{{Yes|USB1.1 and USB2.0}}
| <!--Ethernet-->{{No|e1000}}
| <!--Opinion-->Tested ICAROS 1.3
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket LGA775 s775 (2005/8)=====
an industry standard DDR2 module could in theory contain fallback JEDEC, intel XMP and AMD EPP configuration data
Intel PC CL5 ram modules but an "AMD" CL5 ram module the BIOS cannot read the AMD EPP info on the SPD (Serial Presence Detect) but can recognize the CL5 timing info in the JEDEC data table. PC BIOS auto configures for the AMD ram module and boots normally.
an AMD PC CL6 ram modules but an "INTEL" CL6 ram module the BIOS cannot read the INTEL XMP info on the SPD but can recognize the CL6 timing info in JEDEC data table. PC BIOS auto configures for the AMD ram module and boots normally.
an INTEL PC needs CL6 ram modules but have an "AMD" CL4 ram module. INTEL BIOS cannot read the AMD EPP info on the SPD but can recognize the CL4 timing info in JEDEC data table. PC BIOS recognizes module timings as incompatible an refuses to boot.
entirely separate issue if the RAM module timing specs are incompatible.(i.e. CL4 RAM in a "CL6 only" PC)
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->Abit AG8
| <!--Chipset-->P915 + ICH6R
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4 ports SATA1
| <!--Gfx-->1 PCIe x16 Slot
| <!--Audio-->Realtek ALC658 AC97
| <!--USB-->4 USB2.0
| <!--Ethernet-->Realtek 8110S-32
| <!--Opinion-->2004 32bit - Firewire TI 4200R7T no
|-
| <!--Name-->MSI 915 Neo2
| <!--Chipset-->P915 + ICH6R
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4 ports SATA1
| <!--Gfx-->1 PCIe x16 Slot
| <!--Audio-->CMI 9880L HD Audio
| <!--USB-->4 USB2.0
| <!--Ethernet-->{{no|Broadcomm BCM5751 PCIe}}
| <!--Opinion-->Firewire VIA VT6306 no
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus P5GC P5GC-MX
| <!--Chipset-->P945GC Lakeport-GC + ICH7R northbridge
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4 SATA1 3.0 Gbit/s ports
| <!--Gfx-->1 PCIe 1.1 slot
| <!--Audio-->HD Audio with ALC662 codec
| <!--USB-->{{yes|2 usb2.0}}
| <!--Ethernet-->{{no|atheros L2}}
| <!--Opinion-->2005 32bit - 3 pci slots - 4 x 240-pin DIMM Sockets max. 4GB DDR2 667/533 non-ECC -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Foxconn PC45CM-SA 45CM-S
| <!--Chipset-->945GC with ICH7
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4 sata2 ports
| <!--Gfx-->{{Yes|pcie 1.0 slot with gma950 integrated}}
| <!--Audio-->{{Yes|HD audio with aLC883 codec playback}}
| <!--USB-->{{Yes|}}
| <!--Ethernet-->{{Yes|realtek 8139 8100sc}}
| <!--Opinion-->2 dimm slots 667mhz max 4gb - can be found in Advent desktops - 2 pci-e and 2 pci - core 2 duo only e6xxx - Micro ATX (9.6” x 8.8”) -
|-
| <!--Name-->Gigabyte GA-81945GM MFY-RH
| <!--Chipset-->Intel® 945GM Express with ICH7M-DH
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->{{Yes|GMA950 VGA15 and PCI-e 1.0 slot}}
| <!--Audio-->{{Yes|HD Audio with ALC880 codec playback only rear port}}
| <!--USB-->{{Yes|4 usb 2.0}}
| <!--Ethernet-->{{No|Intel PRO1000PL 82573L Gigabit Ethernet}}
| <!--Opinion-->2006 MoDT term “Mobile on DeskTop.”, low TDP CPUs to work on desktop form-factor motherboards. mATX Micro ATX 24.4cm x 24.4cm - 2 DDR2 dimm 1.8v slots with 4Gb max - will not boot if PCI2 slot occupied -
|-
| <!--Name-->Gigabyte GA-945 GCM S2C
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->{{yes|ALC662 (1.x)}}
| <!--USB-->
| <!--Ethernet-->{{yes|8101E Rtl 8169 (1.x)}}
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA945-GCM S2L
| <!--Chipset-->945GC with ICH7
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4 SATA1 ports
| <!--Gfx-->PCi-E slot
| <!--Audio-->{{Maybe|Intel HD Audio with ALC662 codec 2/4/5.1-channel (1.x)}}
| <!--USB-->{{Yes|4 USB2.0}}
| <!--Ethernet-->{{Yes|Realtek 8111c 8169 (1.x)}}
| <!--Opinion-->2 x 1.8V DDR2 DIMM 4GB DDR2 memory max - 2 PCI-e and 2 PCI - Micro ATX form factor; 24.4cm x 19.3cm -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->MSI 945P Neo-F rev 1.0
| <!--Chipset-->P945 + ICH7
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4 SATA1 ports
| <!--Gfx-->PCie 1.0 slot
| <!--Audio-->ALC662 HDA
| <!--USB-->4 USB2.0
| <!--Ethernet-->8110SC (rtl8169)
| <!--Opinion-->
|-
| <!--Name-->MSI 945P Neo2-F rev 1.2
| <!--Chipset-->P945 + ICH7
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4 SATA1 ports
| <!--Gfx-->PCie 1.0 slot
| <!--Audio-->ALC850 AC97
| <!--USB-->4 USB2.0
| <!--Ethernet-->8110SC (rtl8169)
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-P31-DS3L
| <!--Chipset-->P31 with ICH7
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->PCI Express x16
| <!--Audio-->HD Audio with ALC888 codec
| <!--USB-->4 USB 2.0
| <!--Ethernet-->Realtek 8111B
| <!--Opinion-->DDR2 800Mhz up to 4Gb 4 x 240 pin - 3 PCI - ATX 12.0" x 8.3" -
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus P5KPL-AM /PS
| <!--Chipset-->G31 with ICH7
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->4 xSATA 3 Gbit/s ports
| <!--Gfx-->PCIe 1.1 with integrated Intel® GMA 3100
| <!--Audio-->HD Audio with VIA VT1708B with ALC662 codec
| <!--USB-->
| <!--Ethernet-->Realtek RTL8102EL 100/10 LAN with Realtek RTL8111C Gigabit LAN
| <!--Opinion-->2 x 2 GB DDR2 Non-ECC,Un-buffered DIMMs with 2 PCI - Intel Graphics Media Accelerator -
|-
| <!--Name-->Asus P5KPL/EPU
| <!--Chipset-->G31 with ICH7
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Pci-e 1.0 slot
| <!--Audio-->{{Yes|HD audio with ALC887 codec}}
| <!--USB-->
| <!--Ethernet-->{{Yes|RTL8169 Realtek 8111C}}
| <!--Opinion-->Tested - 4 240-pin DIMM, Max. 4 GB - 4 pci-e and 3 pci - ATX Form Factor 12 inch x 8.2 inch ( 30.5 cm x 20.8 cm ) -
|-
| <!--Name-->Gigabyte GA-G31M ES2L
| <!--Chipset-->G31 plus ICH7
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->{{Yes|Intel GMA 3100 2d}}
| <!--Audio-->{{Maybe|ALC883 (1.x), ALC883/888B (2.x)}}
| <!--USB-->
| <!--Ethernet-->{{Maybe|RTL8111C (1.x), Atheros 8131 (2.x)}}
| <!--Opinion-->reduces DRAM capacity to 4GB
|-
| <!--Name-->ASRock G31M-S r1.0 G31M-GS
| <!--Chipset-->G31 + ICH7
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->{{maybe|4 sata2}}
| <!--Gfx-->{{maybe|GMA 3100 2d not 3d}}
| <!--Audio-->{{yes|ALC662}}
| <!--USB-->{{yes|4 USB2.0}}
| <!--Ethernet-->{{partial|rtl8169 RTL8111DL 8169 (for -GS) RTL8102EL (for -S)}}
| <!--Opinion-->2007 64bit Core2 - 2 DDR2 800 max 8Gig AMI bios MicroATX -
|-
| <!--Name-->ASRock G31M-S r2.0
| <!--Chipset-->G31 + ICH7
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->{{maybe|4 sata2}}
| <!--Gfx-->{{maybe|GMA 3100 2d not 3d}}
| <!--Audio-->{{yes|ALC662}}
| <!--USB-->{{yes|4 USB2.0}}
| <!--Ethernet-->{{yes|RTL 8111DL 8169}}
| <!--Opinion-->2008 64bit core2 - 2 DDR2 800 max 8Gig MicroATX
|-
| <!--Name-->[http://www.intel.com/cd/channel/reseller/apac/eng/products/desktop/bdb/dg31pr/feature/index.htm Intel DG31PR]
| <!--Chipset-->iG31
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->{{maybe|3100 but can use PCIe 1.1 slot}}
| <!--Audio-->{{yes|ALC888 playback}}
| <!--USB-->
| <!--Ethernet-->{{yes|RTL8111B Rtl 8169}}
| <!--Opinion-->good support
|-
| <!--Name-->
| <!--Chipset-->Intel G33 Express Chipset with ich9 southbridge
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Intel 3100 powervr tile based
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2008 64bit - embedded on Core 2 Quad, Core 2 Duo, Pentium Dual-Core CPUS with Integrated GPU Intel GMA 3100 -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->ASUS P5G41T-M LX
| <!--Chipset-->G41 + ICH8 + DDR3
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->{{maybe}}
| <!--Gfx-->{{yes|X4500 some 2d only)}}
| <!--Audio-->ALC887
| <!--USB-->3 USB2.0
| <!--Ethernet-->{{no|Atheros L1c AR8131}}
| <!--Opinion-->reduces maximum supported memory ddr3 from 16 to 8GB 2 dimm slots non-EEC - demotes the PCIe controller mode from revision 2.0 (5.0GT/s) to revision 1.1 (2.5GT/s
|-
| <!--Name-->Gigabyte GA-G41MT S2
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->VT1708S (1.3), ALC887-VD2 (1.4), ALC887 (2.1),
| <!--USB-->
| <!--Ethernet-->Atheros AR8151 l1c (1.x 2.x),
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-G41MT S2PT
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->ALC887 (1.0), VIA (2.0), ALC887 (2.1)
| <!--USB-->
| <!--Ethernet-->RTL8111E (1.x), Atheros AR8151 l1c (2.1),
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-G41MT D3
| <!--Chipset-->G41 + ICH7
| <!--ACPI-->
| <!--IDE-->1 Port
| <!--SATA-->4 Ports
| <!--Gfx-->{{yes|GMA X4500 2d only and pci-e 1.1 slot}}
| <!--Audio-->{{yes|ALC888B}}
| <!--USB-->4 ports + headers
| <!--Ethernet-->{{yes|RTL8111 D/E}}
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-P41T D3P
| <!--Chipset-->G41 + ICH7 with Intel Core 2 Duo (E6xxx) CPU
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4ports
| <!--Gfx-->GMA X4500 2d
| <!--Audio-->ALC888 889/892
| <!--USB-->4 ports
| <!--Ethernet-->RTL 8111C or D/E
| <!--Opinion-->
|-
| <!--Name-->Intel DG41AN Classic
| <!--Chipset-->iG41 +
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4 ports
| <!--Gfx-->X4500 2d
| <!--Audio-->ALC888S ALC888VC
| <!--USB-->4 ports
| <!--Ethernet-->8111E
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->AsRock P5B-DE
| <!--Chipset-->P965 + ICH8
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->{{Maybe|works ide legacy}}
|<!--Gfx-->{{Yes|with PCI-E 1.1 slot}}
| <!--Audio-->{{Yes|HD Audio via VT1708S}}
| <!--USB-->{{Yes}}
| <!--Ethernet-->{{Yes|RTL8169}}
| <!--Opinion-->2006 works well
|-
| <!--Name-->Asus P5B SE
| <!--Chipset-->965 intel
| <!--ACPI-->
| <!--IDE-->{{Yes| }}
| <!--SATA-->{{Yes| }}
| <!--Gfx-->{{N/A}}
| <!--Audio-->{{Yes|HD Audio ALC662 codec}}
| <!--USB-->{{Yes}}
| <!--Ethernet-->{{No| }}
| <!--Opinion-->works well except ethernet
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus P5W DH Deluxe P5WDG2 WS PRO
| <!--Chipset-->975X
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->2 ports
| <!--Gfx-->2 PCIe x16 slots
| <!--Audio-->ALC882 AND LATER ADI 1988B
| <!--USB-->2 USB2.0
| <!--Ethernet-->{{No|Marvell 88E8052 88E8053}}
| <!--Opinion-->Firewire TI TSB43AB22A no
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Abit IP35
| <!--Chipset-->P35 Express + ICH9R
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->6 ports
| <!--Gfx-->
| <!--Audio-->ALC888 HDA
| <!--USB-->4 USB2.0
| <!--Ethernet-->two RTL8110SC
| <!--Opinion-->Firewire Texas TSB43 AB22A no
|-
| <!--Name-->MSI P35 Neo F FL MS-7630 rev 1
| <!--Chipset-->Intel P35
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->pci-e 1.1 support
| <!--Audio-->HD Audio ALC888
| <!--USB-->
| <!--Ethernet-->Realtek
| <!--Opinion-->Base model of this range of P35 mobos
|-
| <!--Name-->GA-P35-DS3
| <!--Chipset-->P35 and ICH9
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4 ports
| <!--Gfx-->
| <!--Audio-->HDAudio with Realtek ALC889A codec
| <!--USB-->
| <!--Ethernet-->rtl8169 Realtek 8111B
| <!--Opinion-->2008 - 4 x 1.8V DDR2 DIMM sockets max 8 GB -
|-
| <!--Name-->GA-EP35-DS3 (rev. 2.1)
| <!--Chipset-->Intel® P35 + ICH9 Chipset
| <!--ACPI-->
| <!--IDE-->{{unk|}}
| <!--SATA-->{{unk|4 }}
| <!--Gfx-->pci-e
| <!--Audio-->{{unk|Realtek ALC889A codec }}
| <!--USB-->{{yes | }}
| <!--Ethernet-->{{yes|rtl8169 Realtek 8111B}}
| <!--Opinion-->good
|-
| <!--Name-->Abit IX38 Quad GT
| <!--Chipset-->X38 / ICH9R Chipset
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->6 ports
| <!--Gfx-->PCI-E 2.0 slot
| <!--Audio--> HD Audio ALC888
| <!--USB-->4 USB2.0
| <!--Ethernet-->Realtek RTL 8110SC 8169SC
| <!--Opinion-->Firewire Texas TSB 43AB22A no
|-
| <!--Name-->Gigabyte X38-DQ6
| <!--Chipset-->X38 / ICH9R Chipset
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->6 ports
| <!--Gfx-->PCI-E 2.0 slot
| <!--Audio-->ALC889A HDA
| <!--USB-->4 USB2.0
| <!--Ethernet-->twin 8111B 8169
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Gigabyte GA-EP45 DS3 (2008)
| <!--Chipset-->P45 + ICH9 or ICH10
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->6 x SATA 3Gbit/s (SATAII0, SATAII1, SATAII2, SATAII3, SATAII4, SATAII5)
| <!--Gfx-->two PCI-E v2.0 x16 slots support splitting its 16 PCIe 2.0 lanes across two cards at x8 transfers
| <!--Audio-->HD Audio with ALC888 or ALC889A codec
| <!--USB-->6 USB2.0
| <!--Ethernet-->2 x Realtek 8111C chips (10/100 /1000 Mbit)
| <!--Opinion-->4 x 1.8V DDR2 DIMM sockets non-EEC
|-
| <!--Name-->MSI P45 Platinum (2008)
| <!--Chipset-->P45 + ICH9
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->6 sata2 ports
| <!--Gfx-->two PCI-E x16 v2.0 slots
| <!--Audio-->ALC888 HD Audio
| <!--USB-->6 USB2.0
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->G45 +
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->adds Intel’s GMA X4500HD graphics engine to P45 Express features
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->G43 +
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->GMA X4500 2d
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->removes HD video acceleration from the G45’s features
|-
| <!--Name-->Asus P5E Deluxe
| <!--Chipset--> X48 with ICH9
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->HD Audio with ADI 1988B codec
| <!--USB-->
| <!--Ethernet-->Marvell 88E8001
| <!--Opinion-->
|-
| <!--Name-->GigaByte GA-X48 DQ6
| <!--Chipset-->X48 plus ICH9R
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->8 ports
| <!--Gfx-->two PCI-E x16 v2.0 slots
| <!--Audio-->ALC889A
| <!--USB-->8 USB2.0
| <!--Ethernet-->RTL 8111B 8169
| <!--Opinion-->Firewire TSB43AB23 no - ICH9 pairs with Intel’s 3-series (X38, P35, etc.) chipsets, in addition to the X48 Express, but excluding the G35 Express
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Gigabyte EP43-DS3L and Gigabyte GA-EP43-UD3L
| <!--Chipset-->P43 with ICH10
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->6 x SATA 3Gbit/s connectors
| <!--Gfx-->1 x PCI Express x16 slot PCI Express 2.0 standard
| <!--Audio-->HD Audio with ALC888 codec
| <!--USB-->
| <!--Ethernet-->realtek 8111C
| <!--Opinion-->4 x 1.8V DDR2 DIMM sockets - 4 pcie x1 - 2 pci - ATX Form Factor; 30.5cm x 21.0cm
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Gigabyte 73-pvm-s2h rev.1.0
| <!--Chipset-->NVIDIA GeForce 7100 nForce 630i
| <!--ACPI-->
| <!--IDE-->{{Yes|1 port}}
| <!--SATA-->{{yes|3 ports SATA2}}
| <!--Gfx-->{{Maybe|Vesa 2d GeForce 7100 (vga /hdmi/dvi), 1 PCIe x16 Slot }}
| <!--Audio-->{{Yes|Realtek ALC889A MCP73}}
| <!--USB-->{{Yes|7 USB2.0}}
| <!--Ethernet-->{{no|RTL 8211B MCP73}}
| <!--Opinion-->Firewire Not, tested with Icaros Desktop 2.0.3 MCP73 is a single chip solution in three different versions
|-
| <!--Name-->Nvidia 7150 630i
| <!--Chipset-->intel based nForce 630i (MCP73)
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->{{maybe|ide legacy}}
| <!--GFX-->GF 7150
| <!--Audio-->{{yes|HD AUDIO ALC883}}
| <!--USB-->{{yes|ohci echi}}
| <!--Ethernet-->{{no|RTL8201C}}
| <!--Opinion-->being tested
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->pci-e 2.0 x16
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion--> the MCP73PV or the GeForce 7050/nForce 630i
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->the MCP73S or the GeForce7025/nForce 630i
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->the MCP73V or the GeForce 7025/nForce 610i
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Atom SOC (2008/2x)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->D945CLF
| <!--Chipset-->N230 single core
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->
| <!--Gfx-->{{yes|GMA945}}
| <!--Audio-->{{yes|ALC662}} Skt 441
| <!--USB-->{{yes|uhci and ehci}}
| <!--Ethernet-->{{yes|rtl8169}}
| <!--Opinion-->works very well
|-
| <!--Name-->[http://www.clusteruk.com iMica D945GCKF2 mobo]
| <!--Chipset-->Intel Atom N330 Dual Core
| <!--ACPI-->wip
| <!--IDE-->{{yes|IDE}}
| <!--SATA-->{{maybe}}
| <!--Gfx-->{{yes|gma}}
| <!--Audio-->{{yes|HD AUDIO}}
| <!--USB-->{{yes|uhci ehci}}
| <!--Ethernet-->{{yes|rtl8169}}
| <!--Opinion-->
|-
| <!--Name-->D945GSEJT + Morex T1610
| <!--Chipset-->Atom 230 with 945GSE
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->{{maybe}}
| <!--Gfx-->{{yes|GMA900 vga but issues with DVI output}}
| <!--Audio-->{{yes|HDAudio with ALC662 codec}}
| <!--USB-->{{yes| }}
| <!--Ethernet-->{{yes|RTL8169 8111DL}}
| <!--Opinion-->small size, runs off 12V
|-
| <!--Name-->ASUS AT3N7A-I
| <!--Chipset-->Atom N330 Nvidia ION
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->{{maybe|3 ports legacy IDE}}
| <!--Gfx-->{{yes|nouveau cube cube 2 45 quake 3 }}
| <!--Audio-->{{yes|HD Audio with VIA 1708S codec playback}}
| <!--USB-->{{yes}}
| <!--Ethernet-->{{yes|RTL8169 device}}
| <!--Opinion--><ref>http://www.youtube.com/watch?v=EAiJpvu73iw</ref> good but can freeze randomly at times
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->D410PT 45nm pinetrail
| <!--Chipset-->D410 and NM10
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->{{maybe|ide legacy}}
| <!--Gfx-->{{maybe|GMA3150}}
| <!--Audio-->{{yes|ALC262 or ALC66x odd clicks}}
| <!--USB-->{{yes}}
| <!--Ethernet-->{{yes|RTL8111DL}}
| <!--Opinion-->some support
|-
| <!--Name-->45nm pinetrail
| <!--Chipset-->D510 and NM10 + GMA3150
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->GMA3150
| <!--Audio-->ALC888B or ALC66x
| <!--USB-->{{yes}}
| <!--Ethernet-->RTL8111DL
| <!--Opinion-->some support
|-
| <!--Name-->Gigabyte GA-D525TUD (rev. 1.0 1.2 1.5)
| <!--Chipset-->D525 NM10
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->gma 3150
| <!--Audio-->HDAudio ALC887
| <!--USB-->
| <!--Ethernet-->rtl8169 rtl8111f
| <!--Opinion-->2012 64 - 2 ddr3 dimm slots max 8g - Mini-ITX Form Factor; 17.0cm x 17.0cm -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
|}
=====Socket 1366 (2009/10)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->Asus P6T DELUXE
| <!--Chipset-->x58 + ICH10 and Intel 1st gen. (Nehalem/Lynnfield) Core i7 (8xx) CPU
| <!--ACPI-->
| <!--IDE-->{{yes|1 port}}
| <!--SATA-->4 ports
| <!--Gfx-->2 PCIe x16 (r2.0) slots
| <!--Audio-->ADI AD2000B HD Audio
| <!--USB-->{{yes|4 USB2.0}}
| <!--Ethernet-->{{no|Marvell 88E8056 Gigabit}}
| <!--Opinion-->Firewire VIA VT6308 no
|-
| <!--Name-->gigabyte ex58 ds
| <!--Chipset--> x58 + ICH10
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->Realtek 8111D rtl8169
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket 1156 (2010)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->Acer Aspire M3910
| <!--Chipset-->i3
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->{{unk| }}
| <!--Gfx-->{{maybe|VESA intel HD}}
| <!--Audio-->{{unk|HDAudio with Realtek ALC}}
| <!--USB-->{{yes| }}
| <!--Ethernet-->{{unk| Realtek}}
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-H55M-S2H
| <!--Chipset-->H55
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->PCIe slot
| <!--Audio-->{{Yes|ALCxxx playback}} ALC888B (Rev1.x)
| <!--USB-->{{Yes| }}
| <!--Ethernet-->{{Yes|RTL8111D}} (Rev 1.x)
| <!--Opinion-->Tested but no support for WLAN Realtek 8188su
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->MSI H55M-E33 v1.0
| <!--Chipset-->E7636 M7636 H55 chipset so older i3/i5/i7 system
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->{{yes|HD Audio ALC889}}
| <!--USB-->
| <!--Ethernet-->{{Yes|PCI-E Realtek 8111DL}}
| <!--Opinion-->Works well
|-
| <!--Name-->Asus P7P55D
| <!--Chipset-->P55
| <!--ACPI-->
| <!--IDE-->{{unk| }}
| <!--SATA-->{{unk| }}
| <!--Gfx-->pci-e
| <!--Audio-->{{maybe | via codec}}
| <!--USB-->{{unk| }}
| <!--Ethernet-->{{maybe |rtl8169 Realtek RTL8111B/C RTL8112L }}
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket LGA 1155 H2 (2010/13)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->ASUS P8H61-I LX R2.0
| <!--Chipset-->H61
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sata
| <!--Gfx-->1 pci-e slot
| <!--Audio-->{{unk|HDAudio via7018s codec}}
| <!--USB-->USB3
| <!--Ethernet-->{{yes|rtl8169 8111f}}
| <!--Opinion-->2013 64bit up to intel ivybridge cpus - 2 ddr3 dimm slots -
|-
| <!--Name-->Asus P8H61-I/RM/SI mini-itx
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->2 sata
| <!--Gfx-->pci-e 2
| <!--Audio-->{{unk|HDAudio via7018s codec}}
| <!--USB-->
| <!--Ethernet-->{{yes|rtl8169 8111f}}
| <!--Opinion-->2013 64bit up to i3-2010 - OEM board from an RM machine but not ivybridge as the Asus BIOS isn't compatible with these, 0909 hacked one might work -
|-
| <!--Name-->asus p8h61-i lx r2.0/rm/si mini itx
| <!--Chipset-->h61
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->pci-e 2.0
| <!--Audio-->HDaudio with VIA codec
| <!--USB-->
| <!--Ethernet-->rtl8169 rtl8111e
| <!--Opinion-->2012 sandy and ivy - oem from rm machine 2 x 240-Pin DDR3 DIMM sockets max DDR3 1333MHz -
|-
| <!--Name-->Bewinner 63q9c7omvs V301 ITX
| <!--Chipset-->H61
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sata with nvme
| <!--Gfx-->pci-e 4
| <!--Audio-->HDAudio
| <!--USB-->
| <!--Ethernet-->Realtek 8106E 100M Network Card
| <!--Opinion-->2022 64
|-
| <!--Name-->Biostar H61 H61MHV2 H61MHV3 Ver. 7.0
| <!--Chipset-->H61 with Intel Pentium G 2xxx series CPU
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->pci-e
| <!--Audio-->Realtek ALC662 later ALC897
| <!--USB-->4 usb2
| <!--Ethernet-->rtl8169 Realtek RTL8111H
| <!--Opinion-->2014 - 2 ddr3 dimm slots -
|-
| <!--Name-->Gigabyte GA-H61M-D2-B3
| <!--Chipset-->H61 + Sandybridge
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 ports sata2
| <!--Gfx-->
| <!--Audio-->ALC889
| <!--USB-->2 ports
| <!--Ethernet-->Realtek RTL8111E
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-H61MA-D3V
| <!--Chipset-->H61 +
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 ports sata2
| <!--Gfx-->
| <!--Audio-->Maybe No Realtek ALC887 (Rev 2.0) ALC887 (Rev2.1)
| <!--USB-->2 ports
| <!--Ethernet-->Realtek RTL8111E
| <!--Opinion-->
|-
| <!--Name-->GA-H61M-S2PV
| <!--Chipset-->H61 with 2400k 2500k 2600k 2700k
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->pci-e 2.0 slot
| <!--Audio-->ALC887 (rev 1.0 2.0 2.1 2.2 2.3)
| <!--USB-->4 USB 2.0
| <!--Ethernet-->Rtl811E (1.0) 8151 (2.0) Rtl8111F (2.1 2.2 2.3)
| <!--Opinion-->Micro ATX Form Factor; 24.4cm x 20cm with 2 pci-e and 2 pci -
|-
| <!--Name-->Intel Classic Series DH61CR Desktop
| <!--Chipset-->H61 +
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 ports
| <!--Gfx-->
| <!--Audio-->Intel HD with ALC892
| <!--USB-->4 ports
| <!--Ethernet-->{{no|Intel 82579V}}
| <!--Opinion-->
|-
| <!--Name-->MSI H61M-P20 (G3) MS-7788
*retail MSI board
*OEM Advent, etc
| <!--Chipset-->H61
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->{{yes|four SATAII ports}}
| <!--Gfx-->1 PCI Express gen3 (retail) gen2 (oem) x16 slot
| <!--Audio-->{{yes|HDAudio ALC887 codec}}
| <!--USB-->{{yes|}}
| <!--Ethernet-->{{yes|Realtek 8105E 100M Network Card}}
| <!--Opinion-->2012 64bit - 2 ddr3 slots - 22.6cm(L) x 17.3cm(W) M-ATX Form Factor - BIOS - [https://www.arosworld.org/infusions/forum/viewthread.php?thread_id=1149&rowstart=140&pid=6009#post_6007 works well],
|-
| <!--Name-->MSI H61I-E35 (B3) MS-7677 Ver.1.2
| <!--Chipset-->H61
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sata2 3gbps
| <!--Gfx-->{{maybe|VESA 2d for hdmi and 1 pcie 2.0 x1 slot}}
| <!--Audio-->{{yes|https://www.arosworld.org/infusions/forum/viewthread.php?thread_id=1149&rowstart=140&pid=5861#post_5861 works}}
| <!--USB-->USB3 and USB2
| <!--Ethernet-->{{yes|rtl8169 rtl8111e}}
| <!--Opinion-->2012 64bit - 2 ddr3 slots -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus P8H67-M
| <!--Chipset-->H67 +
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->2 sata3 - 4 sata2
| <!--Gfx-->
| <!--Audio-->Intel HD with ALC887
| <!--USB-->6 USB2.0
| <!--Ethernet-->Realtek® 8111E
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus P8Z68-V LX
| <!--Chipset-->Z68 + Intel 2nd generation (Sandy Bridge) Core i7 (2xxx) CPU and possibly ivybridgev
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->{{yes|2 sata3 - 4 sata2}}
| <!--Gfx-->pci-e slot
| <!--Audio-->{{yes|HDAudio Intel HD with ALC887 codec}}
| <!--USB-->{{yes|2 USB3.0 - 4 USB2.0}}
| <!--Ethernet-->{{yes|rtl8169 Realtek® 8111E}}
| <!--Opinion-->2011 64bit SSE 4.1 and AVX - EFI bios - 4 ddr3 dimm slots -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte Z68AP-D3 (B3)
| <!--Chipset-->Z68 + Ivybridge
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->2 sata3 - 4 sata2
| <!--Gfx-->
| <!--Audio-->Intel HD with ALC889
| <!--USB-->2 USB3.0 - 4 USB2.0
| <!--Ethernet-->Realtek® 8111E
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus B75M-A
| <!--Chipset-->B75
| <!--ACPI-->
| <!--IDE-->{{yes| }}
| <!--SATA-->{{yes| }}
| <!--Gfx-->pci-e
| <!--Audio-->{{maybe|HDAudio with Realtek ® ALC887-VD codec}}
| <!--USB-->{{maybe| }}
| <!--Ethernet-->{{yes|rtl8169 Realtek ® 8111F-VB-CG }}
| <!--Opinion-->2013 64bit - 2 ddr3 slots -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->H77
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-H77-D3H 1.0 1.1
| <!--Chipset-->H77
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sata 3.0
| <!--Gfx-->pci-e
| <!--Audio-->{{No|HDAudio VIA VT2021 codec}}
| <!--USB-->
| <!--Ethernet-->{{No|Atheros GbE LAN chip}}
| <!--Opinion-->2013 64bit i5 3550 7 3770 - 4 DDR3 slots - 2 full pci-e 2 pci slots -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Gigabyte GA Z77 D3H with i3 3225 dual
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->pci-e
| <!--Audio-->{{No|HDAudio VIA VT2021 codec}}
| <!--USB-->
| <!--Ethernet-->{{No|Atheros GbE LAN chip}}
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket LGA 1150 H3 (2013/2016)=====
[[#top|...to the top]]
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->[https://theretroweb.com/motherboards/s/asus-b85m-e-rev-1-02 Asus B85M-E]
| <!--Chipset-->B85
| <!--ACPI-->
| <!--IDE-->{{yes| }}
| <!--SATA-->{{yes| }}
| <!--Gfx-->pci-e
| <!--Audio-->{{maybe|HDAudio with Realtek ® ALC887-VD2 codec}}
| <!--USB-->{{no| }}
| <!--Ethernet-->{{yes|rtl8169 Realtek 8111F}}
| <!--Opinion-->2014 64bit - 4 ddr3 slots -
|-
| <!--Name-->Gigabyte GA-H87N-WIFI mITX
| <!--Chipset-->H87 and Intel 4th generation (Haswell) Core i5 (4xxx) CPU
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->Intel HD with ALC892
| <!--USB-->
| <!--Ethernet-->Intel Atheros
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus H81M-C H81M-P-SI
| <!--Chipset-->H81 with 4th generation (Haswell) Core i7 (4xxx) CPU
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->2x3g 2x6g
| <!--Gfx-->pci-e slot
| <!--Audio-->hdaudio alc887 vd
| <!--USB-->
| <!--Ethernet-->realtek 8111gr
| <!--Opinion-->2013 skt 1150 - 2 ddr3 max 16g - mini atx -
|-
| <!--Name-->Asus H81T
| <!--Chipset-->H81
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->2 sata
| <!--Gfx-->HD4000 igpu only
| <!--Audio-->HDAudio ALC887-VD
| <!--USB-->Intel USB3
| <!--Ethernet-->rtl8169 realtek 8111G
| <!--Opinion-->2013 64bit intel 4th gen mini itx - external dc brick with 19v rare barrel pin 7.4MM x 5.0MM - 2 ddr3 laptop sodimm slots -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-H81M-S2V
| <!--Chipset-->H81
| <!--ACPI-->
| <!--IDE-->{{N/A|}}
| <!--SATA-->
| <!--Gfx-->pci-e
| <!--Audio-->HDAudio ALC887
| <!--USB-->USB3
| <!--Ethernet-->Realtek® GbE LAN chip
| <!--Opinion-->2014 64bit up to i7 4790K - 2 DDR3 slots -
|-
| <!--Name-->Gigabyte GA-H81M-D3V (rev. 1.0)
| <!--Chipset-->H81
| <!--ACPI-->
| <!--IDE-->{{N/A| }}
| <!--SATA-->{{yes|2 sata2 2 sata3 }}
| <!--Gfx-->pci-e
| <!--Audio-->{{unk| HDAudio Realtek® ALC887 codec}}
| <!--USB-->{{unk|intel and VIA® VL805}}
| <!--Ethernet-->{{unk|rtl8169 Realtek }}
| <!--Opinion-->
|-
| <!--Name-->MSI H81M-E34 (MS-7817)
| <!--Chipset-->H81
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->{{yes| }}
| <!--Gfx-->PCIe 2.0 x16
| <!--Audio-->HDAudio with ALC887 codec
| <!--USB-->USB3
| <!--Ethernet-->{{yes|rtl8169 RTL8111G}}
| <!--Opinion-->2013 64bit -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus Z87-K
| <!--Chipset-->Z87 with 4th generation (Haswell) Core i7 4c8t i5 4c4t CPU
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->pci-e
| <!--Audio-->Intel HD with ALC
| <!--USB-->
| <!--Ethernet-->Realtek lan
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-Z87X-UD3H
| <!--Chipset-->Z87 Express
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->pci-e
| <!--Audio-->Intel HD with Realtek® ALC898 codec
| <!--USB-->
| <!--Ethernet-->intel
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA H97M D3H r1.0 r1.1 with i3 4360 or 4370 dual
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->pci-e
| <!--Audio-->Intel HD with ALC892
| <!--USB-->
| <!--Ethernet-->Realtek lan
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus Z97 A with i7 4790K
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->750, 960, 970 and 980 nvidia GTX cards
| <!--Audio-->Intel HD with ALC
| <!--USB-->
| <!--Ethernet-->intel lan ethernet
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA Z97X UD3H rev1.0 1.1 1.2
| <!--Chipset-->Z97 with i5 4690K
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->HDaudio with ALC1150
| <!--USB-->
| <!--Ethernet-->intel lan
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->MSI GAMING 5 Z97
| <!--Chipset-->Z97 with 4th generation (Haswell) Core i7 4c8t CPU
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->ASUS Q87M-E
| <!--Chipset-->Q87
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2014 64bit - 4 DDR3 slots -
|-
| <!--Name-->
| <!--Chipset-->H99
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket LGA2011V2 s2011-2 (2012/15)=====
[[#top|...to the top]]
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->
| <!--Chipset-->x79
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2013 Xeon e5-???? W TDP, e5-2667V2 W TDP, e5-????V2 W TDP, Sandybridge and Ivybridge V2
|-
| <!--Name-->Asus
| <!--Chipset-->X79
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket LGA2011V3 s2011-3 (2015/18)=====
[[#top|...to the top]]
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->
| <!--Chipset-->x99
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2016 Xeon e5-1620v3 130W TDP, e5-1650V3 (i7-5930K) 140W TDP, e5-2640V3 90W TDP, Haswell-EP
|-
| <!--Name-->Asus
| <!--Chipset-->X99
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->most cheap Ryzens are better nowadays
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Huananzhi X99-CD4
| <!--Chipset-->Intel C612 and X99
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sata 3 connectors and 1 m.2 nvme slot
| <!--Gfx-->pcie slot
| <!--Audio-->HDaudio with ALC897 codec
| <!--USB-->{{No|USB3}}
| <!--Ethernet-->{{maybe|rtl8169}}
| <!--Opinion-->2024 quality might not be great outside of a simple setup - 2 ddr4 dimms -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Keyiyou X99 XD4
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Machinist MR9A Pro
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2023
|-
| <!--Name-->Machinist MR9A Pro
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2023
|-
| <!--Name-->Mogul
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Qiyida X99 H9S
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2023
|-
| <!--Name-->Soyo
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket LGA 1151 Socket H4 (2015/2018)=====
[[#top|...to the top]]
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->Skylake CPUs have TPM 2.0 imbedded
|-
| <!--Name-->Asus H110 Plus H110M-A/DP
| <!--Chipset--> with 6th Gen Core and 7th with bios update
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->Sunrise Point-H SATA [AHCI mode] [8086 a102]
| <!--Gfx-->{{No|Skylake Integrated HD Graphics use PIC-E slot}}
| <!--Audio-->Intel HD Audio with Realtek ALC887 Audio CODEC
| <!--USB-->Sunrise Point-H USB 3.0 xHCI [8086: a12f] no usb2.0 fallback
| <!--Ethernet-->{{Yes|Realtek 8111GR or 8111H RTL8111 8168 8411}}
| <!--Opinion-->ATX with 3 pci-e and 2 DDR4 slots - uatx version smaller - turn off TLSF as it was causing AHI driver to corrupt. Turned off ACPI for errors but works fine once booted -
|-
| <!--Name-->ASUS H110M-R M-ATX
| <!--Chipset-->H110 6th Gen Skylake Core™ i7/Core™ 6950X i7-6970HQ i7-6700K 4c8t hyperthreading, i5/Core™ i5-6600K 4c4t i3/Pentium® / Celeron®
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 x SATA 6Gb/s
| <!--Gfx-->pci-e
| <!--Audio-->HDAudio Realtek® ALC887 codec
| <!--USB-->Intel USB3
| <!--Ethernet-->Realtek® RTL8111H
| <!--Opinion-->2016 64bit - 2 DDR4 DIMMS Max 32GB 2133MHz - 1 full pci-e and 2 pci-e 1 -
|-
| <!--Name-->Asus H110T
| <!--Chipset-->H110
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->2 sata
| <!--Gfx-->intel igpu only
| <!--Audio-->HDaudio
| <!--USB-->
| <!--Ethernet-->Dual Intel/Realtek GbE languard
| <!--Opinion-->2016 - mini itx 12v / 19v laptop type rare barrel pin 7.4MM x 5.0MM - 2 sodimm ddr4 slots - no pci-e slot -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-H110M-S2H MATX Rev1.0
| <!--Chipset-->H110
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sata
| <!--Gfx-->pci-e 3.0
| <!--Audio-->Realtek® ALC887 codec
| <!--USB-->2 (USB 3.1 Gen 1) ports with 4 us2
| <!--Ethernet-->Realtek® GbE LAN
| <!--Opinion--> 2 ddr4 slots
|-
| <!--Name-->Gigabyte ga-h110n
| <!--Chipset-->H110
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Yes| sata}}
| <!--Gfx-->{{maybe|Vesa 2d for Intel or PCI-e slot}}
| <!--Audio-->{{Maybe|HDaudio for ALC887 codec}}
| <!--USB-->{{Maybe| }}
| <!--Ethernet-->{{maybe|RTL8169}}
| <!--Opinion-->2016 mini-itx 6th gen
|-
| <!--Name-->Msi H110M-PRO-VH
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 x SATA 6Gb/s
| <!--Gfx-->pci-e 3.0
| <!--Audio--> Realtek® ALC887 Codec
| <!--USB-->
| <!--Ethernet-->rtl8169 rtl8111h
| <!--Opinion--> 6th gen intel - 2 ddr4 slots
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus H170 Pro Gaming
| <!--Chipset-->H170
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sata
| <!--Gfx-->pci-e
| <!--Audio-->HDAudio
| <!--USB-->Asmedia USB3.1/3.0
| <!--Ethernet-->intel lan
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->MSI Z170A TOMAHAWK
| <!--Chipset-->Z170
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sara, 1 x 2280 Key M(PCIe Gen3 x4/SATA), 1 x 2230 Key E(Wi-Fi)
| <!--Gfx-->pci-e
| <!--Audio-->HDAudio
| <!--USB-->
| <!--Ethernet-->intel lan
| <!--Opinion-->2016 64bit up to i7 7700k - 2 DDR4 -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->GIGABYTE GA-B250M-DS3H HD3P D3H D2V
| <!--Chipset-->B250
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2018 coffee lake intel 8th gen
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus
| <!--Chipset--> with Kaby Lake X Intel 7th Gen
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion--> up to 16 pcie lanes
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus
| <!--Chipset--> Z390 with Kaby Lake X
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion--> up to 16 pcie lanes
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset--> Q370M
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset--> H370M
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset--> B360M
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus Rampage
| <!--Chipset-->x299 with i9
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion--> - up to 24 to 44 pcie lanes
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte
| <!--Chipset--X299 >
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|}
=====Socket LGA 1200 (2020/2022)=====
[[#top|...to the top]]
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->MSI H510M-A PRO (MS-7D22)
| <!--Chipset--> with 10th gen Comet Lake X
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2021 64bit - up to 16 pcie lanes rebar possible
|-
| <!--Name-->Asus PRIME H410M-E
Asrock H470M-HDV/M.2
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus
| <!--Chipset--> with 11th gen Rocket Lake X
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion--> up to 16 pcie lanes
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|}
=====Socket LGA 1700 (2023/ )=====
[[#top|...to the top]]
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->Alder Lake / 14th gen Raptor Lake
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2021 2022 64bit - QoS work to 2 level cpus, P down to E cores -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->Meteor Lake ultra 5 7 1xxH series 1
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2023 2024 64bit 10nm - 3 level cpus, Low Power Island (SOC tile) to E onto P cores -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset--> 15th gen Arrow Lake
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->Lunar lake ultra 5 7 2xxV series 2
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2025 64bit 7nm -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->Nova Lake
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2026 64bit -
|-
| <!--Name-->
| <!--Chipset-->Panther Lake
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2026 64bit - either 44, 484, or 448 tiled cores 18A process - core ultra x9 288h, x7 358H, -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket LGA 1954 (2027/ )=====
[[#top|...to the top]]
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->Nova Lake-S
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->Serpent Lake, Titan Lake, and Razer Lake
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2027
|-
|}
=====Socket LGA (203x/203x)=====
[[#top|...to the top]]
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->MSI
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|}
===Chromebooks===
For most (EOL) cromebooks, the recommended UEFI path forward is to:
*put the device into Developer Mode
*disable firmware write protection
*flash MrChromebox's UEFI Full ROM firmware
*install ChromeOS Flex, Linux, etc
See [https://mrchromebox.tech/#home MrChrome], [https://mrchromebox.tech MrChrome] and the [https://www.reddit.com/r/chrultrabook/ chrultrabook subreddit] for more info
ChromeOS has several different boot modes, which are important to understand in the context of modifying your device to run an alternate OS:
*Normal/Verified Boot Mode
Can only boot Google-signed ChromeOS images
Full verification of firmware and OS kernel
No root access to the system, no ability to run Linux or boot other OSes
Automatically enters Recovery Mode if any step of Verified Boot fails
Default / out-of-the-box setting for all ChromeOS devices
*Recovery Mode
User presented with Recovery Mode boot screen (white screen with 'ChromeOS is missing or damaged')
Boots only USB/SD with signed Google recovery image
Automatically entered when Verified Boot Mode fails
Can be manually invoked:
On Chromebooks, via keystroke: [ESC+Refresh+Power]
On Chromeboxes, by pressing a physical recovery button at power-on
On Convertibles/Tablets, by holding the Power, Vol+, and Vol- buttons for 10s and then release
Allows for transition from Verified Boot Mode to Developer Mode
On Chromebooks/Chromeboxes, via keystroke: [CTRL+D]
On Convertibles/Tablets, via button press: Vol+/Vol- simultaneously
Booting recovery media on USB/SD will repartition/reformat internal storage and reload ChromeOS
Note: The ChromeOS recovery process does not reset the firmware boot flags (GBB Flags), so if those are changed from the default, they will still need to be reset for factory default post-recovery.
*Developer Mode
"Jailbreak" mode built-in to every ChromeOS device
Loosened security restrictions, allows root/shell access, ability to run Linux via crouton
Verified Boot (signature checking) disabled by default, but can be re-enabled
Enabled via [CTRL+D] on the Recovery Mode boot screen
Boots to the developer mode boot screen (white screen with 'OS verification is off' text),
The user can select via keystroke
<pre>
ChromeOS (in developer mode) on internal storage ( [CTRL+D] )
ChromeOS/ChromiumOS on USB ( [CTRL+U] )
Legacy Boot Mode ( [CTRL+L] )
</pre>
Boot screen displays the ChromeOS device/board name in the hardware ID string (eg, PANTHER F5U-C92, which is useful to know in the context of device recovery, firmware support, or in determining what steps are required to install a given alternate OS on the device.
*Legacy Boot Mode
Unsupported method for booting alternate OSes (Linux, Windows) via the SeaBIOS RW_LEGACY firmware
Accessed via [CTRL+L] on the developer mode boot screen
Requires explicit enabling in Developer Mode via command line: sudo crossystem dev_boot_legacy=1
Most ChromeOS devices require a RW_LEGACY firmware update first
Boots to the (black) SeaBIOS splash screen; if multiple boot devices are available, prompt shows the boot menu
Note: If you hear two beeps after pressing [CTRL+L], then either your device doesn't have a valid Legacy Boot Mode / RW_LEGACY firmware installed, or legacy boot capability has not been been enabled via crossystem.
https://www.howtogeek.com/278953/how-to-install-windows-on-a-chromebook/
Chromebooks don’t officially support other OSs. You normally can’t even install as Chromebooks ship with a special type of BIOS designed for Chrome OS. But there are ways to install, if you’re willing to get your hands dirty and potentially ruin everything
[https://mrchromebox.tech/#devices Firmware Compatibility]
[https://wiki.galliumos.org/Hardware_Compatibility Here is the list of hardware that the GalliumOS supports and information on getting Gallium OS on to those devices]
Development on GalliumOS has been discontinued, and for most users, GalliumOS is not the best option for running Linux due to lack of hardware support or a kernel that's out of date and lacking important security fixes.
Meet Eupnea and Depthboot, the successors to Galliumos and Breath [https://eupnea-linux.github.io This is the bleeding edge]
Most older Chromebooks need the write-protect screw removed in order to install MrChromebox's firmware that allows you to install other operating systems. Most newer Chromebooks don't work in the same way as there is no write-protect screw on them.
Very rough guide to '''total''' (i.e. all cores / threads) processor performance (AROS usually uses only the [https://gmplib.org/gmpbench one core])
[[#top|...to the top]]
<pre>
060000 AMD Ryzen 9 7900X (AM5 170W),
056000 AMD Ryzen 9 5950X,
055000 AMD Ryzen 9 5900X3D,
053000 AMD Ryzen 9 5900X (AM4 105W), AMD Ryzen 9 3950X (105W),
044000 AMD Ryzen 7 5800X3D,
042000 AMD Ryzen 9 6900HX, AMD Ryzen 5 5600X3D (AM4 95W), AMD Ryzen 7 PRO 5750GE (AM4 35W),
039000 AMD Ryzen 9 5900HS, Intel Core i7-12700T, AMD Ryzen 7 7735HS (8c16t 45W), AMD 8840U,
038000 AMD Ryzen 7 5800H (FP6 45W), AMD Ryzen 7 6800U, Intel Core i5-12490F, Intel Core i5-12500E,
037000 AMD Ryzen 7 5800HS (FP6 35W), AMD Ryzen 5 8500G 8600GE (AM5 6c12t 35W), AMD Ryzen Z2 (8c16t),
036500 AMD Ryzen 7 5700G (AM4 8c16t 65W), AMD Ryzen 9 6900HS, Intel Core i7-12800H,
036200 AMD Ryzen 7 5700GE (AM4 8c16t 35W), AMD Ryzen Z1 Extreme (top TDP), AMD Ryzen 5 8600G (AM5 65W),
036000 AMD Ryzen 5 3600X (Am4 95W), AMD Ryzen 5 5500 (AM4 65W), AMD Ryzen 5 5600 (65W),
035000 AMD Ryzen 5 6600H, Intel Core i5-12400F,
031000 AMD Ryzen™ 9 8945HS, Ryzen™ 7 8845HS, AMD Ryzen 7 7840U,
030000 AMD Ryzen 7 4800U, AMD Ryzen 4800H, Intel Core i5-11400F, Intel Zeon E5-2697A V4,
029500 AMD Ryzen 5 4500 (AM4 65W), AMD Ryzen 5 3600 (65W), Apple M3 Pro 12c,
029000 AMD Ryzen 5 4600G (AM4 65W), AMD Ryzen 5 PRO 4650GE (AM4 35W), AMD Ryzen 7 PRO 1700X (AM4 95W),
028500 AMD Ryzen 5 PRO 5675U, AMD Ryzen 7 1700 (AM4 65W), AMD Ryzen 7 2700 (65W), Ryzen 3 7540U,
028000 AMD Ryzen 5 PRO 5650U, 5 5560U (FP6 25W 6c12t Zen3), Intel Core i5-13500H, AMD Ryzen 7 4800HS,
027700 AMD Ryzen 9 PRO 7940HS (FP8 65W), AMD 8745HS, AMD Ryzen H255 AI, AMD Ryzen 3 7545U,
027500 AMD Ryzen 3 7736U, AMD Ryzen 5 7640U,
027400 AMD Ryzen 5 8540U, AMD Ryzen 5 PRO 5650GE (AM4 6c12t 35W), AMD Ryzen 5 PRO 4650G (AM4 45W),
027300 AMD Ryzen 7 PRO 4750GE, AMD Ryzen 5 5600H, AMD Ryzen 7 5825U (FP6 8c16t 15W),
027200 AMD Ryzen 5 6600U, AMD Ryzen 7 2700X, AMD Ryzen 5 5600GE (AM4 35W), AMD Ryzen Z1,
027100 AMD Ryzen 7 7730U (FP6 15W 8c16t), AMD Ryzen 7 5800U (FP6 25W 8c16t), Ryzen 9 4900H,
027000 AMD Ryzen 7 PRO 4750U (8c16t), Ryzen 5 7430U (FP6 6c12t), Ryzen 5 PRO 6650U, Intel 10500H,
026500 AMD Ryzen 7 PRO 7840HS (FP7 65W), AMD Ryzen 7 8840HS, AMD Ryzen Z2 Extreme,
025000 AMD Ryzen 5 5600U (FP6 25W hot 6c12t Zen3), AMD Ryzen 5 2600 (65W), Ryzen 5 7530U,
024500 AMD Ryzen 5 4600HS (FP6 35W 6c12t), Apple M1 Pro, AMD Ryzen 5 5625U (FP6 15W 6c12t),
023700 AMD Ryzen 3 PRO 5350GE (AM4 35W), AMD Ryzen 5 3500X (AM4 95W), Intel Core i7-9700,
023500 AMD Ryzen 5 1600X (95W), AMD Ryzen 3 5300GE (AM4 4c8t 35W), AMD Ryzen 7 5700U (FP6 25W 8c16t Zen2),
023200 AMD Ryzen 3 7330U (FP6 15W 4c8t), AMD Ryzen 7 4700U (FP6 25W 8c8t), AMD Ryzen 5 4400G,
023000 Intel Core i7-1255U, Intel Core i7 13700H, Ryzen 7640HS,
022000 AMD Ryzen Z2 Go (4c8t), AMD Ryzen 5 5500U (FP6 25W 6c12t Zen2), Snapdragon 8 Elite,
020500 AMD Ryzen 3 4300G (AM4 65W), AMD Ryzen 3 5450U 5425U, AMD Ryzen 5 PRO 4650U (6c12t),
019500 Intel Core i5-1135G7, AMD Ryzen 5 5500H, AMD Ryzen 5 4600U (FP6 25W 6c), AMD Ryzen 5 2600 (65W),
019250 Intel Core i5-1145G7,
019000 AMD Ryzen 5 3400G (AM4 65W), AMD Ryzen 5 2500X, AMD Ryzen 5 7520U, AMD Ryzen V3C18I (? 15W),
017750 AMD Ryzen 5 3400GE (AM4 35W), Intel Core i5-8400, AMD Ryzen 5 1500X (AM4 65W), Xbox One Series X,
017500 Intel Core i7-6700K, Intel i5-10400, AMD Ryzen 5 4500U (FP6 25W 6c6t), AMD Ryzen 3 5400U,
017000 AMD Ryzen 3 PRO 4350GE (AM4 35W), AMD Ryzen 3 5300U (FP6 25W 4c8t), Intel Core i5-11300H,
016500 AMD Ryzen 7 3750H, AMD Ryzen Embedded V1756B (FP5 45W), AMD Ryzen 3 PRO 4200GE, SD G3 Gen3,
016250 Intel Core i5-1035G7, intel core i5 7600 (4c4t 65W),
016000 AMD Ryzen 5 2400G (AM4 65W), AMD Ryzen 5 3550H, Ryzen 5 PRO 3350GE (4c 8t), Intel Core i5-8500T,
015500 AMD Ryzen Embedded R2544,
015000 AMD Ryzen 3 7320U, Ryzen 7 3700U, Ryzen 3200G (AM4 65W), Intel Core i7-8550U, Intel Core i5-1035G1,
014000 AMD Ryzen 5 2400GE (AM4 35W), Intel Core i7-6700T, AMD Ryzen 5 3550U,
013500 AMD Ryzen 5 3500U (FP5 15W 4c8t), AMD Ryzen 3 4300U, AMD Athlon Gold 4150GE, AMD Ryzen 5 3450U,
013250 AMD Ryzen 3 3200GE (AM4 45W), AMD Ryzen 3 1300X (65W), AMD Ryzen 3 2200G, Xbox One Series S,
013000 AMD Ryzen Embedded V1605B (FP5 25W), AMD Ryzen 2700U, AMD Ryzen R2514,
012500 AMD Ryzen 5 2500U (FP5 25W 4c8t), Intel Core i3-8300T, Intel Xeon X5680, Intel i3-1115G4 (2c4t),
012300 Intel Core i7-8565U, Intel Core i5-8350U, Intel Core i7-8700, Allwinner A733 (2 A76, 6 A55),
012200 ARM Cortex-X3 Prime Snapdragon SD8G2 Gen2 4nm 64-bit Kryo CPU, i5-8250U (4c8t),
012000 AMD Ryzen 3 2200GE, AMD Ryzen 3 1200 (65W), AMD Ryzen 5 3500C,
011500 AMD Ryzen 3 3300U, Intel Core i3-8100T, Intel Core i5-8265U, Intel i5-10210U, CORE i5-10310U,
010500 AMD Ryzen 3 2300U (FP5 25W 4c4t), Allwinner A527 (8 A55), Intel i5 4690K,
010300 Intel Core i7-3630QM, Intel Core i5-6600T, Intel Core i5-4670K,
010200 Intel Core i5-6440HQ, Intel Core i7-3610QM, Snapdragon SD865,
010000 AMD FX-8320E (AM3+ 125W 8c8t), Intel Core i5-7500T, Intel Core i5-4690, Intel i5 4690T,
009000 Spectrum Unisoc Tiger T7280 (T620), Cortex-X2, MediaTek Dimensity 1300 (4 A78, 4 A55),
008700 AMD FX-6130 (AM3+ 90W 6c6t), Intel Core i5-7400T, Intel Core i5-4590T,
008500 Intel Core i5-6500T, AMD Athlon 300GE (AM4, 35W), AMD Athlon Gold 7220U,
008000 AMD Ryzen R1606G (FP5 15W), AMD FX-6300 (AM3 65W 6c6t), Intel Core i5-2500K,
007500 AMD Ryzen 3 3200U, AMD Ryzen 3 3250U, Intel Alderlake ULX N100 / N95,
007200 AMD Ryzen 3 2200U (FP5 25W 2c4t), Intel Core i3-7100T, Intel Twinlakes N150 N200, Xbox(TM) One S,
007100 AMD Ryzen R1505G (FP5, 15W), RK3576 4 A72, 4 A53, Snapdragon XR2 Gen 1, Intel i7-6600U and 7600U,
006600 Qualcomm Snapdragon 888 5G, AMD Athlon 300U (FP5 2c4t 15W), Intel Core i7-7500U, AMD V1202B,
006500 Intel Core i7-6500U, AMD Athlon Gold 3150U, Intel Celeron N5105 (FCBGA1338 15W), SD 685,
006300 Intel Core i3-8130U (15W), Intel Celeron N5095 (FCBGA1338 15W), Intel Core i3-6100T,
006100 Intel Core i5-6300U, Intel Core i5-7200U (2c4t), Intel i7-5500U, Intel Core i7-6600U (2c4t),
006000 Intel Core i5-6200U (2c4t), Intel Core i3-7130U, Intel i7-4500U, Qualcomm Snapdragon 888 4G,
005950 Intel Core i5-4570T, Intel Core i5-5257U, Rockchip RK3588 (4 A76, 4 A55), Snapdragon 7325,
005900 Intel Xeon X5550, Intel Core i5-4300M, MediaTek Dimensity 1200 (4 A78, 4 A55), Unisoc 7255 (T616),
005800 Intel Celeron J4125 J4105 (FCBGA1090 15W), Intel Core i5-3470T, AMD A8-6600K APU, AMD 3015E (2c4t),
005600 Intel Core i5-3360M, Intel Core i7-3520M, Intel Core i5-4210M, Intel Pentium G4600T,
005400 MediaTek Dimensity 900 (2 A78, 6 A55), AMD Athlon Silver 7120U, Snapdragon 860,
005300 AMD PRO A12-9800B 7th Gen APU (FP4 15W), AMD FX-4300 4c4t, AMD Ryzen R1305G,
005250 Intel Core i5-3230M, AMD FX-7600P, Intel Pentium G4400, Unisoc T7200 (Unisoc T606 2 A76, 6 A55),
005200 AMD PRO A10-8770E, AMD A10-9700E, AMD PRO A10-9700B (FP4 15W), Intel Core i3-4130T,
005100 AMD RX-427BB (FP3 15W), AMD A10-9620P, AMD A12-9720P, Intel Core i3-8145U, AMD A12-9830B,
005050 AMD A8-5500 (FM2 65W), AMD A10 PRO-7800B APU, Intel Pentium Silver N5000, Intel Core i7-5500U,
005000 Intel Core i5-5300U, Intel Core i5-3320M (2c4t), Intel Core i5-5350U, Unisoc T618 (2 A73 6 A53),
004900 Intel Core i5-4300U, Intel Core i5-5200U, Intel Core i3-4100M, Snapdragon 662 (SM6115),
004860 Intel Core i7-2620M, Intel Core i7-2640M, AMD Athlon Silver 3050U 3050e, Intel i3-7020U,
004650 Intel Core i5-2520M (2c4t), Intel Core i5-3210M, AMD A10-9600P (FP4 4c 15W), Pentium 4415U,
004625 Intel Core i3-7100U (FCBGA1356 15W), ARM A76 RK3588S, AMD A10-6800B APU,
004600 AMD PRO A8-9600B, AMD PRO A12-8830B, AMD PRO A10-8730B, AMD A12-9700P, Intel Core i3-6100U,
004200 AMD A10-8700P A8-8600P, Intel Core i5-4200U, Intel Core i5-2540M, Intel i3-6006U, Intel i3-4150T,
004000 Intel Core i5-2430M, AMD PRO A8-8600B, AMD 3020e, Intel Core i3-5005U, Mediatek MT6797 Helio X20,
003850 Intel Core i5-2410M (2c4t), Intel Core i3-2120 (LGA1155 65W), Mediatek MT8786,
003800 AMD A10-4600M APU, AMD A10 PRO-7350B APU, AMD A10-5750M APU, Rockchip RK3399,
003600 AMD A8-6500T APU, AMD A8-7410 APU, AMD PRO A6-8550B, AMD A8-5550M (4c4t),
003500 AMD GX-424CC SOC (FT3b 25W 4c4t), ARM A75 Unisoc Tiger T610 (Spreadtrum) (8c 5W),
003400 AMD A10-7300 APU, AMD A6-7310 APU, AMD A8-6410, AMD A10-5745M APU, Intel Core i3-4000M,
003350 Intel Pentium G2020, Intel Core i3-3120M (G2 2c4t), AMD R-464L APU, Intel® Core m5-6Y57 (2c4t),
003300 AMD GX-420CA SOC (FT3 BGA769 25W), AMD A6-9500E, Intel Celeron N4200, AMD A6-5200 ( 25W 2c2t),
003200 AMD A6-6310 APU, AMD A6-6400B APU, AMD A6-8570E, AMD A8-4500M APU, AMD A6-7400K APU
003000 AMD A8-7150B, AMD A9-9410, A9-9420, A9-9425, AMD A6-8500B (FP4 15W), AMD A8-7100,
002900 AMD PRO A6-8530B, AMD A6-8500P, AMD A8-3500M APU, Intel Core i3-2120T,
002700 AMD Embedded GX-420GI (FP4 15W), AMD PRO A6-9500B, AMD GX-415GA, AMD A4-6210 APU,
002600 AMD A6-9225, AMD A8-4555M APU, AMD A4-5000 APU (FT3 15W), AMD A6-9220, AMD A6-3420M APU,
002450 Intel Celeron 2950M, Intel Pentium N3700, Intel Core i3-2350M, Allwinner A523 (8 A55),
002400 Intel Celeron N3150, Intel Core i3-2330M, Intel Xeon W3505, AMD A6-9210, Allwinner H618 (4 A53),
002300 Intel Celeron N3350, AMD A4-9120, AMD A4-9125, Intel Core i3-2310M, Intel Celeron 3865U,
002200 AMD A9-9420e, AMD A6-5350M APU, AMD E2-6110 APU, AMD E2-9000e, Celeron N4500, Intel N3710,
002000 AMD GX-412HC, AMD A4-4300M APU, AMD A6 PRO-7050B APU, AMD A6-4400M APU, AMD A6-7000,
001925 Intel Core2 Duo E6700, Intel Pentium Extreme Edition 965, Intel Core i3-370M, Celeron N4020,
001750 Intel Core i3-2365M 2375M, AMD A4-9120C, Intel Core2 Duo T8300, Qualcomm MSM8939,
001600 AMD GX-222GC (BGA769 FT3b 15W), AMD A4-9120e, AMD Embedded GX-215JJ, AMD A4-4355M APU,
001550 Intel Core2 Duo SL9400 T7600 T6600, AMD E2-3200, AMD A6-9220e, Mediatek MT8783, AMD E2-3800,
001500 AMD GX-218GL SOC, AMD A6-4455M, AMD A4-5150M APU, ARM A55 RK3566 (4c 3W), Intel Core2 Duo T8100,
001400 AMD GX-217GA SOC, ARM Cortex-A53 4c4t H700, AMD A4-3300M APU, Allwinner A133P A64 (4 A53),
001300 AMD Turion 64 X2 Mobile TL-64 TL-62, Intel Core2 Duo T7300, Intel Core2 Duo T5600, AMD RX-216TD,
001250 AMD GX-412TC SOC, AMD A4-3320M APU, AMD Athlon 64 X2 QL-66, Intel Core2 Duo T7200
001200 AMD Athlon 64 X2 2c TK-57, AMD Turion 64 X2 Mobile TL-60 RM-74, AMD E1-2500, AMD E2-7015,
001150 Intel Core2 Duo T5550, Intel Core2 Duo L7500, AMD E2-3000M APU, ARM A35 RK3266, AMD E2-7110,
001100 Intel Core2 Duo T5300, AMD Athlon 64 X2 3800, Intel Core2 Duo E4300, Mediatek MT8127,
001050 AMD E1-6010 APU, Intel Pentium T4300, Intel Celeron N2840,
001050 AMD Athlon 64 FX-57, AMD Athlon 64 X2 Dual-Core TK-55, AMD Turion 64 X2 Mobile TL-52
001000 Intel Core2 Duo T5500, Intel Core2 Duo L7300, Intel Core2 Duo SU9400,
000950 AMD G-T56N, AMD Athlon 64 3100+, AMD E2-2000 APU,
000950 AMD Turion 64 X2 Mobile TL-50, AMD E1-2200 APU, Intel Celeron U3400,
000925 AMD TurionX2 Dual Core Mobile RM-72, AMD Sempron 140
000920 Intel Celeron SU2300, Intel Core2 Duo T5200, AMD Turion 64 X2 Mobile TL-56
000890 AMD E2-1800 APU, AMD Turion 64 X2 Mobile TL-58
000880 AMD G-T56E, AMD G-T48E,
000860 AMD E-450 APU, AMD E-350 APU, AMD Athlon LE-1620
000820 AMD A4-1250 APU, AMD Athlon LE-1600,
000810 AMD E1-2100 APU, Intel Core Duo T2500,
000810 Intel Atom D510, Intel Core2 Duo U7500,
000800 AMD Geode NX 2400+, AMD Turion 64 Mobile ML-42, AMD Athlon II Neo K325,
000760 AMD V140, AMD E1-1200 APU, AMD Athlon 64 3300+,
000730 Intel Core Duo T2400, AMD Turion 64 Mobile MK-38, AMD Sempron 3600+,
000700 Intel Core2 Duo U7600 U7700, AMD Sempron LE-1200, AMD V120
000680 AMD GX-212JC SOC, AMD E-300 APU, AMD A4-1200 APU,
000670 AMD Turion 64 Mobile MK-36 ML-37 ML-40, Mobile AMD Sempron 3800+
000640 Intel Atom N2600, Intel Atom N570, Mobile AMD Athlon 64 3200+
000640 Intel Core Duo T2300, Intel Core Duo T2050,
000630 VIA Eden X2 U4200, AMD Sempron LE-1100, AMD Sempron 3100+ 3600+,
000620 AMD C-70 C70 APU, Intel Atom 330, AMD G-T40N, AMD Athlon Neo MV-40,
000610 Intel Core2 Duo U7300, AMD Athlon II Neo K125 K145,
000600 Intel Atom N550, Intel Pentium 4, AMD Athlon 64 2800+,
000580 AMD C-60 C60, AMD G-T40E, AMD Sempron LE-1250
000530 AMD C-50 C50, Intel Celeron M 723, AMD Sempron 210U,
000490 AMD GX-210JA SOC, PowerPC 970 G5 IBM's 970 server CPU (2c),
000470 Mobile AMD Sempron 3500+, Mobile AMD Athlon XP-M 2200+,
000460 AMD Athlon XP 2500+, AMD Sempron 3500+, Mobile Intel Pentium 4,
000440 Intel Atom D425, Intel Atom N470, POWER 4 PPC,
000410 Intel Pentium M, Intel Celeron M, AMD Sempron 2300+
000400 Intel Atom N450, AMD Sempron 2400+,
000340 Intel Atom D410, AMD G-T52R, AMD C-30, AMD Sempron 2200+
000330 Intel Atom N455, Intel Atom N280, Intel Atom N270 (1c1t 2W), Intel P3,
000320 Freescale NXP QorIQ P1022
000310 PowerPC G4 7447 1Ghz (1c1t 15W), PPC440 core,
000230 PowerPC PPC G3/PPC 750,
000160 Pentium II, Motorola 68060
000080 Intel 80486, Motorola 68030,
000040 Intel 80386,
000030 Motorola 68020
000008 Motorola 68000
</pre>
=== Recommended hardware (32-bit) ===
[[#top|...to the top]]
Recommended hardware is hardware that has been tested with latest release of AROS and is relatively easy to purchase second hand (ie. ebay). This hardware also comes with commitment that compatibility will be maintained with each future release.
If in future decision will be made to drop any of the recommended hardware from the list (for example due to it no longer being available for purchase), such hardware will move to list of legacy supported systems and will have an indicated end of life date so that users have time to switch to other hardware.
{| class="wikitable sortable" width="100%"
| <!--OK-->{{Yes|'''Works well'''}} || <!--Not working-->{{No|'''Does not work'''}} || <!--Not applicable-->{{N/A|'''N/A not applicable'''}}
|-
|}
==== Virtual Hardware ====
{| class="wikitable" width="100%"
! width="20%" |Name
! width="5%" |Storage
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |Ethernet
! width="5%" |Wireless
! width="10%" |Additional hardware
! width="45%" |Comments
|-
| VirtualBox 7.x (Other/Unknown template) || {{Yes|IDE<br/>SATA(AHCI)}} || {{Yes|VMWARESVGA}} || {{Yes|HDAudio}} || {{Yes|PCNET32<br/>E1000}} || NOT APPLICABLE || NOT APPLICABLE || <!--Comments-->
|-
| VMware 16+ (Other32 template) || {{Yes|IDE<br/>SATA(AHCI)}} || {{Yes|VMWARESVGA}} || {{Yes|SB128}} || {{Yes|PCNET32}} || NOT APPLICABLE || NOT APPLICABLE || <!--Comments-->
|-
| QEMU 8.x ("pc" and "q35" machines) || {{Yes|IDE<br/>SATA(AHCI)}} || {{Yes|VESA}} || {{Yes|SB128}} || {{Yes|PCNET32}} || NOT APPLICABLE || NOT APPLICABLE || <!--Comments-->
|-
|}
==== Laptops ====
{| class="wikitable" width="100%"
! width="20%" |Name
! width="5%" |Storage
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |Ethernet
! width="5%" |Wireless
! width="10%" |Additional hardware
! width="45%" |Comments
|-
| ACER Aspire One ZG5 || {{Yes|IDE<br/>SATA(IDE)}} || {{Yes|GMA}} || {{Yes|HDAudio}} || {{Yes|RTL8169}} || {{Yes|ATHEROS}} || NOT APPLICABLE || <!--Comments-->
|-
| Dell Latitude D520 || {{Yes|IDE}} || {{Yes|GMA}} || {{Yes|HDAudio}} || {{Yes|BCM4400}} || {{No|}} || {{Yes|Atheros AR5BXB63}} || * select Intel Core 2 64-bit version, not Celeron 32-bit version <br/> * replace WiFi card to get wireless working
|-
|}
==== Desktop Systems ====
{| class="wikitable" width="100%"
! width="20%" |Name
! width="5%" |Storage
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |Ethernet
! width="5%" |Wireless
! width="10%" |Additional hardware
! width="45%" |Comments
|-
| Fujitsu Futro S720 || {{Yes|SATA(AHCI)}} || {{Yes|VESA}} || {{Yes|HDAudio}} || {{Yes|RTL8169}} || NOT APPLICABLE || NOT APPLICABLE || * no 2D/3D acceleration<br/> * use USB ports at back
|-
|}
==== Motherboards ====
{| class="wikitable" width="100%"
! width="20%" |Name
! width="5%" |Storage
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |Ethernet
! width="5%" |Wireless
! width="10%" |Additional hardware
! width="45%" |Comments
|-
| ASUS P8Z68V LX || {{Yes|SATA(AHCI)}} || {{Yes|VESA}} || {{Yes|HDAudio}}|| {{Yes|RTL8169}} || NOT APPLICABLE || {{Yes|GeForce 8xxx/9xxx}} || * add external PCIe video card for better performance
|-
| Gigabyte GA-MA770T UD3/UD3P || {{Yes|IDE<br/>SATA(AHCI)}} || NOT APPLICABLE || {{Yes|HDAudio}}|| {{Yes|RTL8169}} || NOT APPLICABLE || {{Yes|GeForce 8xxx/9xxx}} || * requires external PCIe video card
|-
| ASUS M2N68-AM SE2 || {{Yes|IDE}} || {{Yes|NVIDIA}} || {{Yes|HDAudio}}|| {{Yes|NVNET}} || NOT APPLICABLE || {{Yes|GeForce 8xxx/9xxx}} || * connecting a disk via SATA connector is not supported at this time <br/> * add external PCIe video card for better performance
|-
| Gigabyte GA-H55M-S2H || {{Yes|IDE<br/>SATA(AHCI)}} || {{Yes|VESA}} || {{Yes|HDAudio}}|| {{Yes|RTL8169}} || NOT APPLICABLE || {{Yes|GeForce 8xxx/9xxx}} || * add external PCIe video card for better performance
|-
|}
==== Legacy supported hardware ====
{| class="wikitable" width="100%"
! width="20%" |Name
! width="5%" |Storage
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |Ethernet
! width="5%" |Wireless
! width="10%" |Additional hardware
! width="10%" |EOL
! width="35%" |Comments
|-
| iMica || {{Yes|IDE}} || {{Yes|GMA}} || {{Yes|HDAudio}}|| {{Yes|RTL8169}} || NOT APPLICABLE || NOT APPLICABLE || 2026-12-31 ||
|-
| Gigabyte GA-MA770 UD3 || {{Yes|IDE<br/>SATA(IDE)}} || NOT APPLICABLE || {{Yes|HDAudio}}|| {{Yes|RTL8169}} || NOT APPLICABLE || {{Yes|GeForce 8xxx/9xxx}} || 2026-12-31 || * requires external PCIe video card
|-
|}
=== Recommended hardware (64-bit) ===
[[#top|...to the top]]
Recommended hardware is hardware that has been tested with latest release of AROS and is relatively easy to purchase second hand (ie. ebay). This hardware also comes with commitment that compatibility will be maintained with each future release.
==== Virtual Hardware ====
{| class="wikitable" width="100%"
! width="20%" |Name
! width="5%" |Storage
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |Ethernet
! width="5%" |Wireless
! width="10%" |Additional hardware
! width="45%" |Comments
|-
| VirtualBox 7.x (Other/Unknown (64-bit) template) || {{Yes|IDE<br/>SATA(AHCI)}} || {{Yes|VMWARESVGA}} || {{Yes|HDAudio}} || {{Yes|PCNET32<br/>E1000}} || NOT APPLICABLE || NOT APPLICABLE || * No accelerated 3D support
|-
| VMware 16+ (Other64 template) || {{Yes|IDE<br/>SATA(AHCI)}} || {{Yes|VMWARESVGA}} || {{Yes|SB128}} || {{Yes|E1000}} || NOT APPLICABLE || NOT APPLICABLE || * No accelerated 3D support
|-
| QEMU 8.x ("pc" and "q35" machines) || {{Yes|IDE<br/>SATA(AHCI)}} || {{Yes|VESA}} || {{Yes|SB128}} || {{Yes|PCNET32}} || NOT APPLICABLE || NOT APPLICABLE || * No accelerated 3D support
|-
|}
==== Motherboards ====
{| class="wikitable" width="100%"
! width="20%" |Name
! width="5%" |Storage
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |Ethernet
! width="5%" |Wireless
! width="10%" |Additional hardware
! width="45%" |Comments
|-
| ASUS P8Z68V LX || {{Yes|SATA(AHCI)}} || {{Yes|VESA}} || {{Yes|HDAudio}}|| {{Yes|RTL8169}} || NOT APPLICABLE || NOT APPLICABLE || * No accelerated 3D support
|-
|}
==References==
[[#top|...to the top]]
{{reflist}}
{{BookCat}}
iczfn5axcimv43ci9z1r3gbixpnaib2
4641133
4641132
2026-06-25T14:48:24Z
Jeff1138
301139
4641133
wikitext
text/x-wiki
{{ArosNav}}
==Introduction==
This a list of computer hardware tested with mostly native AROS installs and, in the recommended sections, of virtual machines
With 64bit support it is recommended 8Gb ram is needed and that SSE 4.1 and AVX are supported in the CPU i.e. from year 2012 for Intel CPUs and 2013 for AMD CPUs. They are x86-64 instruction sets designed to perform the same operations on multiple data items simultaneously, a technique known as Single Instruction, Multiple Data (SIMD). This allows for increased performance in tasks involving parallel computation. SSE 4.1 is a 128-bit SIMD instruction set, while AVX introduced 256-bit SIMD, further enhancing performance. Some apps require these features to run well, like 3D, multimedia decoding or JIT (javascript) in Odyssey web browser. If not the apps may work slower or might fail.
If you have encountered differently (i.e. problems, incompatibilities, faults, annoyances, environment, errors, review of setup etc) please update this information.
Please bear in mind that AROS has only a few hardware driver developers, whilst Linux counts in the tens and Windows in the hundreds.
[[#Laptops]]
[[#Netbook]]
[[#Desktop Systems]]
[[#AMD Sockets]]
[[#Intel Sockets]]
[[#Recommended hardware (32-bit)]]
[[#Recommended hardware (64-bit)]]
=== Laptops ===
[[#top|...to the top]]
* 2006/2007 Dell Latitude D-series laptops - business class machines, good support in Aros, easy to replace wifi card
* 2006 some [https://www.techradar.com/reviews/pc-mac/laptops-portable-pcs/laptops-and-netbooks/toshiba-satellite-pro-a200-28550/review Satellite Pro A200]
* 2008 For the tiny carry anywhere, the early run of Acer Aspire netbooks
Rough estimate from taking a random laptop notebook what you can expect from a Native install of AROS
{| class="wikitable sortable" width="100%"
! width="10%" |Date
! width="5%" |Overall
! width="5%" |Gfx VESA
! width="5%" |Gfx 2D Acceleration
! width="10%" |Gfx 3D Acceleration
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="10%" |Wireless
! width="20%" |Comments
|-
| Before 2002 || Poor to OK || VESA 90% || 2D 10% || {{N/A}} || Audio 10% || 40% || Wired 70% || 2% || Max RAM 512MB
|-
| 2002-2005 || OK || VESA 95% || 2D 10% || 3D 0% || Audio 30% || 70% || Wired 50% || 10% || Max RAM 2GB (for 32bit)
|-
| 2005-2012 || Good || VESA 98% || 2D 60% || 3D 30% || Audio 40% || 80% || Wired 30% || 10% || Max RAM 3Gb (32bit) to 8GB (64bit)
|-
| 2013-2017 || OK || VESA 98% || 2D 30% || 3D 0% || Audio 30% || 60% || Wired 20% || 0% || Max RAM 8GB / 16GB better to go Intel / AMD Ryzen over AMD A series
|-
| 2018-2024 || OK || VESA 98% || 2D 20% || 3D 0% || Audio 40% || 60% || Wired 30% || 0% || Max RAM 32GB better 64bit options if has an internal dvd drive and working ethernet
|-
| 2025-202x || Poor || VESA 95% || 2D 0% || 3D 0% || Audio 0% || 0% || Wired 10% || 0% || Max RAM 64GB AI disruption of previous hardware
|-
|}
3D tests now conducted with apps found in Demos/AROS/Mesa and run at default size (may need to View As -> Show All to see them.
Any laptop with Windows 7(TM) 64bit or higher install, the bios and hard drive set in uefi/gpt mode (install of AROS incompatible)
Most vendor suppliers get OEM (original equipment manufacturers) to make their laptops. These brand name companies purchase their laptops from
*80% ODM (Original Design Manufacturer) such as Quanta, Compal, Wistron, Inventec, Foxconn (Hon Hai), Flextronics and Asus (now Pegatron)
*20% MiTAC, FIC, Arima, Uniwill, ECS, Tonfang Origin and Clevo
{| class="wikitable sortable" width="100%"
| <!--OK-->{{Yes|'''Works well'''}} || <!--May work-->{{Maybe|'''Works a little'''}} || <!--Not working-->{{No|'''Does not work'''}} || <!--Not applicable-->{{N/A|'''N/A not applicable'''}}
|-
|}
====Acer/Gateway/Emachines====
Company founded under the name of Multitech in Taiwan in 1976, renamed to Acer or Acer Group in 1987
Order of build quality (Lowest to highest)
<pre >
Packard Bell
Aspire
Extensa
TimeLine
Travelmate
</pre >
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="2%" |Ethernet
! width="5%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->Travelmate 505 506 507 508 Series || <!--Chipset-->P2 Celeron 466Mhz || <!--IDE-->{{Yes|boots}} || <!--SATA--> || <!--Gfx-->{{Maybe|use VESA Neo Magic Magic Graph 128XD (NM2160)}} || <!--Audio-->{{No|AC97 Crystal CS}} || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->1998 minimal support but no audio etc - 506T, 506DX, 507T, 507DX, 508T
|-
| <!--Name-->TravelMate 340 342 343 345 347 || <!--Chipset-->ALi M1621 with piii || <!--IDE--> || <!--SATA--> || <!--Gfx-->Trident Cyber 9525 || <!--Audio-->{{No|ESS ES1969 Solo-1}} || <!--USB-->2 ALi OHCI USB 1.1 || <!--Ethernet-->a few have Intel e100 || <!--Wireless-->{{N/A}} || <!--Test Distro--> || <!--Comments-->2000 32bit - 340T, 341T, 342T, 342TV, 343TV, 345T, 347TV
|-
| <!--Name-->TravelMate 350 351 352 353 || <!--Chipset-->Ali with piii || <!--IDE-->{{Yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->Trident Cyber Blade DSTN/Ai1 || <!--Audio-->{{No|ali5451}} || <!--USB-->2 USB 1.1 Ali M5237 OHCI || <!--Ethernet-->e100 || <!--Wireless-->Acer InviLink IEEE 802.11b || <!--Test Distro--> || <!--Comments-->2001 32bit very limited support but no support for PCMCIA O2 Micro OZ6933 - 350T, 351TEV, 352TEV, 353TEV
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->TravelMate 610 series 611 612 613 614 || <!--Chipset-->815 P3 || <!--IDE--> || <!--SATA-->{{N/A}} || <!--Gfx-->Intel 82815 cgc || <!--Audio-->AC97 || <!--USB-->USB 1.1 || <!--Ethernet-->Intel e100 pro || <!--Wireless-->{{N/A}} || <!--Test Distro--> || <!--Comments-->2001 32bit - 610TXVi 610T 611TXV 612TX 613TXC
|-
| Aspire 3003LM || SIS AMD 3000 1.8GHz || {{yes}} || {{N/A}} || {{maybe|SIS AGP M760GX (VESA only)}} || {{yes|AC97 SIS codec}} || 3 USB 2.0 || {{yes|SIS900}} || {{no|Broadcom BCM4318 AirForce One 54g}} || Icaros 1.2.4 || 2003 sempron
|-
| Travelmate 2310 Series ZL6 || Intel Celeron M 360 1.4GHz with SiS 661MX || {{yes}} || {{N/A}} || {{maybe|SiS Mirage M661MX (VESA only)}} || {{yes|SIS SI7012 AC97 with realtek ALC203 codec speakers only}} || || {{yes|SIS900}} || {{N/A|LM version has pci card slot but no antenna}} || 2017 Icaros 2.1.1 || 2004 32bit - No USB boot option but boot from DVD - reports of wifi losing connection (isolate/remove the metallic grounding foil ends of the antennas) - 2312LM_L -
|-
| <!--Name-->Aspire 3000 3002LMi 3500 5000 || <!--Chipset-->AMD CPU W-with SIS M760 || <!--IDE--> || <!--SATA--> || <!--Gfx-->SIS 760 || <!--Audio-->SIS || <!--USB--> || <!--Ethernet-->SIS 900 || <!--Wireless-->{{No|Broadcom BCM4318 swap for Atheros}} || <!--Test Distro--> || <!--Comments-->2005 32bit
|-
| <!--Name-->Aspire 3050 5020 5050 || <!--Chipset-->AMD Single and Turion MK-36 Dual and RS480 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Use VESA - RS482M Xpress 1100 or RS485M Xpress 1150 || <!--Audio-->HD Audio Realtek ALC883 || <!--USB--> || <!--Ethernet-->8139 || <!--Wireless-->Atheros 5006G or Broadcom BCM 4318 || <!--Test Distro--> || <!--Comments-->2005 32bit MK36 gets very hot
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->TravelMate 2410 2420 2430 series || <!--Chipset-->915GM || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel Mobile 915GMS 910GML || <!--Audio-->Intel AC97 ICH6 with ALC203 codec || <!--USB-->4 USB2.0 || <!--Ethernet-->Realtek RTL-8139 || <!--Wireless-->Atheros 5005GS || <!--Test Distro--> || <!--Comments-->2005 32bit 2428AWXMi -
|-
| <!--Name-->Acer Aspire 3610 - WISTRON MORAR 3614WLMI || <!--Chipset-->Intel 915 || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Yes|Intel GMA 2D and 3D}} || <!--Audio-->{{yes|[http://www.amiga.org/forums/showpost.php?p=644066&postcount=13 AC97]}} || <!--USB--> || <!--Ethernet-->{{yes|RTL 8139 8139C+}} || <!--Wireless-->{{Maybe|Atheros AR5001X+, AR5BMB5 or Broadcom 4318}} || <!--Test Distro--> Icaros 1.2.4 || <!--Comments-->2005 32bit with good support [http://ubuntuforums.org/showthread.php?p=6205188#post6205188 wifi issues]
|-
| <!--Name-->TravelMate 2480 series 2483 WXMi (HannStar J MV4 94V) 2483NWXCi Aspire 3680, 3690 || <!--Chipset-->940GML i943 with Celeron 430 1.77GHz - 14.1" || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes| }} || <!--Gfx-->{{Yes|2D and 3D openGL 1.x - Tunnel 181 gearbox 104 scores}} || <!--Audio-->{{Yes|HD Audio with ALC883 codec playback}} || <!--USB-->{{Yes|3 USB 2.0}} || <!--Ethernet-->{{No|Marvell 88E8038 yukon sky2}} || <!--Wireless-->{{No|Atheros 5k AR5005G AR5BMB5 mini pci}} suspect laptop hardware issues || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2006 Works well shame about the internet options - noisy fan - poor battery life - no boot option for TI based mass storage sd card - Max 2GB memory - LCD Inverter Board IV12090/T-LF -
|-
| <!--Name-->TravelMate 2490 series 2492WXMi || <!--Chipset-->940GML || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Yes|Intel 945 2D and 3D tunnel 164 gearbox 105}} || <!--Audio-->{{Yes|HD Audio}} || <!--USB--> || <!--Ethernet-->{{Maybe|Broadcom BCM4401}} || <!--Wireless-->{{No|Atheros AR5005GS suspect hardware issue}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2006 32bit - 15inch screen - strange curved up at ends keyboard style - overall plastic construction - Atheros AR5005G(s) -
|-
| <!--Name-->Gateway ML6227B MA7 || <!--Chipset-->Celeron M 520 1.6Ghz with 945GM || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{Yes|945GM 2D and 3D tunnel 169 gearbox 132}} || <!--Audio-->{{No|HDA Intel with STAC9250 codec}} || <!--USB--> || <!--Ethernet-->{{No|Marvell 88E8038}} || <!--Wireless-->{{No|8187L but swap ath5k mini pcie}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2006 15.4 ultrabrite widescreen - Wifi Switch on side Fn/F2 -
|-
| <!--Name-->Acer Aspire 5630-6796 6288 BL50 || <!--Chipset-->T5200 T5500 Intel® Core™2 Duo T7200 T7400 T7600 || <!--IDE-->{{Yes| }} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Yes|Intel® GMA 950 with S-Video out with 2D and 3D}} || <!--Audio-->{{Yes|HDAudio with ALC883? codec}} || <!--USB-->{{Yes|4 USB}} || <!--Ethernet-->{{yes|Broadcom BCM4401}} || <!--Wireless-->{{No|Intel 3945abg swap for Atheros 5K}} || <!--Test Distro-->Tiny AROS || <!--Comments-->2006 - 64bit 39.1 cm (15.4" 1280 x 800) - 2 DDR2-SDRAM slots max 4GB - green mobo?? -
|-
| <!--Name-->Acer Aspire 5633WMLI BL51 || <!--Chipset-->T5500 with Intel® 945PM/GM Express || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE mode}} || <!--Gfx-->{{Yes|Nvidia Go 7300 with 2D and 3D}} || <!--Audio-->{{Yes|HD Audio with Realtek codec}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{yes|Broadcom 440x}} || <!--Wireless-->{{No|Intel 3945 swap for Atheros 5k}} || <!--Test Distro-->Tiny Aros || <!--Comments-->2007 64 bit dual core2 - 15.4 WXGA screen - ddr2 max 4gb - OrbiCam no support - ENE chipset SD card - blue mobo?? -
|-
| <!--Name-->Acer Aspire 9410 9420 || <!--Chipset-->Intel Core Duo with 945PM Express || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes| }} || <!--Gfx-->{{Yes|2D NVIDIA GeForce Go 7300 - 128 MB VRAM G72M}} || <!--Audio-->{{Yes|Intel HD audio with codec}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{Yes|rtl8169 8111 }} || <!--Wireless-->{{No|Intel 3945ABG but could swap with atheros 5k}} || <!--Test Distro-->Icaros 2.3 || <!--Comments-->2007 32bit - 17in TFT 1,440 x 900 WXGA+ - 2 ddr2 sodimm slots max 4gb -
|-
| <!--Name-->eMachines E510 series KAL10 || <!--Chipset-->Intel Celeron M 560 2.13Ghz with PM965 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel x3100 || <!--Audio-->{{Yes|Intel with codec}} || <!--USB-->Intel || <!--Ethernet-->{{No|Broadcom BCM5906M}} || <!--Wireless-->{{No|Atheros G AR5BXB63 bios issue??}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2007 32bit very budget machine with InsydeH20 bios and F10 boot menu
|-
| <!--Name-->ACER Aspire 5920 [http://tim.id.au/laptops/acer/aspire%205920g.pdf 5920G] || <!--Chipset-->Santa Rosa Core 2 Duo T7300 T7500 later T9300 with GM965 and PM965(G) Express || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Maybe|use VESA for X3100M or 8600M GS (rev a1) 9500M GT 256MB vram (G) but some AMD/ATI RV635 M86 HD 3650}} || <!--Audio-->{{No|HD Audio with realtek alc268, [https://forums.opensuse.org/t/no-sound-on-acer-aspire-5920g/32392 ALC883] or Realtek ALC1200 / alc888s codec ICH8}} || <!--USB-->{{Yes|USB2 }} || <!--Ethernet-->{{No|Broadcom BCM5787M}} || <!--Wireless-->{{unk|Intel 3945ABG 4965 or Atheros 9k AR9285}} || <!--Test Distro-->Deadwood test iso 2023-01 2023-11 || <!--Comments-->2008 64bit boot with 'noacpi' or 'noioapic' - 15.4in 1280 x 800 pixels 16:10 - BMW Designworks ‘Gemstone’ design - over 3.0kg with options for 8-cell or 6-cell batteries - 2 SODIMM DDR2 667MT/s max 4GB - synaptics touchpad -
|-
| <!--Name-->Acer A0521 Ao721 || Athlon II Neo K125 + AMD M880G || {{N/A}} || {{maybe| }} || {{maybe|ATI Radeon HD 4225 (VESA only)}} || {{No|Conexant}} || {{Maybe| }} || {{no|AR8152 l1c}} || {{unk|AR9285 ath9k}} || AspireOS 1.7 || 2006 64bit possible
|-
| <!--Name--> Extensa 5630Z || <!--Chipset-->T6600 with Intel GL40 Express || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe|IDE mode}} || <!--Gfx--> {{Yes|Intel GMA 4500M HD (2D)}} || <!--Audio--> {{Yes|HD Audio}} || <!--USB--> {{Yes|USB 2.0}} || <!--Ethernet--> {{No|Broadcom BCM 5764M}} || <!--Wireless--> {{No|RaLink RT2860}} || <!--Test Distro--> || <!--Comments-->2008 64bit
|-
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Aspire 5250 series 5253 BZ400 BZ602 || <!--Chipset-->E350 || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{no|VESA 2D for AMD HD6310}} || <!--Audio-->{{yes|HDaudio for codec Conexant CX20584}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{no|Atheros AR8151}} || <!--Wireless-->{{no|Atheros 9k AR5B97}} || <!--Test Distro--> || <!--Comments-->2011 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name-->Aspire V5 V5-121 V5121 AO725 One 725 || <!--Chipset-->AMD C-70 C70 || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{no|VESA for AMD 6290G}} || <!--Audio-->{{no|Realtek ALC269 codec}} || <!--USB-->{{yes|2 x USB2}} || <!--Ethernet-->{{no|Broadcom}} || <!--Wireless-->{{no|Broadcom}} || <!--Test Distro--> || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name-->Aspire V5-122P MS2377 || <!--Chipset-->C-70 C70 with M55, AMD A4-1250 or A6 1450 up to 1.4Ghz || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->AMD 8210 || <!--Audio-->{{unk|HDaudio with codec}} || <!--USB-->{{maybe|FCH USB EHCI OHCI}} || <!--Ethernet-->{{Maybe|rtl8169 but LAN/VGA Combo Port Cable (AK.LAVGCA 001) or MiniCP port to Acer Converter Cable (Mini CP to VGA/LAN/USB) (NP.OTH11 00C) needed}} || <!--Wireless-->{{unk|Atheros 9k AR9565}} || <!--Test Distro-->Aros One || <!--Comments-->2012 64bit but no sse4 or avx - 26w battery internal, extension possible - 11.6in 1366 x 768 ips touchscreen - 7mm hd ssd - 2gb ddr3l soldered with 1 slot free max 4GB - bios hacking needed for virtualisation -
|-
| <!--Name-->Packard Bell EasyNote TE69 TE69KB 522 || <!--Chipset-->slow E1-2500, E2-3800 2c2t Dual or A4-5000 4c4t Quad both soldered BGA769 (FT3) on Hudson-2 FCH || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe|Use IDE mode}} setting AHCI to IDE mode - boots if UEFI set to Legacy || <!--Gfx-->{{Maybe|VESA 2D for ATI Radeon 8120 8240, 8320, 8330 or 8280 islands}} || <!--Audio-->{{Yes|HDAudio with ALC282 0x10ec, 0x0282 codec but not HDMI}} || <!--USB-->{{Yes|Bios, Boot, set Boot mode to Legacy, nothing from USB3}} || <!--Ethernet-->{{No|Atheros AR8171 AR8175 or Broadcom BCM57780}} || <!--Wireless-->{{unk|Atheros AR9565 0x1969 0x10a1}} || <!--Test Distro-->Aspire OS Xenon and AROS One 1.6 usb || <!--Comments-->2013 64bit with sse4.1 and AVX - 15.6in washed out screen big netbook - Boots with noacpi after using F2 to enter EFI firmware and f12 boot device - 2 ddr3 sodimm slots max 16Gb -
|-
| <!--Name-->ASPIRE Acer Aspire ES1-520 521 522 Series N15C4 ES1-523 || <!--Chipset-->AMD AMD E1-7010, A8-7410 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{partial|VESA for RADEON R5}} || <!--Audio-->{{no|Realtek ALC 233 or CX20752 HD AUDIO CODEC}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{no|Atheros AR8151 Gigabit or Broadcom 590x}} || <!--Wireless-->{{no|Realtek RTL8187 or 8812BU}} || <!--Test Distro-->Aros One || <!--Comments-->2015 64bit with sse4.1 and AVX - 2 ddr3l slots - keyboard connected to top case -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Nitro 5 an515-42 || <!--Chipset-->Ryzen 2500u || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->AMD rx560x || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2018 64bit -
|-
| <!--Name-->aspire 3 A315-41 || <!--Chipset-->Ryzen 2500u || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->AMD Vega || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2018 64bit -
|-
| <!--Name-->swift 3 sf315-41 || <!--Chipset-->Ryzen 2500u || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->AMD Vega || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2018 64bit -
|-
| <!--Name-->Acer Aspire 3 A315-23 || <!--Chipset-->AMD Ryzen 3020e, r3 3200u || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D for AMD || <!--Audio-->{{unk|HDAudio with codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe| }} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2019 64bit -
|-
| <!--Name-->Aspire 3, 5 A515-44-R0ZN || <!--Chipset-->AMD Ryzen 5 4500u || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D for AMD Radeon || <!--Audio-->{{unk|HDAudio with ALC codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2020 64bit - 14in or 15.6" 1080p - 19v round charging - [https://www.youtube.com/watch?v=vr0tC3QJWxk repair], 4gb soldered with 1 ddr4 sodimm slot -
|-
| <!--Name-->Swift 3 SF314-42 series N19C4 , Swift SF315-4 || <!--Chipset-->Ryzen 5 4500U, 7 4700U|| <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D for AMD || <!--Audio-->{{unk|HDAudio with codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2020 64bit 1080p - small round ac 19v 3.42A or usb-c - mobo FH4FR LA-J731P -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->Acer Swift 3 SF314-43, Swift SF315-41 || <!--Chipset-->Ryzen 7 5700U || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D for AMD || <!--Audio-->{{unk|HDAudio with codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2021 64bit 1080p - small round ac or usb-c -
|-
| <!--Name-->Aspire 5 A515-45 || <!--Chipset-->r7 5700U || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->AMD || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2021 64bit - 15.6in 1080p - asus round ac -
|-
| <!--Name-->Aspire 5 A515-47 || <!--Chipset-->ryzen 5 5625U, || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->AMD || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2021 64bit - 15.6in 1080p - asus round ac -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
====Asus====
[[#top|...to the top]]
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->Asus L8400-K Medion MD9467 || <!--Chipset-->Intel desktop 850MHz || <!--IDE--> || <!--SATA--> || <!--Gfx-->S3 Savage MX || <!--Audio-->{{No|ESS allegro 1988}} || <!--USB--> || <!--Ethernet-->Realtek 8139 || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2001 32bit
|-
| <!--Name-->Asus L2000 L2400 L2D Series Medion 9675 || <!--Chipset-->Athlon 4 mobile || <!--IDE--> || <!--SATA--> || <!--Gfx-->use vesa sis630 || <!--Audio-->{{No|sis7018}} || <!--USB--> || <!--Ethernet-->sis900 || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2002 32bit
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->x51R X51RL || <!--Chipset-->Duo T2250 T2330 with RS480 || <!--IDE--> || <!--SATA-->{{N/A}} || <!--Gfx-->{{Maybe|use VESA RC410 [Radeon Xpress 200M]}} || <!--Audio-->{{Yes|HD with codec}} || <!--USB-->{{Maybe|boots and detects}} || <!--Ethernet-->{{Yes|RTL-8139}} || <!--Wireless-->{{No|Atheros AR5006EG AR5111 ath5k AzureWave AW-GE780 - could be ATI Chipset}} || <!--Test Distro-->Icaros 2.2, deadwood 2021, || <!--Comments-->2003 32bit 15.4 WXGA - 19v barrel - ESC boot select - F2 bios -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Asus R2H Ultra Mobile PC UMPC || <!--Chipset-->Celeron 900Mhz 910GML || <!--IDE--> || <!--SATA--> || <!--Gfx-->GMA900 || <!--Audio-->Ac97 ALC880 || <!--USB--> || <!--Ethernet-->realtek 8169 8101e || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2004 32bit [https://www.youtube.com/watch?v=Jm4fOrqyj3g boots]
|-
| <!--Name-->Asus A3 series A3F Ergo Ensis 211 RM || <!--Chipset-->P-M 1.6GHz to Core Duo with 950 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel 945 || <!--Audio-->Ac97 ALC655 || <!--USB--> || <!--Ethernet-->Realtek 8100CL 10/100 || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2004 32bit only
|-
| <!--Name-->Z33 || <!--Chipset-->915 || <!--IDE--> || <!--SATA--> || <!--Gfx-->915GM || <!--Audio-->HD Audio ALC880 || <!--USB--> || <!--Ethernet-->Realtek 8139 || <!--Wireless-->Intel 2915ABG || <!--Test Distro--> || <!--Comments-->2005 32bit Z33A Z33AE N5M N5A
|-
| Z70A Z70V Z70Va M6A z7000 z7000a || i915 + ICH6 || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{yes|mobile 915GML}} || <!--Audio-->{{no|ICH6 HD Audio}} || <!--USB-->{{yes|USB2.0}} || <!--Ethernet-->{{no|Marvell 88E8001}} || {{no|Intel PRO 2200BG Fn / F2}} || Icaros 1.3 || 2005 32bit
|-
| [http://www.progweb.com/en/2010/09/linux-sur-un-portable-asus-a6jm/ A6jm] A6JC || 945GM || IDE || SATA || {{yes|nVidia GeForce Go 7600 G70}} || {{no|HD Audio}} || {{yes|USB}} || {{yes|RTL8111 8168B}} || {{no|Intel 3945 ABG}} || Icaros 1.2.4 || 2006 32bit only
|-
| <!--Name-->F3Jc || <!--Chipset-->945PM || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->G72M Quadro NVS 110M, GeForce Go 7300 || <!--Audio-->D audio || <!--USB--> || <!--Ethernet-->realtek 8169 8111 || <!--Wireless-->Intel 3945 || <!--Test Distro--> || <!--Comments-->2007 32bit -
|-
| <!--Name-->X50GL F5GL || <!--Chipset-->T5800 with 965 || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe}} || <!--Gfx-->{{Maybe|use VESA 2d - Nvidia 8200M G84 runs hot}} || <!--Audio-->{{No|HD Audio MCP79 with codec}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No|MCP79}} || <!--Wireless-->{{No|Atheros AR5B91 AW-NE77}} || <!--Test Distro-->Icaros 2.2 || <!--Comments-->2008 64bit not much support no display with nouveau - 19v barrel - ddr2 max 4gb -
|-
| <!--Name-->ASUS G50 & G51 series G50V G50Vt G51V G51VX G51J G51Jx G50VT X1 X5 ROG || <!--Chipset-->AMD64 with MCP71 || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes}} || <!--Gfx-->nVidia GeForce 9800M GS (G94M) up to GT200 [GeForce GTX 260M] (G92M) || <!--Audio-->Nvidia HD Audio with codec || <!--USB--> || <!--Ethernet-->{{No|Atheros L1C atl1c}} || <!--Wireless-->Atheros G or Intel || <!--Test Distro-->Icaros 2.3 || <!--Comments-->2009 64bit not all GPUs are failing but a much higher % failing early, 8x00 and 9x00 G84, G86, G92, G94, and G96 series chips dying - ddr2 max 4gb -
|-
| <!--Name-->M50V M50 series || <!--Chipset-->Intel Core 2 Duo P8400 or T9400 with Intel PM45 ICH9 || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|BIOS set to compatibility IDE mode}} || <!--Gfx-->NVIDIA GeForce 9600M GS or 9650M GT || <!--Audio-->HDAudio with Realtek ALC663 || <!--USB-->USB2 || <!--Ethernet-->{{Yes|rtl8169 realtek 8169 8111C}} || <!--Wireless-->{{unk|Intel 5100 or Atheros AR928X}}|| <!--Test Distro-->AROS One 2.0 USB || <!--Comments-->2009 64bit - 15.40 inch 16:10, 1680 x 1050 glossy - the "Infusion" design - heavy 3kg - ddr2 ram max 4gb -
|-
| <!--Name-->Series F9 F9E F9dc F9f F9j F9s || <!--Chipset-->965GM || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{maybe|Vesa}} || <!--Audio-->{{yes|HD Audio ALC660 playback}} || <!--USB-->{{yes|works}} || <!--Ethernet-->{{yes|RTL8169 }} || <!--Wireless-->{{no|intel 3495 not working}} || <!--Test Distro-->Icaros 1.41 || <!--Comments-->2009 64bit - ddr2 max 4gb -
|-
| P52F SO006X || i3-370M || IDE || SATA || {{yes|nVidia G92 [GeForce 9800 GT] (2D)}} || {{no|Intel HD Audio}} || {{yes|2 USB2.0}} || {{no|Atheros AR8121 AR8113 AR8114 (l1e)}} || {{dunno}} || Icaros 1.3 || 2010 64bit - ddr3 slot -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Asus
* X53U MB Ver K53U or K52U Asus K53U MB Ver K53U
* A53U XT2 X53B MB ver: K53BY (compal)
|| <!--Chipset-->Slow atom like speed E-350 (2011), E-450 (2011) on AMD M780G, much slower C-50 C50 (2012), C-60 C60 on the AMD A50M dark brown plastic build || <!--IDE-->{{N/A|}} || <!--SATA-->{{yes|Set IN Bios IDE MODE}} || <!--Gfx-->{{Maybe|use VESA ATi 6310M, 6320M later 6250M or 6290M}} || <!--Audio-->{{Yes|HD audio with alc269 codec Altec Lansing® Speakers}} || <!--USB-->{{Yes|3 x USB2}} || <!--Ethernet-->{{Unk|rtl8169 with RTL8111 phy}} || <!--Wireless-->{{unk|Atheros half height ar9285}} || <!--Test Distro-->2016 Icaros 2.1.2 and 2018 AROS One 1.6 USB || <!--Comments-->2011 64bit does not support AVX or SSE 4.1 - 15.6in 1368 x 768 dull 50% srgb screen - f2 bios setup, esc boot drive - 5200 or 7800 mAh battery covers ASUS K53S K53E X54C X53S K84L X53SV X54HR K53F X53U laptops - 2 DDR3L slots max 8Gb - 19v barrel 5.5 / 2.5 mm -
|-
| <!--Name-->Asus K53T, Asus A53Z X53Z
|| <!--Chipset-->AMD A4-3305M on AMD M780G, A6-3420M dark brown plastic build || <!--IDE-->{{N/A|}} || <!--SATA-->{{yes|Set IN Bios IDE MODE}} || <!--Gfx-->{{Maybe|VESA 2D for AMD 6520G, 7670M}} || <!--Audio-->{{Yes|HD audio with codec}} || <!--USB-->{{Yes|3 x USB2}} || <!--Ethernet-->{{Yes|rtl8169 with RTL8111 phy}} || <!--Wireless-->{{No|Atheros half height}} || <!--Test Distro-->AROS One USB || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 - 15.6in 1368 x 768 dull 50% srgb screen - f2 bios setup, esc boot drive - 2 DDR3L slots max 8Gb - 19v barrel 5.5 / 2.5 mm - Altec Lansing® Speakers -
|-
| <!--Name-->X55U X401U X501U 1225B || <!--Chipset-->slow C-60 C60, C-70 C70 or E1 1200 E2 1800 || <!--IDE--> || <!--SATA--> || <!--Gfx-->6290G || <!--Audio-->{{No| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->Realtek 8111 8169 || <!--Wireless-->{{unk| Atheros AR9485}} || <!--Test Distro--> || <!--Comments-->2013 64bit does not support AVX or SSE 4.1 - 11.6" display - ram soldered -
|-
| <!--Name-->Asus A43TA A53TA K53TA XE2 A73T || <!--Chipset-->AMD A4-3300M, A6 3400M (laptop chip) || <!--IDE-->{{N/A|}} || <!--SATA-->{{yes|Set IN Bios IDE MODE}} || <!--Gfx-->{{Maybe|use VESA AMD Radeon HD 6520G Integrated + HD 6470M (1GB GDDR3)}} || <!--Audio-->{{yes| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{Unk|}} || <!--Wireless-->{{No|Atheros}} || <!--Test Distro--> || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 - f2 bios setup, esc boot drive -
|-
| <!--Name-->X102BA || <!--Chipset-->Llano E1 1200 || <!--IDE-->{{N/A}} || <!--SATA-->{{yes|ide bios setting}} || <!--Gfx-->Radeon HD 8180 || <!--Audio-->{{No| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->RTL8101E RTL8102E || <!--Wireless-->{{unk| Qualcomm Atheros AR9485}} || <!--Test Distro--> || <!--Comments-->2013 64bit does not support AVX or SSE 4.1 - 10.1” Touchscreen - special asus 45w ac adapter -
|-
| <!--Name-->K55N, K75DE || <!--Chipset-->AMD a6 4400M A8 4500M || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->AMD 7640G || <!--Audio-->HD Audio with ALC codec none through ATi Trinity HDMI || <!--USB-->{{maybe| }} || <!--Ethernet-->rtl8169 || <!--Wireless-->{{unk| Atheros AR9485}} || <!--Test Distro--> || <!--Comments-->2013 64bit does support AVX or SSE 4.1 - 17.3-inch -
|-
| <!--Name-->X452EA X552EA F552E || <!--Chipset-->AMD E1 2100 or A4 5000M A8 4500M A10 4600M with A || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{Maybe|use VESA for AMD ATI Sun XT Radeon HD 8330 8670A 8670M 8690M}} || <!--Audio-->{{Yes|AMD FCH Azalia rev 02 with ALC898 codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{{Yes|Realtek RTL8111 8168 8411}} || <!--Wireless-->{{unk|Atheros AR9485}} || <!--Test Distro-->2016 Icaros 2.1 || <!--Comments-->2013 64bit may support avx kabini trinity -
|-
| <!--Name-->Asus X555Y || <!--Chipset-->AMD A6-7210 A8-7410 || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|2.5" and mSATA form factors using SATA Rev 3.0 interface }} || <!--Gfx-->{{Maybe|VESA 2D for AMD R5}} || <!--Audio-->{{unk|HD Audio codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{Maybe|rtl8169 Realtek}} || <!--Wireless-->{{no| }}Realtek || <!--Test Distro--> || <!--Comments-->2015 64bit does support AVX or SSE 4.1 - 4gb soldered with 1 ddr3 slot - silver-colored plastic - internal battery -
|-
| <!--Name-->Asus X555B X555DG X555S X555U X555YI X555LAB || <!--Chipset-->Intel Core i5-4210U to || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|2.5" and mSATA form factors using SATA Rev 3.0 interface }} || <!--Gfx-->{{Maybe|VESA 2D for Intel}} || <!--Audio-->{{No|HDAudio with coxenant and realtek alc codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{Maybe|Realtek}} || <!--Wireless-->{{no| }}Realtek || <!--Test Distro--> || <!--Comments-->2015 64bit does support AVX or SSE 4.1 - 4gb soldered with 1 ddr3 slot - silver-colored plastic - internal battery -
|-
| <!--Name-->Asus X555D || <!--Chipset-->AMD A10-8700P || <!--IDE-->{{N/A}} || <!--SATA-->{{unk|2.5" and mSATA form factors using SATA Rev 3.0 interface }} || <!--Gfx-->{{Maybe|VESA 2D for AMD R6}} || <!--Audio-->{{unk|HD Audio codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|Realtek}} || <!--Wireless-->{{No|Realtek}} || <!--Test Distro--> || <!--Comments-->2016 64bit - 15.6in 1366 x 768 - 4gb soldered with 1 ddr3 slot - silver-coloured plastic - internal battery - keyboard swap problematic -
|-
| <!--Name-->ASUS X555Q || <!--Chipset-->AMD® Bristol Ridge A10-9600P 7th Gen, A12-9720p || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|2.5" and mSATA form factors using SATA Rev 3.0 interface}} || <!--Gfx-->{{Maybe|R5 + Radeon™ R6 M435DX Dual Graphics with VRAM GCN 3}} || <!--Audio-->{{unk| }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no|Realtek 8821AE}} || <!--Test Distro--> || <!--Comments-->2017 64bit - FHD 15.6 1920x1080 - 37W battery internal - 4gb soldered with 1 ddr3 slot - internal battery -
|-
| <!--Name-->ASUS M509ba || <!--Chipset-->AMD A9-9425 || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|2.5" and mSATA form factors using SATA Rev 3.0 interface}} || <!--Gfx-->{{Maybe|Vesa 2d for RADEON R5}} || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{No| }} || <!--Test Distro--> || <!--Comments-->2020 64bit - 15.6in 1366 x 768 - 1 ddr4 sodimm slot max 16Gb - 19VDC 2.37A Max 45W 4.0mm x 1.35mm - keyboard swap problematic -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->ExpertBook P1410, ASUS ExpertBook P1 P1510CD, Expertbook Y1511CD || <!--Chipset-->Ryzen 3 3200U, Ryzen 5 3500U || <!--IDE-->{{N/A}} || <!--SATA-->Nvme || <!--Gfx-->{{Maybe|Vesa 2d for AMD}} || <!--Audio-->{{unk|HDaudio with codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{No| }} || <!--Test Distro--> || <!--Comments-->2019 64bit 14in or 15.6in 768p to 1080p - keyboard swap problematic - 19V 3.42A asus barrel connector 4.0MM X 1.35MM 4phi -
|-
| <!--Name-->ASUSTeK ASUS EXPERTBOOK L1 L1400CDA, L1500CDA - 19v 3.42a 4.5phi Barrel with centre pin Outer 4.5mm Inner 3mm asus special untested EXA1203XH, EXA1203YH, EXA1208UH, PA-1650-30, PA-1650-78, PA-1650-93, ADP-65GD B, ADP-65DW B (Euro) || <!--Chipset-->'''tested''' Ryzen 5 3500U - '''untested''' Ryzen 3 3200U, 3250U || <!--IDE-->{{N/A}} || <!--SATA-->{{no|1 Nvme m.2 slot will not boot with sata3 m.2, optional 1 sata hdd with ribbon cable, no dvd drive}} || <!--Gfx-->{{Maybe|Vesa 2d for AMD vega 3, 8}} || <!--Audio-->{{unk|HDaudio 0x15de 0x15e3 with ALC256 codec 0x10ec 0x0256}} || <!--USB-->{{maybe|USB3 1 usb-c and 3 usb-a }} || <!--Ethernet-->{{maybe|rtl8169 Realtek RTL8111HSH-CG }} || <!--Wireless-->{{No| }} || <!--Test Distro-->3500U with AROS One 64bit 1.2 usb installed to m.2 sata on another machine || <!--Comments-->2019 64bit 14in or 15.6in 1080p - keyboard swap problematic - up to 8Gb ddr4 sodimm soldered on board and 1 slot - micro sd card slot on some models - 42Whr B31N1915 C31N1915 C31N2204 - hold down F2 and press power for bios setup -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
==== Dell ====
[[#top|...to the top]]
Order of build quality (Lowest to highest)
<pre >
Studio
Inspiron
Vostro
XPS
Alienware
Precision
Latitude
</pre >
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="10%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="5%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->Latitude CP 233GT, CPi d233xt d266xt D300XT a366xt, CPt S400GT S500GT S550GT S600GT S700ST, CPt C333GT C400GT || <!--Chipset-->Neo Magic || <!--IDE--> || <!--SATA--> || <!--Gfx-->Use VESA - Neo magic Magic Media 2160 2360 256ZX || <!--Audio-->{{No|crystal pnp 4237b or magic media 256zx sound nm2360}} || <!--USB-->USB 1.1 || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{N/A}} || <!--Test Distro--> || <!--Comments-->1998 32bit Low-Density 16-chip 144p 144-pin 32Mx64 3.3V SODIMM -
|-
| <!--Name-->Dell Latitude CPx H450GT H500GT H Series, CPt V433GT V466GT V600, Inspiron 5000 || <!--Chipset-->Intel 440BX with Pentium 3M (CPx) or Celeron (CPt) || <!--IDE-->{{{Yes| }} || <!--SATA-->{{N/A| }} || <!--Gfx-->{{Maybe|Use Vesa - ATi Rage Pro Mobility M1}} || <!--Audio-->{{No|ESS ES1978 Maestro 2E Canyon 3D}} || <!--USB-->{{Yes|1 slot 1.1 only}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{N/A| }} || <!--Test Distro-->NB May 2013 || <!--Comments-->1998 32bit - 3 pin PA-6 PA6 power adapter plug - CDROM DVD Cxxx family media bay accessories untested
|-
| <!--Name-->Latitude C500 C600 (Quanta TM6) Inspiron 4000 7500, CPx J Series || <!--Chipset-->440BX ZX/DX || <!--IDE-->{{yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{partial|ATI Rage 128Pro Mobility M3 (VESA only)}} || <!--Audio-->{{no|ES1983S Maestro 3i}} || <!--USB-->{{yes|USB 1.1 only}} || <!--Ethernet-->{{N/A|some models had mini pci e100}}|| <!--Wireless-->{{N/A|a few came with internal antenna wiring}} || <!--Test Distro--> || <!--Opinion-->1999 square 3 pin charger PA9 PA-9 - C/Dock II untested - C/Port untested - Parallel to Floppy cable untested - CPx J600GT J650GT J700GT J750GT J800GT J850GT
|-
| <!--Name-->Latitude C510 C610 Insprion 4100 PP01L 2600 || <!--Chipset-->i830 and 1GHz+ P3-M || <!--IDE-->{{yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{partial|use VESA - ATI Radeon Mobility M6}} || <!--Audio-->{{No|AC97 CS4205}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{yes|3Com Etherlink}} || <!--Wireless-->{{Maybe|internal antenna wiring for an Atheros mini pci card}} || <!--Test Distro--> || <!--Opinion-->2000 poor build quality - hard to find in good working order
|-
| <!--Name-->Latitude C400 || <!--Chipset-->Intel 830 || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|use VESA Intel 830 CGC}} || <!--Audio-->{{No|ac97 Crystal 4205}} || <!--USB--> || <!--Ethernet-->{{Yes|3Com 3c905C TX/TX-M}} || <!--Wireless-->{{N/A| }} || <!--Test Distro--> || <!--Comments-->2000 Slim for the time - no media bays
|-
| <!--Name-->Latitude C640 (Quanta TM8) C840 Inspiron 8k2 8200 i8200 precision m50 || <!--Chipset-->P4M with 845EP || <!--IDE--> || <!--SATA--> || <!--Gfx-->use VESA if ATi - use nouveau if 64mb Nvidia Gforce 4 440 Go || <!--Audio-->AC97 CS4205 || <!--USB--> || <!--Ethernet-->3com 905c || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2001 C640 had one fan so was noisy and hot - C840 had 2 fans and ran slightly cooler but fan noise louder
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| Latitude D400 || P-M 82845 || {{yes|82801 ide}} || {{N/A}} || {{partial|VESA only}} || {{yes|AC97 Audio playback only}} || {{maybe|USB 2.0}} || {{maybe|PRO 100 VM (KM)}} || {{no|BCM4318 AirForce one 54g replace with atheros 5k mini pci}} || <!--Test Distro--> Icaros 1.2.4 || 2003 32bit might boot from USB stick but won't boot from USB-DVD - no sd card slot - power plug style -
|-
| Latitude D500 / D505 PP10L, Inspiron 510m
|| 855GME
* revA00
* revA03
* revA06
| {{yes|IDE but needs the Dell adapter}} || {{N/A}} || {{partial|855GM Gfx (VESA only)}} || {{Yes|Intel AC97 with IDT STAC 9750 codec playback head phones only}} || {{maybe| }} || {{yes|Intel PRO 100 VE}} || {{no|Broadcom BCM4306 but exchange with atheros g in panel on laptop bottom}} || <!--Test Distro-->2016 Icaros 2.1.1 || 2003 - 14 / 15 inch XGA 4:3 screen - plastic build - no sd card slot - boots from bay optical drive - not powering on/off with ac adapter is a [http://www.geekzone.co.nz/forums.asp?forumid=37&topicid=30585 mobo fault of PC13 SMT 1206 ceramic cap hot] suggest [http://www.die4laser.com/D505fix/ 0.1uF 50V instead] - pc2700 333Mhz ram 1Gb max -
|-
| Latitude D505 (some) || VIA VT8237 VX700 || {{yes|IDE}} || || {{partial|VESA 2d on ATI RV350 Radeon 9550}} || {{no|VIA AC97 with codec}} || {{maybe|VIA USB glitchy}} || {{yes|VIA VT6102 Rhine-II}} || {{no|Intel 2200g Calexico2}} || <!--Test Distro--> || 2003 32bit little support - diagnostics pressing holding the Fn key, press the Power ON button (battery removed). Check the LEDs pattern - cmos battery behind flap in laptop battery slot -
|-
| <!--Name-->Inspiron 1000 || <!--Chipset-->SIS || <!--IDE--> || <!--SATA-->{{N/A}} || <!--Gfx-->{{maybe|use VESA SIS}} || <!--Audio-->{{Yes|AC97 SIS with AD1981B codec playback}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{Yes|SIS 900 but}} || <!--Wireless-->{{N/A}} || <!--Test Distro-->2016 Icaros 2.1 || <!--Comments-->2004 32bit [https://forum.level1techs.com/t/my-time-with-icaros-desktop-and-what-i-am-doing-as-a-dev-contributor-also-some-other-shit/113358 aremis using it]
|-
| <!--Name-->Inspiron 1100 PP07L || <!--Chipset-->845 || <!--IDE-->{{Yes| }} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Maybe|use VESA Intel 845G}} || <!--Audio-->{{Yes|AC'97 playback}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{Maybe|Broadcom 4401}} || <!--Wireless--> || <!--Test Distro-->Icaros 1.5 || <!--Comments-->2004
|-
| <!--Name-->Inspiron 8500 5150 || <!--Chipset-->P4 855GM || <!--IDE-->{{Yes| }} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Yes|Nvidia 5200 Go - VESA if intel gfx}} || <!--Audio-->{{Yes|MCP AC97 with SigmaTel 9750}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{Yes|Broadcom 440x}} || <!--Wireless-->{{No|Broadcom 4306 rev 02 use Atheros Mini PCI}} || <!--Test Distro-->Icaros 2.3 || <!--Comments-->2004 32bit P4 runs well but hot
|-
| Latitude X300 PP04S small, slim and light case
|| 855GME
* revA00 Intel ULV 1.2 Ghz
* revA01 Intel ULV 1.4Ghz
| {{yes|IDE internal and will boot cd/dvd through dock PR04S}} || {{N/A}} || {{partial|855GM Gfx (VESA only)}} || {{Yes|Intel AC97 with STAC 97xx codec but no audio out of the dock}} || {{maybe|works but dock usb ports and usb DVD PD01S not detected}} || {{No|Broadcom BCM5705M gigabit}} || {{no|Broadcom BCM4306 later intel - replace with atheros in the underside}} || <!--Test Distro-->2016 Icaros 2.1.1, 2020 AROS One 1.6 usb, || 2003 12.1" 1024 x 768 - 19.5v PA-10 or PA-12 dell - ACPI works but bad s3 ram suspend sleep - no sd card boot - 1Gb max sodimm ddr 2700
|-
| <!--Name-->Latitude D600 (Quanta JM2) PP05L - 600m
|| <!--Chipset-->82855 PM i855
* reva00
* revA01
* revA02
* revA03
* revA04
| <!--IDE--> {{yes}} || <!--SATA--> {{N/A}} || <!--Gfx-->{{Maybe|Use VESA - ATI Radeon RV250 Mobility FireGL 9000}} || <!--Audio-->{{Yes|AC97 - STAC 9750}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{no|Broadcom BCM5705}} || <!--Wireless-->{{no|Intel 2100 or Broadcom BCM4306 - swap for Atheros panel in base}} || <!--Test Distro-->2011 Icaros 1.3 and [http://www.amiga.org/forums/archive/index.php/t-62187.html 1.4.1 and 2016 2.1.1] || <!--Opinion-->2003 32bit 14inch using pc2100 memory with Caps light blinking is usually a memory error - Dell D505 D600 power up pressing the case docking port -
|-
| <!--Name-->Latitude D600 (Quanta JM2) || <!--Chipset-->82855 PM i855 || <!--IDE--> {{yes}} || <!--SATA--> {{N/A}} || <!--Gfx-->{{Yes|2D only vidia NV28 GeForce4 Ti 4200 Go 5200 Go 5650 Go}} || <!--Audio-->{{Yes|AC97 - STAC 9750}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{no|Broadcom BCM5705}} || <!--Wireless-->{{no|Broadcom BCM4306 mini pci - swap for Atheros}} || <!--Test Distro--> Icaros 1.3 and [http://www.amiga.org/forums/archive/index.php/t-62187.html 1.4.1] || <!--Opinion-->2003 32bit 14" - solder joints on the bios chip (press down f7/f8 keys) - RAM clean with eraser - memory cover plate maybe apply some pressure -
|-
| <!--Name-->D800 (Compal LA-1901) || <!--Chipset-->Intel 855 || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio-->AC97 || <!--USB-->{{maybe| }} || <!--Ethernet-->Broadcom 570x || <!--Wireless-->Broadcom 4309 || <!--Test Distro--> || <!--Comments-->2004 32bit - trackpoint type pointing device -
|-
| <!--Name-->D800 || <!--Chipset-->Intel 855 || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{No|Nvidia }} || <!--Audio-->AC97 || <!--USB-->{{maybe| }} || <!--Ethernet-->Broadcom 570x || <!--Wireless-->Broadcom 4309 || <!--Test Distro--> || <!--Comments-->2004 32bit 15inch 39cm
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Inspiron 1200 2200 PP10S Latitude 110L m350 1.3Ghz || <!--Chipset-->Intel 915GM || <!--IDE--> {{yes|UDMA boots cd or DVD and installs to HDisk}} || <!--SATA--> {{N/A}}|| <!--Gfx-->{{yes|Intel GMA900 (2D and 3D openGL 1.x) Gearbox 56}} || <!--Audio-->{{yes|Intel AC97 playback only}} || <!--USB-->{{maybe|USB 2.0}} || <!--Ethernet-->{{yes|Intel PRO 100 VE}} || <!--Wireless-->{{no|BroadCom BCM4318 - swap for Atheros mini PCI in base panel}} || <!--Test Distro-->Icaros 1.4.5 || <!--Comments-->2005 single core 32bit 14" 4:3 1024 768 XGA screen - heavy 6 lbs - PA16 barrel 19V 3.16A AC adapter - battery life 4cell 29WHr lasts 2 hours - 256mb soldered with 1 ddr pc2100 sodimm 1gb max -
|-
| <!--Name-->Inspiron 1300 business B130 home PP21L Latitude 120L B120 by Compal - Inspiron 630m || <!--Chipset-->Intel Celeron M360 1.4GHz, M370 1.50 GHz, M380 1.73GHz || <!--IDE-->{{Yes|boots cd or DVD and installs to HDisk}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Yes|GMA 915 2D and 3D openGL 1.x tunnel 172 gearbox 70}} || <!--Audio-->{{Yes|HD Audio playback ear phones only}} || <!--USB-->{{maybe|works but waiting boot fail with AROS One usb version}} || <!--Ethernet-->{{Yes|Broadcom 440x}} || <!--Wireless-->{{No|intel 2200 or BCM4318 swap for Atheros mini pci underside - one antenna lead for main wifi}} || <!--Test Distro-->2016 Icaros 2.1.2, 2020 AROS One 1.6 usb, || <!--Comments-->2005 32bit single core - 14.1″ XGA 4:3 or 15.4" WXGA wide 1280 x 800 matte - ddr2 sodimm ram 2gb max - PA-16 19v psu tip 7.4mm * 5mm - f10 boot select f1 f2 bios
|-
| Latitude X1 PP05S || PP-M GMA915 rev A00 1.1GHz non-pae || {{yes|ide 1.8in zif/ce under keyboard}} || {{N/A}} || {{Maybe|Vesa for Intel 915GM}} || {{yes|AC97 6.6 playback only with STAC codec}} || {{maybe|USB 2.0 but partial boot to blank screen}} || {{No|Broadcom 5751}} || {{no|Intel 2200BG - swap for Atheros mini pci under keyboard palm rest - disassembly of all laptop}} || <!--Test Distro-->Icaros 2.3 dvd iso image virtualbox'd onto usb, Aros One 1.5 and 1.8 usb (2022) || 2005 32bit 12.1" 4:3 1024 x 768 - sd slot not bootable - 256mb soldered to board and 1 sodimm max 1GB ddr2 under keyboard - F12 bios boot F2 - pa-17 pa17 19v octagonal psu port
|-
| Latitude D410 PP06S
*rev A00
*A01, A02
*A03
|| GMA915 1.6GHz Pentium® M 730, 1.7GHz, 750 1.86GHz & 760 2.0GHz, 770 2.13GHz || {{yes|caddy and adapter needed 2.5" - remove hdd and write}} || {{N/A}} || {{Yes|Intel 915GM 2D and 3D OpenGL 1.3 tunnel 170 and gearbox 75}} || {{yes|AC97 playback only with STAC 9751 codec}} || {{maybe|works but will not boot from USB-DVD or AROS One 1.5 usb version}} || {{No|Broadcom 5751}} || {{no|Intel 2915ABG or later 2200BG - swap for Atheros mini pci under keyboard}} || <!--Test Distro-->2015 Icaros 1.4, 2016 2.1.1 and AROS One 1.5 usb, || 2005 32bit 12.1" 4:3 1024 x 768 - no sd card slot - PR06S dock base
|-
| <!--Name-->Latitude D510 (Quanta DM1) || <!--Chipset-->915GM socket 479 || <!--IDE--> {{N/A}} || <!--SATA--> {{partial|IDE mode}}|| <!--Gfx-->{{yes|Intel GMA 915 2D and 3D}} || <!--Audio-->{{Yes|AC97 STAC 975x}} || <!--USB--> {{maybe|USB 2.0}} || <!--Ethernet-->{{no|Broadcom BCM5751}} || <!--Wireless-->{{no|Intel PRO Wireless 2200BG swap Atheros mini pci in base}} || <!--Test Distro--> || <!--Comments-->2005 14.1" 32bit single core Intel Celeron M 1.6GHz Pentium M 730 1.73Ghz - squarish 3:2 - issues with 3rd party battery 4 quick flashes of red led with 1 final green
|-
| <!--Name-->Latitude D610 (Quanta JM5B) PP11L
|| <!--Chipset-->910GML 915GM with mobile 1.6 to 2.26ghz
* Rev A0x
* Rev A0x
* Rev A07 1.73Ghz
| <!--IDE--> {{N/A}} || <!--SATA--> {{partial|IDE mode}}|| <!--Gfx-->{{yes|Intel GMA 915 2D and 3D tunnel 174 gearbox 74}} || <!--Audio-->{{yes|Intel AC97 speaker head phones playback only with stac codec}} || <!--USB--> {{maybe|USB 2.0}} || <!--Ethernet-->{{no|Broadcom BCM5751}} || <!--Wireless-->{{no|Intel 2200BG or Broadcom mini pci under keyboard, swap wifi card for atheros 5k}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2005 32bit 14" 1024 x 768 - very noisy clicky trackpad buttons - one dimm slot under keyboard and other in underside 2GB 533Mhz 667Mhz DDR2 max -
|-
| <!--Name-->Latitude D610 (Quanta JM5B) 0C4717 REV A05, 0K3879 REV.A00 || <!--Chipset-->915GM || <!--IDE--> {{N/A}} || <!--SATA--> {{partial|IDE mode}}|| <!--Gfx-->{{Maybe|Use VESA 2d - Ati X300 no radeon 2d}} || <!--Audio-->{{yes|Intel AC97}} || <!--USB--> {{maybe|USB 2.0}} || <!--Ethernet-->{{no|Broadcom NetXtreme 57xx Gigabit replace with Atheros 5k}} || <!--Wireless-->{{no|Intel PRO Wireless 2200BG mini pci use Atheros 5k}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2005 32bit 14" 1024 x 768 - very noisy clicky trackpad buttons - 19.5v psu
|-
| <!--Name-->Latitude D810 (Quanta ) || <!--Chipset-->915GM || <!--IDE-->{{Yes| }} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Maybe|Use VESA 2d - Ati X300 RV370 M22 later x600}} || <!--Audio-->{{yes|Intel AC97 stereo playback only idt 9751 codec}} || <!--USB--> {{maybe|USB 2.0 but no boot from usb on 1.5}} || <!--Ethernet-->{{no|Broadcom NetXtreme 57xx Gigabit}} || <!--Wireless-->{{no|Intel PRO Wireless 2200BG mini pci replace with Atheros 5k}} || <!--Test Distro-->2017 Icaros 2.1.1, aros one 1.5 || <!--Comments-->2005 32bit 15.4" F12 one time boot menu - 19.5v 90w psu ideal - battery not same as later dx20 ones -
|-
| <!--Name-->Inspiron 6000 6400, E1505 PP20L
*A00 Pentium M
*A0? Core Duo
|| <!--Chipset-->GM945 with PM 1.73Ghz, T2050 or T2060 || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe|}} || <!--Gfx-->{{Maybe|vesa 2d - Ati 9700, x1300 RV515 M52, x1400 or nvidia go 7300 on mxm board}} || <!--Audio-->{{yes|HD Audio IDT 9200}} || <!--USB-->{{Yes|usb boot }} || <!--Ethernet-->{{Yes|Broadcom BCM4401 B0}} || <!--Wireless-->{{No|Intel 2200 3945 - swap for Atheros 5k}} || <!--Test Distro-->2016 Icaros 2.1, AROS One 1.6 || <!--Comments-->2006 mostly 32bit - 15.4 inch glossy - 2 ddr2 sodimm slots - broadcom bcm92045 bluetooth detected but no support - 19.5v dell psu socket - f2 bios setup, f12 boot order -
|-
| <!--Name-->Inspirion E1705 9200 9300 9400 PP12L PP14L || <!--Chipset-->945GM || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->proprietary Dell card/socket format Nvidia 6800, ati X300 or nVidia 7900GS gpu 3d corrupt || <!--Audio-->{{Maybe| }} || <!--USB-->{{Maybe| }} || <!--Ethernet-->{{Maybe|Broadcom BCM4401}} || <!--Wireless-->Intel 3945 swap with Atheros 5k mini pcie || <!--Test Distro--> || <!--Comments-->2006 [http://amigaworld.net/modules/news/article.php?mode=flat&order=0&item_id=6481 increasing vertical lines issues] 32bit -
|-
| <!--Name-->Studio XPS M1210 || <!--Chipset-->GM945 with Core Duo to intel C2D T5500, T7400 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->nVidia G72M 7300 7400m || <!--Audio-->HD Audio IDT 92xx || <!--USB-->{{Maybe| }} || <!--Ethernet-->{{Maybe|Broadcom BCM4401 B0}} || <!--Wireless-->{{No|Broadcom BCM4311 - swap for Atheros 5k mini pci-e}} || <!--Test Distro--> || <!--Comments-->2006 64bit - 2 ddr2 slots max 4Gb -
|-
| <!--Name-->Inspiron 1501 PP23LA Latitude 131L || <!--Chipset-->AMD Sempron 1.8GHz Turion MK-36 or X2 1.6Ghz TL-50 or TL-56 on ATI RS480 || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|Use VESA 2d - ATI 1150 (x300) RS482M Mobility Radeon Xpress 200}} || <!--Audio-->{{Yes|HD audio with stac 92xx codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{Maybe|Broadcom bcm 4401}} || <!--Wireless-->{{No|Broadcom bcm4311 replace with Atheros 5k}} || <!--Test Distro-->Icaros 1.5 || <!--Comments-->2006 64bit 15.4 inch matt 16:10 1280x800 WXGA -
|-
| <!--Name-->Inspiron 6400 (Quanta FM1)
*A00 Pentium M
*A0? Core Duo
*A08 Core2 Duo
|| <!--Chipset-->GM945 with BGA479 (socket M) T2050 1.6Ghz, T2060 1.60Ghz, T2080 1.73Ghz much later T5500 1.66Ghz || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{Yes|GMA 2D and 3D}} || <!--Audio-->{{Yes|HD Audio with IDT 92xx codec}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{Yes|Broadcom BCM4401 B0}} || <!--Wireless-->{{No|Broadcom BCM4311 swap for Atheros 5k mini pci-e under keyboard}} || <!--Test Distro-->deadwood 2019-04-16 iso || <!--Comments-->2006 mostly 32bit - 15.4" glossy - sd card - front multimedia keys - dvd rw - generic dell keyboard - coin cr2032 bios battery under keyboard -
|-
| <!--Name-->Inspiron 640m PP19L XPS M140 e1405 || <!--Chipset-->Core Solo T2050, T2300 Duo 1.83GHz T2400 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel GMA 950 || <!--Audio-->HD Audio IDT || <!--USB--> || <!--Ethernet-->Broadcom BCM4401-B0 100Base || <!--Wireless-->{{No|Intel 3945 or Broadcom 43xx, swap for Atheros 5k - Wireless Internet ON or OFF press the Function key + F2}} || <!--Test Distro--> || <!--Comments-->2006 32 bit - 12.1 LCD CCFL WXGA 1280x800 up to 14.1 inch 16:10 1440x900 pixel, WXGA+ UltraSharp - supports also SSE3 on duos -
|-
| <!--Name-->Latitude D420 (Compal LA-3071P) PP09S
|| <!--Chipset-->945
* revA00 Solo 1.2Ghz ULV U1400
* revA01 Duo 1.06Ghz u2500
* revA02 Duo 1.2Ghz
| <!--IDE-->{{yes|ZIF/CE 1.8" slow under battery, ribbon cable}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{yes|Intel GMA950 - 2D and 3D opengl tunnel 138 gearbox 103}} || <!--Audio-->{{yes|HD Audio with STAC 92xx playback speakers head phones only)}} || <!--USB-->{{yes|2 and external usb optical drive works}} || <!--Ethernet-->{{no|Broadcom BCM5752}} || <!--Wireless-->{{No|Intel 3945 mini pcie - swap Atheros 5k in base panel}} || <!--Test Distro-->Icaros Desktop 1.4 || <!--Opinion-->2006 32bit only - 12.1" 1280x800 - PR09S dock base rev02 DVD-RW usb boots - 1GB DDR2 2Rx16 max in base panel - f2 setup f5 diagnostics f12 boot list -
|-
| <!--Name-->Latitude D520 PP17L
|| <!--Chipset-->
* 64bit rev A01, A02 945GM Core2 Duo 1.83Ghz to 2.3Ghz
* 32bit rev A00, A01 940GML Solo later Duo T2400
| <!--IDE-->{{yes| Philips SDR089, Philips CDD5263, TEAC DW224EV, Optiarc AD-5540A, HL-DL-ST GSAT21N, TSSTcorp TS-L632D}} || {{Yes|bios sata set to ide mode}} || {{Yes|Intel GMA 900 series 2D and OpenGL1 3D tunnel 210 gearbox 153 teapot 27}} || {{Yes|HD audio with STAC 9200 codec}} || {{Yes|Boots and detects USB2.0}} || {{Yes|Broadcom 4400}} || {{No|Broadcom BCM4312 BCM4321 Dell 1390 / 1490 mini pcie - easy to replace with atheros 5k in base panel}} || <!--Test Distro-->Icaros 1.4 and 2.2 and both AROS One 1.8 and AROS One x64 1.1 USB boot || 2006 mostly 64bit 4:3 aspect ratio 14.1 (XGA 1024x768) or later 15 inches (XGA+ 1400 by 1050) - F2 enter bios F12 choose boot - 19.5v dell tip pa-12 charger - bios coin cell cr2032 battery socketed in base panel -
|-
| <!--Name-->Latitude D620 (Compal LA-2792) PP18L
|| <!--Chipset-->945GMS
* rev A00 all Core Duo's 32 bit
* rev A0x all Core 2 Duo's 64 bit
| <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->Intel GMA 950 (2D and 3D tunnel gearbox opengl1 || <!--Audio-->{{yes|HD Audio playback}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{no|Broadcom BCM5752}} || <!--Wireless-->{{no|Intel 3945 mini pcie swap with Atheros 5k}} || <!--Test Distro-->AspireOS Xenon || <!--Opinion-->2006 64bit AROS capable with later revisions - 14" 1280 x 800
|-
| <!--Name-->Latitude D620
|| <!--Chipset-->Intel i945
* revA00 all Core Duo's 32 bit
* revA01 all Core 2 Duo's 64 bit
| <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->Nvidia 7300, 7600 NVS 110M G72 || <!--Audio-->{{dunno|HD Audio with STAC 9200 codec}} || <!--USB--> || <!--Ethernet-->{{No|Broadcom BCM5752}} || <!--Wireless--> {{dunno}} || <!--Test Distro--> || <!--Opinion-->2007 1440x900 screen - LA-2792P Rev.2.0 - DT785 UC218 Fan/ Heatsink (64bit) -
|-
| <!--Name-->Latitude D820 (Quanta JM6)
|| <!--Chipset-->945GMS 940GML
* rev A00
* rev A01
| <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Yes|Intel GMA 2D and 3D tunnel 195 - 100? gearbox 156}} || <!--Audio-->{{Yes|HD Audio with STAC 9200 playback}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No|Broadcom BCM5752}} || <!--Wireless-->{{No|BCM4310 replace with mini pcie atheros 5k}} || <!--Test Distro-->2016 Icaros 2.1.2 || <!--Opinion-->2007 widescreen 15 inch 1280 x 800 matte - -
|-
| <!--Name-->Latitude D820 (Quanta JM)
|| <!--Chipset-->945GMS 940GML
* revA00
* revA01
| <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Maybe|Nvidia NVS 110M 120M G72}} || <!--Audio-->{{Yes|HD Audio STAC 9200}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No|Broadcom BCM5752}} || <!--Wireless-->{{No|BCM4310 swap with Atheros 5k mini pcie}} || <!--Test Distro--> || <!--Opinion-->2007 64bit 15.4 1650x1050 WXGA or WSXGA+ or 1920x1200 WUXGA -
|-
| <!--Name-->Dell Latitude D531 15" || <!--Chipset-->AMD Turion X2 TL56 or TL60 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{Maybe|Use VESA - ATi xpress X1270}} || <!--Audio-->HD Audio with IDT codec || <!--USB-->{{Maybe| }} || <!--Ethernet-->{{No|Broadcom 57xx}} || <!--Wireless-->Intel 3945 or Dell Wireless 1390, 1505 or BCM4311 mini pcie || <!--Test Distro--> || <!--Comments-->2007 64bit possible - no trackpoint - fails and goes wrong often -
|-
| <!--Name-->Latitude D430 PP09S
|| <!--Chipset-->945 with Core2 Duo C2D U7500 1.06GHz U7600 1.2GHz U7700 1.33GHz
* rev A00
* rev A01
* rev A02
| <!--IDE-->ZIF PATA IDE 1.8inch under battery and ribbon cable - slow use USB instead || <!--SATA-->{{N/A}} || <!--Gfx-->{{yes|945GML 2D and 3D opengl 1.x 171 tunnel 105 gearbox}} || <!--Audio-->{{yes|STAC 92xx HD Audio speaker and ear phone - mono speaker}} || <!--USB-->{{yes|3 }} || <!--Ethernet-->{{no|Broadcom BCM5752}} || <!--Wireless-->{{no|Intel 4965 AGN or 3945 ABG mini pci-e underside with Atheros 5k mini pci-e}} || <!--Test Distro-->Aspire 1.8 || <!--Comments-->2007 64bit capable - sd card not supported - 19.5v PA12 power adapter - 12.1" 1280x800 matte - f2 setup f5 diagnostics f12 boot list -
|-
| <!--Name-->Latitude D530 || <!--Chipset-->GM965 + ICH8 || <!--IDE-->{{N/A}} || <!--SATA-->{{partial|IDE mode}}|| <!--Gfx-->{{partial|nVidia Quadro NVS 135M 2D 3d glitches G86}} || <!--Audio-->{{partial|HD Audio with STAC 9205 head phones only}} || <!--USB-->{{yes|USB 2.0}}|| <!--Ethernet-->{{no|Broadcom BCM5755M}} || <!--Wireless-->{{no|Intel PRO Wireless 3945ABG swap with Atheros 5k}} || <!--Test Distro-->Icaros 1.4.5 || <!--Comments-->2007 [http://amigaworld.net/modules/news/article.php?mode=flat&order=0&item_id=6481 ] cool air intake from underneath needed with pa-10 or pa-3e 90w psu required - standard 4:3 ratio aspect screen -
|-
| <!--Name-->Latitude D630 (Compal LA-3301P) PP18L
|| <!--Chipset-->GM965 + ICH8 T7250 2.0Ghz T7300
* revA00
* revA01
| <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{yes|Intel GMA X3100 (2D only, no external monitor)}} || <!--Audio-->{{yes|HD Audio STAC 9205 but speaker and head phones}} || <!--USB-->{{yes|4 USB 2.0}}|| <!--Ethernet-->{{no|Broadcom BCM5755M}} || <!--Wireless-->{{no|Broadcom BCM4312 swap with pci-e Atheros 5k under keyboard}} || <!--Test Distro--> || <!--Comments-->2007 64bit possible - F12 to choose boot option - 2 ddr2 sodimm max 4G - 4400mah 48Wh battery lasts 2 hours - 6600mah 73Wh lasts just over 3 hours
|-
| <!--Name-->Latitude D630
|| <!--Chipset-->GM965 + ICH8
* revA00 [http://amigaworld.net/modules/news/article.php?mode=flat&order=0&item_id=6481 ] GPU heatpad, no copper
* revA01 0DT785 heatsink
| <!--IDE-->{{N/A}} || <!--SATA-->{{partial|IDE mode}}|| <!--Gfx-->{{partial|use VESA as nVidia NVS 135M 3d corrupts 0.7 tunnel 0.25 gearbox G86}} || <!--Audio-->{{partial|HD Audio with STAC 9205 head phones only}} || <!--USB-->{{yes|USB 2.0}}|| <!--Ethernet-->{{no|Broadcom BCM5755M}} || <!--Wireless-->{{no|Intel PRO Wireless 3945ABG swap with Atheros 5k mini pcie}} || <!--Test Distro-->Icaros 1.4.5 || <!--Comments-->2007 64bit
|-
| <!--Name-->Latitude D830
|| <!--Chipset-->965GM with Core2
* revA00
* revA01
| <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{Yes|GM965 crestline 2d and 3d tunnel 115}} || <!--Audio-->{{Yes| }} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No| }} || <!--Wireless-->{{Maybe|replace with Atheros 5k mini pcie}} || <!--Test Distro-->Icaros || <!--Comments-->2007 15 inch 1280 x 900 but updating the LCD to WXGA or WSXGA+ could be better - 2 ddr2 sodimm -
|-
| <!--Name-->Latitude D830 || <!--Chipset-->ICH8, Core2 DUO T7800 @ 2.60GHz || <!--IDE-->{{N/A}} || <!--SATA-->Intel ICH8M Serial ATA || <!--Gfx-->nVidia Quadro NVS 140M G86 || <!--Audio-->{{yes|HD Audio with STAC 92XX codec}} || <!--USB-->{{yes|USB 2.0}} || <!--Ethernet-->Broadcom NetXtreme 57xx Gigabit || <!--Wireless-->Intel Wireless 4965AGN swap with Atheros 5k || <!--Test Distro-->Icaros 2.03 || <!--Comments-->2007 64bit 15." - FN,F2 or FN,F8 or FN,F12
|-
| <!--Name-->XPS M1710 || <!--Chipset-->945PM with T2400 T2600 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->proprietary Dell card socket format GTX 7950 || <!--Audio-->HD Audio with STAC 92XX codec || <!--USB--> || <!--Ethernet-->Intel 1000 or Broadcom BCM5752 || <!--Wireless-->Intel swap with Atheros 5k || <!--Test Distro-->Aros One 64bit || <!--Comments-->2007 64bit 17.3" workstation type WXGA+ screen 1920x1200 - 2 ddr-2 667Mhz sodimm slots,
|-
| <!--Name-->XPS M1730 || <!--Chipset-->965 with T7200 T7600 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->GTX 7950 || <!--Audio-->HD Audio with STAC 92XX codec || <!--USB--> || <!--Ethernet-->Intel 1000 || <!--Wireless-->Intel swap with Atheros 5k || <!--Test Distro--> || <!--Comments-->2008 64bit 17" workstation type WXGA+ screen manufactured by AU Optronics poor viewing angles, unevenly lit, light leakage, 2 ddr-2 800Mhz slots,
|-
| <!--Name-->Latitude E6410 P27LA, E6510 PP30LA, E6310 || <!--Chipset-->Intel Core i5-520M to i7-620M i7 820QM but no sse4.1 or AVX || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Maybe|NVidia NVS 3100M GT218 2D but 3D through external monitor}} || <!--Audio-->{{Maybe|HD Audio IDT 92HD81}} || <!--USB-->{{Yes|USB2 }} || <!--Ethernet-->{{No|Intel}} || <!--Wireless-->{{No|Broadcom or Intel 6200AGN or Link 6300}} || <!--Test Distro-->Icaros 1.3 || <!--Comments-->2010 64 bit - 14.1” WXGA+ up to 15.6in 15.6” FHD 1080p - 2 ddr3l 1333Mhz max 8Gb - 90w dell charger -
|-
| <!--Name-->Inspiron M5030 || <!--Chipset-->rev A01 AMD V120, V140 rev A0? V160 M880G || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE}} || <!--Gfx-->{{Maybe|VESA RS880M Radeon HD 4225, 4250}} || <!--Audio-->{{Yes|HD audio with ALC269q codec}} || <!--USB--> || <!--Ethernet-->{{No|Atheros AR8152 v2}} || <!--Wireless-->{{unk|Atheros AR9285}} || <!--Test Distro--> || <!--Comments-->2011 64bit does not support AVX or SSE 4.1 - DDR3 sodimm -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->E6420 E6520 ATG semi ruggized XFR || <!--Chipset-->sandy bridge i5 2520M 2540M or duo I7 || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|set to Bios UEFI mode AHCI}} || <!--Gfx-->{{Maybe|Intel HD 3000 with optional fermi Nvidia NVS 4200M GF119}} || <!--Audio-->{{Maybe|HD Audio with IDT 92HD90 BXX codec but not HDMI codec}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No|Intel}} || <!--Wireless-->{{No|Intel 6205}} || <!--Test Distro-->Icaros 2.03 || <!--Comments-->2011 64bit 15.6in - fan exhausts a lot of hot air when cpu taxed - VGA if Bios ATA set and Vesa only with Bios ACHI set -
|-
| <!--Name-->Inspiron M5040 || <!--Chipset-->slow amd E450, later C-50 C50 or C-60 C60 with A50M chipset || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|non efi sata in IDE mode but base plastic difficult to remove for access}} || <!--Gfx-->{{Maybe|use VESA AMD Radeon 6320, 6250 or 6290}} || <!--Audio-->{{Yes|HD Audio IDT}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{Yes|rtl8169 Realtek RTL8105E VB 10/100}} || <!--Wireless-->{{unk|Atheros AR9285}} || <!--Test Distro-->2016 icaros 2.1.1 and AROS USB 1.6 || <!--Comments-->2012 64bit 15INCH 1388 X 768 - f2 bios setup, f12 boot order - under removable keyboard via 4 top spring loaded catches is 1 ddr3l sodimm max 8gb and wifi -
|-
| Latitude e6230 E6330 E6430 || i3 3320M 3350M 2.8 GHz i5 3360M i7 3520M || {{N/A}} || {{partial|non RAID mode}} || {{partial|Intel HD 4000 (VESA only)}} || {{no|HD Audio}} || {{partial|Intel USB 3.0 (USB 1.1 2.0 only)}} || {{No|Intel 82579LM Gigabit}} || {{No|Broadcom BCM4313}} || <!--Test Distro-->Nightly Build 2014 09-27 || 2013 64bit Ivy Bridge - 12.5-inch 13.3-inch 14-inch screen - not great support, better under hosted -
|-
| <!--Name-->Dell Latitude 3330 || <!--Chipset-->Core i3 – 2375M to i5 – 3337U, Intel® Core i3 – 3227U, Celeron 1007U on HM77 || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->{{maybe|VESA 2d for intel Hd 2000 3000 vga hdmi}} || <!--Audio-->{{maybe|HDAudio with IDT 92HD93 Controller codec }} || <!--USB-->{{maybe|USB 3.0 (2), USB 2.0 PowerShare capable }} || <!--Ethernet-->{{no|Intel }} || <!--Wireless-->{{no|Intel }} || <!--Test Distro-->Deadwood usb3 test iso || <!--Comments-->2013 64bit, 13.3” HD 1366X768 16:9, 2 ddr3l slots max 8Gb, 720p HD video webcam,
|-
| <!--Name-->Inspiron 15 5565 5567 AMD versions, Inspiron 3595 || <!--Chipset-->AMD A6-9200u A9-9400 9425 A12-9700P Bristol Ridge || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata}} || <!--Gfx-->Radeon R5 R8 GCN 3 || <!--Audio-->{{No| }} || <!--USB-->{{partial| }} || <!--Ethernet-->{{maybe|Realtek 1GbE}} || <!--Wireless-->{{No| }} || <!--Test Distro--> || <!--Comments-->2017 64bit AVX2 - 15.6in 768p or 900p - there are intel versions avoid -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Latitude 5495, Inspiron 15 3585 || <!--Chipset-->Ryzen 2300U 2500U 2700U || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|NVMe or optional 2.5in sata if caddy and ribbon cable}} || <!--Gfx-->Radeon Vega 3 or 7 || <!--Audio-->{{No|HDAudio with Realtek ALC3246 aka ALC295 0x10ec, 0x0295 or ALC3263 aka ALC 0x10ec, 0x0 codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|Realtek}} || <!--Wireless-->{{No| }} || <!--Test Distro--> || <!--Comments-->2018 64bit - 14.0" FHD WVA 1080p (16:9) 220 nits or HD 768p - 2 ddr4 sodimm slots max 32gb - 68whr battery with 2pin cmos bios coin - DC 19.5V 4.62A (90W) or 19.5V 3.34W (65W) 5.0mm x 7.4mm PA12 charging adapter -
|-
| <!--Name-->Inspiron 3505, Vostro 3515 || <!--Chipset-->athlon 300u, Ryzen 3250u (2c4t) 3450u 3500u 3700u (4c8t), Athlon Silver (2c2t) Gold (2c4t) || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|up to 2 nvme with optional 2.5in sata ribbon connector}} || <!--Gfx-->{{Maybe|VESA 2D for Vega 8, 10}} || <!--Audio-->{{No|Realtek ALC3204, Cirrus Logic CS8409 (CS42L42 and SN005825)}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{No|RTL 8106E}} || <!--Wireless-->{{No|Realtek RTL8723DE}} || <!--Test Distro--> || <!--Comments-->2019 64-bit - 15.6inch - 2 ddr4 sodimm max 16G - avoid knocking usb-c charging whilst in use -
|-
| <!--Name-->Inspiron 5485 2-in-1 || <!--Chipset-->athlon 300u, Ryzen 3250u (2c4t) 3450u 3500u 3700u (4c8t), Athlon Silver (2c2t) Gold (2c4t) || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|nvme}} || <!--Gfx-->{{Maybe|VESA 2D for Vega 8, 10}} || <!--Audio-->{{No|Realtek ALC3204}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{No|Realtek RTL8723DE}} || <!--Test Distro--> || <!--Comments-->2019 64-bit - 14inch - 2 ddr4 sodimm max 16G - avoid knocking usb-c charging whilst in use -
|-
| <!--Name-->Latitude 3500, 3310, 3410, 3510, || <!--Chipset-->Intel Celeron-4205U, Pentium-5405U, Core i5 (8th Gen) i3-8145U, 8265U, i5-8365U || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|nvme}} || <!--Gfx-->{{Maybe|Vesa 2D for Intel UHD Graphics 610 or 620 hdmi}} || <!--Audio-->{{no|HDAudio with Realtek ALC}} || <!--USB-->{{maybe|USB3 usb-c usb-a}} || <!--Ethernet-->{{Maybe|rtl8169 RTL8111H}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2019 64bit - 14in or 15.6in 768p to 1080p 220nits - 65w - 2 ddr4 sodimm slots - rtc cr2032 cmos 2 pin -
|-
| <!--Name-->Inspiron 5405 || <!--Chipset-->AMD Ryzen 5 4500U || <!--IDE-->{{N/A}} || <!--SATA-->One M.2 2230/2280 nvme || <!--Gfx-->VESA 2D for AMD Radeon || <!--Audio-->{{No|HDAudio with Realtek ALC3204 codec}} || <!--USB-->{{maybe|USB3 }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{No| }} || <!--Test Distro--> || <!--Comments-->2020 64bit - 14" 1080p - dell round ac 19.50 VDC 4.50 mm x 2.90 mm 65W(19.5V-3.34A) round 4.5mm tip -
|-
| <!--Name-->Inspiron 5415, Inspiron 5515 || <!--Chipset-->AMD Ryzen 3 5300U, Ryzen 5 5500U, Ryzen 7 5700U || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|nvme}} || <!--Gfx-->VESA 2D for AMD Radeon || <!--Audio-->{{No|HDaudio with realtek ALC3254 codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2021 64bit 14" or 15.6in - avoid knocking usb-c charging whilst in use or use dell round ac 65W 4.5MM x 3.0MM - replacing keyboard not easy - 1 ddr4 sodimm -
|-
| <!--Name-->Vostro 3425, Vostro 3525, Vostro 5625 || <!--Chipset-->AMD Ryzen 3 5425U, Ryzen 5 5625U || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D for AMD Radeon || <!--Audio-->{{no|HDAudio with codec}} || <!--USB-->{{maybe|USB4}} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2021 64bit - 14in 15.6" to 16" FHD 1080p - dell round ac 65w 4.5MM x 3.0MM or avoid knocking usb-c charging whilst in use -
|-
| <!--Name-->Dell Inspiron 15 Model 3535, Inspiron 14 7435 || <!--Chipset-->AMD Ryzen 5 7520U, AMD Ryzen 5 7530U, 7 7730U || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->{{No| hdmi 1.4 but no gpmi}} || <!--Audio-->{{No|HDaudio with codec }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2024 64bit - 14.0" or 15.6" 1080p - dell round ac 65w 4.5MM x 3.0MM or usb-c charging - full sd card slot -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|}
====Fujitsu-Siemens====
[[#top|...to the top]]
Order of build quality (Lowest to highest)
<pre >
Amilo
Esprimo
Lifebook
</pre >
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="5%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->Fujitsu [http://www.labri.fr/perso/fleury/index.php?page=bug_transmeta FMV-Biblo Loox S73A (Japan P1100) LifeBook P1120 Biblo Loox T93C (Japan P2120) P2020] || <!--Chipset-->Transmeta Crusoe CPU TM5600 633MHz with Ali M1535 chipset || <!--IDE-->{{Yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->ATI Rage Mobility M with 4MB SDRAM || <!--Audio-->{{No|AC97 Ali M1535 + STAC9723 Codec}} || <!--USB-->USB 1.1 only || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{N/A}} || <!--Test Distro--> || <!--Comments-->1999 32bit 10" 1280 x 600 matte LCD - QuickPoint IV mouse - metal chassis with palm rest plastic - 15GB 2.5 inch drive and SR 8175 8X DVD-ROM drive -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Lifebook S7000 S7010 S7010D S2020 || <!--Chipset-->Pentium M 1.6 or 1.7GHz || <!--IDE-->{{Yes| }} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Maybe|use VESA - Intel 855}} || <!--Audio-->{{maybe|AC97 with STAC 9751T or 9767 codec}} || <!--USB--> || <!--Ethernet-->{{No|Broadcom}} || <!--Wireless-->{{No|Atheros, Broadcom or Intel 2200BG - FN,F10}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2002 32bit 14.1 inch with minimal support
|-
| <!--Name-->Lifebook e8010 || <!--Chipset--> || <!--IDE-->{{Yes| }} || <!--SATA--> || <!--Gfx-->{{Maybe|use VESA Intel 855GM}} || <!--Audio-->AC97 STAC9767 or ALC203 codec || <!--USB--> || <!--Ethernet-->{{No|Broadcom NetXtreme BCM5705M}} || <!--Wireless-->Intel PRO Wireless 2200BG || <!--Test Distro-->Icaros 1.3.1 || <!--Comments-->2002 32bit 15.1 inch
|-
| <!--Name-->Stylistic ST5000 ST5010 ST5011 ST5012 ST5020 ST5021 ST5022 || <!--Chipset-->1.0GHz P-M and later 1.1GHz on Intel 855GME || <!--IDE--> || <!--SATA-->{{N/A}} || <!--Gfx-->Intel 800 use VESA || <!--Audio-->Intel AC97 || <!--USB--> || <!--Ethernet-->Broadcom BCM5788 tg3 || <!--Wireless-->{{No|Intel 2200BG}} || <!--Test Distro--> || <!--Comments-->2003 32bit charged via a proprietary port power connector 16V 3.75A with wacom serial pen interface - indoor Screen transmissive 10.1 and later 12.1 XGA TFT -
|-
| <!--Name-->Amilo Pro V2010 || <!--Chipset-->VIA CN400 PM880 || <!--IDE--> || <!--SATA-->{{N/A}} || <!--Gfx-->{{No|S3 unichrome use VESA}} || <!--Audio-->{{No|VIA AC97 VT8237 with codec}} || <!--USB--> || <!--Ethernet-->Rhine 6102 6103 || <!--Wireless-->RaLink RT2500 || <!--Test Distro-->2017 Icaros 2.1.2 || <!--Comments-->2003 32bit boot mount - unknown bootstrap error then crashes
|-
| <!--Name-->Amilo Li 1705 CN896 || <!--Chipset--> with VIA P4M900 || <!--IDE--> || <!--SATA-->{{Maybe|IDE}} || <!--Gfx-->ATi || <!--Audio-->{{No|VIA VT8237 HD Audio with codec}} || <!--USB-->VT82xx 62xx || <!--Ethernet-->{{Yes|VIA Rhine}} || <!--Wireless-->{{No|Atheros G}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2005 32bit random freezes
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name--> Esprimo Mobile V5535 Skt mPGA 478MN
| <!--Chipset-->
| <!--IDE--> {{yes|IDE and EIDE}}
| <!--SATA--> {{maybe|IDE mode with SIS 5513}}
| <!--Gfx--> {{maybe|SiS 771 / 671 (VESA only)}}
| <!--Audio--> {{yes|HD Audio SIS968 SIS966 SI7012 with ALC268 codec}}
| <!--USB--> {{no|USB 1.1 and 2.0 issues}}
| <!--Ethernet--> {{no|SiS 191 gigabit}}
| <!--Wireless--> {{yes|Atheros AR5001 mini pci express}}
| <!--Test Distro-->aros one 1.5 usb
| <!--Comments-->2005 32bit 20v barrel - f2 setup f12 multi boot - random freezing short time after booting - chipset SIS 671MX -
|-
| <!--Name-->Amilo SI 1520 1521p || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Yes|GMA 2D}} || <!--Audio-->{{No|HD Audio Conexant codec}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{Yes|Intel Pro 100}} || <!--Wireless--> || <!--Test Distro-->Icaros 1.4.2 || <!--Comments-->2005 32bit - Set Bios option ATA Control Mode to Compatible
|-
| <!--Name-->Lifebook S7020 S7020D || <!--Chipset--> Pentium M 740 1.73MHz || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel 915 || <!--Audio-->HD Audio ALC260 codec || <!--USB-->{{Yes| }} || <!--Ethernet-->Broadcom BCM5751M Gigabit || <!--Wireless-->Intel PRO Wireless 2200BG or Atheros 5k || <!--Test Distro--> || <!--Comments-->2006 32bit
|-
| <!--Name-->Stylistic ST5030 ST5031 ST5032 || <!--Chipset-->1 to 1.2GHx Pentium M with 915GM || <!--IDE--> || <!--SATA-->{{N/A}} || <!--Gfx-->Intel 900 || <!--Audio--> || <!--USB-->{{Yes| }} || <!--Ethernet-->Marvell || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2006 32bit charged via a proprietary port power connector 6.0 x 4.4 mm round - 200 pin ddr2 ram
|-
| <!--Name-->Stylistic ST5110 ST5111 ST5112 || <!--Chipset-->945GM with 1.2GHz Core Duo and Core2 Duo || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->Intel 900 || <!--Audio-->HD audio with STAC9228 codec || <!--USB-->{{No| }} || <!--Ethernet--> || <!--Wireless-->Intel 3945 ABG or optional atheros || <!--Test Distro--> || <!--Comments-->2006 either 32 or 64 bit - charged via a proprietary port power connector 6.0 x 4.4 mm round - SigmaTel® touchscreen -
|-
| <!--Name-->E8110 S7110 E8210 || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Yes|945GM}} || <!--Audio-->{{Yes|HD Audio with ALC262 codec playback}} || <!--USB-->{{Yes}} || <!--Ethernet-->{{No|Marvell 88E8055 Gigabit}} || <!--Wireless-->{{No|Intel PRO Wireless 3945ABG}} || <!--Test Distro-->Icaros 2.0 || <!--Comments-->2006 32bit Core Duo
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || CHIPSET || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Lifebook PH521 || <!--Chipset-->AMD E-350 E-450 1.65GHz || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->HD 6310M 6320M || <!--Audio-->Realtek ALC269 || <!--USB-->{{No| }} || <!--Ethernet-->Realtek || <!--Wireless-->{{No|Atheros 802.11 bgn}} || <!--Test Distro--> || <!--Comments-->2011 64bit does not support AVX or SSE 4.1 - 11.6 inch 1366x768 pixels - DDR3 1066MHz -
|-
| <!--Name-->LIFEBOOK E752/E782/S752/S782 || <!--Chipset--> with Intel Core i3-2328M to i3-3110M || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->{{Maybe| }} || <!--Audio-->{{yes| }} || <!--USB-->{{yes| }} || <!--Ethernet-->{{no|Intel 82579V 1000 }} || <!--Wireless-->{{no|Intel Wireless 6205 may be able to swap for Atheros 5k }} || <!--Test Distro-->Aros One 64bit || <!--Comments-->2012 64bit
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
====HP Compaq====
[[#top|...to the top]]
Build quality (Lowest to highest)
<pre >
Presario
Pavilion
Omnibook
ProBook
Armada
Elitebook
</pre >
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->1c00 series Compaq Presario [http://users.utu.fi/sjsepp/linuxcompaqarmada100s.html Armada 100S made by Mitac], 1247 || <!--Chipset-->K6-II with PE133 MVP-4 || <!--IDE--> || <!--SATA--> || <!--Gfx-->use VESA - Trident Blade3D AGP sp16953 || <!--Audio-->VIA ac'97 audio [rev20] with AD1881A codec || <!--USB-->{{Maybe|usual VIA issues [rev10]}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{N/A}} || <!--Test Distro--> || <!--Comments-->1998 32bit 192MB max - PCcard Texas PC1211 no support - 1200 XL1 1200-XL1xx, XL101, XL103 XL105 XL106 XL109 XL110 XL111 XL116 XL118 XL119 XL125
|-
| <!--Name-->1c01 series Armada 110, Evo N150 || <!--Chipset-->Intel with VIA PLE133 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Use VESA - Trident Cyber Blade i1 chipset || <!--Audio-->VIA 686 rev20 82xxx 686a || <!--USB--> || <!--Ethernet-->Intel 82557 Pro 100 || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->1998 32bit max 192mb sodimm 100Mhz 133Mhz ram memory - 1200-XL405A 12XL405A XL502A 12XL502A 1600XL
|-
| Armada M300 M700 E500 || 440BX || {{Yes| }} || {{N/A}} || {{maybe|ATI Rage LT M1 Mobility (VESA only)}} || {{no|AC97 ESS Maestro 2E M2E ES1987 sound}} || {{yes|USB1.1 only}} || {{No|[http://perho.org/stuff/m300/index_en.html Intel PRO 100+ Mini PCI]}} || {{N/A}} || Aspire OS 2012, Nightly 30-01 2013 and 04-05 2013 || 1999 32bit - F10 bios options and Fn+F11 reset CMOS with 64mb ram already on board
|-
| <!--Name-->HP Omnibook XE3 || <!--Chipset-->Intel BX 600Mhz GC model 256mb or AMD GD 500Mhz || <!--IDE--> || <!--SATA--> || <!--Gfx-->Use VESA - S3 Inc. 86C270 294 Savage IX-MV (rev 11) || <!--Audio-->{{No|ESS ES1988 Allegro 1 (rev 12)}} || <!--USB-->Intel 82371AB PIIX4 USB (rev 01) || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{N/A}} || <!--Test Distro--> || <!--Comments-->2002 32bit no cardbus pcmcia support - no audio from Polk Audio Speakers -
|-
| <!--Name-->HP Omnibook XE3 || <!--Chipset-->82830 ICH3 P3-M 750MHz 800Mhz 900MHz || <!--IDE-->{{Yes| }} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Maybe|use VESA - CGC 830MG}} || <!--Audio-->{{No|ESS ES1988 Maestro 3i}} || <!--USB-->{{Yes|only one 1.1 port}} || <!--Ethernet-->{{Yes|e100 82557}} || <!--Wireless-->{{N/A|}} || <!--Test Distro-->Icaros 1.51 || <!--Comments-->2002 32bit Boots USB Stick via Plop boot floppy - Memory for GF 256-512mb, GS up 1GB
|-
| <!--Name-->TC1000 TC-1000 Tablet PC || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->NVIDIA NV11 [GeForce2 Go] (rev b2) || <!--Audio-->VIA AC97 Audio (rev 50) || <!--USB-->OHCI NEC USB 2.0 (rev 02) || <!--Ethernet-->Intel 82551 QM (rev 10) || <!--Wireless-->Atmel at76c506 802.11b || <!--Test Distro--> || <!--Comments-->2002 32bit Transmeta LongRun (rev 03) with VT82C686 - Texas Instruments TI PCI1520 PC card Cardbus
|-
| <!--Name-->HP Compaq R3000 ZV5000 (Compal LA-1851) || <!--Chipset-->Nvidia nForce 3 with AMD CPU || <!--IDE--> || <!--SATA--> || <!--Gfx-->Nvidia NV17 [GeForce4 420 Go 32M] || <!--Audio-->Nvidia || <!--USB--> || <!--Ethernet-->Broadcom or Realtek RTL8139 || <!--Wireless-->{{Maybe|Broadcom BCM4303 BCM4306 or Atheros bios locked}} || <!--Test Distro--> || <!--Comments-->2003 32bit - HPs have a setting to automatically disable wireless if a wired connection is detected
|-
| <!--Name-->Compaq [http://www.walterswebsite.us/drivers.htm Presario 700 series] || <!--Chipset-->VT8363 VT8365 [Apollo Pro KT133 KM133] || <!--IDE-->{{yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{maybe|VT8636A (S3 Savage TwisterK) (VESA only)}} || <!--Audio-->{{Maybe|VIA AC97 [rev50] with AD1886 codec}} || <!--USB-->{{maybe|VIA UHCI USB 1.1 [rev1a]}} || <!--Ethernet-->{{yes|RealTek RTL8139}} || <!--Wireless-->{{no|Broadcom BCM4306}} || <!--Test Distro--> || <!--Comments-->2003 32bit poor consumer grade level construction - jbl audio pro speakers - no support for cardbus pcmcia TI PCI1410 - 700A EA LA UK US Z 701AP EA BR FR 701Z 702US 703US AP JP audio sp18895 Sp19472
|-
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| N400c || P3-M 82845 || {{yes|82801 CAM IDE U100}} || {{N/A}} || {{maybe|Rage Mobility 128 (VESA only)}} || {{No|Maestro 3 allegro 1}} || {{yes|USB1.1}} || {{yes|Intel PRO 100 VM (KM)}} || {{N/A}} || Icaros 1.2.4 || 2003 32bit Has no optical disc drive
|-
| N410c || P3-M 82845 || {{yes|82801 CAM IDE U100}} || {{N/A}} || {{maybe|Radeon Mobility M7 LW 7500 (VESA only)}} || {{yes|Intel AC97 with AD1886 codec}} || {{yes|USB1.1}} || {{yes|Intel PRO 100 VM (KM)}} || {{N/A}} || Icaros 1.2.4 || 2003 32bit Has no optical disc drive
|-
| Evo N600c || Pentium 4 || {{yes|IDE}} || {{N/A}} || {{partial|ATI Radeon Mobility M7 (VESA only)}} || {{No|ESS ES1968 Maestro 2}} || {{yes|USB}} || {{yes|Intel PRO 100}} || {{dunno}} || Icaros 1.3 || 2003 32bit
|-
| Evo N610c || Pentium 4 || {{yes|IDE}} || {{N/A}} || {{partial|ATI Radeon Mobility M7 (VESA only)}} || {{yes|Intel ICH AC97 with AD1886 codec}} || {{yes|USB}} || {{yes|Intel PRO 100}} || {{dunno}} || Icaros 1.2.4 ||
|-
| N800c || P4 || {{Yes|IDE}} || {{N/A}} || {{partial|ATI Radeon Mobility 7500 (VESA only)}} || {{yes|AC97}} || {{yes|USB}} || {{yes|Intel PRO 100}} || {{N/A}} || Icaros 1.2.4 || 2003 32bit P4M CPU can get very warm
|-
| <!--Name-->NX7010 || <!--Chipset-->Intel || <!--IDE-->{{yes|IDE}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{partial|ATI mobility 7500 or 9000 Radeon 9200 64MB (VESA only)}} || <!--Audio-->{{yes|AC97 ADI codec}} || <!--USB-->{{yes|uhci (1.1) and ehci (2.0)}} || <!--Ethernet-->{{yes|Realtek 8139}} || <!--Wireless-->{{No|Intel 2200b bios locked}} || <!--Test Distro--> || <!--Comments-->2003 32bit
|-
| <!--Name-->Compaq Preasrio V5000 (Compal LA-2771) || <!--Chipset-->AMD Sempron 3000+ or Turion ML with SB400 || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|use VESA - Ati RS480M Xpress 200}} || <!--Audio-->{{No|AC97 ATI with Conexant CX 20468 codec}} || <!--USB--> || <!--Ethernet-->{{Yes|Realtek 8100 8101L 8139}} || <!--Wireless-->{{No|bcm4318 bios locked}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2004 64bit single core machine V5001 V5002 V5002EA V5003
|-
| <!--Name-->TC1100 TC-1100 Tablet PC || <!--Chipset-->855PM || <!--IDE--> || <!--SATA--> || <!--Gfx-->Nvidia Geforce4 Go || <!--Audio-->AC97 || <!--USB--> || <!--Ethernet-->{{Maybe|BCM 4400}} || <!--Wireless-->{{Maybe|Atheros wlan W400 W500 or ? bios locked}} || <!--Test Distro--> || <!--Comments-->2004 32bit
|-
| <!--Name-->NC6000 NC8000 NW8000 || <!--Chipset-->855PM with Pentium M 1.5 1.6 1.8GHz 2.0GHz || <!--IDE-->max 160 GB for NW 8000 || <!--SATA--> || <!--Gfx-->{{Maybe|Ati RV350 mobility 9600 M10 Fire GL T2 ISV use VESA 2D as no laptop display}} || <!--Audio-->{{Yes|Intel AC97 with ADI codec playback only}} || <!--USB-->{{Yes|2 ports}} || <!--Ethernet-->{{No|Broadcom BCM 5705M}} || <!--Wireless-->{{Maybe|mini pci Atheros 5212 BG W400 W500 or Intel - all bios locked}} || <!--Test Distro--> || <!--Comments-->2005 based [http://amigaworld.net/modules/newbb/viewtopic.php?topic_id=41916&forum=47 works] - Firewire TI TSB43AB22/A - 8 pound 2.5 kg travel weight - an SD slot as well as two PC Card slots - 15-inch UXGA screen (1,600 x 1,200) or 15" SXGA+ (1400 x 1050) (4:3 ratio)
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Compaq NC6110 NX6110 NC6120 NC6220 NC4200 NC8200 TC4200 || <!--Chipset-->GMA 915GML || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Yes|2D GMA 900}} || <!--Audio-->{{Yes|AC97 with ADI AD1981B playback}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{Unk|440x or BCM 5705M or 5751M}} || <!--Wireless-->{{No|Intel IPW 2200 bios locked}} || <!--Test Distro-->Icaros 1.5.2 || <!--Comments-->2005 32bit Sonoma based - Wifi with Atheros AR5007eg if apply hacked bios RISKY else use USB one - (INVENTEC ASPEN UMA MV) (INVENTEC ASPEN DIS PV) -
|-
| <!--Name-->Compaq C500 CTO aka HP G7000 || <!--Chipset-->Intel 945GM || <!--IDE--> || <!--SATA--> || <!--Gfx-->GMA 950 || <!--Audio-->HD Audio with realtek ALC262 codec || <!--USB--> || <!--Ethernet-->Realtek 8139 || <!--Wireless-->Broadcom BCM 4311 bios locked || <!--Test Distro--> || <!--Comments-->2005 32bit
|-
| <!--Name-->HP DV6000 || <!--Chipset-->945GMS || <!--IDE--> || <!--SATA--> || <!--Gfx-->GMA 950 || <!--Audio-->HD Audio IDT 92HD 91B || <!--USB--> || <!--Ethernet-->Intel PRO 100 VE || <!--Wireless-->{{No|Intel 3945 bios locked}} || <!--Test Distro--> || <!--Comments-->2006 32 bit only - Mosfet FDS6679 common cause of shorts giving no power to the tip. To reset adapter, unplug from AC (mains) and wait 15-30 sec. Then plug in again -
|-
| Presario F700 series, HP G6000 f730us F750 F750us F755US F756NR F765em || AMD Turion Mono MK-36 2.0Ghz NForce 560m or Twin X2 TK-55 with nForce 610m MCP67 || {{N/A| }} || {{Yes|but needs special sata adapt bit and caddy}} || {{Yes|GF Go 7000m 2D and 3D 640x350 to 1280x800 - ball solder issues due to poor cooling}} || {{Maybe| }} || {{Maybe|uhci and ehci boots}} || {{No|Nvidia }} || {{Yes|Atheros AR5007 bios locked}} || Icaros 1.3.1 and Aros One 1.6 USB || 2006 64bit - f9 boot device f10 bios setup - random freezes after a minutes use means internal ventilation maintenance needed each year essential - No sd card and overall limited phoenix bios options -
|-
| <!--Name-->Presario v6604au v6608au V3500 || <!--Chipset-->NVIDIA MCP67M with AMD Athlon64 X2 TK 55 amd 1.8ghz || <!--IDE--> || <!--SATA-->{{Yes|SATA 150}} || <!--Gfx-->NVIDIA GeForce Go 7150M 630i or C67 630M MCP67 || <!--Audio-->conexant codec || <!--USB--> || <!--Ethernet-->Nvidia or Realtek 10/100 || <!--Wireless-->{{No|Broadcom 4311 bios locked}} || <!--Test Distro--> || <!--Comments-->2006 64bit Altec Lansing Stereo Speakers - ball solder issues -
|-
| <!--Name-->Compaq presario v6610 v6615eo v6620us || <!--Chipset-->Turion 64 X2 mobile TK-55 / 1.8 GHz to athlon 64x2 @ 2.4ghz || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|SATA 150}} || <!--Gfx-->{{Yes|geforce 7150 or 7300m 2d and 3d}} || <!--Audio-->{{Yes|AMD HD Audio with IDT codec stereo playback only}} || <!--USB-->3 OHCI EHCI || <!--Ethernet-->{{Maybe| }} || <!--Wireless-->{{No|Broadcom bios locked}} || <!--Test Distro-->Icaros 1.3 - || <!--Comments-->2007 [http://amigaworld.net/modules/newbb/viewtopic.php?topic_id=40956&forum=48 works well] - 1 x ExpressCard/54 - SD Card slot - AO4407 test voltage of the Drain side (pins 5-8) with AC adapter and no battery, see 0 volts, connect the battery you should have 10-14v -
|-
| <!--Name-->v6630em v6642em || <!--Chipset-->nForce 630M with AMD Turion 64 X2 Mobile TL-58 || <!--IDE--> || <!--SATA--> || <!--Gfx-->NVIDIA GeForce 6150M or 7150M || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless-->{{No|Broadcom bios locked}} || <!--Test Distro--> || <!--Comments-->2007 64bit 15.4 in 1280 x 800 ( WXGA ) -
|-
| <!--Name-->HP Compaq NC6400 || <!--Chipset-->945GM Core Duo || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|GMA 950 2D issues and no 3d}} || <!--Audio-->{{No|HD Audio AD1981HD}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No|BCM }} || <!--Wireless-->{{No|Broadcom locked}} || <!--Test Distro-->Icaros || <!--Comments-->2007 - replaced with Atheros AR5007eg if apply hacked bios RISKY else use USB g -
* 32bit Core Duo T2400
* 64bit Core 2 Duo T5600 T7600
|-
| <!--Name-->HP Compaq NV NC6400 || <!--Chipset-->Core Duo + 945PM || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Maybe|use VESA Radeon x1300M (2D)}} || <!--Audio-->{{Maybe|HD Audio with ADI1981 low volume}} || <!--USB-->{{yes}} || <!--Ethernet-->{{no|BCM 5753M}} || <!--Wireless-->{{No|Intel 3945 ABG bios locked}} || <!--Test Distro--> Icaros 1.4.2 || <!--Opinion-->2007 Harmon Kardon speakers
|-
| <!--Name-->HP Compaq NC6320 || <!--Chipset-->945GM with
* 32bit Core Duo 1.83GHz T2400
* 64bit Core2 Duo 1.83GHz T5600
|| <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Yes|GMA 950 2D with a little 3D tunnel 213}} || <!--Audio-->{{Maybe|Intel HD Audio with AD1981HD codec}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No|BCM 5788}} || <!--Wireless-->{{No|Intel 3945 bios locked}} || <!--Test Distro-->Icaros 2 || <!--Comments-->2007 replaced with Atheros AR5007eg if applying hacked wifi bios RISKY!! else use USB - 14.1" or 15 inch XGA 1024x768 - noisy cpu fan for core2 - trackpad rhs acts as window scroller -
|-
| <!--Name-->HP NC4400 TC4400 Tablet || <!--Chipset-->Core Duo with 82945 chipset || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|bios F.07 limits to 100GB 120GB}} || <!--Gfx-->{{yes|2D and 3D 282 tunnel and gearbox 150}} || <!--Audio-->{{Yes|HD Audio with ADI 1981HD codec via ear phones}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{No|BCM 5753M}} || <!--Wireless-->{{No|Intel 3945 or BCM 4306 - Whitelist BIOS F.0C needed but risky}} || <!--Test Distro-->2017 Icaros 2.1.2 || <!--Comments-->2008 64 bit possible with Core2 - TI SD card reader non bootable - wacom serial digitiser pen not working -
* 32bit 1.86GHz core duo
* 64bit 2Ghz T7200, 2.16Ghz Core 2 Duo T7600 2.33GHz
|-
| <!--Name-->HP Pavilion DV2000 CTO || <!--Chipset-->945GMS || <!--IDE--> || <!--SATA--> || <!--Gfx-->GMA 950, X3100, Nvidia 8400M || <!--Audio-->HD Audio Conexant CX 20549 Venice || <!--USB--> || <!--Ethernet-->Nvidia MCP51 || <!--Wireless-->{{No|Broadcom BCM 4311 or Intel 3945 4965 ABG bios locked}} || <!--Test Distro--> || <!--Comments-->2008 Atheros AR5007eg if apply hacked bios RISKY
|-
| <!--Name-->Compaq Presario C700 || <!--Chipset-->GMA960 || <!--IDE--> || <!--SATA--> || <!--Gfx-->X3100 || <!--Audio-->HD Audio || <!--USB--> || <!--Ethernet-->RTL 8139 || <!--Wireless-->{{Maybe|Atheros AR5007 AR5001 AR242x}} || <!--Test Distro--> || <!--Comments-->2008
|-
| <!--Name-->Compaq 2510p 6510b 6710b 6910b || <!--Chipset-->GMA 965GM GL960 || <!--IDE-->{{yes| }} || <!--SATA--> || <!--Gfx-->{{yes|X3100 some 2d but slow software 3d only}} || <!--Audio-->{{maybe|HD Audio ADI AD1981 HD low volume on head phones}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{no|Intel 82566 or Broadcom BCM 5787M}} || <!--Wireless-->{{No|Intel 3945ABG or 4965ABG bios locked}} || <!--Test Distro-->Aspire OS Xenon 2014 || <!--Comments-->2008 no sd card boot support - F9 to choose boot option - [http://forums.mydigitallife.info/threads/7681-This-is-no-request-thread!-HP-COMPAQ-bioses-how-to-modify-the-bios/page111?p=333358#post333358 whitelist removal (risky) bios block for wifi card swap]
|-
| <!--Name-->CQ40 CQ41 || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|VESA Intel}} || <!--Audio-->HD Audio || <!--USB--> || <!--Ethernet-->Realtek RTL8101E || <!--Wireless-->{{No|Broadcom BC4310 bios locked}} || <!--Test Distro--> || <!--Comments-->2008
|-
| <!--Name-->Compaq Presario CQ35 CQ36 || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|VESA }} || <!--Audio--> || <!--USB--> || <!--Ethernet-->Realtek RTL8101E RTL8102E || <!--Wireless-->{{No|Broadcom BCM4312 bios locked}} || <!--Test Distro--> || <!--Comments-->2008 Compal LA-4743P -
|-
| <!--Name-->HP Compaq CQ42 CQ43 CQ45 || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|VESA }} || <!--Audio-->HD Audio with Coxenant codec || <!--USB--> || <!--Ethernet-->Realtek || <!--Wireless-->{{No|Realtek RTL8191SE, Realtek 8188CE}} || <!--Test Distro--> || <!--Comments-->2008 (Quanta AX1)
|-
| <!--Name-->Compaq Presario CQ50 CQ56 || <!--Chipset-->Nvidia MCP78S || <!--IDE--> || <!--SATA--> || <!--Gfx-->Geforce 8200M || <!--Audio-->nVidia HD Audio with codec || <!--USB--> || <!--Ethernet-->nvidia MCP77 || <!--Wireless-->{{unk|Atheros AR928X bios locked}} || <!--Test Distro--> || <!--Comments-->2008 [http://donovan6000.blogspot.co.uk/2013/06/insyde-bios-modding-wifi-and-wwan-whitelists.html bios modding risky] MCP72XE MCP72P MCP78U MCP78S
|-
| <!--Name-->CQ60 || <!--Chipset-->Single core Sempron to dual turion || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|VESA for Nvidia 8200M}} || <!--Audio-->{{yes|HD Audio}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{no| }} || <!--Wireless-->{{No| bios locked}} || <!--Test Distro--> || <!--Comments-->2008
|-
| <!--Name-->HP DV6700 || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{no|Vesa for Nvidia 8400M}} || <!--Audio-->{{no| }} || <!--USB-->{{no| }} || <!--Ethernet-->{{no| }} || <!--Wireless-->{{No|Intel }} || <!--Test Distro--> || <!--Comments-->2008 64bit -
|-
| <!--Name-->CQ60 || <!--Chipset-->Intel C2D || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|VESA for Nvidia 9200M}} || <!--Audio-->{{yes|HD Audio}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{no| }} || <!--Wireless-->{{No| bios locked}} || <!--Test Distro--> || <!--Comments-->2009 64bit -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->CQ57z || <!--Chipset-->AMD slow E-300 || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->{{Maybe|VESA ATi HD 6310 wrestler}} || <!--Audio-->{{unk| }} || <!--USB-->{{yes| }} || <!--Ethernet-->{{maybe|Realtek RTL8101 RTL8102}} || <!--Wireless-->{{No|RaLink RT5390}} || <!--Test Distro--> || <!--Comments-->2011 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name-->HP CQ58z 103SA E5K15EA || <!--Chipset-->AMD slow Dual-Core E1-1500 APU with A68M FCH || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->{{Maybe|VESA 2D for Radeon HD 7310}} || <!--Audio-->Realtek idt codec || <!--USB-->{{yes| }} || <!--Ethernet-->{{yes|Realtek 10/100 BASE-T}} || <!--Wireless-->{{No|Broadcom}} || <!--Test Distro--> || <!--Comments-->2011 64bit does not support AVX or SSE 4.1 - 39.6 cm (15.6") HD BrightView LED-backlit (1366 x 768)
|-
| <!--Name-->HP 635 DM1 || <!--Chipset-->AMD slow E-300, E-450 later E2-1800 on SB7x0 SB8x0 SB9x0 || <!--IDE-->{{N/A}} || <!--SATA-->ATI non efi SATA AHCI - IDE mode || <!--Gfx-->{{Maybe|use VESA 2D - AMD HD6310, 6320 to HD7340}} || <!--Audio-->{{Yes|Realtek ALC270A GR but not Wrestler HDMI Audio}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{Yes|rtl8169 driver covers Realtek RTL8101E RTL8102E}} || <!--Wireless-->{{unk|Atheros AR9285}} || <!--Test Distro--> || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 - 14" 1366 x 768 - f9 f10 - external battery - 2 stacked ddr3l sodimm slots max 16Gb under one base plate - removable keyboard -
|-
| <!--Name-->HP G6 2000-2b10NR 2000-2d10SX 2000-2d80NR || <!--Chipset-->AMD very slow E1-2000 E2-3000M on A50M (soldered) A4-3305A on A60M (socket) || <!--IDE-->{{N/A}} || <!--SATA-->2.5in || <!--Gfx-->{{Maybe|VESA AMD Radeon 6320, 6620G, 6520G, 6480G, 6380G}} || <!--Audio-->{{No| }} || <!--USB-->{{No| }} || <!--Ethernet-->{{maybe|Realtek 100 1000}} || <!--Wireless-->{{No|Realtek}} || <!--Test Distro--> || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 - 39.6-cm (15.6-in) HD LED BrightView (1366×768) - 1 or 2 ddr3l max 8G - 19VDC 3.42A Max 65W Tip 7.4mm x 5.0mm -
|-
| <!--Name-->HP ProBook 6465B || <!--Chipset-->AMD massively slow A6-3310MX or A6-3410MX with A60M || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->{{Maybe|VESA AMD 6480G or 6520G}} || <!--Audio-->{{No|IDT 92HD81B1X}} || <!--USB-->{{No| }} || <!--Ethernet-->{{maybe|rtl8169 Realtek 8111}} || <!--Wireless-->{{No|Intel AC 6205 or broadcom 4313 bios locked}} || <!--Test Distro--> || <!--Comments-->2013 64bit does not support AVX or SSE 4.1 - 13-inch or 14-inch runs hot -
|-
| <!--Name-->HP Elitebook 8470p 8570p || <!--Chipset-->Intel Quad i7-3840QM, i7-3610QM, i7-3520M, i5-3210M, i3-3130M, i3-2370M on Intel QM77 chipset || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|set the bios boot options to not fastboot and drive mode IDE rather than AHCI }} || <!--Gfx-->{{Maybe|Vesa 2d for HD4000 with some having switchable Radeon M2000 or 7570M}} || <!--Audio-->{{yes|HDAudio for IDT codec}} || <!--USB-->{{yes|USB2}} || <!--Ethernet-->{{No|Intel 82579LM }} || <!--Wireless-->{{No|Intel, Broadcom, Atheros}} || <!--Test Distro-->64 bit boots from CD* if safe mode 2 is used, although it is possible to remove the 'nodma' and 'debug' entries and boot || <!--Comments-->2013 64bit with SSE4.1 and AVX - 14in 1600 x 900 to 1366 x 768 - 2 DDR3L sodimm slots max 16Gb - TPM 1.2 - dual boot 32/64 bit is working fine -
|-
| <!--Name-->HP ProBook 6475b, Probook 4445s 4545s, HP Pavilion 15-b115sa, [https://support.hp.com/gb-en/document/c04015674#AbT6 HP mt41 Mobile Thin Client PC] || <!--Chipset-->AMD very slow A4 4300M, A6 4400M 4455M or A8 4500M with AMD A70M A76M FCH || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->{{Maybe|VESA 7420 7520G 7640G 7660G}} || <!--Audio-->{{no|HD Audio with idt or realtek codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{No|Realtek RTL8151FH-CG}} || <!--Wireless-->{{No|Intel 6205 or Broadcom BCM 43228 bios locked}} || <!--Test Distro--> || <!--Comments-->2014 64bit does support AVX or SSE 4.1 - 15.6-inch -
|-
| <!--Name-->HP ENVY 15-k112nl K1Y78EA || <!--Chipset-->Intel® Core™ i7 i7-4510U || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe| }} || <!--Gfx-->Intel HD4400 and/without NVIDIA® GeForce® GTX 850M || <!--Audio-->{{maybe| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{no| }} || <!--Wireless-->{{no| }} || <!--Test Distro-->Deadwood usb3 test iso || <!--Comments-->2014 64bit - 15.6" 768p to 1080p - 19.5V 3.33A/4.62A/6.15A 65W/90W/120W AC -
|-
| <!--Name-->HP ProBook 255 G1, 455 G1 F2P93UT#ABA, 645 G1, Envy 15-j151ea G7V80EA, Envy m6-1310sa (E4R01EA#ABU) || <!--Chipset-->AMD very slow Dual-Core E1-1500, or AMD Quad A4-4300M A8-4500M A10-4600M A4-5150M A6-5350M 2.9Ghz A10-5750M || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->{{Maybe|VESA 2D for 7310, 7420G 7520G 7640G 7660G 8350G 8450G or 8550G, 8650G, 8750G }} || <!--Audio-->{{No|HD Audio IDT 92HD91 codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|realtek}} || <!--Wireless-->{{No|Atheros}} || <!--Test Distro--> || <!--Comments-->2015 64bit does support AVX or SSE 4.1 - 14in and 15in 1366 x 768 - external battery - 2 ddr3l sodimm slots - 19.5v / 4.62A psu runs hot -
|-
| <!--Name-->HP ProBook 245 G4, 255 G2, 455 G2, 255 G3, 455 G3, 255 G4 80CB, 255 G5 82F6, 355 G2, HP Pavilion 15-p038na 15-g092sa 15-p091sa 15-G094S 15-p144na 15-p142na, 15-Af156sa || <!--Chipset-->AMD very slow A4-5000 A6-5200, E2-6110, E1-6010 E2-2000, E1-2100 E2-3800, A4-6210 A6-6310 A8-6410, E2-7110, A6-7310 A8-7410 APU on A68M || <!--IDE-->{{N/A}} || <!--SATA-->sata some with cdrw dvdrw || <!--Gfx-->{{Maybe|VESA Radeon R2 R4 R5}} || <!--Audio-->{{no|HD Audio ALC3201-GR}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 RTL8102E or Atheros 1GbE}} || <!--Wireless-->{{unk|Qualcomm Atheros AR9565}} || <!--Test Distro--> || <!--Comments-->2015 64bit most have SSE4 AVX but E2-2000 does not - 15.6-inch (1366 x 768) - 2 ddr3l sodimm slots - small 31Whr or 41Whr external battery covers 240 G4, 245 G4, 250 G4, 255 G4, 256 G4, 14G, 15G - keyboard repair swap requires removal of all components -
|-
| <!--Name-->HP Elitebook 725 G2, 745 G2, 755 G2 || <!--Chipset-->Amd Quad very slow A6-7050B A8-7150B 1.9GHz A10-7350B || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->{{Maybe|VESA on AMD R4 R5 Radeon R6 with DP and vga}} || <!--Audio-->{{No|HD audio with IDT 92HD91}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 PCIe GBE}} || <!--Wireless-->{{no|Broadcom or Atheros}} || <!--Test Distro--> || <!--Comments-->2016 64bit - 12.5-inch, 14" or 15.6in (all 1366 x 768) - 19.5V 65w 45W AC adapter - internal pull up tab battery under base which slides off - 2 ddr3l sodimm slots - keyboard swap requires removal of all components -
|-
| <!--Name-->HP ProBook 645 g2, Probook 445 G2, Probook 245 G2 most have cmos rtc battery || <!--Chipset-->AMD very slow A6-8600 A8-8700 a10- || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->{{Maybe|VESA 2D for Radeon R5 R6}} || <!--Audio-->{{No|HD Audio }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{No|Intel I219V 100/1000}} || <!--Wireless-->{{No|Intel or Qualcomm Atheros}} || <!--Test Distro--> || <!--Comments-->2016 64bit - 14in and 15.6-inch HD (1366 x 768) or FHD 1080p - 2 ddr3l sodimm slots max 16GB - internal battery - hp ac psu tip -
|-
| <!--Name-->HP Probook 455 G3 should have a cmos battery || <!--Chipset-->AMD slow A10-8700P || <!--IDE-->{{N/A}} || <!--SATA-->1 2.5in sata and most should have 9.5mm dvd-rw || <!--Gfx-->{{Maybe|VESA 2D for Radeon R5}} || <!--Audio-->{{No|HDAudio with Conexant CX7501 codec }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 Realtek RTL8111HSH-CG}} || <!--Wireless-->{{no|RTL8188EE }} || <!--Test Distro--> || <!--Comments-->2016 64bit - 2 ddr3l sodimm slots - keyboard swap problematic -
|-
| <!--Name-->HP Elitebook 725 G3, 745 G3, 755 G3, 725 G4, 745 G4, 755 G4, HP mt43 || <!--Chipset-->Amd slow A8-8600B, A10-8700B, A12-8800B to Quad A8 Pro 9600B to A10 9800 || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->{{Maybe|VESA on AMD R5 R6 R7 with DP and vga but screen is low res, dull colours, and blurry}} || <!--Audio-->{{No|HD audio with IDT codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{No|Broadcom 5762 PCIe GBE}} || <!--Wireless-->{{no|Realtek RTL8723BE-VB}} || <!--Test Distro--> || <!--Comments-->2016 64bit - 12.5-inch (1366 x 768) to 14" and 15.6in - 2 sodimm ddr3 - 19.5V 45W AC slim 4.5mm hp adapter - randomly shuts down and the noisy fans constantly on - keyboard swap problematic -
|-
| <!--Name-->HP ProBook 645 G3, 655 G3 should have a cmos rtc battery underside of mb || <!--Chipset-->AMD 8th Gen slow A10-8730B, A8-9600B (4c4t) A6-8530B (2c2t) || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->{{Maybe|VESA 2d for AMD R5}} || <!--Audio-->{{No|HD Audio}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 RTL8111HSH}} || <!--Wireless-->{{No|Intel or Realtek}} || <!--Test Distro--> || <!--Comments-->2016 64bit - 15.6in - 2 ddr4 sodimm slots - keyboard repair swap requires removal of all components -
|-
| <!--Name-->HP ProBook 250 G5 easy cmos and external main battery || <!--Chipset-->Intel i7-6500U, i5-6200U, i3-6100U to slow i3-6006U, N3710 all sse4.1 and avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe| }} || <!--Gfx-->{{maybe|VESA 2D for iGPU Intel HD405 to HD520 dGPU or AMD Radeon R5 430M}} || <!--Audio-->{{unk|HDAudio with Realtek ALC3227 (or ALC282) codec 0x0282 }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 rtl8111HSH}} || <!--Wireless-->{{no| }} || <!--Test Distro-->Deadwoods' latest usb3 test iso with noacpi || <!--Comments-->2016 64bit - 15.6 inch 768p - HP ac psu - 2 ddr4 sodimm slots -
|-
| <!--Name-->HP ProBook 250 G6 SL52 LA-E801P - easy cmos battery and external battery || <!--Chipset-->Intel tested '''7200U''' untested 7500U to slow N3060 || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|ahci on M.2 sata or 2.5in whichever installed with 1 m.2 permanent and internal dvdrw}} || <!--Gfx-->{{Maybe|VESA 2D for Intel Intel HD Graphics 620 or AMD Radeon 520}} || <!--Audio-->{{yes|HDAudio 0x8086, 0xa170 or 0x8086, 0x9dc8 with ALC3227 aka ALC282 codec 0x10EC, x0282}} || <!--USB-->{{maybe|intel sunrise point-lp USB3.0 xHCI}} || <!--Ethernet-->{{yes|rtl8169 Realtek RTL8111}} || <!--Wireless-->{{No|RTL8821CE or Intel wifi}} || <!--Test Distro-->Deadwoods' latest usb3 test iso with noacpi || <!--Comments-->2017 64bit 768p or 1080p - 19.5V 65W - 2 DDR4 sodimm slots max 16Gb - keyboard swap problematic - synaptics touchpad - poor hinges -
|-
| <!--Name-->HP Pavilion 14-BS, HP 15-BS LA-E802P cmos battery and external battery || <!--Chipset-->Intel i3-7200U to slow Celeron || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata 2.5in (possibly requires the drive cable and M.2 sata3, most have no cdrw dvdrw}} || <!--Gfx-->{{Maybe|VESA 2d for Intel}} || <!--Audio-->{{No|HDAudio 0x8086, 0x9d70 with ALC codec 0x10EC, x0}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|Realtek rtl8169}} || <!--Wireless-->{{No|RTL8188CTV, RTL8821CE or Intel Dual Band Wireless-AC 3168}} || <!--Test Distro-->Deadwoods' latest usb3 test iso || <!--Comments-->2017 64bit 768p all - 19.5V 65W - DDR4 slot max 8Gb - keyboard swap problematic - synaptics touchpad -
|-
| <!--Name-->HP 14-bw022na - cmos coin battery and external battery || <!--Chipset-->AMD very slow A6-9120 APU || <!--IDE-->{{N/A}} || <!--SATA-->m.2 sata || <!--Gfx-->{{Maybe|VESA 2D for R3}} || <!--Audio-->{{no|HDAudio VOID with conexant CX7501 codec}} || <!--USB-->{{maybe|USB3 not working but port on the right works}} || <!--Ethernet-->{{yes|Realtek GbE}} || <!--Wireless-->{{No|Realtek}} || <!--Test Distro-->Deadwoods' latest usb3 test iso with noacpi || <!--Comments-->2017 64bit 768p to 900p - keyboard swap problematic -
|-
| <!--Name-->HP Probook 455 G4, Probook 455 G5, cmos battery on underside of mb take off back cover and below wifi card || <!--Chipset-->AMD very slow A10-9600P APU, A9-9410, A6-9210 APU || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->{{Maybe|VESA Radeon R4, R5 or R6}} || <!--Audio-->{{No|HD }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|realtek 1GbE}} || <!--Wireless-->{{no|realtek or intel Wireless-AC 7265}} || <!--Test Distro--> || <!--Comments-->2017 64bit 15.6in 768p - 2 ddr4 sodimm slots - keyboard swap problematic - rr03xl battery -
|-
| <!--Name-->HP ProBook 255 G6 (), easy cmos and external battery || <!--Chipset-->AMD very slow E2-9000e, A9-9420, 9220P, A4-9125 (all 2c) AMD A6-9225 AMD A9-9425 || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata 2.5in (possibly requires the drive cable and M.2 sata3 and internal cdrw dvdrw}} || <!--Gfx-->{{Maybe|VESA 2d for R2 R3 R4}} || <!--Audio-->{{No|HDAudio 0x1022, 0x157a or 0x1002, 0x15b3 with ALC codec 0x10EC, x0}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|Realtek rtl8169}} || <!--Wireless-->{{No|RTL8188CTV, RTL8821CE or Intel Dual Band Wireless-AC 3168}} || <!--Test Distro--> || <!--Comments-->2017 64bit 768p all - 19.5V 65W - DDR4 slot max 8Gb - keyboard swap problematic - synaptics touchpad -
|-
| <!--Name-->HP ProBook 255 G7 (la-g078p) - no cmos battery so needs internal battery || <!--Chipset-->AMD very slow E2-9000e, A9-9420, 9220P, A4-9125 (all 2c) AMD A6-9225 AMD A9-9425 || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata 2.5in (possibly requires the drive cable and M.2 sata3, most have no internal cdrw dvdrw}} || <!--Gfx-->{{Maybe|VESA 2d for R2 R3 R4}} || <!--Audio-->{{No|HDAudio 0x1022, 0x157a or 0x1002, 0x15b3 with ALC codec 0x10EC, x0}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|Realtek rtl8169}} || <!--Wireless-->{{No|RTL8188CTV, RTL8821CE or Intel Dual Band Wireless-AC 3168}} || <!--Test Distro--> || <!--Comments-->2017 64bit 768p all - 19.5V 65W - DDR4 slot max 8Gb - keyboard swap problematic - synaptics touchpad -
|-
| <!--Name-->ProBook 245 g8 - no cmos rtc coin battery but uses internal battery || <!--Chipset-->AMD very slow A6-9225, A4-9125, A6-8350B, A4-5350B APU || <!--IDE-->{{N/A}} || <!--SATA-->m.2 sata || <!--Gfx-->{{Maybe|VESA R4 R6}} || <!--Audio-->{{no|HDAudio}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|Realtek GbE}} || <!--Wireless-->{{No|Realtek}} || <!--Test Distro-->Deadwoods' latest usb3 test iso || <!--Comments-->2017 64bit 768p - many later variants - keyboard swap problematic -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Probook 255 G7 84AE 7DE72EA 7DE73EA (epv51 la-g076p) - CMOS Error (502) replace main internal battery HT03XL to have bios remember settings || <!--Chipset-->Ryzen 3 2200U 2300U (2c4t), R5 2500U, R7 2700U (4c8t) Raven Ridge || <!--IDE-->{{N/A}} || <!--SATA-->{{no|M.2 (Sata or NVMe) and very optional 2.5in sata, most have mini sata port}} || <!--Gfx-->{{Maybe|VESA 2d 640p to 768p for AMD Vega 3, 6, or 8}} || <!--Audio-->{{unk|HDAudio 0x1022, 0x15e3 with ALC236 0x10ec, 0x0236 codec}} || <!--USB-->{{maybe|USB3 }} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no|Realtek RTL8821CE, 8822BE or Intel AC 8265}} || <!--Test Distro-->AROS x64 deadwoods' iso does not boot with cd/dvd and installed to 2.5in ssd, boots to grub choice, select but no further and reboots || <!--Comments-->2017 64bit - 12.5 to 15.6in 768p mostly to 1080p - 1 on smaller laptops or 2 ddr4 2400mhz sodimm slots on larger laptops max 16Gb - hp 4.5mm blue tip charging - keyboard swap problematic - esc boot options f9 boot order f10 bios - synaptics touchpad -
|-
| <!--Name-->HP EliteBook 725 G5, 735 G5, 745 G5, 755 G5, Probook 455 G6, ProBook 645 G6 || <!--Chipset-->Ryzen 3 2200U 2300U (2c4t), R5 2500U, R7 2700U (4c8t) Raven Ridge || <!--IDE-->{{N/A}} || <!--SATA-->{{no|M.2 (Sata or NVMe) and very optional 2.5in sata, some have mini sata port but no cdrw dvdrw}} || <!--Gfx-->{{Maybe|VESA 2d 640p to 768p for AMD Vega 3, 6, or 8}} || <!--Audio-->{{No|HDAudio 0x1022, 0x15e3 with ALC 0x10ec, 0x0 codec}} || <!--USB-->{{maybe|USB3 }} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no|Realtek RTL8821CE, 8822BE or Intel AC 8265}} || <!--Test Distro-->Deadwoods' latest usb3 test iso does not boot software error || <!--Comments-->2017 64bit - 12.5 to 15.6in 768p mostly to 1080p - 1 on smaller laptops or 2 ddr4 2400mhz sodimm slots on larger laptops max 16Gb - hp 4.5mm blue tip charging - keyboard swap problematic - esc boot options f9 boot order f10 bios - synaptics touchpad -
|-
| <!--Name-->HP 14-cm, 15-bw0, HP 15-db0043na, HP 15-db0996na, HP 15-db0997na, 17-ca0007na, 17-ca1, ProBook 645 G4 - no cmos battery || <!--Chipset-->Ryzen 2200U (2c 4t) 2500U (4c 8t) with AMD Carrizo FCH 51 || <!--IDE-->{{N/A}} || <!--SATA-->{{no|1 M.2 and 1 2.5in on some larger models and hdd port }} || <!--Gfx-->{{Maybe|VESA Radeon R5 and later Vega 3 or 7}} || <!--Audio-->{{No|HDaudio 0x1002, 0x103c or 0x1022, 0x157a with Realtek ALC3227 0x10ec, 0x0282 but ATI HDMI}} || <!--USB-->{{Maybe|USB3 USB boot drive stuck on kitty's eyes}} || <!--Ethernet-->rtl8169 RTL8111E || <!--Wireless-->{{No|RTL 8723DE 8821 bios locked}} || <!--Test Distro-->2020 Icaros 2.3 USB, Deadwoods' latest usb3 test iso does not boot software error || <!--Comments-->2018 64bit 2kg - screen is dim 14in, 15.6in or 17.3" 768p or 1080p - 65W 19.5V ac adapter - internal 3-cell 41 Wh Li-ion battery does not last long - 2 ddr4 sodimm slots - no DVD-Writer - keyboard swap problematic -
|-
| <!--Name-->HP ProBook 250 G7, 250 G8 - no cmos battery so needs internal battery and needs usb3 boot due to garbage bios boot options || <!--Chipset-->Intel 8235U 8265U || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|M.2 nvme not working, optional sata 2.5in requires LS-G072P and ribbon cable, if internal cdrw dvdrw partial boot}} || <!--Gfx-->{{Maybe|VESA 2D for Intel WhiskeyLake-U 620 GT2 UHD}} || <!--Audio-->{{No|HDAudio 0x8086, 0xa170 or 0x8086, 0x9dc8 with ALC236 codec 0x10EC, x0236}} || <!--USB-->{{maybe|Cannon Point-LP USB3.1 xHCI}} || <!--Ethernet-->{{maybe|rtl8169 Realtek RTL8111}} || <!--Wireless-->{{No|RTL8821CE or Intel Dual Band Wireless-AC 3168}} || <!--Test Distro-->Deadwoods' latest usb3 test iso does not boot stuck on kittys eyes || <!--Comments-->2018 64bit 1080p all - 19.5V 65W - DDR4 slot max 16Gb - keyboard swap problematic - synaptics touchpad -
|-
| <!--Name-->HP 255 G7 7DC73EA 2D200EA 87CE (fpp55 la-g07jp), - CMOS Error (502) replace 41.04Wh ht03xl hto3xl dynapack suzhou main battery to have bios remember settings || <!--Chipset-->'''tested''' R5 3500U (4c8t) '''untested''' mostly dual cores - AMD Athlon Gold 3150U (2c2t), Silver 3050U APU (2c2t), Ryzen 3 Pro 3145U APU, 3200U (2c4t) || <!--IDE-->{{N/A}} || <!--SATA-->{{no|1 m.2 NVMe or sata3 up to 2280, optional 2.5in sata, many have mini-sata slimline 6+7 internal port but no physical 9mm drive}} || <!--Gfx-->{{Maybe|VESA 2D from 640p to 1080p for AMD Vega 3, 6 or 8 with up to 2gb ram taken}} || <!--Audio-->{{unk|HDAudio 0x1022, 0x15e3 with realtek ALC236 codec 0x10ec, 0x0236}} || <!--USB-->{{maybe|USB3 but no usb-c}} || <!--Ethernet-->{{maybe|rtl8169 Realtek GbE RTL8111HSH}} || <!--Wireless-->{{No|Realtek 8822BE}} || <!--Test Distro-->2025 Aros One 32bit and 64bit burnt iso does not fully boot (stuck on kitty's eyes) and installed onto 2.5in on another compatible computer, sometimes has dosboot bootstrap error -6 || <!--Comments-->2018 64bit - 14in / 15.6in dim tn panel 768p or 1080p - 2 ddr4 sodimm slots max 16gb - hp 19.5V 45W 65W AC blue tip round 4.5 mm - keyboard swap problematic - synaptics touchpad - caps lock blinking 3 times then 2 quick pulses means ram or bios issue - f9 boot order f10 uefi - laptop needs usb3 to boot and use so avoid until usb3 arrives
|-
| <!--Name-->HP ProBook 450 G5 needs main battery for bios settings saved || <!--Chipset-->Intel i7-8550U, i5-8250U, i3-8130U, i7-7500U, i5-7200U, i3-7100U, i3-7020, i3-6006U all sse4.1 and avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe| }} || <!--Gfx-->{{maybe|VESA 2D for Intel UHD}} || <!--Audio-->{{unk|HDAudio with codec }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 rtl8111HSH}} || <!--Wireless-->{{no| }} || <!--Test Distro-->Deadwoods' latest usb3 test iso with noacpi || <!--Comments-->2018 64bit - 15.6 inch 768p or 1080p - HP ac psu, 1 ddr4 sodimm slot -
|-
| <!--Name-->[https://support.hp.com/gb-en/document/c06955717 ProBook 245 g8], Probook 445R G6, 455R G6, HP14-dk0599sa, pavilion 15-cw1511na 15-cw1507sa, HP 15s-eq1516sa no cmos battery || <!--Chipset-->AMD Athlon Gold 3150U (2c2t), Silver 3050U APU (2c2t), Ryzen 3 Pro 3145U APU, 3200U (2c4t) and 3500U (4c8t) || <!--IDE-->{{N/A}} || <!--SATA-->{{no|1 m.2 (NVMe or sata3 up to 2280), optional 2.5in sata but resets}} || <!--Gfx-->{{Maybe|VESA 2D from 640p to 1080p for AMD Vega 3, 6 or 8 with up to 2gb ram taken}} || <!--Audio-->{{unk|HDAudio 0x1022, 0x15e3 with realtek ALC codec 0x10ec, 0x0}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 Realtek GbE RTL8111HSH}} || <!--Wireless-->{{No|Realtek 8822BE}} || <!--Test Distro-->Aros || <!--Comments-->2018 64bit - 14in / 15.6in dim tn panel 768p or 1080p - 2 ddr4 sodimm slots max 16gb - hp 19.5V 45W 65W AC blue tip round 4.5 mm - keyboard swap problematic - synaptics touchpad - f9 boot order f10 uefi
|-
| <!--Name-->HP ProBook 450 G6 needs main battery for bios settings saved || <!--Chipset-->Intel i7-8565U, i5-8265U, i3-8165U all sse4.1 and avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe| }} || <!--Gfx-->{{maybe|VESA 2D for Intel UHD 620}} || <!--Audio-->{{unk|HDAudio with Realtek ALC3246 aka ALC295 codec }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 rtl8111HSH}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2019 64bit - 15.6 inch 768p or 1080p - 45W 19.5V HP ac psu - 2 ddr4 sodimm slots -
|-
| <!--Name-->Elitebook 735 G6 5VA23AV, Elitebook 745 G6, 255 g8, HP 15s-dy - no cmos battery || <!--Chipset-->AMD® Ryzen™ 5-3500U Ryzen 3-3300U AMD Ryzen 3-3250U AMD Athlon® Gold 3150U AMD Athlon Silver 3050U AMD 3020e || <!--IDE-->{{N/A}} || <!--SATA-->{{no|m.2 2280 nvme in legacy - hp sure start and secure boot disabled but still issues with gpt installs - LS-H323P LS-K201P}} || <!--Gfx-->{{Maybe|VESA for Vega 8, 5 or 3}} || <!--Audio-->{{No|HDAudio 6.34 ahi with realtek ALC codec 0x10EC, 0x0295}} || <!--USB-->{{maybe|USB3 type-A port boots stick partially to kitty eyes}} || <!--Ethernet-->{{Maybe|rtl8169 realtek RTL8111E or 8111H}} || <!--Wireless-->{{No|realtek or intel}} || <!--Test Distro-->2020 Icaros 2.3 onto USB and AROS One 1.8 USB, Deadwoods' latest usb3 test iso with noacpi || <!--Comments-->2019 64bit - 15.6in 1366x768 to 1920x1080 - 2 3200MHz DDR4 sodimms - 19.5V 2.31A or 20V 2.25 45W 4.5X3.0MM hp - esc bios setup, f9 boot device select - low travel keyboard - poor hw03xl or battery life - plastic hooked base with retained screws - touchpad? -
|-
| <!--Name-->HP ProBook 445 G7, 455 G7 || <!--Chipset-->Ryzen 3 4300U 5 4500U 4700U || <!--IDE-->{{N/A}} || <!--SATA-->1 sata and 1 nvme || <!--Gfx-->{{Maybe|VESA Vega 3}} || <!--Audio-->{{unk|HDAudio with realtek alc236 codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|realtek rtl8111ep}} || <!--Wireless-->{{No|realtek RTL8822CE or intel AC 9260 or Wi-Fi 6 AX200}} || <!--Test Distro-->Deadwoods' latest usb3 test iso || <!--Comments-->2020 64bit - 14 inch 768p or 1080p - 2 ddr4 sodimm slots - smart 45w 65w hp or usb-c charging - keyboard swap problematic - RE03XL battery -
|-
| <!--Name-->HP ProBook 450 G7 || <!--Chipset-->Intel || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe| }} || <!--Gfx-->{{maybe|VESA 2D for Intel UHD}} || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 rtl8111EP}} || <!--Wireless-->{{no| }} || <!--Test Distro-->Deadwoods' latest usb3 test iso with noacpi || <!--Comments-->2020 15.6 inch 768p or 1080p - 1 ddr4 sodimm slot -
|-
| <!--Name-->HP EliteBook 745 G7, 845 G7, HP 15-EH0006NA || <!--Chipset-->AMD Ryzen 3 4300U, 5 4500U, PRO 4650U || <!--IDE-->{{N/A}} || <!--SATA-->SSD M.2 || <!--Gfx-->{{Maybe|VESA AMD Radeon Vega 8}} || <!--Audio-->{{unk|Hdaudio with codec 0x10EC, 0x0257}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{No| }} || <!--Test Distro--> || <!--Comments-->2020 64bit - 15.6in 1080p - 1 ddr4 sodimm slot - Bang & Olufsen speakers - keyboard swap problematic -
|-
| <!--Name-->HP ProBook 255 G8, HP 245 G9, ProBook 255 G9 816C2EA#ABE, - no cmos battery only internal battery || <!--Chipset-->AMD RYZEN 3 5300u, 5425U, 5 5500U 5625U, 7 5700u || <!--IDE-->{{N/A}} || <!--SATA-->{{no|NVMe}} || <!--Gfx-->{{Maybe|VESA AMD Vega 6 or 8 hdmi 1.4B}} || <!--Audio-->{{unk|HDAudio}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 Realtek RTL8111HSH-CG GbE}} || <!--Wireless-->{{No|Realtek RTL8822CE or Intel}} || <!--Test Distro--> || <!--Comments-->2021 64bit - 14" to 15.6in 768p to 1080p poor gamut - 45 or 65w hp psu - 2 ddr4 sodimm slots max 16GB - keyboard swap problematic -
|-
| <!--Name-->HP ProBook 450 G9 || <!--Chipset--> || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe| }} || <!--Gfx-->{{maybe|VESA 2D for Intel Iris Xe}} || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 rtl8111H}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2020 15.6 inch - 1 ddr4 sodimm slot -
|-
| <!--Name-->HP EliteBook 645 g7, 835 G8, 845 g8, HP ENVY x360 13 15, HP 17-cp0021na || <!--Chipset-->AMD Ryzen 5 5650U, 7 5800U, R7 Pro 5850U || <!--IDE-->{{N/A}} || <!--SATA-->NVMe || <!--Gfx-->{{Maybe|VESA 2D for AMD Radeon}} || <!--Audio-->{{unk|HDAudio 0x, 0x with ALC3247 aka ALC236 codec 0x10ec, 0x0236}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{Maybe|Realtek 1Gbe on 645 only}} || <!--Wireless-->{{No| }} || <!--Test Distro--> || <!--Comments-->2021 64bit - 13.3" or 14" 1080p - poor screens low nits and srgb score - 845 gets hot ue to poor cooling - slim round hp ac - keyboard swap problematic -
|-
| <!--Name-->HP Dev One, HP ProBook 455 G8 || <!--Chipset-->AMD Ryzen 7 5800U, R7 5850U || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Maybe|VESA }} || <!--Audio-->{{unk| }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2021 64bit 15.6" 1080p - 2 internal sodimm slots - hp barrel charging -
|-
| <!--Name-->Elitebook 655 g9 669y1ut#aba, || <!--Chipset-->AMD Ryzen 5 PRO 5675U || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Maybe|VESA }} || <!--Audio-->{{unk| }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2021 64bit 15.6" 1080p - 1 or 2 internal sodimm slots - usb-c charging -
|-
| <!--Name-->HP probook 635 Aero G8 || <!--Chipset-->AMD Ryzen 5 5600U || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2921 64bit - 14in 1080p - 2 ddr4 slots - ec chip nuvoton NPCX797HA1B - bios winbond 250256JYEN -
|-
| <!--Name-->HP PROBOOK X360 435 G8 cmos battery || <!--Chipset-->RYZEN 5 5600U || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe| }} || <!--Gfx-->{{maybe|Vesa 2D }} || <!--Audio-->{{maybe|HDaudio with ALC236 codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no|RTL8822CE or Intel AX200}} || <!--Test Distro--> || <!--Comments-->2021 64bit - hp round ac plug -
|-
| <!--Name-->HP Elitebook 845 g9 || <!--Chipset-->AMD 6000 series 6850u || <!--IDE-->{{N/A}} || <!--SATA-->M.2 NVMe || <!--Gfx-->{{Maybe|VESA 2D for Vega 8}} || <!--Audio-->{{unk|HDaudio with codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no| }}Qualcomm Atheros || <!--Test Distro--> || <!--Comments-->2022 64bit aluminum case - 14in 1080p to 2140p 16:10 poor screen again - 2 internal ddr5 sodimm slots - usb-c ac charging avoid any knocks - keyboard swap problematic -
|-
| <!--Name-->HP ProBook 445 G10, 455 G10 || <!--Chipset-->AMD Ryzen 5 7530U || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D for AMD Vega 7 || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2023 64bit - 15.6in - hp round ac -
|-
| <!--Name-->Hp 455 G11 || <!--Chipset-->AMD Ryzen 3 7335U (4c8t), 5 7535U (6c12t), 7 7735U (8c16t) || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D for AMD Vega 7 || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 RTL8111HSH}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2023 64bit - 35.6 cm (14.0 in) 1920x1200 or 2560x1600 - usb-c 45w or 65w ac - 2 ddr5 sodimm slots max 32gb -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|}
====IBM/Lenovo====
[[#top|...to the top]]
Build quality (Lowest to highest)
<pre >
iSeries
Edge
Ideapad
Thinkpad - good cases and construction but electronic internals same as anyone else
</pre >
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->Thinkpad 390X 390E (2626) || <!--Chipset-->Neo Magic MM2200 with C400 P2-266 to P3 500MHz || <!--IDE--> || <!--SATA--> || <!--Gfx-->use VESA || <!--Audio-->{{No|256AV or ESS Solo-1}} || <!--USB--> || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{N/A}} || <!--Test Distro--> || <!--Comments-->1998 32bit
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Thinkpad 600x || <!--Chipset-->Intel 440BX || <!--IDE-->{{Maybe| }} || <!--SATA--> || <!--Gfx-->{{Maybe|use VESA Neomagic NM2360 MagicMedia 256ZX}} || <!--Audio-->{{No|Crystal CS4297A codec}} || <!--USB--> || <!--Ethernet-->{{N/A| }} || <!--Wireless-->{{N/A| }} || <!--Test Distro-->Icaros 1.3.1 || <!--Comments-->1998 32bit a little support - earlier 600 and 600e were Pentium 2 based
|-
| <!--Name-->Thinkpad X20 (2662-32U) X21 || <!--Chipset-->Intel 440 BX ZX DX || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio-->{{no|AC97 with Cirrus Logic Crystal cs4281}} || <!--USB-->1.1 || <!--Ethernet-->no mini pci intel e100 || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2002 32bit
|-
| Thinkpad T20 (2647) T21 (26) T22 || 440BX || {{Maybe| }} || {{N/A}} || {{partial|Savage IX-MV (VESA only)}} || {{no|Cirrus Logic CS 4614/22/ 24/30}} || {{yes|USB 1.1}} || {{yes|Intel PRO 100}} || {{N/A}} || Icaros 1.2.4 || 2002 32bit
|-
| <!--Name-->A21e (2628, 2655) A22e || <!--Chipset-->440MX || <!--IDE--> || <!--SATA--> || <!--Gfx-->Ati rage mobility || <!--Audio-->{{no|AC97 Cs4299 CS4229}} || <!--USB--> || <!--Ethernet-->intel e100 || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2002
|-
| Thinkpad T23 (2647) || i810 || {{yes|IDE}} || {{N/A}} || {{maybe|S3 Super Savage IX/C SDR (VESA only)}} || {{maybe|AC'97 CS4299}} || {{yes|USB 1.1}} || {{yes|Intel ICH3 PRO 100 VE}} || {{no|Realtek RTL8180L others with bios hacking risky}} || || 2003 32bit with some support
|-
| <!--Name-->Thinkpad X22 X23 X24 || <!--Chipset-->830 || <!--IDE--> || <!--SATA--> || <!--Gfx-->ATi Mobility M6 LY || <!--Audio-->Ac97 CS4299 || <!--USB-->2 x 1.1 || <!--Ethernet-->Intel Pro 100 || <!--Wireless-->Actiontec Harris Semi Intersil Prism 2.5 (X23 and X24 only) || <!--Test Distro--> || <!--Comments-->2003 32bit with slice Ultrabase X2 -
|-
| <!--Name-->A30 A30p || <!--Chipset-->830 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Ati Radeon M6 || <!--Audio-->AC97 CS 4299 || <!--USB--> || <!--Ethernet-->Intel Pro 100 ve || <!--Wireless-->{{No|Intel 2200 bios locked}} || <!--Test Distro--> || <!--Comments-->2003 32bit
|-
| <!--Name-->A31 A31p R31 R32 T30 || <!--Chipset-->830 || <!--IDE-->{{yes| }} || <!--SATA-->{{N/A| }} || <!--Gfx-->Ati Radeon 7500 or FireGL || <!--Audio-->{{yes|AC97 Intel with AD1881A codec}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{yes| Intel Pro 100 ve}} || <!--Wireless-->{{No|Intel bios locked}} || <!--Test Distro-->[https://forums.lenovo.com/t5/Android-Ecosystem-Developers/AROS-An-operation-system-inside-Android/td-p/1441741 Icaros 1.5.2] || <!--Comments-->2003 32bit Also tested with Icaros 2.0.3.
|-
| Thinkpad X30 (2673) X31 (2884-xx2) X31t || i830 || {{yes}} || {{N/A}} || {{maybe|VESA only Radeon M6 Mobility}} || {{yes|AC97 - AD1981B codec}} || {{yes|USB 1.1}} || {{yes|Intel PRO 100}} || {{no|Cisco Aironet or Intel 2915 but atheros with bios hacking}} || Icaros 1.4 || 2004 32bit sound bit distorted
|-
| <!--Name-->R50e R51 || <!--Chipset-->855M || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|Intel 855M use VESA}} || <!--Audio-->intel AC97 with AD1981B codec || <!--USB--> || <!--Ethernet-->{{Yes|Intel 100 VE}} || <!--Wireless-->{{No|Intel PRO Wireless 2200BG bios locked}} || <!--Test Distro--> || <!--Comments-->2004 32bit -
|-
| IBM Thinkpad T40 (2373) T41 T41p (2379) T42 T42p T43 T43p || Intel 8xx || {{partial|PIO}} || {{N/A}} || {{partial|ATI mobility 7500 9000 (VESA only)}} || {{yes|AC97 playback}} || {{yes|uhci 1.1 and ehci 2.0}} || {{no|e1000}} || {{Maybe|Intel 2200bg bios locked but possible AR5BMB-44 AR5212 FRU 39T0081 mini PCI}} || Icaros 1.2.4 || 2004 32bit 16v IBM plug - Centrino Needs ATA=nodma option - issues with the inner chip of the SMT BGA graphics chip
|-
| Thinkpad X32 || i855 || {{yes|40, 60 or 80GB 2.5" PATA HDD}} || {{N/A}} || {{maybe|VESA only ATI Mobility Radeon 7000 with 16MB}} || {{maybe| Intel AC'97 Audio with a AD1981B codec}} || {{yes|USB}} || {{no|Intel 1000}} || {{no|Intel 2200 but atheros with bios hacking}} || 2016 Icaros 2.1 || 2004 32bit - 12.1" TFT display with 1024x768 resolution; 256 or 512MB PC2700 memory standard (2GB max)
|-
| <!--Name-->Thinkpad X40 X40t by Quanta || <!--Chipset--> || <!--IDE--> || <!--SATA-->{{N/A}} || <!--Gfx-->{{maybe|Intel 800 (VESA only)}} || <!--Audio-->{{yes|AC97 AD1981B}} || <!--USB-->{{yes}} || <!--Ethernet-->{{no|Intel e1000}} || <!--Wireless-->{{Maybe|Intel but most atheros with bios hacking - difficult though}} || <!--Test Distro--> || <!--Comments-->2004 32bit last IBM design
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Thinkpad X41 (IBM) MT 1864 1865 2525 2526 2527 2528 x41t (Lenovo) MT 1866 1867 || <!--Chipset-->Intel with single core 1.5 1.6 and tablet 1.2GHz || <!--IDE-->{{yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Yes|Intel 915GML 2D}} || <!--Audio-->{{yes|AC97 AD1981B}} || <!--USB-->{{yes}} || <!--Ethernet-->{{no|Broadcom BCM5751M tg3}} || <!--Wireless-->{{Maybe|Intel or MiniPCI Wi-Fi Atheros AR5BMB FRU 39T0081 but ordinary atheros 54meg needs risky bios hacking}} || <!--Test Distro--> || <!--Comments-->2005 32bit - amongst first Lenovo design
|-
| <!--Name-->R52 (most 18xx) || <!--Chipset-->Intel 915 || <!--IDE-->{{Yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Yes|Intel 915GML 2D}} || <!--Audio-->{{yes|AC97 AD1981B}} || <!--USB-->{{yes}} || <!--Ethernet-->{{no|Broadcom}} || <!--Wireless-->{{no|Broadcom bios locked}} || <!--Test Distro--> || <!--Comments-->2005 32bit
|-
| <!--Name-->R52 1846, 1847, 1848, 1849, 1850, 1870 || <!--Chipset-->ATi 200m || <!--IDE-->{{Yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{No|ATI}} || <!--Audio-->{{yes|AC97 AD1981B}} || <!--USB-->{{yes}} || <!--Ethernet-->{{no|Broadcom BCM5751M tg3}} || <!--Wireless-->{{no|Broadcom bios locked}} || <!--Test Distro--> || <!--Comments-->2005 32bit
|-
| <!--Name-->Thinkpad T60 T60P
* 64bit - 6 or 8 is 16:10 on T60/p, eg. 8742-CTO 15.4"
* 32bit - 1 and 2 are 14", 15" 4:3, like 2007-YM3 or 1952-CTO
|| <!--Chipset-->*any* T60/p will take a Core 2 Duo CPU with newer BIOS || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->Intel GMA (2D) with "p" graphics card (ATi V5200 or V5250) || <!--Audio-->{{no|HD Audio}} || <!--USB-->{{yes}} || {{no|e1000e 82573L}} || <!--Wireless-->{{No|Intel ipw3945 ABG but atheros with Middleton's or Zender BIOS hacking risky}} || Icaros 1.4 || <!--Comments-->2006 -
|-
| <!--Name-->X60 x60s x60t tablet || <!--Chipset-->945GMS 940GML || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{yes|Intel GMA (2D)}} || <!--Audio-->{{no|AD1981 HD Audio}} || <!--USB-->{{yes}} || <!--Ethernet-->{{no|Intel}} || <!--Wireless-->{{no|Intel 3945 ABG or fru 39T5578 Atheros 5K AR5BXB6 ar5007eg with bios hacking}} || <!--Comments-->Icaros 1.4 || 2006 32bit - perhaps needs a zendered bios update but risky
|-
| <!--Name-->R60 R60e || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->intel 950 with optional radeon x1300 x1400 || <!--Audio-->HD Audio with 1981HD codec || <!--USB--> || <!--Ethernet-->Intel or Broadcom || <!--Wireless-->{{Maybe|Intel 3945 or atheros fru 39T5578 bios locked}} || <!--Test Distro--> || <!--Comments-->2006 32bit
|-
| Thinkpad T61 T61p without Middleton's or Zender BIOS || Core 2 Duo CPU T7300 T8300 || {{N/A}} || <!--SATA-->{{yes| }} || Intel GMA (2D), NVS 140m or Quadro FX 570M () || {{maybe|HD Audio with Analog Devices AD1984 or AD1984A HD Audio Codec routed to the line output}} || <!--USB-->{{yes}} || {{no|intel e1000e 82573L}} || {{No|Intel but atheros with bios hacking risky}} || Icaros 1.6, AROS One || 2007 64bit
|-
| <!--Name-->X61 x61s X61T Tablet || <!--Chipset-->Core Duo T8100 on i965 || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->{{yes|Intel GMA 3100 (2D) slow 3D}} || <!--Audio-->{{no|AD1984 HD Audio}} || <!--USB-->{{yes|USB 2.0}} || <!--Ethernet-->{{no|Intel 82566DM}} || <!--Wireless-->{{maybe|Atheros AR5212 (some revisions use Intel WLAN runs very hot) bios locked}} || <!--Test Distro--> || <!--Opinion-->2007 64bit ultrabook running very hot - ddr2 max 4gb -
|-
| <!--Name-->R61 R61i || <!--Chipset-->Intel 965 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->intel 965 || <!--Audio-->HD Audio with conexant codec || <!--USB--> || <!--Ethernet-->Broadcom BCM5787M || <!--Wireless-->{{No|Intel 3945 bios locked}} || <!--Test Distro--> || <!--Comments-->2008 64bit
|-
| Lenovo 3000 N200 || <!--Chipset-->Santa Rosa || {{N/A}} || <!--SATA-->{{maybe| }} || {{yes|Geforce 7300 (2D)}} || {{yes|ALC262 HD Audio}} || <!--USB-->{{yes}} || {{no|Broadcom}} || {{no|Intel 3945 bios locked}} || Icaros 1.4 || 2007 64bit 3D graphics parts are supported but buggy.
|-
| Lenovo 3000 N200 / V200 || GM965 ICH9-M with Intel Mobile Core 2 Duo T5450 || {{N/A}} || <!--SATA-->{{maybe| }} || {{yes|X3100 (2D)}} || {{Maybe|HD Audio ALC269VB or CX20549}} || {{yes| }} || {{no|BCM5906M}} || {{no|Intel 3965 / 4965AGN bios locked}} || Icaros 1.4.1 2.1 || 2007 64bits of laptop works
|-
| <!--Name-->X300 || <!--Chipset-->Core 2 Duo Merom SL7100 1.2GHz || <!--IDE-->{{N/A}} || <!--SATA-->1.8 inch || <!--Gfx-->{{maybe|Intel X3100}} || <!--Audio-->HD Audio AD1984A || <!--USB--> || <!--Ethernet-->Intel || <!--Wireless-->{{No|Intel 4965 bios locked}} || <!--Test Distro--> || <!--Comments-->2007 64bit 13.3" TFT 1440x900 (WXGA+) with LED backlight
|-
| <!--Name-->Thinkpad Edge 11″ AMD K325 || <!--Chipset-->M880G || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{maybe|VESA for ATI HD4200}} || <!--Audio-->{{maybe| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 8111}} || <!--Wireless-->{{no|8192CE (Realtek 8176) bios locked}} || <!--Test Distro--> || <!--Comments-->2007 little support
|-
| <!--Name-->Thinkpad X301 || <!--Chipset-->Core 2 Duo Penryn SU9400 Su9600 with GM45 chipset || <!--IDE-->{{N/A}} || <!--SATA-->1.8 inch micro SATA (uSATA) || <!--Gfx-->{{maybe|Intel X4500}} || <!--Audio-->AD1984A || <!--USB--> || <!--Ethernet-->Intel || <!--Wireless-->{{No|Intel 5xxx WiFi link 5100, 5150, 5300 and 5350 (WiMAX) bios locked}} || <!--Test Distro--> || <!--Comments-->2009 WXGA+ (1440×900) LED backlight display - 2774 or 4057 Alps and 2776 Synaptics touchpad - optical bay interface is Legacy IDE (PATA) - Addonics ADMS18SA, Lycom ST-170m
|-
| <!--Name-->X100e || <!--Chipset-->AMD Athlon Neo Single-Core (MV-40) and dual cores || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|2.5in tray in ide mode in bios}} || <!--Gfx-->{{Maybe|Vesa ATI HD3200}} || <!--Audio-->{{yes|HD Audio with CX20582 codec playback}} || <!--USB-->{{Maybe| }} || <!--Ethernet-->{{Yes|Realtek 8111}} || <!--Wireless-->{{no|Realtek r8192se bios locked}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2009 64bit 11.6in 1366 x 768 - 20v 65W round barrel - enter f1 setup f11 diagnostics f12 boot list - runs very warm -
|-
| <!--Name-->SL400 SL500 || Intel || {{N/A}} || {{Yes|IDE mode}} || {{Maybe|Nvidia 9400M}} || {{Maybe|ALC269}} || {{yes|USB 2.0}} || {{Maybe|RTL8169}} || {{Maybe| bios locked}} || ||
|-
| <!--Name-->SL410 SL510 || 965 || {{N/A}} || {{maybe|IDE mode}} || {{maybe|Intel GMA X4500M (some 2D)}} || {{yes|HD Audio with ALC269 codec - speaker and ear phones}} || {{yes|USB 2.0}} || {{yes|RTL8169}} || {{Maybe| bios locked}} || [http://www.amiga.org/forums/showpost.php?p=645774&postcount=28 Icaros 1.3] || 2009 64bit SL-410
|-
| <!--Name-->T400 ODM Wistron || <!--Chipset-->i || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE in BIOS}} || <!--Gfx-->{{Maybe|Intel 4500MHD works limited 2d no 3d - optional switchable Nvidia or ATi HD3470 untested}} || <!--Audio-->{{Yes|HD Audio with Codec CX20561 (T400)}} || <!--USB--> || <!--Ethernet-->{{no|Intel e1000e}} || <!--Wireless-->{{No|Intel Wifi Link 5100 (AGN) half height card with FRU 43Y6493 or 5300 bios locked}} || <!--Test Distro--> || <!--Comments-->2009 64bit 20v lenovo plug - non-free firmware required iwlwifi
|-
| <!--Name-->T400s || <!--Chipset-->i || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE in BIOS}} || <!--Gfx-->{{Maybe|VSEA for Intel 4500MHD works limited 2d no 3d}} || <!--Audio-->{{Maybe|HD Audio with CX20585}} || <!--USB--> || <!--Ethernet-->{{no|Intel e1000e}} || <!--Wireless-->{{No|Intel Wifi Link 5100 (AGN) half height card with FRU 43Y6493 or 5300 bios locked}} || <!--Test Distro--> || <!--Comments-->2009 64bit non-free firmware required iwlwifi
|-
| <!--Name-->Lenovo T500 T510 || <!--Chipset-->i || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE in BIOS}} || <!--Gfx-->{{maybe|VESA for switchable Intel / AMD HD 3640}} || <!--Audio-->{{maybe|Intel HD Audio with a CX20561 (t500) and CX20585 (T510) codec}} || <!--USB--> || <!--Ethernet-->{{no|Intel }} || <!--Wireless-->{{no|Intel or Lenovo branded unit Atheros AR5007EG AR5BHB63 bios locked}} || <!--Test Distro--> || <!--Comments-->2009 64bit
|-
| <!--Name-->X200 ODM Wistron [http://itgen.blogspot.co.uk/2008/12/installing-arch-linux-on-lenovo.html X200s] and x200t tablet model without [http://fsfe.soup.io/post/590865884/the-unconventionals-blog-English-Flashing-Libreboot-on Risky flash of the Libreboot BIOS] || <!--Chipset-->GM45 GS45 with slow Celeron, SU or faster SL Core 2 Duos CPUs || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE in BIOS}} || <!--Gfx-->{{maybe||Intel GMA 4500 MHD 2D but slow software 3D tunnel 10 gearbox 8 tests}} || <!--Audio-->{{yes|Intel HD Audio with Conexant CX20561 codec playback}} || <!--USB-->{{{Yes|USB 2.0 USB SD card reads and writes}} || <!--Ethernet-->{{no|Intel 82567LM Gigabit}} || <!--Wireless-->{{no|Intel Pro 5100 5150 5300 5350 AGN due to whitelist prevention bios locked}} || <!--Test Distro-->Icaros 2.0.1 || <!--Comments-->2009 64bit 12.1" CCFL (webcam version) or LED backlit (no webcam). no support for 54mm express cards or Authentec 2810 fingerprint reader - thinkpoint only no trackpad - thinklight -
|-
| <!--Name-->Lenovo T410 T410s T410si || <!--Chipset-->qm57 with i5 m || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE in BIOS}} || <!--Gfx-->{{maybe|use vesa Intel 5700MHD (Ironlake) core processor igp with optional Nvidia Quadro NVS 3100M}} || <!--Audio-->{{yes|HD Audio Conexant CX20585 codec playback}} || <!--USB-->{{Yes|2.0}} || <!--Ethernet-->{{no|Intel 82577lm gigabit}} || <!--Wireless-->{{unk|Intel n 6200 or Atheros AR9280 AR5BHB92 half size minipcie bios locked}} || <!--Test Distro-->Icaros 2.2 xmas || <!--Comments-->2009 64bit battery life much lower with Nvidia graphics version - no support firewire ricoh r5c832 - ricoh sd card - series 5 3400
|-
| <!--Name-->X201 X201s x201t || <!--Chipset-->QM57 Core i3 370m, i5 M520 2.4GHz or i7 620LM 2.0GHz || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE in BIOS}} || <!--Gfx-->{{Maybe|vesa 2d on Intel GMA HD}} || <!--Audio-->{{yes|Intel HD with [https://ae.amigalife.org/index.php?topic=94.0 Conexant 20585] codec}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{no|Intel}} || <!--Wireless-->{{No|bios locked}} || <!--Test Distro--> || <!--Comments-->2010 X201 arrandale power consumption limits battery life to 3-4 hours for 48Whr though to 6 on 72Whr - 12.5" WXGA
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Ideapad B470, B570, V370, V470, V570 || <!--Chipset-->Intel® Core™ i5 i5-2430M, i5-2450M, || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata}} || <!--Gfx-->Vesa 2d for Intel || <!--Audio-->HDaudio 0x8086, 0x1c20 with codec || <!--USB-->USB3 || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no|whitelisted}} || <!--Test Distro--> || <!--Comments-->2011 64bit - 14in or 15.6in 768p -
|-
| <!--Name-->T420 type 4180 4236, t420s , T520 4239 L520 || <!--Chipset-->i5 2540, 2520 or i7 2860QM 2620 has sse4.1 avx || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE in BIOS but not AHCI}} || <!--Gfx-->{{Maybe|Vesa 136 x 768 - Intel HD 3000 with optional NVS 4200M Nvidia optimus or Radeon HD 565v }} || <!--Audio-->{{Yes|HD Audio playback ear phones only with Conexant CX20672 codec - AHI 6.27}} || <!--USB-->{{Maybe| }} || <!--Ethernet-->{{No|Intel PRO 1000 82579LM}} || <!--Wireless-->{{No|Realtek 1x1, Intel Ultimate-N 6205 6250 2x2 6300 3x3 all bios locked}} || <!--Test Distro-->Icaros 2.2.2 add noacpi to grub boot options || <!--Comments-->2011 64bit - screen 1600x900 or 1366x768 - 2 ddr3l sodimm slots max 16gb -
|-
| <!--Name-->Thinkpad W520 || <!--Chipset--> has sse4.1 avx || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE in BIOS}} || <!--Gfx-->{{Maybe|VESA Intel HD 3000 with nvidia quadro 1000m 2000m optimus issues with Nvidia Intel hybrids}} || <!--Audio-->{{Maybe|Intel Hd with CX 20585 codec}} || <!--USB--> || <!--Ethernet-->{{No|Intel 82579 Lm}} || <!--Wireless-->{{No|Intel 6000s}} || <!--Test Distro--> || <!--Comments-->2011 64bit - 15.6" TFT display with 1366x768 (HD), 1600x900 (HD+) or 1920x1080 (FHD) resolution with LED backlight
|-
| <!--Name-->X220 x220t || <!--Chipset-->QM67 express, dual i5 2520M or i7 dual 2620M sse4.1 avx support || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE in BIOS but not AHCI}} || <!--Gfx-->{{Maybe|VESA 2D 1024 x 768 for Intel HD Graphics 3000}} || <!--Audio-->{{Yes|Intel HD playback with Conexant 20672 codec ear phones and speaker - AHI 6.27 6.34}} || <!--USB-->{{Yes|USB 2.0}} || <!--Ethernet-->{{No|Intel 82579LM}} || <!--Wireless-->{{No|Intel Centrino Advanced-N 6205 Wi-Fi bios locked}} || <!--Test Distro-->Icaros 2.3, Aros One USB 1.6 || <!--Comments-->2011 64bit possible - uses slimmer 7 mm storage sata devices - NEC USB 3.0 on i7's - unwanted trackpad gestures when palms rests on it - 2 ddr3 sodimm slots - external battery -
|-
| <!--Name-->Thinkpad X120e, x121e Quanta FL8A DAFL8AMB8D0 Rev D || <!--Chipset-->Hudson M1 with slow AMD E350 has no sse4.1 or avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata}} || <!--Gfx-->{{Maybe|VESA ATI 0x9802}} || <!--Audio-->{{Maybe|ATI SBx00 Azalia HD Audio}} || <!--USB-->USB 2.0 || <!--Ethernet-->RTL8169 RTL8111 || <!--Wireless-->{{no|Broadcom 0x0576 bios locked}} || <!--Test Distro--> || <!--Comments-->2011 64bit 11.6 inch screen - 1 inch think - chiclet keyboard
|-
| <!--Name-->Ideapad S205 G575 G585, Edge 11 E325 || <!--Chipset-->Slow E-350 later E-450 with A75 or AMD Athlon II Neo has no sse4.1 or avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata}} || <!--Gfx-->{{Maybe|VESA HD6310}} || <!--Audio-->{{Yes| }} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No|Atheros}} || <!--Wireless-->{{No|Broadcom}} || <!--Test Distro--> || <!--Comments-->2011 64bit does not support AVX or SSE 4.1 - removeable and plug in battery - 2pin CR2032 CMOS battery -
|-
| <!--Name-->Ideapad S206 || <!--Chipset-->AMD E300 1.3GHZ Dual has no sse4.1 or avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata}} || <!--Gfx-->{{Maybe|VESA }} || <!--Audio-->{{Maybe|Intel HD Audio with CX20672 codec}} || <!--USB-->{{Maybe|3.0}} || <!--Ethernet-->Broadcom 10/100 || <!--Wireless-->{{unk|Atheros AR9285}} || <!--Test Distro--> || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 - 11.6" and integrated battery - Conexant®
|-
| <!--Name-->Lenovo x130e or x131e edu || <!--Chipset-->Slow AMD E-300 or E-450 has no sse4.1 or avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata}} || <!--Gfx-->{{Maybe|VESA Radeon HD 6310 or 6320 }} || <!--Audio-->{{Maybe|HD Audio Realtek ALC269VC / ALC3202 codec}} || <!--USB-->{{Maybe|USB 30 and USB 20}} || <!--Ethernet-->{{maybe|Realtek RTL8111 RTL8168B}} || <!--Wireless-->{{No|Realtek RTL8188CE or Broadcom BCM43228 bios locked}} || <!--Test Distro--> || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 - rubber edged bumper for K12 education market - 2pin CR2032 CMOS battery -
|-
| <!--Name-->Thinkpad Edge E135 E335 || <!--Chipset-->amd dual E-300, E2-1800 or E2-2000 slow atom like A68M FCH has no sse4.1 or avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|SATA 3.0Gb/s 2.5" wide 7mm high}} || <!--Gfx-->{{Maybe|VESA radeon 6310 or 7340 vga or hdmi}} || <!--Audio-->{{Maybe|HDAudio with Realtek ALC3202 codec}} || <!--USB-->{{maybe|2 usb3, 1 powered usb2}} || <!--Ethernet-->{{maybe|rtl8169 8111f}} || <!--Wireless-->{{no|Realtek WLAN whitelist bios locked}} || <!--Test Distro--> || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 - 11.6 inch to 13.3in 1366x768 - Acrylonitrile-Butadiene-Styrene (ABS) plastic case - external battery - 20v 65w lenovo barrel ac - 2 ddr3 sodimm 8Gb max -
|-
| <!--Name-->ThinkPad Edge E525 E535 LENOVO IDEAPAD Z575 || <!--Chipset-->AMD A6-3420M A8-3500M later A8-4500M has no sse4.1 or avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata}} || <!--Gfx-->{{Maybe|VESA AMD 6620G later 7640G}} || <!--Audio-->{{No|HDAudio with Conexant codec}} || <!--USB-->{{Maybe|USB2 but not usb3}} || <!--Ethernet-->{{maybe|rtl8169 Realtek 8111}} || <!--Wireless-->{{No|Broadcom bios locked}} || <!--Test Distro--> || <!--Comments-->2013 64bit does not support AVX or SSE 4.1 - 15.6in 1368 x 768 matt - 65W 20v lenovo round psu - thick desktop replacement - ThinkPad Edge E520 E520S E525 E530 E545 E535 E530C Laptop Keyboard swap -
|-
| <!--Name-->T430 t430i T530 || <!--Chipset-->ivy bridge i5 3320 3230m on Intel QM77 has sse4.1 and avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata}} || <!--Gfx-->{{Maybe|VESA 1366 x 768 for Intel HD 4000 with optional Nvidia 5400M}} || <!--Audio-->{{Maybe|Intel HD with Realtek ALC3202 aka ALC269VC codec playback ear head phones - HDA 6.27}} || <!--USB-->{{Yes|USB 2 ports and usb2.0 devices thru usb 3.0 ports}} || <!--Ethernet-->{{No|Intel e1000}} || <!--Wireless-->{{unk|Intel or Atheros AR9285 bios locked}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2013 64bit fan noise and chiclet keyboard, synaptics trackpad - HD+ 768p -
|-
| <!--Name-->Thinkpad X230 x230t || <!--Chipset-->Intel QM67 express i5 has sse4.1 and avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata}} || <!--Gfx-->{{Maybe|VESA }} || <!--Audio-->{{Maybe|Intel HD with ALC269 aka ALC3202}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{no|Intel }} || <!--Wireless-->{{No|I}} || <!--Test Distro--> || <!--Comments-->2013 64bit - 12.2 in 1366 x 768 - 2 ddr3 sodimm slots - external battery -
|-
| <!--Name-->Thinkpad T440 t440s t440p T540 L440 L540 || <!--Chipset-->intel haswell 8 series Core i3 to i7 has sse4.1 and avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata}} || <!--Gfx-->{{Maybe|VESA - Intel 4600 or Nvidia}} || <!--Audio-->Intel HD with Realtek ALC3232 alc269 codec or ALC292 || <!--USB-->{{maybe| }} || <!--Ethernet-->{{No|Intel}} || <!--Wireless-->{{No|Intel AC 7260 bios locked}} || <!--Test Distro--> || <!--Comments-->2014 64bit - 14 and 15" models with glitchy trackpad and no physical buttons - keyboard repair not easy as well as 4 variants of key caps - 2pin CR2032 CMOS battery -
|-
| <!--Name-->Thinkpad X240 x240t ultrabook TN (20AL0081GE), HD IPS display without touch (20AL007NGE) and touch (20AL0076GE) but all 65% sRGB || <!--Chipset-->haswell i7-4600U i5 4200U 4210U 4300U i3-4100U - two batteries, one internal 3cell 45N1110 (45N1111) or 45N1112 (FRU 45N1113) and external 3 / 6cell 45N1126 (FRU 45N1127) || <!--IDE-->{{N/A}} || <!--SATA-->2.5in 7mm sata (torq t7), m.2 2242 in WWAN slot (m and b key NGFF Sata) || <!--Gfx-->{{Maybe|use VESA for Intel 4400 for vga or mini-dp}} || <!--Audio-->{{No|HDAudio 0x8086, 0x0a0c 0x8086, 0x9c20 with Realtek ALC3232 aka ALC292 0x10ec, 0x0292}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{no|Intel® 82577LM Gigabit (Hanksville) }} || <!--Wireless-->{{no|Realtek or Intel 7260n I218-V or I218-LM bios locked}} || <!--Test Distro-->AROS One USB || <!--Comments-->2014 64bit - 12.2in 1366 x 768 or 1080p - 1 ddr3l sodimm slot - no keyboard spill drainage and at least 2 variants of key caps - lenovo rectangle pwr ac - TPM 1.2 - Bluetooth 4.0 no support - bottom panel with 8 retained screws - 2pin CR2032 CMOS battery -
|-
| <!--Name-->ThinkPad Edge E545
* key cap swap with E440 E531 E540 L440 L450 T431S T440S T440P T540
* Keyboard swap L540 T540p W540 Edge E531 E540 W541 T550 W550S L560 P50S T560
|| <!--Chipset-->AMD Socket FS1r2 A6-5350M (2c2t) or A8-4500M, A8-5550M, A10-5750M (4c4t) with A76M FCH has sse4.1 and avx || <!--IDE-->{{N/A}} || <!--SATA-->2.5in 9.5mm - enter UEFI bios with Enter or ESC, config section, sata into compatibility and security, secure boot disabled - mini sata DVD burner PLSD DS8A9SH || <!--Gfx-->{{Maybe|VESA 2D for AMD 7640G, 8450G, 8550G, 8650G ?? Islands}} || <!--Audio-->{{no|VOID for HDAudio 6.34 0x1022, 0x780d with Conexant CX20590 Analog 0x14f1, 0x506e CX20671 codec 0x14f1, 0x5069 or audio over Trinity HDMI}} || <!--USB-->{{maybe|boots pen drives from yellow usb port but not from blue USB3 ones, issues with AMD usb3 hardware quirks}} || <!--Ethernet-->{{yes|rtl8169 1GbE 8111F}} || <!--Wireless-->{{No|Broadcom BCM43142 bios locked}} || <!--Test Distro-->AROS One 2.3 USB works with noacpi added to end of grub2 boot line but not booting on AROS One 64bit 1.1 via usb2 stick or iso burnt to dvd || <!--Comments-->2015 64bit - 15.6in 1366 x 768 matt - 20v 65w 90w round lenovo plug psu - 2 DDR3 SODIMM slots 16GB Max - external 6 Cell Li-Ion Battery 48Wh l11s6y01 45n1043 - 2pin CR2032 CMOS battery in wifi area jp1202 - amd v(tm) virtualization not working -
|-
|<!--Name-->AMD platform codes
*Beema: ABM,
*Carizzo-L: ACL,
*Carizzo: ACZ,
*Godavari: AGR,
*Kaveri: AKV,
*Stoney Ridge: ASR,
*Stoney Ridge: AST (NB),
|| <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
*Summit Ridge: ASU,
*Bristol Ridge-L: ABL,
*Bristol Ridge: ABR,
*Raven Ridge: ARR,
*Picasso: API
|-
| <!--Name-->[https://www.laptop-schematics.com/db/78/V%20series%20laptops%20(Lenovo)/ V110-14AST (14in) V110-15AST, V110-14ISK V110-15ISK 80TL (15")], || <!--Chipset-->AMD E1-9000, A6-9210 to A9-9410 all dual core and intel 6006u, 6100u, 6200u || <!--IDE-->{{N/A}} || <!--SATA-->1 2.5in sata most 7mm some 9.5mm || <!--Gfx-->{{Maybe|VESA 2D for AMD R2, R3, R5 or R6 or Intel Gfx}} || <!--Audio-->{{No|HDAudio with codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2016 64bit - 14in to 15.6in mostly 768p 220 nits - 20v 45W or 65W lenovo slim rectangle end ac - keyboard swap hard - integrated 24WHr battery - 4gb ddr4 ram soldered and 1 2133Mhz ddr4 slot max 12Gb - abs plastic -
|-
|<!--Name-->
*ThinkPad A275 12in (1 ddr4 1866MHz sodimm)
*Thinkpad A475 14in (2 ddr4 1866MHz sodimm) - both internal (main) and external (secondary) battery
|| <!--Chipset-->A10-8730B A10-9700B 2.500Ghz later A12-8830B A12-9800B all 4c4t (AVX2 on 9000s) || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe|7mm 2.5in sata with mbr and not gpt, setup in another machine - secure boot disabled, bios startup boot set to legacy then uefi - WWAN slot cannot use M.2 2242 sata with M and B key}} || <!--Gfx-->{{Maybe|VESA 2D for AMD R5 or R7}} || <!--Audio-->{{No|HDAudio 6.34 ahi 0x1022, 0x157a with ALC3268 aka ALC298 codec 0x10ec, 0x0298 - VOID even with QUERY / QUERYD added}} || <!--USB-->{{no|USB3 error on boot suspect AMD usb3 quirk}} || <!--Ethernet-->{{Yes|rtl8169 RTL8111EPV}} || <!--Wireless-->{{No|Realtek RTL8822BE WLAN whitelist locked cannot swap}} || <!--Test Distro-->{{maybe|AROSOne USB 32bit 1.8 with noacpi noapic noioapic added to grub2 boot line but Aros One 64bit 1.2 USB has krnPanic }} || <!--Comments-->2016 64bit 12 or 14in 768p - 45W or 65w lenovo rectangle ac adapter - F1 enter bios and F12 boot order - 6 retained screws and snap on base - 2100 error message no solution except using only efi/gpt bios option -
|-
|<!--Name-->320S-15AST, 320S-15ABR, ideapad Slim 1-11AST-05 81VR || <!--Chipset-->AMD A6-9220e, AMD A6-9225, A9-9425, A10-9600P 7th Gen || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata 2.5in}} || <!--Gfx-->{{maybe| Vesa 2D for AMD}} || <!--Audio-->{{No| }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{No|Qualcomm Atheros QCA9377 or Realtek RTL8821CE}} || <!--Test Distro--> || <!--Comments-->2018 64bit AVX2 - 14in or 15.6" 768p - 1 ddr4 sodimm slot - keyboard swap problematic -
|-
|<!--Name-->Lenovo Ideapad S145-14AST S145-15AST 81N3 || <!--Chipset-->AMD A6-9225, A9-9425, A10-9600P 7th Gen, AMD A12-9720P Mobo 5B20P11110 NMB341 Bristol Ridge || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata 2.5in}} || <!--Gfx-->{{Maybe|VESA Radeon 8670A 8670M 8690M GCN 3}} || <!--Audio-->{{No| }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{No|Qualcomm Atheros QCA9377 or Realtek RTL8821CE}} || <!--Test Distro--> || <!--Comments-->2018 64bit AVX2 - 14in or 15.6" 768p or 1080p - 1 ddr4 sodimm slot -
|-
|<!--Name-->Lenovo Ideapad V145-14AST V145-15AST, 81mt, Ideapad 310, Ideapad 320-15ABR, Ideapad 330-14AST 330-15AST 330-17AST || <!--Chipset-->AMD A6-9225, A9-9425 (2c2t), A10-9600P 7th Gen, AMD A12-9720P Mobo 5B20P11110 NMB341 Bristol Ridge || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata 2.5in with optional dvd}} || <!--Gfx-->{{Maybe|VESA Radeon 8670A 8670M 8690M GCN 3}} || <!--Audio-->{{unk|HDaudio with ALC3240-va3-cg aka ALC236? codec 0x10de, 0x0236}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{no|rtl8169 8106E 10/100 only}} || <!--Wireless-->{{No|Qualcomm Atheros QCA9377 or Realtek RTL8821CE}} || <!--Test Distro--> || <!--Comments-->2017 64bit AVX2 - 14in or 15.6" 768p or 1080p - 1 ddr4 sodimm slot - 45w 65w slim ac adapter -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
|<!--Name-->Lenovo V330-14ARR 81B1, V330-15ARR 81, 330-14ARR 81 330-15ARR 81D2 - battery internal about 30whr || <!--Chipset-->AMD Ryzen R3 2200U, 2300U or R5 2500U Raven Ridge || <!--IDE-->{{N/A}} || <!--SATA-->M.2 nvme/sata, optional 2.5in sata but no dvd || <!--Gfx-->{{Maybe|VESA Vega 3, 6 or 8 up to 1Gb of soldered ram memory taken}} || <!--Audio-->{{No|HDAudio 0x1002, 0x15de with Realtek® ALC5682I-VD codec 0x10de, 0x or coxenant CX11802 codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|Realtek 1GbE}} || <!--Wireless-->{{no|Realtek}} || <!--Test Distro--> || <!--Comments-->2018 64bit - 14" 768p 20mm thick 1.8kg - 20v 2.25a 45w ac round barrel - chiclet keyboard - 4Gb soldered and 1 ddr4 sodimm - TPM 2.0 in bios - 4GB soldered -
|-
|<!--Name-->Ideapad 330s-14ARR, 330s-15ARR, ideapad 330S-14IKB, 330S-15IKB, - battery internal about 30whr || <!--Chipset-->AMD Ryzen R3 2200U, 2300U or R5 2500U Raven Ridge || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|nvme}} || <!--Gfx-->{{Maybe|VESA 2D for AMD or Intel 610, 620 up to 1Gb of soldered ram memory taken}} || <!--Audio-->{{No|HD Audio with codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no|Realtek}} || <!--Test Distro--> || <!--Comments-->2018 64bit - 14" 20mm thick 1.8kg - 20v 2.25a 45w ac round barrel - chiclet keyboard - 4Gb soldered and 1 ddr4 sodimm - TPM 2.0 in bios - 4GB soldered -
|-
|<!--Name-->Thinkpad Edge E485 E585 - internal battery only || <!--Chipset-->AMD Ryzen R3 2300U R5 2500U R7 2700U || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|m.2 nvme optional 1 2.5in sata}} || <!--Gfx-->{{Maybe|VESA for Vega 3, 8 or 10}} || <!--Audio-->{{No|HDAudio with CX11852 codec }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 rtl8111GUS}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2018 64bit - 14in or 15.6in 768p or 1080p - USB-C 20V 2.25A 3.25A avoid knocking charging port as damages easily - 2 ddr4 sodimm slot max 2400Mhz 32GB - TPM 2.0 software -
|-
|<!--Name-->Thinkpad A285 - internal and external battery || <!--Chipset-->AMD Ryzen PRO 3 2200U 5 2500U || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|m.2 nvme/sata}} || <!--Gfx-->{{Maybe|VESA Vega up to 2Gb of soldered ram memory taken}} || <!--Audio-->{{unk|HD Audio with ALC ALC3287 codec aka ALC257 }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{No|Mini-Ethernet/Docking}} || <!--Wireless-->{{no|Realtek or Qualcomm - WLAN whitelist no more??}} || <!--Test Distro--> || <!--Comments-->2018 64bit - 12.5in 1080p - avoid usb-c port being lifted/moved whilst in use as damages laptop easily - soldered ram 8gb or 16gb - WWAN whitelist - keyboard swap problematic -
|-
|<!--Name-->Thinkpad A485 bios setting [https://github.com/PSPReverse/PSPTool AMD PSP Platform Security Processor Key] - internal and external battery || <!--Chipset-->AMD Ryzen PRO 5 2500U || <!--IDE-->{{N/A}} || <!--SATA-->sata port and m.2 nvme port || <!--Gfx-->{{Maybe|VESA Vega }} || <!--Audio-->{{unk|HD Audio with ALC ALC3287 codec aka ALC 257 }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 RTL8111GUL}} || <!--Wireless-->{{no|Realtek or Qualcomm wifi - WLAN whitelist no more??}} || <!--Test Distro--> || <!--Comments-->2018 64bit - 14in 768p, 1080p or 1440p - avoid usb-c port being lifted/moved whilst in use as damages laptop easily - 2 ddr4 sodimm slots max 32gb - WWAN whitelist - keyboard swap problematic -
|-
|<!--Name-->[https://www.diy-laptoprepair.com/forum/fix-Lenovo-V155-15-repair-guide-schematics.php Lenovo v155-15api 81V5] V155 (15" AMD) budget all plastic build - MS new protocol, HID over I2C so [https://askubuntu.com/questions/1033033/elantech-touchpad-does-not-work-i2c-hid i2c] [https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/drivers/input/mouse/elantech.c?h=v6.17 i2c] [https://www.kernel.org/doc/html/v4.16/input/devices/elantech.html PS2 hybrid trackpad] [https://cgit.freebsd.org/src/tree/sys/dev/atkbdc/psm.c?h=releng/14.3 elantech] [https://cvsweb.openbsd.org/cgi-bin/cvsweb/src/sys/dev/pckbc/?only_with_tag=OPENBSD_7_8_BASE i2c-hid] 04F3:3140 touchpad not working - internal sunwoda battery L18D3PF1, L18L3PF1, L18C3PF2 35Whr most dead after 5 years || <!--Chipset-->'''tested''' Ryzen 5 3500U and Ryzen 3 3200U - '''untested''' AMD Athlon 300U with bios winbond 25q64fwsiq soic 1.8v bios near nvme || <!--IDE-->{{N/A}} || <!--SATA-->1 M.2 nvme and usually 2.5in 7mm sata - install on mbr not gpt 2.5in in another compatible machine - mini sata dvd/cd da-8aesh11b will boot cd or dvd aros || <!--Gfx-->{{Maybe|VESA 2D to 1080p work for Vega 3 or 8 with up to 2Gb of soldered ram memory taken but hdmi 1.4b no output}} || <!--Audio-->{{Yes|HDAudio add 0x1022, 0x15E3 with ALC3287 aka Realtek ALC257 codec 0x10ec, 0x0257 with 32bit on external speaker and most of the time works on 64bit}} || <!--USB-->{{maybe|2 USB3.0, on left hand side, detected but no usb-c ports}} || <!--Ethernet-->{{yes|rtl8169 RTL8111GUS works well with 32bit and 64bit}} || <!--Wireless-->{{no|Realtek or Intel wifi}} || <!--Test Distro-->2025 AROS One 2.8 DVD 32bit and AROS One x64 1.1 and 1.2 iso DVD burnt || <!--Comments-->2019 64bit - 15.6in 768p or 1080p 200nits tn panel - 4Gb ddr4 2400MHz soldered with 1 dimm slot max 20Gb - round ac 20V 65W psu 4.0mm x 1.7mm - Fn+F2 to enter bios and F12 boot order - no sd card slot - 2pin cr2032 cmos coin battery -
|-
|<!--Name-->V15-ADA 82C700E4UK- elan touchpad not working - internal battery 34whr L16M2PB2 l16l2pb3 || <!--Chipset-->AMD r5 3500U || <!--IDE-->{{N/A}} || <!--SATA-->1x 2.5" HDD + 1x M.2 SSD NVMe near fan, no cd dvd || <!--Gfx-->{{Maybe|VESA 2D for Vega 3, 8 with up to 1080p with 2Gb of soldered ram memory taken}} || <!--Audio-->{{Yes|HD Audio 6.36 0x1022, 0x15E3 with R155189 ALC236 codec 0x10ec, 0x0236 on 32bit and on 64bit}} || <!--USB-->{{maybe|3 USB3, on left hand side,}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no|Realtek or Qualcomm wifi}} || <!--Test Distro-->2025 3500U with Aros One 32bit 2.8 installed to 2.5in drive on another machine and same for 64bit || <!--Comments-->2019 64bit - 14 or 15.6in 768p on low spec machines to 1080p - 4GB soldered with 1 ddr4 sodimm slot - 2pin cr2032 cmos coin battery - sd card slot - noisy fan -
|-
|<!--Name-->V15-ADA 82C7 - elan touchpad not working - internal battery 34whr L16M2PB2 l16l2pb3 || <!--Chipset-->AMD Athlon Silver 3020e, Ryzen 3 3050U, 3150U, 3250U || <!--IDE-->{{N/A}} || <!--SATA-->1x 2.5" HDD + 1x M.2 SSD NVme near fan, no cd dvd || <!--Gfx-->{{Maybe|VESA 2D for Vega 3, 8 with up to 1080p with 2Gb of soldered ram memory taken}} || <!--Audio-->{{No|HD Audio 6.36 0x1022, 0x15E3 with RTS5119 R155119 ALC230 codec}} || <!--USB-->{{maybe|3 USB3.0, on left hand side,}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no|Realtek or Qualcomm wifi}} || <!--Test Distro-->2025 Aros One 32bit 2.8 and 64bit || <!--Comments-->2019 64bit - 14 or 15.6in 768p on low spec machines to 1080p - 4GB soldered with 1 ddr4 sodimm slot - 2pin cr2032 cmos coin battery - sd card slot - for this mbd bios ram disable doesn't work - noisy fan -
|-
|<!--Name-->Lenovo V14-ADA 82C6, - elan touchpad not working - if blank black display, bios bug going from uefi->legacy so reset bios rhs push in with pin, then Down, ent, Right x3, ent, up, ent, right, ent x2 - internal battery 34whr L16M2PB2 l16l2pb3 || <!--Chipset-->'''tested''' 3250U - '''untested''' AMD Athlon Silver 3020e, Ryzen 3 3050U, 3150U - for this mbd GV451&GV551 NM-D151 bios ram disable doesn't work || <!--IDE-->{{N/A}} || <!--SATA-->1x 2.5" HDD if cbl + 1x M.2 SSD NVMe near fan, no cd dvd || <!--Gfx-->{{Maybe|VESA 2D for Vega 3 up to 1080p with 2Gb of soldered ram memory taken}} || <!--Audio-->{{no|HD Audio 6.36 0x1022, 0x15E3 with Realtek ALC3223 RTS5119 R185199 aka ALC230 codec 0x10ec, 0x0230 on 32bit and on 64bit}} || <!--USB-->{{maybe|3 USB3, on left hand side,}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no|Realtek or Qualcomm wifi}} || <!--Test Distro-->2025 AMD 3250U with Aros One 32bit 2.8 installed to 2.5in drive on another machine and same for 64bit || <!--Comments-->2019 64bit - 14 or 15.6in 768p on low spec machines to 1080p - 4GB soldered with 1 ddr4 sodimm slot - 2pin cr2032 cmos coin battery - sd card slot - F2 bios F12 select -
|-
|<!--Name-->IdeaPad 1 14ADA5 (low spec cpus) ideaPad 3 14ADA05, IdeaPad 3 15ADA05 81W100QVUK, IdeaPad 3 17ADA05 - elan touchpad not working - internal battery 34whr L16M2PB2 l16l2pb3 || <!--Chipset-->AMD Athlon Silver 3020e, Ryzen 3 3050U, 3150U, 3250U, Ryzen 5 3500U on mobo NM-C821 REV 0.2 1.0 || <!--IDE-->{{N/A}} || <!--SATA-->1x 2.5" HDD if cbl + 1x M.2 SSD NVMe near fan, no cd dvd || <!--Gfx-->{{Maybe|VESA 2D for Vega 3, 8 up to 1080p with 2Gb of soldered ram memory taken}} || <!--Audio-->{{no|HD Audio 6.36 0x1022, 0x15E3 with ALC230 codec 0x10ec, 0x0230 on 32bit and on 64bit}} || <!--USB-->{{maybe|3 USB3, on left hand side,}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no|Realtek or Qualcomm wifi}} || <!--Test Distro-->2025 Aros One 32bit 2.8 installed to 2.5in drive on another machine and same for 64bit || <!--Comments-->2019 64bit - 14 or 15.6in 768p on low spec machines to 1080p - 4GB soldered with 1 ddr4 sodimm slot - 2pin cr2032 cmos coin battery - sd card slot - F2 bios F12 boot select -
|-
|<!--Name-->Lenovo IdeaPad L340-15API 81LW001CUS L340-17API - elan trackpad not functioning - internal battery L18M3PF2 || <!--Chipset-->AMD Athlon 300U, Ryzen 3 3200U r5 3500U || <!--IDE-->{{N/A}} || <!--SATA-->1 M.2 nvme and usually 2.5in sata if ribbon cable present - mini sata dvd/cd da-8aesh11b || <!--Gfx-->{{Maybe|VESA 2D for Vega 3 or 8 with up to 2Gb of soldered ram memory taken - hdmi 1.4b}} || <!--Audio-->{{unk|HDAudio add 0x1022, 0x15E3 with Realtek ALC236 0x10ec, 0x0236}} || <!--USB-->{{maybe|USB3 not detected}} || <!--Ethernet-->{{maybe|rtl8169 RTL8111GUS}} || <!--Wireless-->{{no|Realtek or Intel wifi}} || <!--Test Distro-->AROS One 2.8 USB - install on mbr not gpt 2.5in in another compatible machine || <!--Comments-->2019 64bit - 15.6in 768p or 1080p 200nits - 4Gb ddr4 2400MHz soldered with 1 dimm slot max 20Gb - round ac 20V 65W psu 4.0mm x 1.7mm - Return or F1 to enter bios and F12 boot order - no sd card slot -
|-
|<!--Name-->[https://www.laptop-schematics.com/db/78/T%20series%20laptops%20(ThinkPad)/ ThinkPad T295 T495] || <!--Chipset-->Ryzen 3 3300U, R5 Pro 3500U or R7 3700U || <!--IDE-->{{N/A}} || <!--SATA-->1 NVMe up to 2280 || <!--Gfx-->{{Maybe|VESA Vega 6, 8 or 10 up to 2Gb of soldered ram memory taken}} || <!--Audio-->{{unk|HD Audio with Realtek® ALC3287 codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 Realtek RTL8111EPV}} || <!--Wireless-->{{No|Realtek RTL8822BE or Intel AC 9260}} || <!--Test Distro--> || <!--Comments-->2019 64bit - 14in 768p but mostly FHD 1080p 250 nits - internal battery - ram 8gb or 16gb 2400Mhz soldered with 1 ddr4 slot on T495 only - TPM 2.0 - usb-c charging avoid knock whilst in use - keyboard swap problematic -
|-
|<!--Name-->ThinkPad T495s (14in) X395 (13in) || <!--Chipset-->Ryzen 3 3300U, R5 Pro 3500U or R7 3700U || <!--IDE-->{{N/A}} || <!--SATA-->1 NVMe up to 2280 || <!--Gfx-->{{Maybe|VESA Vega 6, 8 or 10 up to 2Gb of soldered ram memory taken}} || <!--Audio-->{{unk|HD Audio with Realtek® ALC3287 codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{unk| needs Lenovo ThinkPad Ethernet Adapter Gen 2 SC10P42352 or SC10P42354}} || <!--Wireless-->{{No|Realtek RTL8822BE or Intel AC 9260 wifi}} || <!--Test Distro--> || <!--Comments-->2019 64bit - 13in or 14in 768p but mostly FHD 1080p 250 nits - internal battery - ram 8gb or 16gb 2400Mhz soldered - TPM 2.0 - usb-c charging avoid knock whilst in use - keyboard swap problematic -
|-
|<!--Name-->ThinkPad E14 Gen2, E15 Gen 2 (AMD) 20T8, - lenovo has a mobile phone PC Diagnostic App for error/beep codes || <!--Chipset-->AMD Ryzen 3 4300U, 5 4500U, 7 4700U || <!--IDE-->{{N/A}} || <!--SATA-->2 m.2 nvme, 1 2242 and 1 2280 || <!--Gfx-->{{Maybe|VESA 2D for AMD Radeon up to 2Gb of soldered ram memory taken}} || <!--Audio-->{{unk|HD Audio with ALC ALC3287 codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 RTL8111GUS}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2020 15.6in 1080p 220 nits - TPM 2.0 - usb-c charging of internal 45Whr battery - 4gb ddr4 3200Mhz soldered and 1 ddr4 sodimm slot max 20Gb - keyboard swap problematic - plastic bendy case -
|-
|<!--Name-->Lenovo ThinkPad T14 Gen 1, ThinkPad P14s Gen 1 (AMD) || <!--Chipset-->AMD Ryzen 3 4300u, 5 4500U, Ryzen 5 Pro 4650U, Ryzen 7 Pro 4750U || <!--IDE-->{{N/A}} || <!--SATA-->1 NVMe || <!--Gfx-->{{Maybe|VESA 2D for AMD Vega }} || <!--Audio-->{{unk|HDAudio with Realtek® ALC3287 0x10EC, 0x0257}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 RTL8111EPV (DASH models) or RTL8111HN}} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2020 64bit - USB-C charging avoid moving whilst in use - 14" or 15" 1080p - keyboard swap problematic - 8gb or 16gb 3200MHz soldered with 1 ddr4 sodimm slot - sd card slot -
|-
|<!--Name-->Thinkpad L14 Gen 1, L15 Gen 1, || <!--Chipset-->AMD Ryzen 3 4300u, 5 4500U, Ryzen 5 Pro 4650U, Ryzen 7 Pro 4750U || <!--IDE-->{{N/A}} || <!--SATA-->1 NVMe || <!--Gfx-->{{Maybe|VESA 2D for AMD Vega }} || <!--Audio-->{{unk|HDAudio with Realtek® ALC3287 0x10EC, 0x0257}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{no|rtl8169 needs dongle RTL8111EPV (DASH models) or RTL8111HN}} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2020 64bit - USB-C charger avoid moving whilst in use - 14" or 15" 1080p - keyboard swap problematic - 8gb or 16gb 3200MHz soldered with 1 ddr4 sodimm slot - sd card slot -
|-
|<!--Name-->Lenovo ThinkPad X13 Gen1 AMD, || <!--Chipset-->AMD RYZEN 3 4450U, 5 4650U or 7 4750U || <!--IDE-->{{N/A}} || <!--SATA-->One drive, up to 512GB M.2 2242 SSD or 1TB M.2 2280 SSD NVMe || <!--Gfx-->{{partial|VESA Radeon up to 2Gb of soldered ram memory taken}} || <!--Audio-->{{unk|HDAudio with Realtek® ALC3287 codec}} || <!--USB-->{{maybe| but USB-C ports can fail}} || <!--Ethernet-->{{no|Realtek RTL8111EPV, mini RJ-45 to RJ-45 via optional ThinkPad Ethernet Extension Adapter Gen 2}} || <!--Wireless-->{{no|Realtek Wi-Fi 6 RTL8852AE}} || <!--Test Distro--> || <!--Comments-->2020 13.3" HD 1366x768 to 1080p - USB-C port care needed as damages easily - Memory soldered to systemboard, no slots, dual-channel DDR4-3200 -
|-
|<!--Name-->Lenovo ThinkBook 14 G2, 15 G2 Are || <!--Chipset-->Ryzen 5 4500u, 7 4700U || <!--IDE-->{{N/A}} || <!--SATA-->14in has 2 m.2 nvme but 15in has 1 nvme and might have 2.5in sata metal caddy if smaller battery version || <!--Gfx-->VESA 2d for AMD Radeon up to 2Gb of soldered ram memory taken || <!--Audio-->{{unk|HDAudio with ALC???? codec 0x10EC, 0x0}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 }} || <!--Wireless-->{{No| wifi}} || <!--Test Distro--> || <!--Comments-->2020 64bit - 14in or 15in 1080p - usb-c charging but high failure rate on the charging port - 4gb or 8gb soldered with 1 ddr4 sodimm slot 3200mhz - hinge(s) issues -
|-
|<!--Name-->IdeaPad 5 14ARE05 (81YM), Ideapad 5 15ARE05 (), IdeaPad 3 17ARE05 (model 81W5) - elan touchpad MSFT0004:00 06CB:CD98 not working || <!--Chipset-->'''tested''' 4500u - '''untested''' AMD 3 4300U (4c4t), 4600U (6c12t), 7 4700u (8c16t) on AMD Promontory Bixby FCH || <!--IDE-->{{N/A}} || <!--SATA-->{{no|1x M.2 2242 slot and 1x M.2 2280 NVMe which will take sata m.2 will boot to grub then laptop reset after choice}} || <!--Gfx-->{{Maybe|VESA 2D for Vega 6 via hdmi output up to 2Gb of soldered ram memory taken}} || <!--Audio-->{{unk|HDAudio 6.36 0x1637 0x15e3 with Realtek ALC3287 aka ALC257 codec 0x10ec 0x0257}} || <!--USB-->{{maybe|USB 3.1 or 3.2 gen 1}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no|Intel ax200 wifi 6}} || <!--Test Distro-->4500u with AROS One 64bit 1.2 usb installed to m.2 sata on another machine || <!--Comments-->2020 64bit 14inch 768p or 1080p - round lenovo ac - 4gb, 8gb, or 16gb ddr4 3200Mhz ram soldered with 1 slot - keyboard swap problematic - integrated battery -
|-
|<!--Name-->Ideapad Flex 5 81X2, Lenovo Yoga 6 13ALC6 || <!--Chipset-->AMD R5 4500u, R7 4800U, R3 5300 R5 5500U || <!--IDE-->{{N/A}} || <!--SATA-->M.2 NVMe ssd || <!--Gfx-->{{Maybe|VESA AMD Vega up to 2Gb of soldered ram memory taken}} || <!--Audio-->{{unk|HD Audio with ALC? codec}} || <!--USB-->{{maybe|USB3.1 gen 1}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no|realtek ac wifi}} || <!--Test Distro--> || <!--Comments-->2020 64bit abs plastic case 14in convertible 1080p touch low nits - 65w usb-c psu ac - possible wacom esr note taking pen supplied - ram soldered DDR4 - keyboard swap problematic -
|-
|<!--Name-->ThinkPad T14 Gen 2, P14s Gen 2 || <!--Chipset-->AMD 5850U || <!--IDE-->{{N/A}} || <!--SATA-->NVme || <!--Gfx-->VESA 2D || <!--Audio-->{{unk|HDaudio with ALC3287-CG codec 0x10EC, 0x0}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{Maybe| }} || <!--Wireless-->{{No| }} || <!--Test Distro--> || <!--Comments-->2021 - usb-c power 90% failure rate on the charging port -
|-
|<!--Name-->Lenovo ThinkBook 14 G3, 15 G3 ACL, || <!--Chipset-->Ryzen 5 5500U || <!--IDE-->{{N/A}} || <!--SATA-->m.2 nvme || <!--Gfx-->VESA 2d for AMD Radeon || <!--Audio-->{{unk|HDAudio with ALC codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 }} || <!--Wireless-->{{No| }} || <!--Test Distro--> || <!--Comments-->2021 64bit - 14in or 15in 1080p - usb-c charging powered -
|-
|<!--Name-->ThinkPad E14 G3, E15 Gen 3 (AMD) || <!--Chipset-->AMD 5300U 5500U 5650U 5700U 5800U || <!--IDE-->{{N/A}} || <!--SATA-->up to 2 m.2 nvme || <!--Gfx-->{{Maybe|VESA }} || <!--Audio-->{{unk|HDaudio with Realtek® ALC3287 codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 RTL8111GUS}} || <!--Wireless-->{{no|realtek or intel }} || <!--Test Distro--> || <!--Comments-->2021 64bit - 15.6in 1080p - - usb-c charging issues - keyboard swap problematic - 4gb or 8gb soldered with 1 ddr4 3200Mhz sodimm slot - plastic bendy case -
|-
|<!--Name-->V14 Gen 2 (82KA, 82KC)
*ALO
*ALC 82KD
|| <!--Chipset-->Ryzen 3 5300U, 5 5500U, 7 5700U || <!--IDE-->{{N/A}} || <!--SATA-->1 nvme 2280 and optional 2.5in sata after sourcing ribbon cable and connector, no dvd || <!--Gfx-->VESA 2D for AMD radeon || <!--Audio-->{{unk|HDAudio with Realtek® ALC3287 codec}} || <!--USB-->{{maybe|USB3 }} || <!--Ethernet-->{{maybe|rtl8169 Realtek RTL8111H-CG}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2022 64bit - 15.6" FHD 1080p - 4gb or 8gb soldered with 1 ddr4 sodimm slot - 65w round ac adaptor -
|-
|<!--Name-->V15 G2 Gen2 (82KB, 82KD)
*ALO
*ALC 82KD
|| <!--Chipset-->Ryzen 3 5300U, 5 5500U, 7 5700U || <!--IDE-->{{N/A}} || <!--SATA-->1 nvme 2280 and optional 2.5in sata after sourcing ribbon cable and connector, no dvd || <!--Gfx-->VESA 2D for AMD radeon || <!--Audio-->{{unk|HDAudio with Realtek® ALC3287 codec}} || <!--USB-->{{maybe|USB3 }} || <!--Ethernet-->{{maybe|rtl8169 Realtek RTL8111H-CG}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2022 64bit - 15.6" FHD 1080p - 4gb or 8gb soldered with 1 ddr4 sodimm slot - 65w round ac adaptor -
|-
|<!--Name-->ThinkPad L15 Gen 2 (15″, AMD) || <!--Chipset-->AMD 5000 series AMD Ryzen 3 5400U (4c8t), 5 5600U, 5 5650U (6c12t), 7 PRO 5850U (8c16t) || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->VESA 2D for AMD Radeon || <!--Audio-->{{unk|HDAudio with Realtek® ALC3287}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{no|rtl8169 needs dongle RTL8111EPV (DASH models) or RTL8111HN}} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2022 64bit - 15.6in 768p or 1080p - usb-c charging - 4gb soldered with 1 ddr4 3200Mhz sodimm slot -
|-
|<!--Name-->ThinkPad E14 Gen 4, E15 Gen 4 (15″, AMD) || <!--Chipset-->AMD 3 5425u, 5 5625U, 7 5825u || <!--IDE-->{{N/A}} || <!--SATA-->1 (14") or 2 (15") nvme || <!--Gfx-->VESA 2D for AMD Radeon || <!--Audio-->{{unk|HDAudio with ALC3287 codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 }} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2023 64bit - 15.6in 1080p - usb-c charging - 4gb or 8gb soldered with 1 ddr4 3200Mhz sodimm slot - L19M3PDA 45Whr battery - U24 TPS65994 and QB6 QB5 mosfet issues - plastic bendy case -
|-
|<!--Name-->ThinkPad T14 Gen 3 Machine types MT 21AH 21AJ 21CF and 21CG, P14s Gen 3 || <!--Chipset-->AMD 6850U || <!--IDE-->{{n/a}} || <!--SATA-->NVme || <!--Gfx-->VESA 2d || <!--Audio-->{{unk| ALC3287-VA2-CG codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{Maybe|rtl8169 }} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2022 64bit - 14in
|-
|<!--Name-->ThinkPad T14s Gen 3 || <!--Chipset-->AMD 6500U || <!--IDE-->{{n/a}} || <!--SATA-->NVme || <!--Gfx-->VESA 2d || <!--Audio-->{{unk| ALC3287-VA2-CG codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{no|Ethernet support via optional Lenovo® USB-C® to Ethernet Adapter}} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2022 64bit - 14in
|-
|<!--Name-->V14 G3, V15 G3 Gen3 ALC || <!--Chipset-->Ryzen 5 6500U || <!--IDE-->{{N/A}} || <!--SATA-->nvme and optional 2.5in sata if smaller 38Wh battery and after sourcing ribbon cable and connector, no dvd || <!--Gfx-->VESA 2D for AMD Radeon || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 }} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2023 64bit - 15"FHD - battery BYD L20B2PFO -
|-
|<!--Name-->ThinkPad L15 Gen 3 (15″, AMD) || <!--Chipset-->AMD 6000 series || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D for AMD Radeon || <!--Audio-->{{No| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{no|rtl8169 needs dongle}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2023 64bit- 15.6in 1080p -
|-
|<!--Name-->Lenovo Yoga 7 14ARB7 || <!--Chipset-->AMD Ryzen 5, 6600U, 7 6800U || <!--IDE-->{{N/A}} || <!--SATA-->1 nvme || <!--Gfx-->AMD 660M or 680M || <!--Audio-->{{No|HDaudio with ALC3306 aka alc287 codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2022 64bit - 14in 1800p ips 300 nits - usb-c ac charging 71whr integrated battery - sd card slot - digital pen input - 8gb, 6gb or 32gb soldered ddr5 ram -
|-
|<!--Name-->ThinkPad T14 Gen 4, P14s Gen 4 || <!--Chipset-->AMD Ryzen Pro 5 7540U, Ryzen Pro 7 7840U (AI NPU) || <!--IDE-->{{n/a}} || <!--SATA-->NVme || <!--Gfx-->VESA 2D for AMD 740M 780M|| <!--Audio-->{{unk|HDAudio ALC3287 codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 }} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2023 64bit - 14in 1920x1200 - 8gb, 16gb or 32gb lpddr5 soldered - usb-c charging -
|-
|<!--Name-->ThinkPad E14 g5, E15 Gen 5 (15″, AMD) || <!--Chipset-->AMD 7000 series Ryzen 5-7530U, 7-7730U || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D for AMD Radeon || <!--Audio-->{{unk|HDAudio with codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe| }} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2023 64bit- 15.6in 1080p -
|-
|<!--Name-->Thinkbook 14 G6 ABP IRL, ThinkBook 16 G6ABP (21KK001CUK) || <!--Chipset-->AMD Ryzen 7530U 7730U || <!--IDE-->{{N/A}} || <!--SATA-->m.2 nvme || <!--Gfx-->VESA 2d for AMD Radeon || <!--Audio-->{{unk|HDaudio with codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 untested}} || <!--Wireless-->{{No| wifi}} || <!--Test Distro--> || <!--Comments-->2023 64bit - 14in 1200p or 1440p - 100W USB-C AC power adapter -
|-
|<!--Name-->IdeaPad Slim 5 Light 14ABR8 Laptop || <!--Chipset-->AMD Ryzen 3 7330U (4c8t) 5 7530U (6c12t) 7 7730U (8c16t) || <!--IDE-->{{N/A}} || <!--SATA-->2 m.2 nvme slot - 1 2242, 1 2280 || <!--Gfx-->VESA 2d for AMD Radeon || <!--Audio-->{{unk|HDaudio with Realtek® ALC3287 codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{No| wifi}} || <!--Test Distro--> || <!--Comments-->2023 64bit - 14in 1080p - 8Gb or 16Gb soldered ram - usb-c charging only -
|-
|<!--Name-->ThinkPad X13 Gen 4 (13" AMD) || <!--Chipset-->AMD 7480U 7040U || <!--IDE-->{{N/A}} || <!--SATA-->NVMe || <!--Gfx-->{{partial|VESA}} || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2023 - avoid usb-c port damage -
|-
|<!--Name-->ThinkPad L14 (Gen4), L15 Gen 4 (15" AMD) || <!--Chipset-->MD Ryzen 5 PRO 7530U, 7480U 7040U || <!--IDE-->{{N/A}} || <!--SATA-->NVMe || <!--Gfx-->{{partial|VESA}} || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{no|rtl8169 needs dongle}} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2023 64bit - elan trackpad -
|-
|<!--Name-->Lenovo Gen 4 V14 (82YT, 82YV, 83A0, 83A1, 83CC, 83FR, 82YX, 83FG), V15 (82YU, 82YW, 83FS, 82YY, 83CR), V17 (83A2), || <!--Chipset-->AMD AMD Athlon™ Gold 7220U (2c4t), AMD Athlon™ Silver 7120U (2c2t), AMD Ryzen™ 3 7320U (4c8t), AMD Ryzen™ 5 7520U (4c8t) || <!--IDE-->{{N/A}} || <!--SATA-->nvme and 2.5in sata if smaller 38Wh battery, no dvd || <!--Gfx-->{{Maybe|VESA 2d for AMD 610M HDMI® and USB-C}} || <!--Audio-->{{unk|HDaudio with ALC3287 codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{no|Gigabit Ethernet, 1x RJ-45}} || <!--Wireless-->{{no|wifi 6}} || <!--Test Distro--> || <!--Comments-->2023 64bit - 15.6" FHD 1080p - 8 or 16Gb soldered - 65W round tip (3-pin) AC adapter or USB-C -
|-
|<!--Name-->ThinkPad e14 G6, e15 Gen 6 (15″, AMD) || <!--Chipset-->AMD 7000 series AMD Ryzen™ 7 7735HS || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D for AMD Radeon || <!--Audio-->{{unk|HDAudio codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe| }} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2023 64bit- 15.6in 1080p -
|-
|<!--Name-->ThinkPad L16 (16" AMD), || <!--Chipset-->AMD 8000 || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D || <!--Audio-->{{unk|HDAudio with codec}} || <!--USB-->{{maybe|USB4}} || <!--Ethernet-->{{no|rtl8169 needs dongle}} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2025 64bit
|-
|<!--Name-->ThinkPad T14 Gen 5, P14s Gen 5 || <!--Chipset-->AMD Ryzen 7 PRO 8840U, AMD Ryzen™ 5 PRO 8540U || <!--IDE-->{{N/A}} || <!--SATA-->NVME || <!--Gfx-->VESA 2d || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 }} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2025 64bit - 14inch 1920 x 1200 -
|-
|<!--Name--> Lenovo WinBook 300e SKU: 82GKS00000 || <!--Chipset-->AMD 3015E || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2023 64bit 4GB 64GB SSD 11.6 Inch Touchscreen Windows 10 Pro Laptop
|-
|<!--Name-->ThinkPad || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
|<!--Name-->Lenovo Yoga Slim 7a || <!--Chipset-->AMD Ryzen AI 7350 || <!--IDE-->{{N/A}} || <!--SATA-->1 nvme || <!--Gfx-->AMD 860M || <!--Audio-->{{No|HDaudio with ALC3306 aka alc287 codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2025 64bit - 14in 1800p ips 300 nits - usb-c ac charging 71whr integrated battery - sd card slot - digital pen input - 8gb, 6gb or 32gb soldered ddr5 ram -
|-
|<!--Name-->ThinkPad || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|<!--Name-->ThinkPad || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
====Samsung====
[[#top|...to the top]]
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="2%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->NP-Q1 Q1 || <!--Chipset-->Celeron-M 353 ULV 600Mhz || <!--IDE-->{{Yes|1.8" SFF HDD 20 / 60 GB }} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Yes|GMA 915 2D and 3D opengl1 tunnel 95 gearbox 68}} || <!--Audio-->{{Yes|HD Audio with codec - head phones only}} || <!--USB-->{{Yes}} || <!--Ethernet-->{{No|Marvell}} || <!--Wireless-->{{Yes|Atheros 5006EX}} || <!--Test Distro-->2016 Icaros 2.1 || <!--Comments-->2005 32bit old style tablet UltraMobile PC UMPC - Wacom serial resistive pen or finger no support - 1 sodimm ddr2 max 1Gb - LCD 7" WVGA (800 x 480) - CompactFlash port Type II -
|-
| <!--Name-->NP Q1U Ultra Mobile PC UMPC Q1F NP-Q1-F000 || <!--Chipset-->Intel A100 600 / A110 Stealey 800 MHz CPU || <!--IDE-->{{Yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Maybe|GMA 950 2D and 3D opengl1}} || <!--Audio-->{{No|HD Audio 1986}} || <!--USB--> || <!--Ethernet-->Intel || <!--Wireless-->{{Maybe|Atheros 5006EX}} || <!--Test Distro-->2016 Icaros 2.1 || <!--Comments-->2006 32bit 1024×600 - sd card slot -
|-
| <!--Name-->NP P500 family P500Y || <!--Chipset-->AMD with SB600 || <!--IDE-->{{N/A| }} || <!--SATA-->{{Yes| }} || <!--Gfx-->{{Maybe|use VESA Ati x1250}} || <!--Audio-->{{Yes| Audio with codec }} || <!--USB--> || <!--Ethernet-->{{No|Marvell 88E8039 yukon}} || <!--Wireless-->{{yes|Atheros G}} || <!--Test Distro-->2017 Icaros 2.1.2 || <!--Comments-->64bit possible - 15.4 tft display - cheap plastic okay build - 19v propriety end -
|-
| <!--Name-->R505 R510 || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless-->Atheros G || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->R520 R522 R610H R620 || <!--Chipset-->Intel Mobile Core i3 Intel PM45 82801M ICH9-M|| <!--IDE--> || <!--SATA--> || <!--Gfx-->ATI Mobility Radeon HD 4650 (RV730) || <!--Audio-->Intel HD Audio with Realtek ALC272 || <!--USB--> || <!--Ethernet-->Marvell Yukon 88E8057 || <!--Wireless-->Atheros AR5007EG || <!--Test Distro--> || <!--Comments-->2010 64 bit possible
|-
| NP-R530 || || {{N/A}} || {{partial|IDE mode}} || {{yes|Intel GMA (2D)}} || {{partial|HD Audio playback}} || {{yes|USB 2.0}} || {{no|Marvell}} || {{unk|Atheros AR9285}} || Icaros 1.5.2 || <!--Comments-->
|-
| <!--Name-->Samsung R730 17.3 Essential Notebook NP-R730-JA02UK, NP-R730-JA01SE, R730-JT06 || <!--Chipset-->Intel HM55 Dual Core T4300 i3-370M || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|use VESA for Intel 4500MHD and GeForce G 310M with 1 VGA, 1 HDMI}} || <!--Audio-->{{Yes|HDAudio ALC??? codec Realtek}} || <!--USB-->{{yes|USB2}} || <!--Ethernet-->{{No|Marvell Yukon 88E8059 PCI-E}} || <!--Wireless-->{{unk|Broadcom, Intel or Atheros 9k AR9285}} || <!--Test Distro-->Deadwoods ISO 2023-11 || <!--Comments-->2010 64bit - 17.3in HD 1280 x 720 pixels low contrast or some 1600x900 - 2 DDR3 sodimm slots - 2.84 kg 6.26 lbs -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->[http://www.notebookcheck.net/Review-Samsung-305U1A-A01DE-Subnotebook.68246.0.html Series 3 Samsung 305u1a] || <!--Chipset-->AMD Zacate E350 or E450 || <!--IDE--> || <!--SATA--> || <!--Gfx-->AMD Radeon 6320 || <!--Audio-->ALC ACL 269 || <!--USB--> || <!--Ethernet-->Realtek 8111 8169 || <!--Wireless-->Broadcom 4313 || <!--Comments-->2011 64bit
|-
| <!--Name-->NP-RV415 NP-RV515 || <!--Chipset-->E350 or E450 plus A50M chipset || <!--IDE--> || <!--SATA--> || <!--Gfx-->AMD Radeon HD 6470 || <!--Audio-->HD Audio Realtek || <!--USB--> || <!--Ethernet-->{{unk|RTL8169 Realtek RTL8111 8168B}} || <!--Wireless-->{{unk|Atheros AR9285}} || <!--Test Distro--> || <!--Comments-->2012 64bit slow -
|-
| <!--Name-->Series 5 NP535U3C || <!--Chipset-->A6-4455M || <!--IDE-->{{N/A}} || <!--SATA-->2.5in || <!--Gfx-->radeon || <!--Audio-->HDAudio || <!--USB-->USB2 || <!--Ethernet-->Realtek GbE || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2012 64bit slow - 13.3in 1368 x 768 - plastic build - 65w 19v psu -
|-
| <!--Name-->series 3 NP355V5C || <!--Chipset-->A6-4400M, A8-4500M, A10-4600M || <!--IDE-->{{N/A}} || <!--SATA-->2.5in || <!--Gfx-->7640M || <!--Audio-->HDAudio || <!--USB-->USB2 || <!--Ethernet-->Realtek GbE || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2012 64bit - 15.4in 1368 x 768 - plastic build - 65w 19v psu -
|-
| <!--Name-->Samsung ATIV Book 9 Lite NP905S3G || <!--Chipset-->AMD A6-1450 quad 1GHz Temash atom like || <!--IDE--> || <!--SATA-->128gb || <!--Gfx-->AMD 8250 || <!--Audio-->HD Audio || <!--USB--> || <!--Ethernet-->{{Maybe|Realtek rtl8169 but only with mini LAN AA-AE2N12B Ethernet Adapter RJ45 dongle}} || <!--Wireless-->{{unk|Atheros AR9565}} || <!--Test Distro--> || <!--Comments-->2014 64bit - 13.3 TN glossy 1366 x 768 200nits 60% srgb - plastic case - 26W battery built in with 4hr life - 19V 2.1A 3.0*1.0mm psu - 1 ddr3l slot max 4gb - 720p webcam - mini hdmi out - 1w speakers -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
====Toshiba====
[[#top|...to the top]]
Order of Build Quality (Lowest to highest)
<pre >
Equium
Satellite (Pro)
Libretto
Portege
Tecra
</pre >
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| Tecra 8100 8200 9000 || 440BX || {{yes|IDE}} || {{N/A}} || {{maybe|S3 Savage MX 3D (VESA only)}} || {{no|Yamaha DS-XG ymf744 ymf-754}} || {{yes|USB1.1 only}} || {{N/A}} || {{N/A}} || Icaros 1.5 || little support
|-
| <!--Name-->Tecra 9100 || <!--Chipset-->810 || <!--IDE-->{{Yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{maybe|S3 Savage IX}} || <!--Audio-->{{no|ymf754}} || <!--USB-->USB 1.1 || <!--Ethernet-->eeee pro100 || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->PSU Adapter For Toshiba Tecra 9000 9100 A1 A10 A11 A3 A3X A4 A5 A7 M1 M2 M3 M4 M5 M7 M9 R10 S1 series 75 Watt 15V 5A
|-
| [http://tuxmobil.org/toshiba_sp4600.html Satellite Pro 4600] || i810 || IDE || {{N/A}} || {{maybe|Trident Cyber Blade XP (VESA only)}} || {{no|YAMAHA DS-XG AC97 ymf754}} || {{yes|USB}} || {{yes|Intel e100}} || {{no|Agere (internal PCMCIA)}} || || little support
|-
| Satellite 2805 S603 || Intel 815 || {{yes|IDE}} || {{N/A}} || {{maybe|nVidia GeForce2 Go}} || {{no|Yamaha Corp YMF 754}} || {{yes|USB}} || {{yes|Intel PRO/100}} || {{dunno}} || || little support
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Satellite A10 S167 S1291 - A15 A20 A25 || <!--Chipset-->P4M || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel 852GM or Radeon || <!--Audio--> || <!--USB--> || <!--Ethernet-->RTL 8139 || <!--Wireless-->{{Maybe|Intel 2100, Agere or Atheros PA3399U 1MPC minipci}} || <!--Test Distro--> || <!--Comments-->a few models came with antenna leads
|-
| Satellite [http://eu.computers.toshiba-europe.com/innovation/jsp/SUPPORTSECTION/discontinuedProductPage.do?service=EU&com.broadvision.session.new=Yes&PRODUCT_ID=76230 A30-714] || P4-M / 82845 i845 || {{yes|82801}} || {{N/A}} || {{maybe|VESA}} || {{yes|AC97}} || {{yes}} || {{yes|RTL8139}} || {{N/A}} || Icaros 1.2.4 || nice laptop, drawbacks: heavy, really hot (P4-3.06 GHz!!) - A30 (EU) A33 (Australian) A35 (USA) -
|-
| <!--Name-->Satellite A40 A45 || <!--Chipset-->P4M or Celeron M with Intel 845 865 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel 852GME or Radeon 7000 Mobility || <!--Audio-->AC97 Realtek || <!--USB-->USB2.0 || <!--Ethernet--> || <!--Wireless-->Atheros 5002G 5004G - PA3299U mini pci || <!--Test Distro--> || <!--Comments-->2003 32bit - A40 S161 A40-S1611 A40-2701, A45-S120 A45-S1201 S130 S1301 S1501 -
|-
| <!--Name-->Satellite a50 A55 a60-s156 Equium A60 PSA67E A65 || <!--Chipset-->P4M or Celeron M with Intel 845 865 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel 852GME or Radeon 7000 Mobility || <!--Audio-->AC97 Realtek || <!--USB-->USB2.0 || <!--Ethernet--> || <!--Wireless-->Atheros 5002G 5004G - PA3299U mini-pci || <!--Test Distro--> || <!--Comments-->2003 32bit -
|-
| <!--Name-->Satellite A70 A75-S206 A80 A85-S107 || <!--Chipset-->P4M or Celeron-M with Intel 845 865 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel 852GME or Radeon 7000 Mobility || <!--Audio-->AC97 Realtek || <!--USB-->USB2.0 || <!--Ethernet--> || <!--Wireless-->Atheros 5002G 5004G - PA3299U mini-pci || <!--Test Distro-->Icaros 1.5.1 || <!--Comments-->2003 32bit -
|-
| Toshiba Satellite Pro M30 || intel 855 || {{yes|boots with ATA=nodma option}} || {{N/A}} || {{maybe|VESA}} || {{yes|AC97}} || {{yes|USB2.0}} || {{yes|Intel PRO/100 VE}} || {{dunno}} || Icaros 1.5 || nice laptop with some support
|-
| <!--Name-->Portege M300 - M200 tablet || <!--Chipset-->855GM with 1.2GHz Pentium M 753 || <!--IDE-->{{yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{maybe|VESA 2d only - tablet with nvidia 5200 go}} || <!--Audio-->{{no|AC97 STAC 9750}} || <!--USB-->{{yes}} || <!--Ethernet-->{{yes|Intel PRO 100}} || <!--Wireless-->{{no|Intel PRO Wireless 2200BG}} || <!--Test Distro--> || <!--Comments-->little support
|-
| <!--Name-->Tecra M2 M2-S || <!--Chipset-->Intel 855P Pentium-M || <!--IDE--> || <!--SATA-->{{N/A}} || <!--Gfx-->nvidia fx go5200 32mb or 64mb agp || <!--Audio-->AC97 1981B || <!--USB--> || <!--Ethernet--> || <!--Wireless-->Intel Pro || <!--Test Distro--> || <!--Comments-->2003 32bit - PSU 15V 5A -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Satellite Pro L20 267 (PSL2YE PSL2XE) PSL25E L30 || <!--Chipset-->Celeron M 370 1.4 1.5GHz, 1.73Ghz with RC410M SB400 || <!--IDE-->{{N/A| }} || <!--SATA-->{{yes|IDE mode}} || <!--Gfx-->{{Maybe|use VESA - Ati x200}} || <!--Audio-->{{No|[https://forums.gentoo.org/viewtopic-t-490297-start-0.html ALC861]}} || <!--USB-->{{Maybe|Boots usb sticks}} || <!--Ethernet-->{{yes|rtl8139 Realtek 8139}} || <!--Wireless-->{{No|Atheros mini-pci should work maybe not working with ATi chipset or need to swap??}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2004 32bit 14" pioneer dvd-rw - 19v
|-
| <!--Name-->Satellite L30 PSL30E L33 PSL33E || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel 800 or ATi RC410 x200 || <!--Audio-->AC97 AD1981B or HD Audio ALC861 || <!--USB--> || <!--Ethernet-->realtek 8139 || <!--Wireless-->Atheros or Intel || <!--Test Distro--> || <!--Comments-->L30 PSL30L 101 PSL33E 113 115 134 00M019 -
|-
| Satellite Pro M40 313 psm44e || AMD with Ati || {{yes|boots with ATA=nodma}} || {{N/A}} || {{maybe|VESA}} || {{yes|AC97}} || {{yes|USB2.0}} || {{yes|}} || {{maybe|atheros askey ar5bmb5 mini pci}} || || 2005 32bit - nice laptop with some support
|-
| <!--Name-->Satellite L40 PSL40E PSL40L, PSL43E || <!--Chipset-->945GM with U7700 1.3GHz ULV || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel 945 || <!--Audio-->{{No|Intel HD with AD1986A codec}} || <!--USB-->2 USB2.0 || <!--Ethernet-->realtek 8139 || <!--Wireless-->Atheros AR24xx Askey || <!--Test Distro-->Icaros 2.0.3 || <!--Comments-->2006 32bit only - - 12X 13G 139 14B 143 15J 19O -
|-
| <!--Name-->Satellite L45 PSL40U S7409 S2416 || <!--Chipset-->945GM with Celeron M 440 1.86 GHz || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel 945 || <!--Audio-->{{No|Intel HD with AD1986A codec}} || <!--USB-->2 USB2.0 || <!--Ethernet-->realtek 8139 || <!--Wireless-->Atheros AR24xx Askey || <!--Test Distro-->Icaros 2.0.3 || <!--Comments-->2006 32bit only -
|-
| <!--Name-->Satellite Pro A100 || <!--Chipset-->940G || <!--IDE--> || <!--SATA--> || <!--Gfx-->Nvidia G72M Quadro NVS 110M GeForce Go 7300 / Ati (PSAA3E)|| <!--Audio-->HD Audio with ALC861 codec || <!--USB--> || <!--Ethernet-->Intel 100 || <!--Wireless-->Intel 3945 swap with atheros || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->Satellite A110 159 (PSAB0), Equium A110 (PSAB2E), Satellite A110 233 (PSAB6), || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio-->ALC861 || <!--USB--> || <!--Ethernet-->Realtek 8136 || <!--Wireless-->Atheros || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->Satellite Pro A120 PSAC0 PSAC1 PSAC1E || <!--Chipset-->Core Solo GMA 950 to T2300 || <!--IDE--> || <!--SATA--> || <!--Gfx-->GMA 945 || <!--Audio-->ALC262 or AC97 AD1981B || <!--USB-->UHCI EHCI || <!--Ethernet--> || <!--Wireless-->Atheros Ar5001 or Intel or Broadcom || <!--Test Distro--> || <!--Comments-->15V 4A charger -
|-
| <!--Name-->Satellite Pro A120 || <!--Chipset-->Core Duo ATi RS480 + SB450 || <!--IDE--> || <!--SATA--> || <!--Gfx-->use VESA - ATI RC410 Radeon Xpress 200M || <!--Audio-->ALC262 || <!--USB-->OCHI UHCI || <!--Ethernet-->RTL 8139 || <!--Wireless-->Intel 3945 or Atheros Ar5001 || <!--Test Distro--> || <!--Comments-->15v 5a proprietary charger needed
|-
| <!--Name-->Satelite A130 PSAD6U || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet-->Realtek 8101E || <!--Wireless-->Atheros or Intel || <!--Test Distro--> || <!--Comments-->ST1311 s1311 ST1312 S2276 S2386 -
|-
| <!--Name-->Satellite A135 S2686 (Compal LA 3391P) || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet-->Realtek 8101E || <!--Wireless-->Atheros or Intel || <!--Test Distro--> || <!--Comments-->S2246 S2346 S2256 S4477 S4666 S4827 -
|-
| <!--Name-->Satellite A200 PSAE1E (Inventec MW10M) || <!--Chipset-->Pentium M with 945GM Express Celeron M 520 1.6Ghz or Pentium® Core Duo T2130 1.86 GHz || <!--IDE--> {{N/A}}|| <!--SATA--> {{Maybe|SATA}}|| <!--Gfx--> {{Yes|Intel GMA 950 (2D and 3D)}}|| <!--Audio--> {{Yes|HD Audio ALC862}}|| <!--USB--> {{Yes| }}|| <!--Ethernet--> {{yes|RTL8101E rtl8139}}|| <!--Wireless--> {{yes|Atheros 5000 - FN,F5 or FN,F8 or switch}} || <!--Test Distro-->2016 AspireOS 1.8 || <!--Comments-->2006 Excellent 32 bit support! - make sure that your WLAN card is enabled, do this using the hardware switch and FN+F8 key combination
|-
| <!--Name--> A210, Satellite A215 AMD (Inventec 10A) S5808 || <!--Chipset--> Ati with SB690 || <!--IDE--> {{N/A}}|| <!--SATA-->{{Maybe|SATA}}|| <!--Gfx-->{{Maybe|use VESA HD2600 Mobility M76}} || <!--Audio-->HD Audio ALC268 || <!--USB--> {{Yes| }}|| <!--Ethernet-->{{yes|RTL8101E}}|| <!--Wireless--> {{yes|Atheros 5000}}|| <!--Test Distro-->2018 AspireOS 1.8 || <!--Comments-->A215-S7422 A215-S7472 A215-S4697 (USA) -
|-
| <!--Name--> [http://www.amiga.org/forums/showthread.php?t=62036 A215 S4757] || <!--Chipset--> Ati X1200 with SB600 || <!--IDE--> {{N/A}}|| <!--SATA-->{{Maybe|SATA}}|| <!--Gfx-->{{Maybe}} || <!--Audio-->HD Audio || <!--USB--> {{Yes| }}|| <!--Ethernet-->{{yes|RTL8101E}}|| <!--Wireless--> {{yes|Atheros 5000}}|| <!--Test Distro-->2017 AspireOS 1.8 || <!--Comments-->
|-
| <!--Name-->Qosmio G30 (PQG31C-HD202E) || <!--Chipset-->945 with Duo T2500 || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->{{yes|Nouveau Nvidia Go 7600 2d and 3d}} || <!--Audio-->{{yes| }} || <!--USB-->{{yes| }} || <!--Ethernet-->{{no| }} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2006 32bit - 17" UXGA 1920x1200,
|-
| <!--Name-->Tecra A10 || <!--Chipset--> || <!--IDE--> {{N/A}} || <!--SATA--> {{Maybe|IDE mode}} || <!--Gfx--> {{Maybe|Intel GMA 4500M (2D)}} || <!--Audio--> {{Yes|HD Audio}} || <!--USB--> {{Yes|USB 2.0}} || <!--Ethernet-->{{No|Intel PRO 1000}} || <!--Wireless-->{{No|Intel WiFi Link 5100}} || <!--Test Distro--> || <!--Comments-->64 bit possible
|-
| <!--Name-->L35 - L40 PSL48E - L45 S7423 || <!--Chipset-->GL960 with Intel Celeron || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Maybe|X3100 some 2D but software 3d tunnel 9 gearbox 4}} || <!--Audio-->{{Yes|HD Audio with ALC660 codec playback}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{Yes|REALTEK 8139}} || <!--Wireless-->{{No|Realtek 8187b replace with Atheros 5k}} || <!--Test Distro-->2017 Icaros 2.1.2 || <!--Comments-->1,73Ghz M 520 or M 540 or Dual T2310 (1.46 GHz) T2330 (1.6 GHz) - 14H 14N 15B 17H 17K 17R 17S 18Z -
|-
| <!--Name-->Satellite a300 - inventec potomac 10s pt10s A300D 21H || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->ATI Mobility Radeon HD 3650 || <!--Audio-->HD Audio - Realtek || <!--USB--> || <!--Ethernet-->Realtek 8102E || <!--Wireless-->Atheros 5005 || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->satellite L300D-224 PSLC8E PSLC9E, l305 (inventec ps10s) || <!--Chipset-->AMD M780 with Turion RM70 or QL-64 || <!--IDE--> {{yes|IDE}} || <!--SATA--> {{yes|SATA}} || <!--Gfx--> {{Maybe|use VESA for Radeon 3100}} || <!--Audio-->{{maybe|HD Audio with Realtek ALC268}} || <!--USB--> {{yes|USB 2.0}} || <!--Ethernet--> {{no|rtl8169 Realtek RTL8101E RTL8102E}} || <!--Wireless-->{{no|Atheros G XB63L or Intel or Realtek}} || <!--Test Distro--> Icaros Desktop Live 2.3 AROS One 2.3 || <!--Comments--> Wireless-handler crashing when using Atheros-Wireless-Card
|-
| <!--Name-->Satellite P300 (PSPC0C-01D01C) || <!--Chipset-->945GM with Intel Core 2 Duo T5750 || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->{{maybe| }} || <!--Audio-->{{No| codec}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{no| }} || <!--Wireless-->{{No| swap with Atheros 5k }} || <!--Test Distro-->AROS One 64bit || <!--Comments-->2007
|-
| <!--Name-->satellite l300-1bw PSLBDE-005005AR, L300-148 PSLB0E, l300-20D PSLB8E-06Q007EN, l300-294 L300-23L PSLB9E || <!--Chipset-->Intel GM45 + PGA478 socket Celeron 900, Pentium T1600, T2390, T3400 (Socket P) to Core2 Duo T6400 T6670 || <!--IDE--> {{unk|IDE}} || <!--SATA--> {{unk|SATA}} || <!--Gfx--> {{Maybe|use VESA for Intel gma 4500M}} || <!--Audio-->{{maybe|HD Audio with Realtek ALC???}} || <!--USB--> {{unk|USB 2.0}} || <!--Ethernet--> {{unk|rtl8169 Realtek 810xE}} || <!--Wireless-->{{no|Intel or Realtek}} || <!--Test Distro--> || <!--Comments-->2009 64-bit - new unfamiliar Bios called insyde H20 -
|-
| <!--Name-->satellite l350d || <!--Chipset-->AMD Athlon (tm) X2 QL-60 + RS780M || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->Radeon HD 3100 || <!--Audio-->HD Audio with Realtek || <!--USB--> || <!--Ethernet-->Realtek || <!--Wireless-->Realtek 8187b || <!--Test Distro--> || <!--Comments-->2009 64bit
|-
| <!--Name-->Satellite L450 12 13 14 || <!--Chipset-->AMD Sempron, 2.1GHz with AMD RS780M || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->Radeon HD 3200 (based on HD 2400) || <!--Audio--> || <!--USB--> || <!--Ethernet-->Realtek RTL8101E RTL8102E || <!--Wireless-->Realtek 8172 || <!--Test Distro--> || <!--Comments-->2009 64bit - 12X 13P 13X 14V PSLY6E00C006EN
|-
| <!--Name-->Satellite Pro L450 (Compal LA-5821P) 179 || <!--Chipset-->intel celeron 900 2.20 Ghz no sse4.1 or avx || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->intel 4500m || <!--Audio-->HD Audio with codec || <!--USB--> || <!--Ethernet-->RTL8101 /2 /6E PCI Express Gigabit || <!--Wireless-->RTL8191 SEvB || <!--Test Distro--> || <!--Comments-->2009 64bit - 39.6cm (15.6”) Toshiba TruBrite® HD TFT 16:9 768p
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Toshiba Satellite P775, P775-S7320 and P775-10K || <!--Chipset-->Intel Core i5 (2nd Gen) 2430M i7-2630QM || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Maybe|Vesa 2D for Intel}} || <!--Audio-->{{maybe| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{no| }} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2011 17.3" - 1600 x 900 (HD+) - 2 DDR3 sodimm max 16Gb -
|-
|<!--Name-->Toshiba Satellite C660D-19X || <!--Chipset-->AMD E-300 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{maybe|Vesa 2D for ATi}} || <!--Audio-->{{no|HD Audio with Realtek codec}} || <!--USB-->{{no| }} || <!--Ethernet-->{{Maybe|r8169 rtl8101e}} || <!--Wireless-->{{no|Realtek RTL8188 8192ce rtl8192ce}} || <!--Test Distro--> || <!--Comments-->2011 64bit -
|-
| <!--Name-->L755D (E-350) L750D (E-450) || <!--Chipset-->AMD E350 E450 no sse4.1 or avx || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->Radeon HD 6310 6320 || <!--Audio-->HDAudio conexant codec || <!--USB--> || <!--Ethernet--> || <!--Wireless-->Realtek || <!--Test Distro--> || <!--Comments-->2012 64bit
|-
| <!--Name-->Satellite Pro SP C640 C660D-15X (PSC1YE) C670D- () || <!--Chipset-->AMD E350 no sse4.1 or avx || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->6310G || <!--Audio-->HD Realtek ALC259 || <!--USB-->USB2 || <!--Ethernet-->Realtek || <!--Wireless-->Broadcom || <!--Test Distro--> || <!--Comments-->2012 64bit
|-
| <!--Name-->C70D-A C75D-A || <!--Chipset-->E1-1200 no sse4.1 or avx || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{maybe|AMD HD8330}} || <!--Audio-->{{no|HA Audio CX20751 11Z}} || <!--USB-->{{no| }} || <!--Ethernet-->{{no|Atheros AR8162 alx}} || <!--Wireless-->{{no|Realtek 8188e}} || <!--Test Distro--> || <!--Comments-->2013 64bit -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
|}
====Misc====
[[#top|...to the top]]
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->Time 500 Packard Bell EasyOne 1450 1550 || <!--Chipset-->K6-3 500Mhz + VIA MVP4 vt82c686a || <!--IDE-->{{N/A|Issues}} || <!--SATA-->{{N/A}} || <!--Gfx-->Use VESA || <!--Audio-->{{No|VIA AC97 3058 with wolfson codec WM9703 WM9704 WM9707 WM9708 or WM9717}} || <!--USB-->via 3038 2 ports USB 1.1 untested || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{N/A}} || <!--Test Distro-->NB May 2013 || <!--Comments-->2001 32bit grub runs but stalls around [PCI] Everything OK
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->Sony Vaio PCG FX201/FX202 FX210/FX215 FX401/FX402 FX404/FX405 972M, FX501/FX502 FX504/FX505 || <!--Chipset-->VIA KT133A KM133 Duron 800Mhz Athlon 1.3Ghz || <!--IDE-->{{partial|boot issue with 2013 kernel VIA [rev 06]}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{partial|ATI Rage Mobility Pro (VESA only)}} || <!--Audio-->{{Yes|VIA AC97 686b [rev 50] AD1881A Ear phone and Mic}} || <!--USB-->{{Maybe|issues}} || <!--Ethernet-->{{Yes|RTL 8139}} || <!--Wireless-->{{N/A}} || <!--Comments-->Nightly 1st March 2013 || <!--Comments-->booting usb pendrive from Plop Boot Loader floppy (no bios USB boot). Can freeze coz hardware issue or a ram slot problem - no support for iLink firewire VT8363/8365 pci - vt82c686b
|-
| <!--Name-->Sony Vaio PCG FX601/FX602, FX604/FX605 FXA53(US), FX701/FX702, FX704/FX705, FX801/FX802 FX804/FX805 || <!--Chipset-->VIA KT133A KM133 Duron 800Mhz Athlon 1.3Ghz || <!--IDE-->{{partial|boot issue with 2013 kernel VIA [rev 06]}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{partial|ATI Rage Mobility Pro (VESA only)}} || <!--Audio-->{{Yes|VIA AC97 686b [rev 50] AD1881A Ear phone and Mic}} || <!--USB-->{{Maybe|issues}} || <!--Ethernet-->{{Yes|RTL 8139}} || <!--Wireless-->{{N/A}} || <!--Comments-->Nightly 1st March 2013 || <!--Comments-->booting usb pendrive somes works
|-
| <!--Name-->Sony Vaio PCG FX100 R505LE || <!--Chipset-->Intel i815 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Use VESA Intel 82815 CGC || <!--Audio-->Intel ICH AC97 with ADI AD1881A codec || <!--USB--> || <!--Ethernet-->Intel e100 || <!--Wireless-->{{N/A}} || <!--Test Distro--> || <!--Comments-->PCG-FX105 FX105K PCG-FX108 FX108K PCG-FX109 FX109K FX200 FX203/FX203K FX205 FX205K FX209 FX209K FX220 [http://juljas.net/linux/vaiofx240/ FX240] FX250 FX270 FX290 FX301 FX302 FX340 FX370 FX390 FX403 FX503 FX950
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| Sony VAIO VGN X505VP || Pentium M ULV and Intel 855GM || {{yes}} || {{N/A}} || {{maybe|Intel 855 (VESA only)}} || {{yes|AC97}} || {{yes|USB}} || {{yes|Intel PRO 100 VE}} || {{N/A}} || || 2004 32bit - 0.38 inches at its thinnest point - first laptop to feature a "chiclet" keyboard resemble Chiclets gum -
|-
| <!--Name-->Sony Z505LE Z505JE || <!--Chipset-->P3 || <!--IDE--> || <!--SATA-->n/a || <!--Gfx-->Rage Mobility M1 AGP mach64 || <!--Audio-->no Yamaha DS-XG PCI YMF744 || <!--USB--> || <!--Ethernet-->Intel 8255x based PCI e100 || <!--Wireless-->n/a || <!--Test Distro--> || <!--Comments-->2004 32bit -
|-
| <!--Name-->Panasonic Toughbook CF-18 || <!--Chipset-->Core || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{yes|gma for i915}} || <!--Audio-->{{yes|AC97 SigmaTel}} || <!--USB-->{{yes|usb2 }} || <!--Ethernet-->{{yes|RTL 8139C}} || <!--Wireless-->{{no|Intel swap for atheros 5k}} || <!--Test Distro-->Deadwoods' D02 test || <!--Comments-->2003 32bit
|-
| <!--Name-->Panasonic Toughbook CF-29 CF-30 || <!--Chipset-->Core || <!--IDE--> || <!--SATA--> || <!--Gfx-->use VESA || <!--Audio-->AC97 SigmaTel || <!--USB--> || <!--Ethernet-->RTL 8139C || <!--Wireless-->Intel || <!--Test Distro--> || <!--Comments-->2003 32bit
|-
| <!--Name-->MSI Microstar PR210 || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|use VESA ATi RS690M}} || <!--Audio-->{{Yes|HD Audio through speaker / head phones but not hdmi}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{yes|Realtek 8111 8169}} || <!--Wireless-->Atheros AR242x AR542x aw-ge780 mini pci-e || <!--Test Distro-->2017 Icaros 2.1.2 || <!--Comments-->2004 32bit - ENE PCI based SD card with no bios boot option
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Advent 7106 EAA-88 || <!--Chipset-->Pentium M 1.7GHz with 915GM || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Yes|2D and 3D tunnel 187 gearbox 67}} || <!--Audio-->{{Yes|AC97 Intel ICH6 with Conexant Cx20468 31 codec playback head phones only}} || <!--USB--> || <!--Ethernet-->{{Yes|Realtek 8169}} || <!--Wireless-->{{No|Intel 2200BG Fn/F2 replaced with atheros mini pci in small base panel - startup errors in wireless manager}} || <!--Test Distro-->2017 Icaros 2.1.1 || <!--Comments-->2005 32bit 14" cheap rubbish sadly - fan noise through audio channel -
|-
| <!--Name-->Motion Computing LE1600 PC Slate || <!--Chipset-->915 || <!--IDE--> || <!--SATA--> || <!--Gfx-->915 || <!--Audio-->Intel AC97 SigmaTel STAC9758 9759 || <!--USB--> || <!--Ethernet-->Realtek 8169 || <!--Wireless-->Intel PRO Wireless 2200BG || <!--Test Distro--> || <!--Comments-->2005 serial Wacom digitiser not usb
|-
| <!--Name-->Panasonic Toughbook CF-51 CF-P1 CF-T5 CF-Y2 || <!--Chipset-->945GMS || <!--IDE--> || <!--SATA--> || <!--Gfx-->GMA 950 || <!--Audio-->HD Audio || <!--USB--> || <!--Ethernet-->Broadcom || <!--Wireless-->Intel || <!--Test Distro--> || <!--Comments-->2006 32bit
|-
| <!--Name-->Sony Vaio VGN-AR11S || <!--Chipset-->ntel Core Duo T2500 || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{yes| Nvidia Go 7600}} || <!--Audio-->{{yes| }} || <!--USB-->{{yes| }} || <!--Ethernet-->{{no| }} || <!--Wireless-->{{No| }} || <!--Test Distro-->Aros One 32bit || <!--Comments-->2006 32bit - 17" 1920x1200 - blu-ray -
|-
| Sony Vaio VGN SR29VN || Intel ICH9 || {{N/A}} || {{maybe|IDE legacy}} || {{partial|ATI HD 3400 (VESA only)}} || {{partial|HD Audio (too quiet)}} || {{yes|USB1.1 and USB2.0}} || {{no|Marvell 8040}} || {{no|Intel 5100}} || Icaros 1.5 || 2007 32bit -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Wyse XM Class DELL WYSE Xn0m LAPTOP || <!--Chipset-->AMD T-G56N 1.6 1.65Ghz || <!--IDE-->{{N/A| }} || <!--SATA-->decased 2.5in ssd || <!--Gfx-->{{Maybe|Vesa 2d only AMD 6320}} || <!--Audio-->{{Maybe| }} || <!--USB-->{{Maybe|EHCI 2.0 with NEC uPD720200 USB 3.0}} || <!--Ethernet-->{{Yes|Realtek rtl8169 8111E}} || <!--Wireless-->{{No|Atheros 93xx}} || <!--Test Distro--> || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 - 1366 x 768 14" - 2 ddr3l slots max 16gb - 19v coax barrel plug psu -
|-
| <!--Name-->Panasonic Toughpad FZ-G1 MK2 || <!--Chipset-->Core i5-3437U, 1.9GHz || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet-->{{N/A}} || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2014 64bit -
|-
| <!--Name-->ToughPad FZ-G1 Mk3 || <!--Chipset-->Intel Core i5-4310U || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->Intel HD 4400 || <!--Audio-->HDaudio Codec ALC255 || <!--USB--> || <!--Ethernet-->{{N/A}} || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2015 64bit -
|-
| <!--Name-->[https://wiki.recessim.com/view/Panasonic_Toughpad_FZ-G1_MK4 Panasonic Toughpad FZ-G1 MK4] || <!--Chipset-->intel 6300U || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->Intel 520 || <!--Audio-->HDaudio with ALC256 codec - o/c or s/c fails early || <!--USB-->{{maybe|USB3 but options on the right hand side of screen case}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no|intel ac 8260}} || <!--Test Distro--> || <!--Comments-->2016 64bit - 10.1in 1600x1200 - 4gb ddr3l soldered - waterproof pen left hand side base - optional slot-in 4g lte and sdhc - 16v 4.06A 64.96W panasonic barrel -
|-
| <!--Name-->Panasonic Toughpad FZ-G1 MK5 || <!--Chipset-->intel i5-7300U || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->Intel 620 || <!--Audio-->HDaudio ALC295 codec - o/c or s/c fails early || <!--USB-->{{maybe|USB3 but optional usb2 plugin r.h.s. of screen casing}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no|Intel}} || <!--Test Distro--> || <!--Comments-->2018 64bit - 8gb ddr3l soldered - 10.1" WUXGA 1920 x 1200 with LED backlighting screen 2-800 nit - 10-point capacitive multi touch + Waterproof Digitizer pen l.h.s -
|-
| <!--Name-->ToughPad FZ-M1 || <!--Chipset-->Intel® Core TM m5-6Y57 vPro TM || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->Intel HD 4200 || <!--Audio-->HDaudio with ALC codec || <!--USB-->{{maybe| }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2016 64bit - 7in 800p - 8gb ddr3l soldered -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Any Razor Razer laptops || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->AVOID unable to remove secure boot
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
===Netbook===
[[#top|...to the top]]
* PC to write Aros image onto an USB pendrive with Raspberry PI writer, USB writer or Rufus for boot purposes on a netbook
* SD card sometimes can boot like Dell 2100, EeePC 1001P, ASUS EeePC 900, acer aspire one d150, MSI Wind U100,
====Acer Packard Bell Netbooks====
[[#top|...to the top]]
{| class="wikitable sortable" width=100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| Aspire One AOA110 (A110) (ZG5) || Intel 945GSE || {{N/A}} || {{Maybe|IDE legacy mode}} || {{Yes|Intel GMA (2D and 3D) tunnel 99 and gearbox 84 score}} || {{Yes|HD Audio ALC6628}} || {{Yes|USB1.1 and USB2.0}} || {{Yes|rtl8169 RTL8101E}} || {{Yes|AR5006}} atheros 5k || 2016 AspireOS 1.8, 2025 Aros One 2.6 32bit USB || 2007 32bit 1 core - 19v barrel A13-045N2A 19V2.37A 45W 5.5x1.7mm -
|-
| Aspire One AOA150 (A150) (ZG5) || Intel 945GSE || {{N/A}} || {{Maybe|ide mode}} || {{Yes|Intel GMA 2D and accelerated 3D with tunnel 99 and gearbox 84.1 result}} || {{Yes|HD Audio ALC6628}} || {{Yes|uhci and ehci}} || {{Yes|rtl8169 RTL8101E}} || {{Yes|AR5006}} atheros 5k || 2016 AspireOS 1.8, 2025 aros one 2.6 32bit USB || 2007 32bit 1 core - 19v barrel -
|-
| Aspire One AOD150 D150 (Compal LA-4781P), AOD110 D110 (ssd) || Intel 945GME || {{N/A}} || {{Maybe|ide legacy}} || {{Yes|Intel GMA 950 (2D)}} || {{Yes|HDAudio with alc272}} || {{Yes|USB}} || {{No|Atheros AR8121 AR8113 AR8114 l1e}} || {{Maybe|AR5007EG AR5BXB63 works but Broadcom BCM4312 has no support}} || 2010 Icaros Desktop 1.3, 2024 Aros one 32bit USB || 2008 32bit 1 core - 19v barrel -
|-
| Aspire One (ZG8) || Intel 945G and N270 || {{N/A}} || {{Maybe|ide mode}} || {{Yes|Intel GMA 2D and accelerated 3D}} || {{maybe|HD Audio }} || {{Yes|uhci and ehci}} || {{No|Broadcom }} || {{no|Intel}} || 2014 AspireOS 1.8 || 2009 32bit -
|-
| Aspire One AOD250 D250 emachines em250 || 945GME || {{N/A}} || {{Maybe|ide legacy}} || {{Yes|Intel GMA (2D)}} || {{Yes|alc272 HD Audio}} || {{Yes}} || {{No|AR8132 (L1c)}} || {{No|BCM4312 or Atheros AR5B95}} || 2010 Icaros 1.3 || 2009 32bit 1 core - 19v barrel -
|-
| <!--Name-->Aspire AO532H (Compal LA-5651p) 533H Pineview || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio-->{{Yes|HD Audio playback}} || <!--USB--> || <!--Ethernet-->{{No|AR8132 (L1c)}} || <!--Wireless-->{{No|Atheros 9k}} || [http://www.amigaworld.net/modules/news/article.php?mode=flat&order=0&item_id=5968 Tested AspireOS June 2011] || <!--Comments-->
|-
| <!--Name-->emachines eM350 NAV51 || <!--Chipset--> with N450 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel 3150 || <!--Audio-->HD Audio with codec || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro-->Icaros 2.2 || <!--Comments-->Single core 64bit - 160GB HDD 1GB RAM 10.1" LED backlit screen and Webcam - 3 cell li-ion battery for 3 hours usage -
|-
| <!--Name-->emachines eM355 || <!--Chipset--> with N455 || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->64bit support possible -
|-
| <!--Name-->Aspire One 533 || <!--Chipset-->N455 with NM10 || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes}} || <!--Gfx-->{{Yes|2D 0x8086 0xa011}} || <!--Audio-->{{Yes| ALC272 codec ich7}} || <!--USB-->{{Yes}} || <!--Ethernet-->{{No|Atheros AR8152 v1.1 1c}} || <!--Wireless-->{{No|Broadcom 4313}} || <!--Test Distro-->2016 Icaros 2.1 and AROS One 2.3 || <!--Comments-->2011 64bit - f2 setup - 10.1inch 1024 x 768 -
|-
| Aspire One AOD255 AOD255e AOD260 AOHAPPY (Compal LA-6221P) || N570 and Nm10 || {{N/A}} || {{Maybe|SATA}} || {{Maybe|Intel GMA 3150}} || Audio || USB || {{No|Atheros AR8152 V1.1 (1lc)}} || {{No|Broadcom BCM4313}} || || a little support
|-
| Aspire One 522 AO522 (Compal LA-7072p) || 1GHz dual C-50 C50 or C-60 C60 + Hudson M1 || {{N/A}} || SATA || AMD 6250 (ATI 9804) or 6290 || ATI SB CX20584 HD Audio || USB || Atheros 8152 v2.0 l1c || {{No|Broadcom BCM4313 or Atheros ath9k}} || ||
|-
| <!--Name-->AAOD270 Aspire One D270 || <!--Chipset-->N2600 Cedarview || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes| }} || <!--Gfx-->{{Yes|2D on Intel GMA 3650}} || <!--Audio-->{{Yes| }} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{Yes|RTL 8169 RTL8101E}} || <!--Wireless-->{{No|Broadcom BCM4313 but swap for Atheros 5k}} || <!--Test Distro--> || <!--Opinion-->2011 64bit atom - ddr2 so-dimm 2gb max -
|-
| <!--Name-->Aspire One AO532G (Compal LA-6091p) || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->Aspire One D257 (Quanta ZE6) || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->Acer Aspire One 722 AO722 P1VE6 || <!--Chipset-->AMD C-60 C60 with SB900 || <!--IDE-->{{N/A| }} || <!--SATA--> || <!--Gfx-->{{Maybe| use VESA Ati 6290}} || <!--Audio-->{{Yes|HD Audio with codec but no Wrestler HDMI output}} || <!--USB--> || <!--Ethernet-->{{No|Qualcomm Atheros AR8152 v2.0}} || <!--Wireless-->{{unk|Atheros AR9485}} || <!--Test Distro-->2017 Icaros 2.1.2 || <!--Comments-->
|-
| <!--Name-->Aspire One AO721 (Wistron SJV10-NL) || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->AO751 AO751H (Quanta ZA3) || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->Packard Bell Dot .S || <!--Chipset-->N280 + || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|legacy}} || <!--Gfx-->{{yes|Intel GMA950 (2D)}}|| <!--Audio-->HD Audio ALC272X || <!--USB--> USB2.0 || <!--Ethernet--> {{no|Atheros l1e}} || <!--Wireless-->{{no|Atheros 9k}} || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->Packard Bell Dot .SE || <!--Chipset-->N450 + || <!--IDE-->{{N/A}} || <!--SATA-->legacy || <!--Gfx-->Intel GMA950 (2D) || <!--Audio-->HD Audio ALC|| <!--USB-->USB2.0 || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->Packard Bell Dot .S2 NAV50 || <!--Chipset-->N455 NM10 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->Intel X3150 || <!--Audio-->HD Audio ALC269 || <!--USB--> || <!--Ethernet-->Atheros || <!--Wireless-->Atheros || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->Packard Bell Dot M/A || <!--Chipset-->1.2GHz Athlon L110 + RS690E || <!--IDE-->{{N/A}} || <!--SATA-->legacy mode? || <!--Gfx-->AMD ATI Radeon Xpress X1270 (VESA only) || <!--Audio-->HD Audio ATI SBx00 || <!--USB--> || <!--Ethernet-->Realtek RTL8101E RTL8102E rtl8169 || <!--Wireless-->{{unk|Atheros AR9285}} || <!--Test Distro--> || <!--Opinion-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
====Asus Netbooks====
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| [http://wiki.debian.org/DebianEeePC/Models eeePC] 700 701 2G 4G 8G Surf || Intel 910GML + ICH7 || {{N/A}} || {{Maybe|IDE legacy mode}} || {{Yes|Intel GMA 900 2D and 3D tunnel 68 gearbox 43 on 701 800x480}} || {{Yes|ALC662 HD Audio}} || {{Yes|UHCI and EHCI}} || {{No|Atheros L2}} || {{Yes|Atheros 5k AR5007EG (AR2425 works}} || 2016 Icaros 2.1.1, 2.1.2, Aros One 2.5 32bit USB, || 2007 32bit - power supplies fail due to bad caps issue 9.5V 2.5A 24W Charger AD59930 4.8*1.7MM -
|-
| [http://wiki.debian.org/DebianEeePC/Models eeePC] 701SD || Intel 910GML + ICH7 || {{N/A}} || {{Maybe|IDE legacy mode}} || {{Maybe|Intel GMA 900 (2D)}} || {{Yes|ALC662 HD Audio}} || {{Yes|UHCI and EHCI}} || {{No|Atheros L2}} || {{No|RTL8187SE swap with Atheros 5k}} || 2014 AspireOS 1.7, || 2007 32bit - boot issues but does boot with ATA=32bit,nopoll or ATA=nodma,nopoll
|-
| [http://wiki.debian.org/DebianEeePC/Models eeePC] 900 || Intel 910GML + ICH7 || {{N/A}} || {{Maybe|IDE legacy mode}} || {{Maybe|Intel GMA 900 (2D, 3D in some models)}} || {{Yes|ALC662 HD Audio}} || {{Yes|UHCI and EHCI}} || {{No|Atheros L2}} || {{Maybe|depends on chipset AR5007EG (AR2425) works but not RaLink}} || 2014 AspireOS 1.7, || 2008 32bit - boot issues but does boot with ATA=32bit,nopoll or ATA=nodma,nopoll. 900's may need BIOS upgrade to boot usb optical drives. 3D available in some model revisions - AD59230 9.5v 2.31a psu -
|-
| eeePC 900A || 945GSE || {{N/A}} || {{Maybe|IDE legacy mode}} || {{Yes|Intel GMA 950 (3D)}} || {{Yes|HD Audio ALC269}} || {{Yes|USB2.0}} || {{No|Atheros L1e [1969 1026]}} || {{Yes|Atheros 5k AR242x}} || Nightly Build 2012, 2023 Aros One 32bit 2.4 || 2009 32bit
|-
| eeePC 901 1000 || 945GM || {{N/A}} || {{Maybe|IDE legacy mode}} || {{yes|Intel GMA 950 (2D)}} || {{Yes|ALC269 HD Audio}} || {{Yes|USB}} || {{No|Atheros L1E (AR8121 AR8113 AR8114)}} || {{No|RaLink Device 2860 swap with Atheros 5k}} || 2011 Icaros 1.4, || 2009 32bit - 12v 3a psu -
|-
| eeePC Seashell 1000HA 1000HE 1008 1005HA || N280 + Intel GMA950 || {{N/A}} || SATA || {{Yes|Intel GMA (2D)}} || {{Yes|HD Audio ALC269}} || {{Yes|USB}} || {{Maybe|Realtek but not Atheros AR8132 (L1c)}} || {{unk|Atheros AR9285}} || 2014 Aspire OS 1.6, || 2010 32bit - 12v 3a psu -
|-
| <!--Name-->eeePC 1001ha || <!--Chipset-->GMA945 || <!--IDE-->{{N/A}} || <!--SATA-->legacy || <!--Gfx-->Intel GMA 950 (2D) || <!--Audio-->ALC269 HD Audio || <!--USB--> || <!--Ethernet-->{{No|Attansic Atheros AR8132 l1c}} || <!--Wireless-->{{No|RaLink RT3090 swap with Atheros 5k}} || <!--Test Distro-->untested || <!--Opinion-->2010 32bit
|-
| eeePC 1001P T101MT 1005PX 1005PE 1015PE Pineview 1001PXD || NM10 and N450 N455 CPU || {{N/A}} || {{Maybe|IDE mode}} || {{Yes|Intel GMA 3150 (2D)}} || {{Yes|HD Audio}} || {{Yes|USB 2.0}} || {{No|Atheros AR8132 (l1c)}} || {{unk|Atheros AR928x 802.11n}} || 2010 Icaros 1.3.3, || 2011 64bit - 19V 2.1A 2.3x0.7 -
|-
| EeePC 1015B 1215B || single C-30 C30 or dual C-50 C50 + Hudson M1 || {{N/A}} || SATA || {{partial|AMD 6250 (VESA only)}} || ATI SBx00 HD Audio || USB || {{No|AR8152 v2.0 atl1c}} || {{No|Broadcom BCM4313 [14e4 4727]}} || untested recently || 2011 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name-->Flare X101CH Cedarview || <!--Chipset-->N2600 + N10 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->Intel GMA 6300 || <!--Audio--> || <!--USB--> || <!--Ethernet-->{{No|Atheros l1c 2.0}} || <!--Wireless-->{{unk|Atheros 9k AR9285}} || <!--Test Distro--> || <!--Comments-->2012 64bit
|-
| <!--Name-->Flare 1025CE 1225CE || <!--Chipset-->N2800 + N10 || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{dunno|Intel GMA 3600}} || <!--Audio--> || <!--USB--> || <!--Ethernet-->{{No|Atheros l1c 2.0}} || <!--Wireless-->{{unk|Atheros 9k AR9285}} || <!--Test Distro--> || <!--Comments-->2012 64bit
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
====Dell Netbooks====
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| Inspiron 910 Mini 9 PP39S Vostro A90 || GMA945 || {{Maybe|STEC 8G 16G 32G IDE PATA Parallel ATA miniPCIE SSD 50MM / 70MM very slow}} || {{N/A| }} || {{yes|Intel GMA 2D and 3D opengl1}} || {{yes|ALC268 HD Audio}} || {{yes|USB2 boots and works}} || {{yes|rtl8169 Realtek RTL8102E}} || {{no|Broadcom BCM4310 and 4312 swap with atheros 5k bx32}} || ICAROS 1.3 but Icaros 2.3 (pci issues), AROS One 2.6 and Tiny AROS (digiclock startup) mouse cursor vanishes || 2008 32bit - 9inch 1024x600 screen - 1 ddr2 sodimm slot max 2gig - 19v 1.58a - 0 boot disk select - cr2032 battery under laptop base cover, while mem 2GB max under base flap -
|-
| <!--Name-->Inspiron Mini 10 1010 PP19S || <!--Chipset-->Atom Z520 Z530 Intel US15W Poulsbo || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{maybe|Intel GMA 500 (VESA only)}} || <!--Audio-->{{Maybe|HD Audio ALC269 codec}} || <!--USB--> || <!--Ethernet-->{{yes|rtl8169 RTL8102E}} || <!--Wireless-->{{no|Intel or BCM4312}} || <!--Test Distro-->untested || <!--Comments-->2008 32bit - 10.10 inch 16:9, 1366 x 768 glossy - 28whr or 56wHr battery options -
|-
| [https://wiki.ubuntu.com/HardwareSupport/Machines/Netbooks#Dell%20Mini%2010v%20(Inspiron%201011) Mini 10v 1011] [http://wiki.debian.org/InstallingDebianOn/Dell/InspironMini10v ] || Intel 950 || {{N/A}} || {{maybe|ide legacy mode}} || {{yes|Intel GMA (2D)}} || {{maybe|HDAudio}} || {{yes|USB}} || {{yes|RTL8102E 8103E}} || {{no|Dell 1397 Wireless}} || untested || 2008 32bit -
|-
| <!--Name-->Inspiron Mini 1018 || <!--Chipset-->Intel Atom N455 || <!--IDE-->{{N/A}} || <!--SATA-->{{partial|IDE mode }} || <!--Gfx-->{{yes|Intel GMA 3150 (2D, no VGA output)}} || <!--Audio-->{{partial|HD Audio head phones only - speaker and micro phone do not work}} || <!--USB-->{{yes|USB 2.0}} || <!--Ethernet-->{{yes|RTL8169}} || <!--Wireless-->{{unk|RTL8188CE or AR928X}} || <!--Test Distro-->2011 Icaros 1.5.1, || <!--Comments-->2009 64bit - 1 DDR3 max 2gb -
|-
| Latitude 2100 || Intel Atom N270 N280 1.60Ghz GMA 945GME || {{N/A}} || {{Yes|set to IDE in bios as ahci not working || {{yes|Intel GMA 950 (2D and 3D with tunnel 98 and gearbox 84)}} || {{yes|HD Audio with ALC272 codec}} || {{yes|USB2.0}} || {{No|Broadcom BCM5764M}} || {{No|Intel 5100 or BCM4322 DW 1510 half height mini pcie use small Atheros 5k}} || <!--Test Distro-->2016 AspireOS 1.8, Icaros 2.1.1 and AROS One USB 2.4 || 2009 32bit ddr2 sodimm max 2G - [https://sites.google.com/site/arosaspireone/about-aspire-one Webcam and card reader not working] lcd cable over hinge an issue - f12 bios and boot -
|-
| <!--Name-->Latitude 2110 2120 || <!--Chipset-->N470 1.83Ghz, N455 1.6Ghz, N550 1.5Ghz || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|ATA mode in bios not ahci}} || <!--Gfx-->{{Yes|Intel 3150 2D only}} || <!--Audio-->{{Maybe|HD Audio with ALC269 codec}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No| }} || <!--Wireless-->{{No| swap for Atheros}} || <!--Test Distro-->2014 Icaros 2.3, || <!--Comments-->2011 64bit does not support AVX or SSE 4.1 - ddr2 sodimm
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
====HP Compaq Netbooks====
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| HP Mini 2133 || VIA C7-M P4M900 / 8237 VX700 || {{N/A}} || {{maybe|SATA}} || {{maybe|VIA Chrome 9 HC (VESA only)}} || {{no|VT1708/A HD Audio}} || USB || {{no|Broadcom Corp NetXtreme BCM5788}} || {{no|Broadcom Corp BCM4312}} || untested || 2008 32bit -
|-
| HP mini 1000 Mi 2140 ks145ut || N270 + 945GM || {{N/A}} || SATA || <!--Gfx-->{{Yes|Intel GMA 950 (2D and opengl1 3d)}} || <!--Audio-->{{Yes|HD Audio (playback tested)}} || <!--USB-->{{Yes| }} || {{no|Marvell 88E8040}} || {{no|Broadcom Corp BCM4312 hard blocked}} || untested || 2009 32Bit - unable to change wifi card
|-
| <!--Name-->HP Mini 700 702 || <!--Chipset-->N270 + 945GSE || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{Yes|Intel GMA 950 (2D)}} || <!--Audio-->{{Yes|HD Audio IDT 92HD75B (111d:7608, only playback tested)}} || <!--USB-->{{Yes| }} || <!--Ethernet--> || <!--Wireless-->{{No|Broadcom hard locked}} || <!--Test Distro-->untested || <!--Comments-->2009 32bit -
|-
| Compaq HP Mini 110 110-3112sa || 945GM Express || {{N/A}} || {{maybe|IDE mode}} || {{yes|Intel GMA 950 (2D)}} || {{yes|HD Audio IDT STAC 92xx}} || {{yes|USB 2.0}} || {{no|Atheros}} || {{no|Broadcom hard blocked Fn+F12}} || untested || 2009 32bit - unable to change wifi
|-
| HP Mini 200 210 || 945GM NM10 Express || {{N/A}} || SATA || Intel GMA 950 || {{Maybe|HDAudio with }} || USB || RTL8101E RTL8102E || {{no|Broadcom BCM4312 hard locked}} || untested || 2009 32bit -
|-
| HP Mini 311 DM1 (Quanta FP7) || N280 + ION LE || {{N/A}} || SATA || nVidia Geforce ION || {{maybe|HDAudio with }} || USB || eth || {{No|hard locked}} || untested || 2009 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|}
====Lenovo Netbooks====
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| IdeaPad S9 S9e(3G) S10 S10e(3G) || 945GME || {{N/A}} || {{maybe|SATA}} || {{yes|Intel GMA (2D)}} || {{maybe|ALC269 or SigmaTel HD Audio}} || {{yes|USB}} || {{no|Broadcom NetLink BCM5906M}} || {{no|Broadcom BCM4312 hard blocked}} || untested || 2009 32bit -
|-
| IdeaPad S12 || Intel Atom N270 + Nvidia ION LE MCP79 || {{N/A}} || SATA || nVidia C79 ION [Quadro FX 470M] || {{maybe|ALC269 HD Audio}} || USB || {{no|Broadcom}} || {{no|Intel locked down}} || 2012 Icaros 2.0, || 2009 32bit - does not boot - cause unknown
|-
| S10-2 || 945GME and N280 CPU || {{N/A}} || SATA || {{yes|Intel GMA (2D)}} || {{maybe|ALC269 HD Audio}} || {{yes}} || {{yes|rtl8169}} || {{no|Broadcom BCM4312 hard blocked}} || 2011 Icaros 1.3, || 2009 32bit -
|-
| S10-3 || NM410 and N450 CPU || {{N/A}} || SATA || {{yes|Intel GMA 3150 (2D)}} || {{maybe|HD Audio ALC269}} || {{yes|USB}} || {{yes|rtl8169}} || {{no|Atheros 9285 or Broadcom BCM4312 hard blocked}} || 2011 Icaros 1.3, || 2009 32bit -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
====Samsung Netbooks====
[[#top|...to the top]]
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| [http://www.amigaworld.net/modules/newbb/viewtopic.php?post_id=616910&topic_id=33755&forum=28#616910 NC10] || 945GME || {{N/A}} || {{maybe|SATA}} || {{yes|Intel GMA 950 (2D)}} || {{partial|SigmaTel HD Audio (playback only)}} || {{yes|USB}} || {{maybe|rtl8169 works but not Marvell 88E8040 sky2}} || {{yes|AR5007EG}} || 2011 Icaros 1.4, || 2009 32bit - Nano silver on keyboard and lcd ribbon cable over hinge issues
|-
| [http://www.sammywiki.com/wiki/Samsung_NC20 NC20] || VIA VX800 || {{N/A}} || SATA || {{maybe|VIA Chrome9 (VESA only)}} || ALC272 GR (VT1708A) HD Audio || {{yes|USB}} || {{no|Marvell 88E8040}} || {{yes|Atheros AR5001}} || untested || 2009 32bit -
|-
| NP-N110 NP-N120 || 945GSE || {{N/A}} || SATA || {{yes|Intel GMA 950 (2D)}} || {{yes|ALC272 HD Audio or ALC6628}} || {{yes|USB}} || {{no|Marvell 88E8040}} || {{no|Realtek rtl8187}} || untested || 2009 32bit - Namuga 1.3M Webcam none
|-
| NP-N130 || 945GSE || {{N/A}} || {{yes|SATA in IDE mode}} || {{yes|Intel GMA 2D and opengl 1.x 99.5 tunnel 99 gearbox}} || {{yes|Intel HD with ALC272 ALC269 codec playback}} || {{yes|USB}} || {{yes|RTL 8169.device - 8101e 8102e}} || {{no|rtl 8192se rtl8187 too small an area to swap for atheros 5k}} || untested || 2009 32bit - 10.x inch 1024 x 600 - Namuga 1.3M Webcam - front slide power on and f2 setup bios - keyboard 17.7mm Pitch is made with Silver Nano (Anti-Bacterial) tech - small touchpad - 1 ddr2 2rx16 sodimm slot 2G max - 44Wh
|-
| <!--Name-->Go NP-N310 || <!--Chipset-->N270 + 945GME || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|IDE legacy mode}} || <!--Gfx-->{{yes|Intel GMA 950 (2D)}} || <!--Audio-->{{yes|HD Audio ALC6628}} || <!--USB-->{{yes}} || <!--Ethernet-->{{yes|rtl8169}} || <!--Wireless-->{{yes|Atheros5k}} || <!--Test Distro-->untested || <!--Opinion-->2010 32bit - N280 version changed specs
|-
| NP-N510 || N270 euro N280 uk + ION MCP79 || {{N/A}} || SATA || nVidia C79 ION [Quadro FX 470M] || HD Audio || USB || Marvell 88E8040 || Realtek 8192E || untested || 2010 32bit - does not boot - cause unknown
|-
| NP-N145 Plus || n450 + NM10 || {{N/A}} || {{maybe|IDE legacy mode}} || {{yes|Intel GMA 3150 (2D, no VGA output)}} || {{yes|Realtek HD Audio}} || {{yes|USB2.0}} || {{no|Marvell 88E8040}} || {{unk|Atheros AR9285}} || untested || 2010 some support but often the trackpad does not work
|-
| <!--Name-->NC110 Axx || <!--Chipset-->NM10 || <!--IDE-->{{N/A}} || <!--SATA-->Sata || <!--Gfx--> || <!--Audio-->HDAudio with ALC269 codec A9M22Q2 || <!--USB--> || <!--Ethernet-->{{Maybe|Rtl8169}} || <!--Wireless-->{{No|Broadcom BCM4313 or Atheros}} || <!--Test Distro-->untested || <!--Comments-->2011 64bit -
|-
| NF210 Pineview || n455 or n550 + N10 || {{N/A}} || {{maybe|SATA}} || {{maybe|Intel GMA 3150 (needs retesting, VESA works)}} || {{yes|HD Audio}} || {{yes|USB}} || {{no|Marvell 88E8040}} || Wireless || untested || 2011 64bit - some support
|-
| <!--Name-->NS310 NP-NS310-A03UK || <!--Chipset-->N570 with NM10 || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->{{Maybe|use Vesa 2d }} || <!--Audio-->{{yes| ich7}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{yes|rtl8169 realtek 810xe }} || <!--Wireless-->{{no|bcm4313 }} || <!--Test Distro-->2022 AROS One 2.3, || <!--Comments-->2011 64bit Atom N570 or 1.5 GHz Intel Atom N550 dual core processor, 1 DDR3 sodimm slot memory, a 250GB hard drive, and a 10.1 inch, 1024 x 600 pixel 10.1" W7St - 2300mAh short life -
|-
| <!--Name-->[https://wiki.archlinux.org/index.php/Samsung_N150 N150] NB30 || <!--Chipset-->MN10 || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Yes|Intel GMA 3150 (2D)}} || <!--Audio-->{{No| }} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No|Marvell 88E8040}} || <!--Wireless-->{{unk|Atheros AR9285 or Realtek 8192E}} || <!--Test Distro-->untested || <!--Comments-->2011 a little support
|-
| <!--Name-->[http://www.kruedewagen.de/wiki/index.php/Samsung_N220 N210 N220] N230 || <!--Chipset-->N450 + NM10 || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Yes|Intel GMA 3150 (2D)}} || <!--Audio-->HD Audio ALC269 || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No|Marvell}} || <!--Wireless-->{{unk|Atheros AR9285}} || <!--Test Distro-->untested || <!--Comments-->2011 64bit no sse4.1 or avx -
|-
| <!--Name-->NC110 Pxx Cedarview || <!--Chipset--> || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{dunno|Intel GMA 3600}} || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless-->{{No|Intel 6000g}} || <!--Test Distro-->untested || <!--Comments-->2012 64bit
|-
|}
====Toshiba Netbooks====
[[#top|...to the top]]
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->NB100 || <!--Chipset-->945GM || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|legacy}} || <!--Gfx-->{{yes|Intel GMA (2D)}} || <!--Audio-->{{yes|ALC262 HD Audio}} || <!--USB--> || <!--Ethernet-->{{yes|rtl8169}} || <!--Wireless-->{{yes|AR5001}} || <!--Test Distro-->untested || <!--Comments-->2009 32bit -
|-
| <!--Name-->Mini NB200 series NB205 || <!--Chipset-->N280 + GSE945 || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|IDE legacy mode}}|| <!--Gfx-->{{yes|Intel GMA (2D)}} || <!--Audio-->ALC272 HD Audio || <!--USB-->{{yes}} || <!--Ethernet-->{{yes|RTL8169}} || <!--Wireless-->{{maybe|AR9285}} || <!--Test Distro-->untested || <!--Opinion-->2009 32bit -
|-
| <!--Name-->Mini 300 series NB305 || <!--Chipset-->N455 with NM10 || <!--IDE-->{{N/A}} || <!--SATA-->legacy || <!--Gfx-->Intel GMA 3150 (2D) || <!--Audio-->ALC272 HD Audio || <!--USB--> || <!--Ethernet-->{{maybe|RTL8101E RTL8102E}} || <!--Wireless-->{{maybe|AR9285}} || <!--Test Distro-->untested || <!--Opinion-->2010 64bit -
|-
| <!--Name-->Mini 500 series NB505 NB520 NB550-10v || <!--Chipset--> || <!--IDE-->{{N/A}} || <!--SATA-->legacy || <!--Gfx-->Intel GMA 3150 (2D) || <!--Audio-->HD Audio || <!--USB--> || <!--Ethernet-->{{maybe|RTL8101E RTL8102E}} || <!--Wireless-->{{no|Realtek 8176 RTL 8188CE}} || <!--Test Distro-->untested || <!--Opinion-->2011 64bit -
|-
| [http://www.notebookcheck.net/Review-Toshiba-NB550D-AMD-Fusion-Netbook.46551.0.html Mini NB550D 10G] 108 (c30) 109 (c50) || C-50 + M1 || {{N/A}} || SATA || AMD 6250 (VESA only) || HD Audio || USB || {{maybe|rtl8169 Realtek 8111e}} || {{maybe|Atheros 9k}} || untested || 2011 64bit Realtek SD card reader
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
====Misc Netbooks====
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="30%" |Comments
|-
| Cammy's A1600 || GME945 || {{N/A}} || {{maybe}} || {{yes|Intel GMA950 (2D)}} || {{yes|HD Audio playback}} || {{yes}} || {{no|JMC 250/260}} || Wireless || 2010 Icaros 1.2.4, || 2009 32bit -
|-
| <!--Name-->Fujitsu Siemens Amilo Mini Ui 3520 || <!--Chipset-->Intel 945 || <!--ACPI--> || <!--SATA-->{{yes}} || <!--Gfx-->{{yes|Intel GMA (2D)}} || <!--Audio-->ALC269 HD Audio || <!--USB-->{{yes}} || <!--Ethernet-->{{yes|rtl8169}} || <!--Wireless-->{{yes|AR5001}} || <!--Test Distro-->untested || <!--Comments-->2009 32bit -
|-
| Guillemot Hercules eCafe EC-900 H60G-IA], Mitac MiStation and Pioneer Computers Dreambook Light U11 IL1 || Intel 945GME || {{N/A}} || {{maybe}} || {{yes|Intel GMA950 (2D)}} || {{Yes|HD Audio (playback only)}} || {{yes|uhci and ehci}} || {{yes|rtl8169}} || {{no|RAlink RT2860}} || untested || 2009 32bit -
|-
| <!--Name-->Hannspree Hannsnote SN10E2 24 48 || <!--Chipset-->N450 + NM10 || <!--IDE-->{{N/A}} || <!--SATA-->IDE legacy mode || <!--Gfx-->Pineview Intel (2D) || <!--Audio-->ALC HD Audio || <!--USB-->USB2.0 || <!--Ethernet-->Atheros l1c || <!--Wireless-->{{unk|Atheros AR9285}} || <!--Test Distro-->untested || <!--Opinion-->2009 32bit -
|-
| MSI Wind U90/U100 || GME945 || {{N/A}} || {{maybe}} || {{yes|Intel GMA 950 (2D)}} || {{partial|HD Audio ALC888s (playback only?)}} || {{yes|uhci 1.1 and ehci 2.0}} || {{yes|rtl8169}} || {{no|RaLink RT2860 RT2700E or rtl8187se (u100x)}} || 2011 Icaros 1.3, || 2009 32bit -
|-
| Advent 4211 || 945GSE || {{N/A}} || {{maybe|IDE legacy mode}} || Intel GMA950 (2D) || ALC HD Audio || USB || rtl8169 || {{no|Intel 3945 ABG}} || untested || 2009 32bit - MSI U100 clone
|-
| <!--Name-->Hannspree Hannsnote SN10E1 || <!--Chipset-->N270 + GMA945 || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|IDE legacy mode}} || <!--Gfx-->{{yes|Intel GMA 950 (2D)}} || <!--Audio-->ALC HD Audio || <!--USB-->USB2.0 || <!--Ethernet-->{{yes|Realtek RTL8101E RTL8102E RTL8169}} || <!--Wireless-->{{no|RaLink RT2860}} || <!--Test Distro-->untested || <!--Comments-->2009 32bit MSI U100 clone
|-
| <!--Name--> Vaio VGN-P11Z
| <!--Chipset-->
| <!--IDE--> {{dunno}}
| <!--SATA--> {{N/A}}
| <!--Gfx--> {{Partial|Intel (VESA only)}}
| <!--Audio--> {{no|HD Audio}}
| <!--USB--> {{yes|USB 2.0}}
| <!--Ethernet--> {{no|Marvell}}
| <!--Wireless--> {{unk|Atheros AR928X}}
| <!--Test Distro-->2012 Icaros 2.0.3
| <!--Comments-->2008 32bit Rarely boots!
|-
| <!--Name-->Sony VPC-W11S1E
| <!--Chipset-->N280 with 945GSE
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Yes| }}
| <!--Gfx-->{{yes|Intel GMA950 - hdmi}}
| <!--Audio-->HD Audio with realtek codec
| <!--USB-->3 USB2
| <!--Ethernet-->{{No|Atheros AR8132}}
| <!--Wireless-->{{unk|Atheros AR9285}}
| <!--Test Distro-->untested
| <!--Comments-->2009 32bit - 10.1" 1366 x 768 glossy - 3hr battery life -
|-
| <!--Name-->Archos 10 Netbook || <!--Chipset-->Atom with ICH7 NM10 945GSE || <!--IDE-->{{No }} || <!--SATA--> || <!--Gfx-->GMA 950 || <!--Audio-->HD Audio with ALC662 codec || <!--USB--> || <!--Ethernet-->Realtek 8139 || <!--Wireless--> || <!--Test Distro-->untested || <!--Comments-->2008 32bit -
|-
| <!--Name-->MSI Wind U135 DX MS-N014 || <!--Chipset-->Intel N455 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{Yes|2D only accelerated}} || <!--Audio-->{{No|ALC662 rev 1}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{Maybe|RTL}} || <!--Wireless-->{{No|Atheros AR 9K}} || <!--Test Distro-->2015 Icaros 2.1, || <!--Comments-->2009 32bit - needs noacpi notls added to grub boot line to start up
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
===Desktop Systems===
[[#top|...to the top]]
{| class="wikitable sortable" width="100%"
| <!--OK-->{{Yes|'''Works well'''}} || <!--May work-->{{Maybe|'''Works a little'''}} || <!--Not working-->{{No|'''Does not work'''}} || <!--Not applicable-->{{N/A|'''N/A not applicable'''}}
|-
|}
====Acer====
{| class="wikitable sortable" width="100%"
! width="15%" |Name
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Integrated Gfx
! width="10%" |Audio
! width="10%" |USB
! width="10%" |Ethernet
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->[https://www.acer.com/ac/en/ID/content/support-product/486;-; Veriton X270 VTX270] Intel Core 2 Duo ED7400C or Pentium dual-core UD7600C with 630i
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->{{Maybe|Vesa 2d Nvidia 7100 VGA and HDMI connections}}
| <!--Audio-->{{Maybe| with realtek codec}}
| <!--USB-->{{Maybe|4 rear and 5 front}}
| <!--Ethernet-->{{Maybe| nForce}}
| <!--Test Distro-->Icaros 2.3 dvd
| <!--Comments-->2009 64bit capable but would not fully boot, DHCP address timeout too short and failed often. Put in a third party NIC, worked - 1 PCI Express x16 slot and a free PCI x1 slot - internal thin long psu with 12pin -
|-
| <!--Name--> Imedia S1710 with Intel Dual Core E5200
| <!--IDE--> {{Yes|SATA/AHCI}}
| <!--SATA--> {{Maybe|Native IDE}}
| <!--Gfx--> {{Yes|Nvidia nForce 7100}}
| <!--Audio--> {{Yes|Nvidia MCP73}}
| <!--USB--> {{Yes|USB 2.0}}
| <!--Ethernet--> {{No|NVIDIA MCP73 Ethernet}}
| <!--Test Distro--> Nightly Build 14-09-2023, AROS One 2.3
| <!--Comments--> 2009 64-bit - Boot over USB not working on front - 2 DDR2 dual channel max 8GB - DEL for entering Bios - F12 for boot menu - Bus weird, could be reason for Ethernet issue
|-
| <!--Name-->Acer Revo AR1600, R1600 AR3600, R3600 Packard Bell iMax Mini, ACER Veriton N260G N270G slim nettop subcompact
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Maybe|Native IDE mode, '''when it works''' boots}}
| <!--Gfx-->{{Maybe|Nvidia ION GeForce 9300M - nouveau 3d - '''when it boots''' 400 fps in shell'ed gearbox, 278 in tunnel, 42 in teapot}}
| <!--Audio-->{{Maybe|HD Audio with alc662 codec but nothing from HDMI audio}}
| <!--USB-->{{Maybe|Nvidia USB boot usb2 stick issues and slower with usb3 drives}}
| <!--Ethernet-->{{No|MCP79 nForce}}
| <!--Test Distro-->
| <!--Comments-->2009 64bit does not support AVX or SSE 4.1 Intel Atom 230 N280 - 20cm/8" high 1 ltr noisy fan - very often boot stuck around ehciInit - DEL setup F12 boot options - 2 ddr2 sodimm slots max 4GB - 19v special barrel size 5.5mm/1.7mm psu - 2 ddr2 sodimm slots max 4GB - atheros 5k AR5BXB63 wifi -
|-
| <!--Name-->Revo AR3610 R3610 3610 Atom 330 nettop subcompact dual core
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Maybe|Native IDE mode, '''when it works''' boots}}
| <!--Gfx-->{{Maybe|Nvidia ION GeForce 9400M LE MCP79MX - nouveau 3d - '''when it boots''' 400 fps in shell'ed gearbox, 278 in tunnel, 42 in teapot}}
| <!--Audio-->{{Yes|HD Audio with Realtek alc662 rev1 alc662-hd later ALC885 codec but nothing from HDMI audio}}
| <!--USB-->{{Maybe|Nvidia USB with 1% chance boot with usb2 sticks, more issues with usb3 drives}}
| <!--Ethernet-->{{No|RTL 8211CL MCP79 nForce}}
| <!--Test Distro-->{{no|AROS One 32bit 1.5, 1.6 and 2.4 usb and 64bit 1.2 USB}}
| <!--Comments-->2010 64bit does not support AVX or SSE 4.1 20cm/8" high 1 ltr noisy fan - boot often stuck at Kernel or around ehciInit, SATA, etc try ATA=off, non usb hub keyboard, - DEL bios setup, F12 BBS POPUP/drive boot - 2 ddr2 sodimm slots max 4GB - 19v barrel psu with smaller inner pin size 5.5mm/1.7mm - replace wifi RT3090 ver c (linux) with atheros 5k -
|-
| <!--Name-->Revo N281G
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Maybe| }}
| <!--Gfx-->{{maybe|GMA 2d for GMA 3100}}
| <!--Audio-->HD audio codec
| <!--USB-->USB2
| <!--Ethernet-->Realtek
| <!--Test Distro-->
| <!--Comments-->2011 64bit does not support AVX and SSE 4.1 Atom D425 - 19v 65w barrel psu thinner inner pin - 2 DDR3L single channel max 4GB - replace wifi RT3090 ver d with atheros 5k mini pci-e - 1lr or 1.5 ltr dvdrw case 209.89 mm, (D) 209.89 mm, (H) 35.35 mm - del enter bios -
|-
| <!--Name-->REVO AR3700 R3700 3700 Atom D525 dual core - ACER Veriton N282G
*one long beep followed by two short, bios damaged
*looping one long two short, a video card fault
*two short beeps... CMOS damaged
*got one long and one short beep... board error?
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Yes|IDE ready in Bios}}
| <!--Gfx-->{{Yes|Nvidia ION2 GT218 ION vga fine '''but''' hdmi fussy over display used - nouveau 2d & 3d gearbox 404 tunnel 292 teapot 48}}
| <!--Audio-->{{Yes|HDA Intel with Realtek ALC662 rev1 codec, head phones only but nothing from NVidia HDMI}}
| <!--USB-->{{Yes|Intel® NM10 Express (NM10 is basically an ICH7 with a die shrink and IDE removed) USB boots usb, installs usb, accesses ok}}
| <!--Ethernet-->{{Yes|Realtek 8169 8111g}}
| <!--Test Distro-->AROS one 32bit USB 1.5 and 1.6 and ArosOne 64bit usb 1.2
| <!--Comments-->2011 64bit does not support AVX or SSE 4.1 20cm/8" high 1 ltr noisy fan - early 2 ddr2 sodimm slots but later 2 ddr3 sodimm slots 1Rx8 max 4GB - 19v barrel psu thinner pin - replace wifi RT3090 ver d with atheros 5k mini pci-e - ACPI Suspend Mode = S1, S3 (STR), S4 - Power on PCIe
* Known Acer issue, Boot into bios, set bios to UEFI and reboot, set bios back to defaults and reboot, blank display, repair with reflash of 8 pin Winbond W25Q socketed bios chip with ch341a using 2011/09/19 P01.B0L, 2011/05/09 P01.A4, 2011/05/03 P01.A3L, 2010/12/27 P01.A2L, 2010/12/27 P01.A2 amiboot.rom -
|-
| <!--Name-->Revo 70 (RL70) with or without dvdrw
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->6320 or 6310
| <!--Audio-->HD audio ALC662-VCO-GR codec
| <!--USB-->USB2, 1.1 Hudson D1
| <!--Ethernet-->Realtek 8111E
| <!--Test Distro-->
| <!--Comments-->2012 64bit does not support AVX or SSE 4.1 AMD E450 1.65GHz - 19v 65w barrel psu thinner inner pin - 2 DDR3L single channel max 4GB - replace wifi RT3090 ver d with atheros 5k mini pci-e - 1lr or 1.5 ltr dvdrw case 209.89 mm, (D) 209.89 mm, (H) 35.35 mm - del enter bios -
|-
|}
====Asus====
{| class="wikitable sortable" width="100%"
! width="15%" |Name
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Integrated Gfx
! width="10%" |Audio
! width="10%" |USB
! width="10%" |Ethernet
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->EEEbox B202
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Intel GMA950
| <!--Audio-->Intel Azalia HDaudio with Realtek ALC662 or ALC888-GR CODEC
| <!--USB-->
| <!--Ethernet-->Realtek 8111 or JM250
| <!--Test Distro-->Icaros
| <!--Comments-->internal 3 types of wifi chipset not supported
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
|}
====Dell====
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Integrated Gfx
! width="10%" |Audio
! width="10%" |USB
! width="10%" |Ethernet
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name--> Precision 340
| <!--IDE--> {{yes}}
| <!--SATA--> {{n/a}}
| <!--Gfx--> {{n/a}}
| <!--Audio--> {{yes|Intel AC97}}
| <!--USB--> {{yes|USB 1.1 (UHCI)}}
| <!--Ethernet--> {{yes|3Com}}
| <!--Test Distro--> Nightly Build 2014 09-27
| <!--Comments-->
|-
| <!--Name-->Dimension 2400
| <!--IDE-->{{Yes}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->{{Yes|Intel 82845GL Brookdale G/GE (VESA 640x480 by 16)}}
| <!--Audio-->{{Unk|AC97 with ADI codec}}
| <!--USB-->{{Yes|UHCI EHCI}}
| <!--Ethernet-->{{Maybe|Broadcom 440x 4401}}
| <!--Test Distro-->[http://eab.abime.net/showthread.php?p=832495 Icaros 1.4]
| <!--Comments-->Graphics chipset is capable of higher resolution.
|-
| <!--Name-->Dimension 4600
| <!--IDE-->{{yes}}
| <!--SATA-->{{dunno}}
| <!--Gfx-->{{partial|Intel Extreme (VESA only)}}
| <!--Audio-->{{yes|Intel AC97 (use rear black port)}}
| <!--USB-->{{Yes|UHCI/EHCI}}
| <!--Ethernet-->{{yes|Intel PRO/100}}
| <!--Test Distro-->Icaros 1.5.2
| <!--Comments-->
|-
| <!--Name--> Optiplex 170L
| <!--IDE--> {{yes|IDE}}
| <!--SATA--> {{partial|IDE mode}}
| <!--Gfx--> {{partial|Intel Extreme (VESA only)}}
| <!--Audio--> {{no|Intel AC97}}
| <!--USB--> {{yes|USB 2.0}}
| <!--Ethernet--> {{yes|Intel PRO/100}}
| <!--Test Distro--> {{dunno}}
| <!--Comments-->
|-
| <!--Name--> Optiplex GX260
| <!--IDE--> {{yes|IDE}}
| <!--SATA--> {{N/A}}
| <!--Gfx--> {{partial|Intel Extreme (VESA only)}}
| <!--Audio--> {{yes|Intel AC97}}
| <!--USB--> {{yes|USB 2.0}}
| <!--Ethernet--> {{no|Intel PRO/1000}}
| <!--Test Distro--> Nightly Build 2014 09-27
| <!--Comments-->
|-
| Optiplex GX270
| {{yes|Working}}
| {{partial|IDE mode}}
| {{partial|Intel Extreme (VESA only)}}
| {{yes|Intel AC97}}
| {{yes|USB 2.0}}
| {{no|Intel PRO/1000}}
| Icaros 1.5.2
| <!--Comments-->
|-
| Optiplex GX280
| {{yes|Working}}
| {{partial|IDE mode}}
| {{maybe|Intel GMA (only VESA tested)}}
| {{yes|Intel AC97}}
| {{yes|USB 2.0}}
| {{no|Broadcom}}
| Nightly Build 2014 09-27
| <!--Comments-->
|-
| <!--Name--> Optiplex GX520
| <!--IDE--> {{yes|IDE}}
| <!--SATA--> {{partial|IDE mode}}
| <!--Gfx--> {{yes|Intel GMA}}
| <!--Audio--> {{partial|Intel AC97 (no line-out)}}
| <!--USB--> {{yes|USB 2.0}}
| <!--Ethernet--> {{no|Broadcom}}
| <!--Test Distro--> {{dunno}}
| <!--Comments-->
|-
| <!--Name--> Optiplex 745
| <!--IDE--> {{N/A}}
| <!--SATA--> {{partial|IDE mode}}
| <!--Gfx--> {{partial|Intel GMA (VESA only)}}
| <!--Audio--> {{partial|HD Audio (no volume control)}}
| <!--USB--> {{partial|Only keyboard mouse (legacy mode)}}
| <!--Ethernet--> {{no|Broadcom}}
| <!--Test Distro--> {{dunno}}
| <!--Comments-->
|-
| <!--Name--> Optiplex 755
| <!--IDE--> {{N/A}}
| <!--SATA--> {{partial|IDE mode}}
| <!--Gfx--> {{partial|Intel GMA (VESA only)}}
| <!--Audio--> {{no|HD Audio}}
| <!--USB--> {{yes|USB 2.0}}
| <!--Ethernet--> {{no|Intel Gigabit}}
| <!--Test Distro--> Icaros 1.5.1
| <!--Comments--> Around 25 second delay in booting from USB
|-
| <!--Name--> Optiplex 990
| <!--IDE--> {{N/A}}
| <!--SATA--> {{partial|non-RAID mode}}
| <!--Gfx--> {{partial|Intel HD (VESA only)}}
| <!--Audio-->{{no|HD Audio}}
| <!--USB--> {{yes|USB 2.0}}
| <!--Ethernet--> {{no|Intel Gigabit}}
| <!--Test Distro--> Nightly Build 2014 09-27
| <!--Comments-->
|-
| <!--Name-->Optiplex 360
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->{{maybe|ordinary boot gives VGA mode only - VESA}}
| <!--Audio-->{{no|HD Audio (Analog Devices ID 194a)}}
| <!--USB-->
| <!--Ethernet-->{{no|Broadcom}}
| <!--Test Distro-->Aspire Xenon
| <!--Comments-->poor support
|-
| <!--Name-->Dell Wyse Vx0 (V90 V30), Vx0L (V10L V90L), Vx0LE (V30LE V90LE) from VIA C7 800GHz to Eden 1.2GHz
| <!--IDE-->{{Maybe| }}
| <!--SATA-->{{N/A| }}
| <!--Gfx-->{{Maybe|Vesa 2d for S3 UniChrome Pro}}
| <!--Audio-->{{No|AC97 VIA VT8233A with ?? codec}}
| <!--USB-->{{yes|2 back and 1 front USB2}}
| <!--Ethernet-->{{Maybe|early models work but later VT6102-3 do not}}
| <!--Test Distro-->AROS One 2.2
| <!--Comments-->2006 to 2009 32bit - 12V 4A Coax 5.5mm/2.1mm - 1 sodimm DDR 333MHz SO-DIMM later DDR2 - early V90s do seem to have a reliability problem -
|-
| <!--Name-->[https://www.poppedinmyhead.com/2021/01/wyse-cx0-thin-client-notes-experiences.html Dell Wyse Cx0] C00LE, C10LE, C30LE, C50LE, C90LE, C90LE7, C90LEW VIA C7 Eden 1GHz
| <!--IDE-->{{Maybe| }}
| <!--SATA-->{{N/A| }}
| <!--Gfx-->{{Maybe|Vesa 2d VX855 VX875 Chrome 9}}
| <!--Audio-->{{Maybe|some VIA VT8237A VT8251 HDA with ?? codec work}}
| <!--USB-->{{yes|4 outside 2 inside USB2}}
| <!--Ethernet-->{{No|VT6120 VT6121 VT6122 Gigabit}}
| <!--Test Distro-->Icaros 2.3
| <!--Comments-->2010 to 2013 32bit - [https://ae.amigalife.org/index.php?topic=815.0 boots and works] - 12V 2.5A Coax 5.5mm/2.1mm - 1 sodimm ddr2 -
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->Dell RxxL Rx0L Wyse thin client
*R00L Cloud PC of Wyse WSM
*R10L Wyse Thin OS
*R50L Suse Linux Enterprise
*R90L Win XP Embedded
*R90LW Win Embedded Standard 2009
*R90L7 Win Embedded Standard 7
| <!--IDE-->128Mb IDE or 1GB
| <!--SATA-->{{Maybe|SATA Hyperdisk}}
| <!--Gfx-->AMD 690E RS690M Radeon Xpress 1200 1250 1270
| <!--Audio-->
| <!--USB-->4 usb2
| <!--Ethernet-->Realtek
| <!--Test Distro-->
| <!--Comments-->2009 64bit AMD Sempron™ 210U SMG210UOAX3DVE 1.5GHz SB600, up to 4GB single slot 240-pin DDR2 DIMM, 19v barrel psu, DEL key bios - Late 2012 2 data sockets added but only CN18 be used with two white sockets (CN13 & CN15) can used to power the SATA device "4-pin Micro JST 1.25mm
|-
| <!--Name-->Optiplex 390 sff small form factor - mt mini tower desktop - dt full desktop
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->{{maybe|1 pci-e}}
| <!--Audio-->{{maybe|HD Audio}}
| <!--USB-->
| <!--Ethernet-->{{maybe|realtek}}
| <!--Test Distro-->aros one 1.6 usb
| <!--Comments-->2011 64bit dual i3 2xxx - kettle iec plug psu cable - add nvidia gf218 gfx - error code 3 mobo or cpu -
|-
| <!--Name-->Optiplex 3010 sff small form factor
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->{{maybe|1 pci-e}}
| <!--Audio-->{{maybe|HD Audio}}
| <!--USB-->{{maybe| }}
| <!--Ethernet-->{{no|Broadcom 57XX}}
| <!--Test Distro-->
| <!--Comments-->2012 64bit dual i3 3xxx - kettle iec plug psu cable -
|-
| <!--Name-->Optiplex 7010 sff small form factor
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->{{maybe|1 pci-e}}
| <!--Audio-->{{maybe|HD Audio}}
| <!--USB-->
| <!--Ethernet-->{{no|Broadcom or Intel 825xx}}
| <!--Test Distro-->
| <!--Comments-->2012 64bit dual i3 3xxx Q77 - kettle iec plug psu cable - add pci-e ethernet and nvidia gf218 gfx -
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->Dell Wyse 5010 thin client ThinOS D class (D10D D00D D00DX, Dx0D), PCoIP (D10DP) or D90D7, 5040
*username: Administrator, admin, [blank]
*password: Fireport, DellCCCvdi, rappot, Wyse#123, Administrator, administrator, r@p8p0r+
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Yes|IDE mode may need 30cm ext cable as small area for half-slim sata ssd - decased new ssd??}}
| <!--Gfx-->{{Maybe|Vesa 2d 1400x1050 HD6250E IGP by using DVI to hdmi cable and 1 display port, no hdmi port}}
| <!--Audio-->{{Maybe|HD 6.34 audio chipset detected but codec alc269 working from one case speaker - none if v6.29 used}}
| <!--USB-->{{Yes|most 5010 have 4 USB 2.0 but D90Q7 has 2 USB3 instead}}
| <!--Ethernet-->{{Yes|rtl8169 Realtek 8168 8169 - rev 1.?? 8111? - rev 1.91 8111E}}
| <!--Test Distro-->Icaros 2.3
| <!--Comments-->2011 64bit no SSE4.1 or AVX slow AMD G-T44R 1.2Ghz later G-T48E 1.4Ghz Dual Bobcat Brazos BGA413 - Del for BIOS - p key to select boot with noacpi - single DDR3 sodimm slot max 4Gb, (8Gb hynix 2rx8 ddr3l)? (remove small board to upgrade) - passive no fan - 15cm/6" small 1ltr case and lack of expansion options - PA16 19v barrel psu Coax 5.5mm/2.5mm
|-
| <!--Name-->Dell Wyse 7010 DTS thin client (Z class Zx0D)
*2011 Zx0 Z90D7 2GF/2GR
*2013 Z10D
*2014 Z50D 2GF/2GR
*2012 Cisco VXC 6000 CVXC-6215-K9 white
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Yes|Bios set Sata mode to IDE mode and grub boot add 'noacpi' for half slim sata2 ssd or/with 50cm sata ext cable}}
| <!--Gfx-->{{Maybe|VESA 2d HD6310 HD6320 Terascale 2 through DVI and sometimes DP 1.1a - no hdmi port}}
| <!--Audio-->{{Maybe|HD Audio 6.34 detected but ALC269VB codec works on the one case speaker only}}
| <!--USB-->{{Yes|2.0 works but NEC 720200 3.0 not working}}
| <!--Ethernet-->{{Yes|rtl8169 Realtek 8169 8111e 8111F}}
| <!--Test Distro-->Icaros 2.3 and Aros One 32bit 1.5, 1.9 and 2.3 usb and 64bit 1.2
| <!--Comments-->2011 64bit does not support AVX or SSE 4.1 slow AMD G-t52R 1.5GHz later G-T56N 1.65 GHz Dual with A50M FCH - 20cm/8" high 1.5ltr larger fanless black plastic case with metal ventilated box inside - 2 desktop DDR3L DIMM slots max 16GB - PA-16 19v external psu Coax 5.5mm/2.5mm - 2 40cm SMA female WiFi Antenna to IPEX IPX u.fl Ufl Cable pigtail needed - does not like uefi boot devices -
|-
| <!--Name-->Wyse 7020 Thin Client
* 2013 Quad-core AMD GX-420CA 2.0 GHz (25W) -
* 2018 Zx0Q Quad-core AMD GX-415GA 1.5 GHz (15W) with Quad display 3dp and 1dvi
| <!--IDE-->{{N/A}}
| <!--SATA-->1 sata port
| <!--Gfx-->{{Maybe|Vesa 2d only for AMD Radeon HD8400E radeonsi (dual display) or AMD Radeon HD 8330E IGP with AMD Radeon E6240 Seymour E6460 (quad display), no hdmi ports}}
| <!--Audio-->
| <!--USB-->4 x USB2.0 works but 2 USB3.0
| <!--Ethernet-->rtl8169 Realtek 8169 8111
| <!--Test Distro-->
| <!--Comments-->2013 64bit does support AVX or SSE 4.1 quad eKabini Jaguar cores - two SODIMM sockets layered in centre of mobo DDR3L RAM - Coax 5.5mm/2.5mm ac psu 9mm plug is too short but 14mm length is fine - 15cm/6" high smaller 1ltr case and lack of expansion options -
|-
| <!--Name-->Dell Wyse Dx0Q (5020) D90Q8 NJXG4 AMD G-Series
| <!--IDE-->{{N/A}}
| <!--SATA-->1 sata port
| <!--Gfx-->HD 8330E
| <!--Audio--> with Realtek codec
| <!--USB-->4 x USB2.0 works but 2 USB3.0
| <!--Ethernet-->rtl8169 Realtek 8169 8111
| <!--Test Distro-->
| <!--Comments-->2014 64bit does support AVX or SSE 4.1 Quad-core AMD GX-415GA 1.5 GHz - 2 layered near edge of mobo 204-pin DDR3L SODIMM (bottom one tricky to insert) - 19v Coax 5.5mm/2.5mm - passive no fan - 15cm/6" high smaller 1ltr case and lack of expansion options
|-
| <!--Name-->Dell Wyse 5060 N07D thin client
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Yes|IDE bios mode for sata2 port}}
| <!--Gfx-->{{maybe|Vesa 2d - AMD R5E GCN2 IGP Sea Islands thru dp1 with an hdmi adapter no output thru dp2 - no hdmi dvi ports}}
| <!--Audio-->{{maybe|HD Audio with Realtek ALC231 codec head phones only}}
| <!--USB-->{{Maybe|4 x USB2.0 works but 2 USB3.0}}
| <!--Ethernet-->{{yes|rtl8169 realtek 8169 8111h}}
| <!--Test Distro-->AROS One 1.6 usb
| <!--Comments-->2017 64bit does support AVX or SSE 4.1 quad GX-424CC 19.5v external psu - CN-0Y62H1 mobo with 2 layered ddr3l 16Gb max sodimm slots at edge of mobo, bottom 0 one blocking - passive no fan so quiet - 15cm/6" high smaller 1ltr case and lack of expansion options -
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
|}
====Fujitsu Siemens====
{| class="wikitable sortable" width="100%"
! width="15%" |Name
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Integrated Gfx
! width="10%" |Audio
! width="10%" |USB
! width="10%" |Ethernet
! width="15%" |Test Distro
! width="20%" |Comments
|-
| Scenic [http://uk.ts.fujitsu.com/rl/servicesupport/techsupport/ProfessionalPC/Scenic/ScenicE/ScenicE.htm E600] (compact desktop)
|
|
| {{partial|VESA only}}
| {{yes|AC97}}
|
| {{no|Intel PRO/1000}}
| {{dunno}}
| Nice small, silent PC with good AROS support.
|-
| Scenic T i845
| {{dunno}}
| {{n/a}}
| {{n/a}}
| {{dunno|Intel AC97}}
| {{dunno|UHCI}}
| {{dunno|Intel PRO/100}}
| Icaros 1.5.2
| AROS does not boot
|-
| <!--Name-->Futro S200 S210 S220 and later S300
| <!--IDE-->{{yes| compactflash CF card max ??}}
| <!--SATA-->
| <!--Gfx-->{{maybe|VESA Silicon Integrated Systems [SiS] 315PRO PCI/AGP }}
| <!--Audio-->{{unk|AC97 via }}
| <!--USB-->{{unk|via uhci and ehci}}
| <!--Ethernet-->{{unk|via VT6102 [Rhine-II] (rev 74) }}
| <!--Test Distro-->
| <!--Comments-->2008 32bit - TR5670 Rev 1.4 mother with Transmeta TM5800 cpu - pci socket - single SODIMM socket for DDR memory PC2700S max 512MB -
|-
| <!--Name-->Futro S400
| <!--IDE-->{{yes| but swap with compactflash CF card already with AROS installed}}
| <!--SATA-->
| <!--Gfx-->{{maybe|VESA Silicon Integrated Systems [SiS] SiS741CX }}
| <!--Audio-->{{unk|AC97 SiS7018}}
| <!--USB-->{{unk|sis uhci and ehci}}
| <!--Ethernet-->{{unk|rtl8169 }}
| <!--Test Distro-->
| <!--Comments-->2008 32bit - AMD Geode NX1500 1GHz gets hot - SiS 963L / SiS 741CX chipset - 12V 4.2A 4-pin (DP-003-R) psu - single SODIMM socket for DDR PC2700S max 1G - large case 246 x 48 x 177cms torx screws - pci socket -
|-
| <!--Name-->FUJITSU Futro S700 and S900 Thin Client (based on mini-ITX motherboard D3003-A12, D3003-C1 lesser variant of [https://www.parkytowers.me.uk/thin/Futro/s900/TechNotes_V3.1_Mini-ITX_D3003-S.pdf D3003-S])
*G-T56N 1.65GHz
*G-T40N 1.00GHz
*G-T44R 1.20GHz
| <!--IDE-->{{N/A}}
| <!--SATA-->1 sata data socket but mSata 18+8pins 1GB-16GB
| <!--Gfx-->Radeon HD 6320, HD 6250, HD 6290 dvi or displayport (DP runs higher)
| <!--Audio-->HDAudio
| <!--USB-->{{yes|two USB2 front sockets and four on the rear}}
| <!--Ethernet-->{{Maybe|Realtek}}
| <!--Test Distro-->
| <!--Comments-->2011 64bit AMD slow atom-like and fanless - 20V 2A psu 5.5mm/2.1mm coax (S900) - 2 DDR3L SODIMM sockets max 8GB tricky to run 1333 MHz on the Futro S900 - proprietary X2 PCI-e - 1 PCI socket but need a right-angle adaptor -
|-
| <!--Name-->esprimo p420 e85 desktop case
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Maybe|IDE mode}}
| <!--Gfx-->Intel 4600 or old Geforce in pci-e slot
| <!--Audio-->HDAudio realtek alc671 codec
| <!--USB-->USB3
| <!--Ethernet-->rtl8169 8111
| <!--Test Distro-->
| <!--Comments-->2013 64bit - 2 ddr3 dimm slots - 16 pin special psu -
|-
| <!--Name-->esprimo E420 e85+ SFF case
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Maybe|IDE mode}}
| <!--Gfx-->Intel 4600 or low profile pci-e card
| <!--Audio-->HDAudio realtek alc671 codec
| <!--USB-->USB3
| <!--Ethernet-->rtl8169 8111G
| <!--Test Distro-->
| <!--Comments-->2013 64bit - 2 ddr3 dimm slots - 16ish pin special psu - hd under front metal bracket, take front cover off first with 3 tabs - 3 slim pci-e slots -
|-
| <!--Name-->Futro S520 AMD dual 1.0Ghz codenamed "Steppe Eagle"
* GX-210HA @ 1.0GHz
* GX-212ZC @ 1.2GHz
| <!--IDE-->{{N/A}}
| <!--SATA-->no sata - 4Gb or 16Gb flash memory soldered to the board
| <!--Gfx-->AMD Radeon HD 8210E (GX210HA) or AMD Radeon R1E (GX212ZC)
| <!--Audio-->HDAudio
| <!--USB-->
| <!--Ethernet-->rtl8169 rtl8111e
| <!--Test Distro-->
| <!--Comments-->2016 64bit does support AVX or SSE 4.1 - smaller than ITX 160mm x 160mm Fujitsu D3314-A11 - 19V 3.4A PSU standard 5.5mm/2.1mm coax plug - 1 ddr3 sodimm slot -
|-
| <!--Name-->Fujitsu Futro S720 ThinClient D3313-B13 D3313-F
*2014 64bit AMD GX-217GA 1.65GHz VFY:S0720P8009FR VFY:S0720P8008DE VFY:S0720P4009GB
*2015 64bit AMD GX-222GC 2.20GHz VFY:S0720P702BDE VFY:S0720P702BFR
all begin VFY:S0720P and end two digit country code
| <!--IDE--> {{N/A|}}
| <!--SATA--> {{Yes|up to 2 Sata-cable-connector with space in casing so normal SSD/HDD over Sata was running very well on AHCI and IDE-Mode and 2242 mSata}}
| <!--Gfx--> {{Maybe|use VESA 2D for AMD Radeon HD 8280E IGP ( islands) or later R5E IGP ( islands)}}
| <!--Audio--> {{yes|HDAudio ALC671 codec partially working, external audio speaker}}
| <!--USB--> {{yes|4 rear USB 2.0 but not front 2 USB 3.1}}
| <!--Ethernet-->{{yes|rtl8169 Realtek 8169}}
| <!--Test Distro-->AROS One USB 2.0
| <!--Comments-->2014 64bit supports AVX and SSE 4.1 - 1 ddr3 Sodimm slot max 8Gb - 19V-20V 2A 5.5mm/2.5mm coax - D3313-B13 stripped down Mini-ITX mobo D3313-S1/-S2/-S3 (eKabini) D3313-S4/-S5/-S6 - SATA data socket can be located under the fins of the cpu heatsink is fanless - mPCIe socket for wireless card -
|-
| <!--Name-->Fujitsu FUTRO S920 D3313-E D3313-G
*2016 AMD GX-222GC SOC 2.20GHz Dual
*2017 AMD G-Series GX-415GA (1.50 GHz, Quad Core, 2 MB, AMD Radeon™ HD 8330E)
*2017 AMD G-Series GX-424CC 2.40 GHz Quad
| <!--IDE--> {{N/A}}
| <!--SATA--> {{yes|2242 mSata and 1 Sata-cable-connector with space in casing so normal SSD/HDD over Sata possible}}
| <!--Gfx--> {{yes|use VESA 2D for Radeon R5E GCN2/3 IGP}}
| <!--Audio--> {{yes|HDAudio ALC671 codec partially working}}
| <!--USB--> {{yes|4 rear USB 2.0, front 2 USB 3.1 downgradable to 2.0 in BIOS setting}}
| <!--Ethernet--> {{yes|rtl8169 Realtek 8169}}
| <!--Test Distro--> AROS One USB 2.4
| <!--Comments-->2016 64bit does support AVX or SSE 4.1 - 2 so dimm slot with max of 8 GB - 19v barrel psu 5.5mm 2.5mm - SATA data socket can be located under the fins of the heatsink - mPCIe a e keyed socket for wireless card - propetary X2 connector with official raizer to X1 connector - almost silent background noise, not affecting sound quality in any way
|-
| <!--Name-->Fujitsu Thin Client Futro S5011 S7011
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->{{maybe|Vesa 2D for AMD Vega 3 on 2 dp 1.4}}
| <!--Audio-->{{No|HDAudio with ALC623 codec}}
| <!--USB-->{{maybe|USB3 USB 3.2 Gen 2 front and 3 usb2 rear }}
| <!--Ethernet-->rtl8169 Realtek RTL8111H
| <!--Test Distro-->
| <!--Comments-->2019 64bit - AMD Ryzen Dual Core R1305G or R1505G 1ltr case - 2 ddr4 sodimm slots - TPM 2.0 - 19v 3.42amp round coax or usb-c 20c 3.25a external psu -
|-
| <!--Name-->Fujitsu FUTRO S9011 Thin Client VFY:S9011THU1EIN || <!--IDE-->{{N/A}} || <!--SATA-->NVMe || <!--Gfx-->{{maybe|Vesa 2D for AMD Vega 3 on 2 dp 1.4}} || <!--Audio-->{{No|HDAudio with ALC623 codec}} || <!--USB-->{{maybe|USB3 USB 3.2 Gen 2 front and 3 usb2 rear }} || <!--Ethernet-->rtl8169 Realtek RTL8111H || <!--Test Distro--> || <!--Comments-->2020 64bit Ryzen Embedded R1606G - 2 ddr4 sodimm slots - TPM 2.0 -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
|}
====HP Compaq====
{| class="wikitable sortable" width="100%"
! width="15%" |Name
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Integrated Gfx
! width="10%" |Audio
! width="10%" |USB
! width="10%" |Ethernet
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->Compaq presario 7360
| <!--IDE-->{{yes|Working}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->{{Maybe|VESA}}
| <!--Audio-->{{Maybe|AC97 via}}
| <!--USB-->{{Maybe|issues}}
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->Compaq EP Series 6400/10
| <!--IDE--> {{yes|IDE}}
| <!--SATA--> {{N/A}}
| <!--Gfx--> {{N/A}}
| <!--Audio--> {{no|ISA}}
| <!--USB--> {{yes|USB 1.1}}
| <!--Ethernet--> {{N/A}}
| <!--Test Distro--> {{dunno}}
| <!--Comments-->
|-
| <!--Name-->Compaq Evo D510
| {{yes|Working}}
| {{N/A}}
| {{partial|Intel Extreme (VESA only)}}
| {{yes|AC97}}
| {{yes|Working}}
| {{yes|Intel PRO/100}}
| Icaros 1.5
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->Compaq DX2000 MT
| <!--IDE-->{{yes}}
| <!--SATA-->{{maybe}}
| <!--Gfx-->{{maybe|Intel Extreme 2 (VESA only)}}
| <!--Audio-->{{no|detects AC97 but no support for ADI AD1888 codec}}
| <!--USB-->{{yes|OHCI/EHCI }}
| <!--Ethernet-->{{no|Intel 82526EZ e1000}}
| <!--Test Distro--> Icaros 1.51
| <!--Comments-->boots ok but no audio
|-
| <!--Name-->Compaq DX 2200
| <!--IDE-->{{yes}}
| <!--SATA-->{{maybe}}
| <!--Gfx-->{{maybe|RC410 [Radeon Xpress 200] (VESA only)}}
| <!--Audio-->{{dunno|HD Audio}}
| <!--USB-->{{maybe|OHCI/EHCI issues }}
| <!--Ethernet-->{{N/A}}
| <!--Test Distro--> {{dunno}}
| <!--Comments-->issues
|-
| <!--Name--> d230
| <!--IDE--> {{yes|UDMA}}
| <!--SATA--> {{N/A}}
| <!--Gfx--> {{partial|Intel Extreme (VESA only)}}
| <!--Audio--> {{partial|Intel AC97 (speaker and headphones only, no line-out)}}
| <!--USB--> {{yes|USB}}
| <!--Ethernet--> {{Maybe|Broadcom BCM4401}}
| <!--Test Distro--> Icaros 1.4.5
| <!--Comments-->
|-
| <!--Name-->HP Pavilion a220n || <!--IDE-->{{Yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Yes|VESA 1024x768 on nVidia GF4 MX with 64MB shared video ram}} || <!--Audio-->{{Yes|Realtek ALC650 AC'97 comp.}} || <!--USB-->{{Yes|USB 2.0}} || <!--Ethernet-->{{Yes|Realtek 8201BL 10/100 LAN}} || <!--Test Distro-->AROS One 2.5|| <!--Comments-->2004 32bit athlon xp 2600+ Socket 462 / Socket A - 2 dimm ddr pc2700 -
|-
| <!--Name-->t500
| <!--IDE-->{{Yes}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->{{Yes|FX5200 (2D; 3D with older driver)}}
| <!--Audio-->{{Yes|AC97 ICH4 ALC658D}}
| <!--USB-->{{Yes|UHCI/EHCI}}
| <!--Ethernet-->{{Yes|RTL 8101L 8139}}
| <!--Test Distro-->Nightly Build 2012-09-22
| <!--Comments-->2004
|-
| <!--Name-->DC7700
| <!--IDE-->{{Yes}}
| <!--SATA-->{{Yes}}
| <!--Gfx-->{{Yes|GMA 2D}}
| <!--Audio-->{{Yes| ICH8}}
| <!--USB-->{{Yes}}
| <!--Ethernet-->{{No|82566DM e1000e}}
| <!--Test Distro-->Nightly Build 2013-??-??
| <!--Comments-->2006 Some support at low cost
|-
| <!--Name-->HP dc 7600 CMT
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->{{Yes|Intel Graphics Media Accelerator 950}}
| <!--Audio-->{{Yes|Realtek ACL 260}}
| <!--USB-->{{Yes|USB 2.0}}
| <!--Ethernet-->{{No|Intel PRO/1000 GT}}
| <!--Test Distro-->
| <!--Comments-->2007
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->HP t5000 thin client series t5500 t5510 t5515 PC538A or PC542A t5700 t5710 Transmeta Crusoe Code Morphing TM 5400 5600 800Mhz
| <!--IDE-->128mb to 512MB
| <!--SATA-->{{N/A}}
| <!--Gfx-->Ati Radeon 7000M
| <!--Audio-->VIA with codec
| <!--USB-->{{No|Issues}}
| <!--Ethernet-->VIA Rhine 2
| <!--Test Distro-->
| <!--Comments-->2006 32bit - ddr max 1GB - F10 setup - all t51xx and some t55xx units will not include a SODIMM slot -
|-
| <!--Name-->HP t5000 thin client series CN700
*HSTNC-002L-TC t5135, t5530
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Vesa 2d 128Mb Via S3 32-bit colour
| <!--Audio-->AC97
| <!--USB-->
| <!--Ethernet-->VIA VT6102 VT6103 [Rhine-II] (rev 78)
| <!--Test Distro-->
| <!--Comments-->2007 32bit t5135 appears identical to the t5530 except the CPU VIA Esther 400 MHz - RAM 64Mb (? max) - 8 x USB2.0 - 12V 3.33A Coax 5.5mm/2.1mm
|-
| <!--Name-->HP t5720, t5725 HSTNC-001L-TC
| <!--IDE-->{{unk| }}
| <!--SATA-->{{N/A}}
| <!--Gfx-->VESA 2d SiS741GX 2048 x 1536 32-bit colour
| <!--Audio-->AC97 SiS SiS7012 AC'97
| <!--USB-->6 x USB2.0
| <!--Ethernet-->VIA VT6102 VT6103 [Rhine-II] (rev 8d)
| <!--Test Distro-->
| <!--Comments-->2007 32bit AMD Geode NX1500 1GHz socketed - RAM 512MB or 1GB, 256MB, 512MB or 1GB - 12V psu - sis DDMA support - custom 1.13 BIOS - pci low profile -
|-
| <!--Name-->t5000 series VX800 HSTNC-004-TC t5145, t5540, t5545, t5630
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Vesa 2d VIA Chrome9
| <!--Audio-->HD Audio VIA
| <!--USB-->
| <!--Ethernet-->{{No|VT6120 VT6121 VT6122 Gigabit (rev 82)}}
| <!--Test Distro-->
| <!--Comments-->2010 32bit - RAM 64Mb (? max) - 8 x USB2.0 - 12V 4.16A Coax: 5.5mm/2.1mm -
|-
| <!--Name-->t5730w HSTNC-003-TC t5730
| <!--IDE-->{{n/a|ATA 44pin DOM Flash}}
| <!--SATA-->
| <!--Gfx-->Vesa 2d ATI Radeon X1250 2048 x 1536 no 3D
| <!--Audio-->HD audio with codec
| <!--USB-->{{Yes|6 x USB2.0}}
| <!--Ethernet-->{{No|Broadcom 5707M tg3 10/100/1000}}
| <!--Test Distro-->
| <!--Comments-->2008 64bit AMD Sempron 2100+ 1GHz - 1 slot of ddr2 sodimm (Max 2GB) - 12V 4.16A Coax 5.5mm/2.1mm - F10 enter bios F12 boot devices -
|-
| <!--Name-->HSTNC-005-TC gt7720, gt7725
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Vesa 2d AMD RS780G HD 3200 - 2560 x 1600 DVI-D & DVI-H
| <!--Audio-->
| <!--USB-->8 x USB2.0
| <!--Ethernet-->{{No|Broadcom BCM5787M}}
| <!--Test Distro-->
| <!--Comments-->2009 64bit AMD Turion Dual Core CPU 2.3GHz - 1 DDR2 200-pin SODIMM - 19V 4.16A Coax 7.4mm/5.0mm (gt7725) -
|-
| <!--Name-->HP t5740 Thin Client HSTNC-006-TC t5740, t5745, st5742
| <!--IDE-->1 port
| <!--SATA-->1 port
| <!--Gfx-->{{Maybe|VESA for Intel CL40 VGA and DisplayPort connectors}}
| <!--Audio-->{{Yes|HD audio with IDT codec}}
| <!--USB-->{{Maybe| }}
| <!--Ethernet-->{{No|Broadcom BCM57780 Gigabit}}
| <!--Test Distro-->Nightly build and Icaros
| <!--Comments-->2009 32bit Atom N280 - F10 on power up to get into the BIOS screens. F12 brings up the boot options - hp 19V one with a coax connector, outer diameter 4.8mm with inner to be 1.7mm to 1.4mm - 2 ddr3 sodimm slots max 3gb due to 32bit - 1 pci-e slot completely non standard -
|-
| <!--Name-->t5000 series HSTNC-012-TC VIA Nano u3500 VX900
*t5550 512MB/1GB Windows CE6 R3
*t5565 1GB/1GB HP ThinPro
*t5570 2GB/1GB WES 2009
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Vesa 2d VIA ChromotionHD 2.0 GPU Chrome9
| <!--Audio-->VIA 9170 VT1708S codec
| <!--USB-->
| <!--Ethernet-->{{No|Broadcom BCM57780 Gigabit}}
| <!--Test Distro-->
| <!--Comments-->32bit - 1 sodimm - 19V 3.42A supply connector standard yellow-tip coax plug 4.8mm/1.8mm "Standard HP Compaq DC Power Plug 4.8mm x 1.5mm / 1.7mm Yellow Tip Connector -
|-
| <!--Name-->HP t510 Via Eden X2 U4200 HSTNC-012-TC shares features with t5570e, t5565z
| <!--IDE-->2G ATA Flash DOM
| <!--SATA-->one
| <!--Gfx-->{{Maybe|Vesa 2d for Chrome9 VIA ChromotionHD 2.0 gfx}}
| <!--Audio-->{{Maybe|VIA VT8237A VT8251 HDA with codec}}
| <!--USB-->{{Maybe|6 USB2 }}
| <!--Ethernet-->{{No|Broadcom Corporation NetLink BCM57780 Gigabit Ethernet PCIe}}
| <!--Test Distro-->
| <!--Comments-->2010 32bit - one slot ddr3 sodimm max 4GB - 19V 3.42A Coax 4.8mm/1.8mm -
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->HP T610 Thin Client and thicker PLUS version AMD G-T56N A55E
| <!--IDE-->{{Maybe|}}
| <!--SATA-->2 sata
| <!--Gfx-->Radeon 6320 1 dp port 1 dvi
| <!--Audio-->HDAudio with ALC codec
| <!--USB-->two USB2 on the front, two USB2 and two USB 3 ports on the rear
| <!--Ethernet-->{{No|Broadcom BCM57780}}
| <!--Test Distro-->
| <!--Comments-->2010 64bit does not support AVX SSE 4.1 - 2 204-pin DDR3 1600MHz SODIMMs PC3-12800 under motherboard via removable panel - 19.5V 3A Coax male 7.4mm/5.0mm + centre pin -
|-
| <!--Name-->HP T420 Thin Client
*AMD Embedded G-Series GX-209JA SOC (1 GHz, 2 cores)
| <!--IDE-->{{N/A}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->Radeon 8180 dvi vga
| <!--Audio-->HDAudio with ALC codec
| <!--USB-->2 front 2 rear USB2
| <!--Ethernet-->{{Yes|Realtek}}
| <!--Test Distro-->
| <!--Comments-->2015 64bit supports AVX SSE 4.1 - soldered in place 2GB DDR3 - smaller than usual 19.5V 2.31A Coax male 4.5mm/3.0mm + centre pin - usb stick internal for storage - E15 BBR -
|-
| <!--Name-->HP t520 TPC-W016
*AMD GX-212JC 1.2Ghz (2 core)
| <!--IDE-->{{N/A}}
| <!--SATA-->1 m.2 mounting holes for 2242 and 2260 SSDs SATA (not NVME)
| <!--Gfx-->Radeon R2E GCN2 IGP Sea Islands
| <!--Audio-->HDAudio with ALC codec
| <!--USB-->2 USB3 front, 4 USB2 back
| <!--Ethernet-->{{Yes|Realtek}}
| <!--Test Distro-->
| <!--Comments-->2014 2017 64 bit supports AVX SSE 4.1 - 1 204-pin DDR3 SODIMM - 19.5V 3.33A 7.4mm Coax with central pin
|-
| <!--Name-->HP t620 TPC-I004-TC
*AMD G-Series GX-217GA 2 core APU 1.65GHz (65W)
*AMD GX-415GA (65W)
and t620 PLUS (PRO wider version) TPC-I020-TC
*AMD GX-420CA SOC (Plus 85W)
| <!--IDE-->{{N/A}}
| <!--SATA-->{{yes|single M.2 2280 socket sata3, mSATA socket removed end of 2014}}
| <!--Gfx-->{{maybe|Vesa 2d for Radeon HD 8280E graphics 8330E Islands GCN2 IGP - 2 dp ports no dvi}}
| <!--Audio-->{{yes|HDAudio with Realtek ALC221 codec 0x10EC 0x0221}}
| <!--USB-->{{unk|4 front, 2 back, 1 inside limited space}}
| <!--Ethernet-->{{Yes|Realtek 8169}}
| <!--Test Distro-->Aros One 32bit
| <!--Comments-->2014 64bit supports AVX SSE 4.1 - 2 DDR3L SODIMMs side by side - mSATA ssd and M.2 SSD are M1.6 screws, M2.0 screws used on most SSDs - 19.5V 3.33A Coax male 7.4mm 5mm with centre pin - changed the network card to a Atheros 5000 compatible -
|-
| <!--Name-->HP T530
*AMD GX-215JJ (2 core) 1.5GHz
| <!--IDE-->{{N/A}}
| <!--SATA-->1 m.2 sata ssd up to 2280
| <!--Gfx-->Radeon R2E
| <!--Audio-->HDAudio with ALC codec
| <!--USB-->1 USB3.1, 1 usb-c front, 4 USB2 back
| <!--Ethernet-->{{Yes|Realtek}}
| <!--Test Distro-->
| <!--Comments-->2015 64 bit does support AVX SSE 4.1 - 1 204-pin DDR4 SODIMM - 19.5V 2.31A Coax male 4.5mm/3.0mm with centre pin -
|-
| <!--Name-->HP T730 Wider "Thin" Client TPC-I018-TC Pixar RX-427BB (2c4t) - no display and fans blowing full speed caused by '''disabling internal gpu in bios''' flash L43_0116.bin onto smc MX25L6473F (3.3V 8-PIN SOP (200mil) SPI 25xx) ([https://www.badcaps.net/forum/troubleshooting-hardware-devices-and-electronics-theory/troubleshooting-desktop-motherboards-graphics-cards-and-pc-peripherals/bios-schematic-requests/96303-hp-t730-password-locked-bios in the rom rcvry socket under a delicate thin narrow surface flap]) with ch341a alike switchable from 5v, 3.3v to 1.8v
| <!--IDE-->{{N/A}}
| <!--SATA-->{{partial|Storage bios option to IDE and not AHCI to prevent constant install error messages to DH0: - add noacpi to end of grub boot line - 1 M.2 SATA slot (Key B+M) up to 2280 with T8 torx secure stub}}
| <!--Gfx-->{{maybe|use VESA for non-vulkan Radeon R7 GCN 2 UVD4.2 Sea Islands with 4 dp outs '''but too easy bricking''' if swapping with 1 PCIe 3.0 x8 slot 30W slim factor low profile 8400gs gt210 nvs295 nvs310 gt1030}}
| <!--Audio-->{{yes|HDaudio 6.34 realtek alc221 codec thru case speaker only}}
| <!--USB-->{{yes|'''Works''' for 4 USB2 in the back with 2 in the front, 2 USB3.0 ports on front and 1 more internal (not bootable)}}
| <!--Ethernet-->{{yes|rtl8169 Realtek RTL8111HSH-CG set up first in Prefs/Network}}
| <!--Test Distro-->boots with AROS One 32bit and 64bit USB with added noacpi added to grub boot line - press e - Latest distros can select grub boot options with Aros One 64bit USB and Aros One USB 2.8 but system seems to freeze after choice
| <!--Comments-->2016 64bit supports AVX SSE 4.1 - 2 DDR3L sodimm stacked slots max 32GB - '''Larger''' 20cm/8" high 3.5ltr case noisy fan - TPM2 - esc/F9 boot selector F10 enter bios - 2 serial and 1 parallel old ports - Key E Wireless - PCIe slot (x16 physical, x8 electrical) - 19.5V 4.36A 85w TPC-LA561 HP 7.4mm black-ring-tip power plug, red flashing power button, wrong psu or bad MotherBoard MB -
|-
| <!--Name-->HP t630 Thin Client TPC-I020-TC
*AMD Embedded G-Series SoC GX-420GI quad core 2Ghz
| <!--IDE-->{{N/A}}
| <!--SATA-->{{yes|ahci.device mbr msdos partiton table for 2 Sata M.2, sata0 up to 2280 (1tb max), sata1 2242 (64gb max), both T8 torx secure stubs}}
| <!--Gfx-->{{maybe|use VESA for Radeon AMD Wani R7E with 2 displayport 1.2 sockets, use one nearest to power jack - no dvi / hdmi}}
| <!--Audio-->{{Yes|HDAudio 6.36 0x1022, 0x157a and ALC255 aka ALC3234 codec 0x10ec, 0x0255, pins 0x17 as LFE and 0x1b as int speaker but not ahi 6.34}}
| <!--USB-->{{yes|USB2 2 front and 2 rear, 2 front USB3 and 1 inside}}
| <!--Ethernet-->{{Yes|Realtek 8169 8111H}}
| <!--Test Distro-->AROS One USB 2.2, 2.8 and 64bit USB 1.0, 1.2 with noacpi added to the end of the grub bootline (press e)
| <!--Comments-->2016 64bit supports AVX SSE 4.1 - 2 DDR4 SODIMMs side by side speed 1866Mhz limit - 19.5V 3.33A 65W TPC-BA54 Coax male 7.4mm with centre pin - can be easily bricked, might reflash bios with M40 SP149736 - 20cm/8" high 1.5ltr larger fanless case - esc f1 f9 f10 -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->HP Compaq Elite 7200 7300 8200 8300 SFF with kettle IEC psu cable
| <!--IDE-->
| <!--SATA-->{{yes|IDE ata legacy only in BIOS}}
| <!--Gfx-->i pci-e
| <!--Audio-->{{Maybe|8200 works}}
| <!--USB-->{{yes| }}
| <!--Ethernet-->{{no|Intel or Broadcom}}
| <!--Test Distro-->icaros 2.3
| <!--Comments-->2013 64bit dual core - add pci-e rtl8169 ethernet card and pci-e gf210 nvidia low height -
|-
| <!--Name-->HP Compaq Pro 6305 Small Form Factor SFF AMD A75 chipset (FCH 6 SATA 6 Gb/s, 4 USB 3.0)
*AMD Quad A10-5800B
*AMD A8-5500B
*AMD Dual A6-5400B
*AMD A4-5300B
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Radeon 7000 Terascale iGPU series Radeon HD 7660D, Radeon HD 7560D, Radeon HD 7540D, Radeon HD 7480D
| <!--Audio-->HD ALC221
| <!--USB-->
| <!--Ethernet-->{{No|Broadcom 5761}}
| <!--Test Distro-->
| <!--Comments-->2012 64bit
|-
| <!--Name-->Elitedesk 705 G1 - SFF
*AMD A10-8850B, Quad-Core A10 PRO-7850B, A10-8750B
*AMD A10-7800B, A10 PRO-6800B, A8-7600B
*AMD A8-8650B, A6-8550B
*AMD A6-8350B, Dual A6 PRO 7400B, A4-7300B
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Maybe| }}
| <!--Gfx-->{{Maybe|VESA 2D with Radeon R7 or 8000}}
| <!--Audio-->{{Maybe|HD audio with Realtek ALC221 codec}}
| <!--USB-->{{Maybe| }}
| <!--Ethernet-->{{No|Broadcom or Intel}}
| <!--Test Distro-->
| <!--Comments-->2014 64bit - T15 security torx psu with 6pin PWR 200W connector -
|-
| <!--Name-->HP EliteDesk 705 G2, 705 G3 Mini PC USFF thin client
| <!--IDE-->{{N/A}}
| <!--SATA-->2.5in and m.2
| <!--Gfx-->Radeon R7
| <!--Audio-->HDAudio
| <!--USB-->USB3
| <!--Ethernet-->{{No|Broadcom BCM5762 GbE}}
| <!--Test Distro-->
| <!--Comments-->2014 64bit AM4 socket with 35W TDP A10-8770E (4c), AMD PRO A6-8570E (2c), AMD Pro A6-9500E, or AMD PRO A10-9700E on AMD B300 FCH - ddr4 sodimm slots - 77 x 175 x 34mm (6.97 x 6.89 x 1.34in) 1L and about 3lbs -
|-
| <!--Name-->HP EliteDesk 705 G4 Mini 1ltr USFF AMD Ryzen 3 2200G (4c t) or 5 2400G (4c t)
| <!--IDE-->{{N/A|}}
| <!--SATA-->{{Maybe|Nvme 2280 and 2.5in sata}}
| <!--Gfx-->Vega 8 thru DP1.2 port
| <!--Audio-->{{No|HD Audio Conexant codec}}
| <!--USB-->USB2 usb3
| <!--Ethernet-->rtl8169 realtek
| <!--Test Distro-->
| <!--Comments-->2016 64bit Am4 socket - 2 sodimm 16GB max - 19.5v hp socket ext psu -
|-
| <!--Name-->Elitedesk 705 G4 35w, HP Prodesk 405 G4 35W USFF - baseboard 83e9 35W - AMD Athlon PRO 200GE (2c 4t), 2200GE (4c t) or 2400GE (4c t) on AMD B350 FCH
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Maybe|Nvme 2280 and older models 2.5in sata}}
| <!--Gfx-->Vega 3, 8 or 11 with 2 dp1.2 ports
| <!--Audio-->{{no|HDAudio with Conexant CX20632 codec}}
| <!--USB-->USB3
| <!--Ethernet-->rtl8169 Realtek 8169 8111EPH 1Gbe or Realtek RTL8111F
| <!--Test Distro-->
| <!--Comments-->2017 64bit - realtek wifi 8821 or 8822 - up to 1 ddr4 dimm slots - hp barrel external ac -
|-
| <!--Name-->Elitedesk 705 G5, HP Elitedesk 806 G6, Prodesk 405 G6 || <!--IDE-->{{N/A}} || <!--SATA-->2x NVMe or 1x SATA + 1x NVMe, but not all three drives at the same time without serious modding of hd caddie || <!--Gfx-->Vega with DP1.4 port || <!--Audio-->{{no|HDAudio with Realtek ALC3205 codec}} || <!--USB-->USB3 || <!--Ethernet-->{{maybe|Realtek}} || <!--Test Distro--> || <!--Comments-->2018 64bit - 2 ddr4 sodimm slots - 3400GE Ryzen 5 PRO 3350GE (4c 8t), Ryzen 3 PRO 3200GE 3150GE (4c 4t), AMD Athlon Silver PRO 3125GE (2c 4t) on AMD PRO 565
|-
| <!--Name-->HP t540 1ddr4 slot, t640 2 DDR4 SDRAM sodimm SO-DIMM 260-pin non-ECC max 32gb thin client USFF
| <!--IDE-->{{N/A}}
| <!--SATA-->1 NVM Express (NVMe) 2230 or 2280
| <!--Gfx-->Vega 3 VGA, DisplayPort
| <!--Audio-->HD Audio with codec
| <!--USB-->2 USB3 gen1
| <!--Ethernet-->rtl8169 Realtek Realtek RTL8111HSH or RTL8111E PH-CG
| <!--Test Distro-->
| <!--Comments-->2019 64bit ryzen r1000 series Ryzen Embedded R1305G 1.5 GHz, R1505G dual (2c 4t) 2.0Ghz or R1606G ?.?Ghz (2c4t) - Realtek RTL8852AE wifi - 45W psu Coax male 4.5mm/3.0mm + centre pin -
|-
| <!--Name-->HP t740 SFF Thin Client
| <!--IDE-->{{N/A}}
| <!--SATA-->2 M.2, one is sata and other nvme
| <!--Gfx-->Vega 8 DisplayPort or + optional pci-e 30W Radeon E9173
| <!--Audio-->HD Audio with codec
| <!--USB-->USB3
| <!--Ethernet-->Realtek RTL8111E PH-CG 1Gbe
| <!--Test Distro-->
| <!--Comments-->2019 64bit - Ryzen Embedded V1756B 3.25Ghz quad - 90W 19.5V 4.62A psu Coax male 4.5mm/3.0mm + centre pin - sodimm DDR4 max 64Gb - slightly noisy fan -
|-
| <!--Name-->HP EliteDesk 805 G6 Mini 4750GE (8t 16t), Prodesk 405 G6 Ryzen 5 PRO 4650GE (6c 12t) or Ryzen 3 PRO 4350GE (4c 8t) on AMD PRO 565
| <!--IDE-->{{N/A}}
| <!--SATA-->2.5in carrier and 2 slots m.2 nvme
| <!--Gfx-->Vega 8 with DP1.4 and HDMI flex io2 output options
| <!--Audio-->HDAudio with Realtek ALC3205 codec
| <!--USB-->4 usb a - gen 2 10gig and gen 1 5gig ports
| <!--Ethernet-->{{N/A}}
| <!--Test Distro-->
| <!--Comments-->2021 64bit AMD Ryzen 4000 SBC unlocked - 2 sodimm ddr4 slots - wifi6 - 90W ac -
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|-
|}
====Lenovo====
{| class="wikitable sortable" width="100%"
! width="15%" |Name
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Integrated Gfx
! width="10%" |Audio
! width="10%" |USB
! width="10%" |Ethernet
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->Lenovo Nettop IdeaCentre Q150 (40812HU)
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->ION2
| <!--Audio--> realtek codec
| <!--USB-->USB2
| <!--Ethernet-->intel 10/100
| <!--Test Distro-->
| <!--Comments-->2011 64bit D510
|-
| <!--Name-->M625q Tiny (1L)
| <!--IDE-->{{N/A}}
| <!--SATA-->M.2 Sata
| <!--Gfx-->Stoney Radeon R2, R3 or R4 and later R5 with 2 dp ports
| <!--Audio-->HD audio with ALC233-VB2-CG codec 0x10EC 0x0233
| <!--USB-->{{No|3 usb3.1 Gen 1 and 3 usb2}}
| <!--Ethernet-->rtl8169 RTL8111
| <!--Test Distro-->
| <!--Comments-->2016 64bit all dual cores - e2-9000e or a4-9120e later A9-9420e - heatsink covers 70% area covers wifi - 65w or 135w lenovo rectangle ac - 1 ddr4 2666MHz slot max 8gb - tpm 2.0 -
|-
| <!--Name-->M715q Gen 1 AMD A6 A8 A10-9700E 9770E (2c2t)
| <!--IDE-->{{N/A}}
| <!--SATA-->m.2
| <!--Gfx-->R4
| <!--Audio-->HDAudio
| <!--USB-->USB3
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->2016 64bit -
|-
| <!--Name-->M715q Gen 2 Ryzen 5 PRO 2400GE 4C 8T
| <!--IDE-->{{N/A}}
| <!--SATA-->m.2
| <!--Gfx-->Vega 11
| <!--Audio-->HD Audio with codec
| <!--USB-->USB3
| <!--Ethernet-->1GbE
| <!--Test Distro-->
| <!--Comments-->2018 64bit - f1 enter setup, esc device boot - fixed 1.8v ch341a needed to reflash 1.8v bios if no boot SOP8 DIP8 Winbond W25Q64, MXIC MX25U1635, MX25U6435 -
|-
| <!--Name-->ThinkCenter M75n nano Ryzen3 3300U
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->ThinkCentre M75q M75q-1 Tiny 1ltr TMM
*AMD Ryzen 5 PRO Quad 3500 Pro 3400GE (4c 8t) 11a5 soe400
*AMD 3200GE (2c 4t) zen1+ 11a4
| <!--IDE-->{{N/A|}}
| <!--SATA-->{{Maybe|NVMe 2280 1Tb max - untested 2.5inch}}
| <!--Gfx-->Vega 11
| <!--Audio-->HD Audio Realtek ALC222-CG codec ALC3287
| <!--USB-->3 USB3 Gen 1
| <!--Ethernet-->rtl8169 Realtek 8169 8111
| <!--Test Distro-->
| <!--Comments-->2019 64bit - 65w 20v 3.25A to 135W rectangle psu - 2 sodimm ddr4 sodimm max 32GB locked 2666MHz -
|-
| <!--Name-->ThinkCentre Ryzen 7 PRO Tiny 1ltr Gen 2 AMD 4000 series
*AMD 4650GE (6c12t) 4750GE (8c16t) 4350G (4c8t) Zen2 -
| <!--IDE-->{{N/A|}}
| <!--SATA-->{{Maybe|NVme}}
| <!--Gfx-->Vega 8
| <!--Audio-->HD Audio codec
| <!--USB-->
| <!--Ethernet-->Realtek 8169 8111
| <!--Test Distro-->
| <!--Comments-->2021 64bit vendor locked - 20v psu - 2 sodimm -
|-
| <!--Name-->Thinkcenter M75q-2 Gen2 refresh
| <!--IDE-->{{N/A}}
| <!--SATA-->m.2 nvme
| <!--Gfx-->Radeon Vega
| <!--Audio-->HDAudio
| <!--USB-->USB3
| <!--Ethernet-->1GigE
| <!--Test Distro-->
| <!--Comments-->2022 64bit 5650GE (6c12t) 5750GE (8c16t) - vendor/PSB can lock your AMD CPU - f12 boot devices
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->Thinkcentre M75q Tiny Gen5
| <!--IDE-->{{N/A| }}
| <!--SATA-->2 NVMe
| <!--Gfx-->Radeon 780M dp1.4a or hdmi
| <!--Audio-->HDAudio with codec
| <!--USB-->USB3 usb-c
| <!--Ethernet-->1GBe port
| <!--Test Distro-->
| <!--Comments-->2024 Ryzen PRO 7 8700GE - 90W yellow rectangle connector psu - 2 DDR5 sodimm slots max 128Gb -
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|}
====Misc====
{| class="wikitable sortable" width="100%"
! width="15%" |Name
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Integrated Gfx
! width="10%" |Audio
! width="10%" |USB
! width="10%" |Ethernet
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->Impart impact Media Group IQ Box mini Digital Signage with MB896 mini itx
| <!--IDE-->{{Yes| }}
| <!--SATA-->{{N/A}}
| <!--Gfx-->GMA 915 gme
| <!--Audio--> via audio
| <!--USB-->{{yes| }}
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->2007 32bit - 1 ddr2 slot - pentium m 1.73GHz -
|-
| <!--Name-->[https://everymac.com/systems/apple/mac_mini/specs/mac_mini_cd_1.83-specs.html Apple A1176 Intel MacMini1,1]
| <!--IDE-->{{N/A}}
| <!--SATA-->{{unk|gpt/efi }}
| <!--Gfx-->{{Yes|gma950 2d and 3d}}
| <!--Audio-->{{No|HDAudio with ICH7 [https://answers.launchpad.net/ubuntu/+source/alsa-driver/+question/186749 Sigmatel Stac 9221] [https://android.googlesource.com/kernel/msm/+/android-wear-5.1.1_r0.6/sound/pci/hda/patch_sigmatel.c codec][https://alsa-devel.alsa-project.narkive.com/Yt20W6cE/sigmatel-stac9221-mux-amp-out-0x02-microphone-not-working mic]}}
| <!--USB-->{{Yes|USB2}}
| <!--Ethernet-->{{No|Marvell}}
| <!--Test Distro-->
| <!--Comments-->2006 32bit possible 1.83 GHz Intel “Core Duo” (T2400) - swap pci-e wifi for atheros 5k AR5007EG - maybe hack with a 2,1 firmware - max 4GB Ram ddr2 sodimms - external apple psu - dvd boot only with c key -
|-
| <!--Name-->[https://everymac.com/systems/apple/mac_mini/specs/mac-mini-core-2-duo-1.83-specs.html Apple A1176 Intel Mac Mini2,1]
| <!--IDE-->{{N/A}}
| <!--SATA-->{{unk|gpt/efi }}
| <!--Gfx-->{{Yes|gma950 2d and 3d}}
| <!--Audio-->{{No|HDAudio with ICH7 Sigmatel Stac 9221 codec}}
| <!--USB-->{{Yes|USB2}}
| <!--Ethernet-->{{No|Marvell}}
| <!--Test Distro-->Aros One 2.0/ Icaros
| <!--Comments-->2007 64bit - swap pci-e wifi for atheros 5k AR5007EG - hacked with a 2,1 firmware and replaced the cpu for T7600 2.33 Ghz C2D and max 4GB Ram ddr2 sodimms - external apple psu - dvd boot only via c key
|-
| <!--Name-->Apple iMac 5,1 "Core 2 Duo" 1.83GHz 17" T5600 MA710LL || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->GMA 950 with 64Mb || <!--Audio-->HDAudio idt codec || <!--USB-->3 USB2 || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->2006 64bit - 2 ddr2 667MHz sodimm slots - 17.0" TFT widescreen 1440x900 - polycarbonate
|-
| <!--Name-->Apple iMac 6,1 "Core 2 Duo" 2.16 2.33 24" only T7400 T7600 aka MA456LL/A A1200 (EMC 2111) || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->Nvidia 7300GT with 128 MB of GDDR3 SDRAM PCI Express or GeForce 7600GT with 256Mb mini dvi, vga || <!--Audio-->HDAudio || <!--USB-->3 USB2 || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->2006 64bit - 2 ddr2 667MHz sodimm slots - 24.0" TFT widescreen 1920 x 1200 - polycarbonate plastic case iMacs of this generation are the most difficult iMacs to service due to their front bezel design
|-
| <!--Name-->Neoware CA2
| <!--IDE-->flash DOM
| <!--SATA-->{{N/A}}
| <!--Gfx-->S3 Inc ProSavage PM133 (rev 02) vga
| <!--Audio-->VIA VT82C686 AC97 Audio
| <!--USB-->USB
| <!--Ethernet-->rtl8139
| <!--Test Distro-->
| <!--Comments-->2003 32bit - VIA Ezra 800MHz - 2 PC100 sodimm slots - riser board carries an ISA slot and a PCI slot - external 12V power supply.with 4 pins -
|-
| <!--Name-->Neoware CA5 Capio One
| <!--IDE-->44pin Disk On Module DOM
| <!--SATA-->{{N/A}}
| <!--Gfx-->SiS550 vga
| <!--Audio-->AC97 with SiS7019 codec
| <!--USB-->USB1.1
| <!--Ethernet-->rtl8139
| <!--Test Distro-->
| <!--Comments-->2004 32bit - internal power supply with mains lead has a "clover leaf" style - 2 144-pin PC100 or PC133 SODIMM might have 24MB of RAM soldered -
|-
| <!--Name-->Neoware CA10
*E140 model BL-XX-XX (800MHz CPU) later
*E100 model BK-XX-XX (1GHz CPU)
| <!--IDE-->
| <!--SATA-->{{N/A}}
| <!--Gfx-->VIA VT8623 (Apollo CLE266) vga
| <!--Audio-->AC97 with
| <!--USB-->4 USB2
| <!--Ethernet-->VIA VT6102/VT6103 [Rhine-II] (rev 74)
| <!--Test Distro-->
| <!--Comments-->2004/5 32bit - 12v 5.5mm/2.1mm - 2 184-pin DDR DIMM -
|-
| <!--Name-->VXL Itona thin client
*TC3200,
*TC3x41 (P3VB-VXL) TC3541 TC3641 TC3841,
*TC3xx1 (6VLE-VXL0) TC3931,
*TC43xx (Gigabyte C7V7VX) TC4321
| <!--IDE-->
| <!--SATA-->{{N/A}}
| <!--Gfx-->VIA vga
| <!--Audio-->AC'97 Audio with VIA VT
| <!--USB-->VIA USB
| <!--Ethernet-->Realtek 8100B
| <!--Test Distro-->
| <!--Comments-->2005 2006 32bit VIA Samuel 2, VIA C3 Nehamiah CPU, 1 DIMM slot, internal psu,
|-
| <!--Name-->Neoware Capio C50, model CA15 Thin Clients]
*Login Administrator Password Administrator
*Login User Password User
| <!--IDE-->1 flash Disk On Module
| <!--SATA-->{{N/A}}
| <!--Gfx-->VIA VT8623 (Apollo CLE266) vga
| <!--Audio-->AC97 with via codec
| <!--USB-->USB
| <!--Ethernet-->VIA
| <!--Test Distro-->
| <!--Comments-->2006 32bit VIA Eden (Samuel II core) CPU - 1 ddr sodimm slot max 512mb - slot - internal psu clover leaf -
|-
| <!--Name-->[http://etoy.spritesmind.net/neowareca21.html Neoware CA21 Thin Clients] Igel 3210 (and maybe the Clientron G270)
*Login Administrator Password Administrator
*Login User Password User
| <!--IDE-->1 flash Disk On Module DOM
| <!--SATA-->{{N/A}}
| <!--Gfx-->VIA CN700 vga
| <!--Audio-->AC97 with via codec
| <!--USB-->USB2
| <!--Ethernet-->VIA
| <!--Test Distro-->
| <!--Comments-->2007 32bit VIA C3 Nehemiah instead of Ezra-T - made 2 version of the CA 21, one with an Award bios and one with a Phoenix bios - 1 ddr2 sodimm slot max 1gb - VT6656 wireless - slot - internal psu iec -
|-
| <!--Name-->Neoware CA22 (e140), part number DD-L2-GE with BCOM WinNET P680 (V4) as the Igel 4210LX (Igel 5/4)
| <!--IDE-->1 VIA VT82C586A/B VT82C686/A/B VT823x/A/C PIPC Bus Master IDE (rev 06)
| <!--SATA-->{{N/A}}
| <!--Gfx-->VIA CN700 P4M800 Pro CE VN800 Graphics [S3 UniChrome Pro] (rev 01) vga
| <!--Audio-->AC97 with codec
| <!--USB-->USB2 VIA VT8237R Plus
| <!--Ethernet-->VIA VT6102/VT6103 [Rhine-II] (rev 78)
| <!--Test Distro-->
| <!--Comments-->2007 32bit - VIA Esther to later C7 1GHz - 1 ddr2 sodimm slots max 512mb - +12V DC/4.16A/50W 5.5mm/2.1mm coaxial -
|-
| <!--Name-->10Zig RBT402, Clientron U700,
| <!--IDE-->{{Yes|44 pin header very little room}}
| <!--SATA-->{{N/A|}}
| <!--Gfx-->{{Partial|VESA dvi}}
| <!--Audio-->{{unk|AC97 with codec}}
| <!--USB-->{{unk|VIA }}
| <!--Ethernet-->{{unk|}}
| <!--Test Distro-->
| <!--Comments-->2008 32bit - very small cases with very limited expansion - 1 sodimm 2GB max - 12v 3a psu - Password Fireport
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->Dell Optiplex FX170 D05U thin client, 10Zig 56xx range 5602, 5616v, 5617v, 5672v, Clientron U800, Devon IT TC5,
| <!--IDE-->{{Yes|44 pin header very little room}}
| <!--SATA-->{{N/A|}}
| <!--Gfx-->{{partial|GMA 950 dvi}}
| <!--Audio-->{{Yes|HD Audio with codec}}
| <!--USB-->{{Yes| }}
| <!--Ethernet-->{{No|Broadcom}}
| <!--Test Distro-->Icaros 2.3
| <!--Comments-->2009 32bit - very small cases with very limited expansion - 1 ddr2 sodimm 2GB max - 12v 3a psu - Password Fireport - ps2 keyboard socket -
|-
| <!--Name-->10Zig RBT-616V or Chip PC Technologies EX-PC (model number XPD4741)
| <!--IDE-->{{unk|44 pin header very little room}}
| <!--SATA-->{{N/A|}}
| <!--Gfx-->{{Yes|GMA 950}}
| <!--Audio-->{{unk|HD Audio with codec}}
| <!--USB-->{{unk| }}
| <!--Ethernet-->{{unk|rtl8169}}
| <!--Test Distro-->
| <!--Comments-->2010 32bit N270 on NM10 with ICH7 - very small cases with very limited expansion - 1 sodimm 2GB max - 12v 4a psu - Password Fireport
|-
| <!--Name-->Gigabyte Brix GS-A21S-RH (rev. 1.0) SFF
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->{{maybe|X3100}}
| <!--Audio-->{{No|HD Audio with ALC883-GR codec}}
| <!--USB-->Intel USB
| <!--Ethernet-->{{no|Intel 82566DC}}
| <!--Test Distro-->ICAROS 2.3
| <!--Comments-->2009 64bit Intel GME965 chipset with Intel ICH8M - 2 DDR2 Dimm slots - GA-6KIEH2-RH Rev.1.x mini ITX Case 213mm(D) x 64mm(W) x 234mm(H) - custom psu -
|-
| <!--Name-->VXL Itona MD+24 MD27 MD54 MD64 MD76 thin client
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->VIA Chrome 9
| <!--Audio-->HD Audio with VIA VT
| <!--USB-->VIA
| <!--Ethernet-->VIA
| <!--Test Distro-->
| <!--Comments-->2009 32bit VIA X2 U4200 - 12v-19v barrel psu -
|-
| <!--Name-->Acer Revo 100 RL100 AMD Athlon II X2 K325 || <!--IDE--> || <!--SATA--> || <!--Gfx-->NVIDIA® ION™ 9300m || <!--Audio-->HDAudio with ALC662 codec || <!--USB-->USB2 1 front 2 back || <!--Ethernet-->NVIDIA nForce 10/100/1000 || <!--Test Distro--> || <!--Comments-->2010 64bit but no AVX - 4Gb DDR3 sodimm - 500 GB - 19v 3.42a 65W - dvd but later BD drive -
|-
| <!--Name-->Asrock ION 330 330Pro HT-BD, Foxconn NT-330i, Zotac ION F (IONITX mini itx),
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->{{Maybe|ION geforce 9400}}
| <!--Audio-->{{Maybe| }}
| <!--USB-->{{Maybe|Nvidia USB}}
| <!--Ethernet-->{{No|Nvidia }}
| <!--Test Distro-->
| <!--Comments-->2010 32bit slow atom cpu - 2.5L 8" by 8" plastic case - 2 ddr2 sodimm max 4G - external 19v 65W 3.42A Plug 5.5mm X 2.5mm - little whiny fan -
|-
| <!--Name-->Zotac ZBOXHD-ND01
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->ION1
| <!--Audio-->HDaudio
| <!--USB-->USB2
| <!--Ethernet-->NVidia
| <!--Test Distro-->
| <!--Comments-->2009 32bit
|-
| <!--Name-->Zotac ZBOX HD-ID11
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->ION2
| <!--Audio-->HDaudio with ALC888 codec
| <!--USB-->USB2
| <!--Ethernet-->rtl8169 rtl8111D
| <!--Test Distro-->
| <!--Comments-->2010
|-
| <!--Name-->ZOTAC ZBOX Blu-ray 3D ID36 Plus
| <!--IDE-->{{N/A}}
| <!--SATA-->sata
| <!--Gfx-->ION2
| <!--Audio-->HDaudio
| <!--USB-->2 USB3
| <!--Ethernet-->GbE
| <!--Opinion-->2011 64bit -
|-
| <!--Name-->Shuttle XS35GT || <!--IDE--> || <!--SATA--> || <!--Gfx-->ION || <!--Audio-->HD audio IDT92HD81 || <!--USB--> || <!--Ethernet-->{{No|JMC261}} || <!--Test Distro--> || <!--Comments-->2011 64bit - Atom™ D510 NM10 - DDR2
|-
| <!--Name-->Shuttle XS35GT V2 || <!--IDE--> || <!--SATA--> || <!--Gfx-->ION2 || <!--Audio-->HD audio IDT92HD81 || <!--USB-->Intel || <!--Ethernet-->{{No|JMC251}} || <!--Test Distro--> || <!--Comments-->2011 64bit Atom™ D525 NM10 chipset - DDR3
|-
| <!--Name-->Sapphire Edge-HD || <!--IDE--> || <!--SATA--> || <!--Gfx-->ION2 GT218 with vga and hdmi || <!--Audio-->HDAudio realtek codec || <!--USB--> || <!--Ethernet-->{{Unk|Realtek}} || <!--Test Distro--> || <!--Comments-->2011 64bit - Atom™ D510 NM10 - DDR2 65 W AC, DC 19V~3.42A, 19.3L x 14.8w x 2.2H cm (1l), weight 530g,
|-
| <!--Name-->Sapphire Edge-HD2 || <!--IDE-->{{N/A}} || <!--SATA-->{{yes|IDE mode}} || <!--Gfx-->{{Yes|nouveau ION2 GT218 with vga and hdmi 2d and 3d}} || <!--Audio-->{{Yes|HDAudio}} || <!--USB-->{{Yes|Intel USB2}} || <!--Ethernet-->{{Yes|}} || <!--Test Distro--> || <!--Comments-->2011 64bit Atom™ D525 NM10 chipset - DDR3
|-
| <!--Name-->AOPEN Digital Engine DE67-HA(I)
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Maybe| }}
| <!--Gfx-->{{Maybe| Vesa 2d for Intel HD}}
| <!--Audio-->{{maybe|HDAudio for ALC662 codec}}
| <!--USB-->{{maybe|usb3}}
| <!--Ethernet-->{{no|Intel WG82579LM}}
| <!--Test Distro-->
| <!--Comments-->2011
|-
| <!--Name-->[https://www.jetwaycomputer.com/JBC600C99352W.html Jetway JBC600C99352W]
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->ION2
| <!--Audio-->{{No|C-Media CM108AH}}
| <!--USB-->USB2
| <!--Ethernet-->Realtek 8111DL
| <!--Test Distro-->
| <!--Comments-->2011 64bit D525 - DDR3 - 12v psu
|-
| <!--Name-->Foxconn nT-A3550 A3500 AMD A45 Chipset DDR3 Nettop Barebones - White
| <!--IDE-->{{N/A}}
| <!--SATA-->1 slot
| <!--Gfx-->AMD Radeon HD6310
| <!--Audio-->
| <!--USB-->4 USB2 back and 2 USB3 front
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->2012 64bit does not support AVX or SSE 4.1 AMD Dual-core E350 1.6GHz CPU - 1 ddr3 sodimm -
|-
| <!--Name-->Asus EeeBox PC EB1021 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Radeon HD6320M || <!--Audio-->HDAudio with ALC codec || <!--USB-->USB2 || <!--Ethernet-->Realtek GbE1 || <!--Test Distro--> || <!--Comments-->2012 64bit - AMD® Brazos E-350 SFF or E-450 with A50M - 2 ddr3l so-dimm - 40W ac -
|-
| <!--Name-->Xi3 Piston PC Athlon64 X2 3400e (X5A), AMD R-464L quad (X7A) Z3RO NUC
| <!--IDE-->{{N/A}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->AMD mobility HD3650 to radeon HD 7660G
| <!--Audio--> codec
| <!--USB-->4 USB2 3 USB3
| <!--Ethernet-->{{no|Atheros AR8161}}
| <!--Test Distro-->
| <!--Comments-->2012 - 2 sodimm 8GB max - 19v 3.3a round - Titan105 bios update -
|-
| <!--Name-->Sapphire Edge-HD3 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->Radeon HD6320M with vga and hdmi || <!--Audio-->HDAudio with Realtek ALC662 codec || <!--USB-->USB2 || <!--Ethernet-->Realtek GbE1 || <!--Test Distro--> || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 AMD® Brazos E-450 with A45M - ddr3l so-dimm - 65W ac - Wireless is Realtek 8191SU WiFi (802.11n) or AzureWave (802.11bgn) -
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->Samsung Syncmaster Thin Client Display TC-W Series 24" LF24 TOWHBFM/EN TC220W LED LF22TOW HBDN/EN || <!--IDE-->{{N/A}} || <!--SATA-->8gb SSD || <!--Gfx-->{{Maybe| VESA mode only Radeon HD 6290}} || <!--Audio--> || <!--USB-->2 USB 2.0 || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 thin Client C-50 C50 AMD® 1000 MHz and no wireless
|-
| <!--Name-->Advantech TPC-2140 thin client
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->{{Maybe|VESA }}
| <!--Audio-->
| <!--USB-->USB2
| <!--Ethernet-->{{Yes|Realtek}}
| <!--Test Distro-->
| <!--Comments-->2012 64bit does not support AVX or SSE 4.1 atom-like G-T56E 1.65Ghz up to SSE3, BGA413 soldered -
|-
| <!--Name-->CompuLab FIT-PC3 fitPC3 USFF PC AMD G-T56N || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->RADEON HD 6320 || <!--Audio-->{{yes|HDAudio ALC888 codec}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{yes|rtl8169 8111}} || <!--Test Distro--> || <!--Comments-->2012 64 bit does not support AVX or SSE 4.1 - 12v 3a - 2x sodimm DDR3 max 4GB - wifi rtl8188ce
|-
| <!--Name-->10Zig 6872 thin client
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->{{Maybe|VESA }}
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->{{Yes|Realtek}}
| <!--Test Distro-->
| <!--Comments-->2012 64bit does not support AVX or SSE 4.1 atom-like G-T56N up to SSE3 BGA413 (FT1) soldered - DDR3l single channel -
|-
| <!--Name-->10ZiG Technology 9972 1.6 GHz Linux 1.47 kg Black RX-216GD thin client
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->AMD Radeon 5E 3840 x 2160 @ 30Hz to 2560 x 1600 @ 60Hz 2 x Display Port
| <!--Audio-->
| <!--USB-->6 x USB2.0 2 x USB3.0
| <!--Ethernet-->{{Maybe|Realtek}}
| <!--Test Distro-->
| <!--Comments-->2016 64bit does support AVX or SSE 4.1 AMD RX-216TD - 1 ddr3 sodimm - 12V 4A Coax 5.5mm/2.1mm
|-
| <!--Name-->10ZiG 7800q thin client
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->AMD Radeon 5E 3840 x 2160 @ 30Hz to 2560 x 1600 @ 60Hz 2 x Display Port
| <!--Audio-->
| <!--USB-->6 x USB2.0 2 x USB3.0
| <!--Ethernet-->{{Maybe|Realtek}}
| <!--Test Distro-->
| <!--Comments-->2016 64bit does support AVX or SSE 4.1 AMD GX-424CC (Quad Core) 2.4GHz BGA769 (FT3b) - 1 ddr3 sodimm - 12V 4A Coax 5.5mm/2.1mm
|-
| <!--Name-->
*Itona VXL MZE12 AMD a4-5000 thin client
*VXL Itona LQ27 LQ+27 LQ44 LQ+44 LQ49 LQ+49 LQ50 LQ+50 LQ64 LQ+64 thin client
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->Ati 8330 vga hdmi dp
| <!--Audio-->
| <!--USB-->4 usb2 2 usb3
| <!--Ethernet-->Realtek
| <!--Test Distro-->
| <!--Comments-->2014 64bit quad BGA769 (FT3) soldered - 2 stacked sodimm ddr3 middle of mobo - 2 m.2 sata slots - 1 sata short cable half size space - limited 1ltr 8in case no fan - 19v hp style psu connector -
|-
| <!--Name-->Dell Wyse 5212 21.5" AIO Thin Client W11B
| <!--IDE-->{{N/A}}
| <!--SATA-->Sata
| <!--Gfx-->R3 out from DP or vga
| <!--Audio-->HDAudio
| <!--USB-->USB2
| <!--Ethernet-->Realtek
| <!--Test Distro-->
| <!--Comments-->2015 64bit slow atom like dual core AMD G-T48E 1.4 GHz - dell type round ac needed 90W 19.5V 4.62A - 21 inch 1080p screen -
|-
| <!--Name-->LG 24CK560N-3A 24' All-in-One Thin Client Monitor, 27CN650N-6N 27CN650W-AC 27', 34CN650W-AC 34',
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->2018 64bit AMD Prairie Falcon GX-212JJ
|-
| <!--Name-->CompuLab fit-PC4 fitPC4 4x 2Ghz AMD || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet-->{{no|Intel}} || <!--Test Distro--> || <!--Comments-->2018 64 - 2x DDR4 sodimm -
|-
| <!--Name-->IGEL Hedgehog M340C UD3 thin client
*2016 V1.0 AMD GX-412HC 1.2GHz-1.6GHz Radeon R3E, normal bios DEL for Bios or F12 boot selector
*2018 AMD GX-424CC 2.4GHz, Radeon R5E, UEFI hit DEL and choose boot or SCU icon
| <!--IDE-->{{N/A|}}
| <!--SATA-->SATA half slim version '''limited space''' with msata 8+18pins slot on earlier 2016 models
| <!--Gfx-->{{Maybe|VESA for Radeon R3E later R5E sea islands vulkan 1.2 with dvi dp output}}
| <!--Audio-->{{Yes|HD Audio with codec ?? (412) and Realtek ALC662-VD0-GR (424), both case speaker}}
| <!--USB-->amd usb3 boot usb2 with bios "disable usb" entry
| <!--Ethernet-->{{Yes|Realtek 8169 8111 (412) and (424)}}
| <!--Test Distro-->Aros One x86 USB 1.5, 1.8 and 2.2 but ArosOne 64bit 1.2 boot loop in usb2 port
| <!--Comments-->2016 64bit - 20cm/8" high case - 1 DDR3L sodimm slot max 8Gb 1600MHz - external '''12V 3A''' supply with 5.5mm/2.1mm coaxial - IDE like interface under base stand is for legacy addon ports RS232 parallel etc - capacitive touch power on - case opening 3 stages, remove stand and narrow black plastic strip from the back, top cover slides off to the back and lifts off -
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->10ZiG 6148v 6048qv (6100 series)
| <!--IDE-->{{N/A}}
| <!--SATA-->{{maybe| }}
| <!--Gfx-->
| <!--Audio-->{{maybe| }}
| <!--USB-->{{No| }}
| <!--Ethernet-->{{maybe| }}
| <!--Test Distro-->
| <!--Comments-->2018 64bit AMD Ryzen V1202B
|-
| <!--Name-->10ZiG 7111q
| <!--IDE-->{{N/A}}
| <!--SATA-->{{maybe| }}
| <!--Gfx-->
| <!--Audio-->{{maybe| }}
| <!--USB-->{{maybe| }}
| <!--Ethernet-->{{maybe| }}
| <!--Test Distro-->
| <!--Comments-->2019 64bit AMD Ryzen R2514 2.1 GHz -
|-
| <!--Name-->Shuttle DA320
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->R3 R5
| <!--Audio-->HD Audio with ALC662 codec
| <!--USB-->{{maybe| }}
| <!--Ethernet-->dual realtek 1GbE 8111H
| <!--Test Distro-->
| <!--Opinion-->2017 64bit AMD 2200G 2400G - Robust metal 1.3-liter case - A320 chipset DDR4 - 19V 6.32A DC PSU -
|-
| <!--Name-->IGEL UD7 H850C around december 2019 '''AMD Secure Processor''' is a built-in dedicated security system that checks if the BIOS has a valid signature and thus secures the next step in the boot process. This ensures that only devices with a signed BIOS will boot
| <!--IDE-->{{N/A}}
| <!--SATA-->None but 8gb emmc
| <!--Gfx-->Vega 3
| <!--Audio-->HD Audio with Realtek ALC897 or ALC888S codec
| <!--USB-->USB 3.2 and 2.0
| <!--Ethernet-->1GbE
| <!--Test Distro-->
| <!--Comments-->2018 64bit - AMD Ryzen™ Dual-Core 10W TDP - 2 DDR4 sodimms slots max 16Gb - 12V 4A psu - 2x DisplayPort 1.2 no dvi or hdmi - Intel® 9260 or SparkLAN WNFT-238AX wifi - 1x rear serial Prolific PL2303 chipset - locked down components and very limited expansion options
|-
| <!--Name-->IGEL UD7 H860C - '''AMD Secure Processor''' is a built-in dedicated security system that checks if the BIOS has a valid signature and thus secures the next step in the boot process. This ensures that only devices with a signed BIOS will boot
| <!--IDE-->{{N/A}}
| <!--SATA-->None but 8gb emmc
| <!--Gfx-->Vega 3
| <!--Audio-->HD Audio with Realtek ALC897 or ALC888S codec
| <!--USB-->USB 3.2 and 2.0
| <!--Ethernet-->1GbE
| <!--Test Distro-->
| <!--Comments-->2018 64bit - AMD Ryzen™ Dual-Core 10W TDP - 2 DDR4 sodimms slots max 16Gb - 12V 4A psu - 2x DisplayPort 1.2 no dvi or hdmi - Intel® 9260 or SparkLAN WNFT-238AX wifi - 1x rear serial Prolific PL2303 chipset - locked down components and very limited expansion options
|-
| <!--Name-->IGEL UD3 M350C (UEFI issues)
| <!--IDE-->{{N/A}}
| <!--SATA-->None but 8gb emmc
| <!--Gfx-->Vega 3
| <!--Audio-->HD Audio with Realtek ALC897 or ALC888S codec
| <!--USB-->USB 3.2 and 2.0
| <!--Ethernet-->1GbE
| <!--Test Distro-->
| <!--Comments-->2018 64bit - AMD Ryzen™ R R1505G Dual-Core 10W TDP - 2 DDR4 sodimms slots max 16Gb - 12V 4A psu - 2x DisplayPort 1.2 no dvi or hdmi - Intel® 9260 or SparkLAN WNFT-238AX wifi - 1x rear serial Prolific PL2303 chipset - locked down components and very limited expansion options
|-
| <!--Name-->IGEL UD7 H860C AMD Ryzen V1605B Thin Client - '''AMD Secure Processor''' is a built-in dedicated security system that checks if the BIOS has a valid signature and thus secures the next step in the boot process. This ensures that only devices with a signed BIOS will boot
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->HDAudio
| <!--USB-->{{maybe| }}
| <!--Ethernet-->1GbE
| <!--Test Distro-->
| <!--Comments-->2020 AMD Ryzen™ Embedded V1605B 2 – 3.6 GHz (Quad-Core) - 12v 5A psu - up to 16GB RAM DDR4 - locked down components and very limited expansion options
|-
| <!--Name-->Gigabyte Brix Barebone Mini PC BSRE-1605
| <!--IDE-->{{N/A}}
| <!--SATA-->2 M.2
| <!--Gfx-->Vega 8
| <!--Audio-->HD Audio ALC269 codec
| <!--USB-->USB3
| <!--Ethernet-->2 GbE
| <!--Test Distro-->
| <!--Comments-->2020 64bit AMD Ryzen V1605B - 2 DDR4 sodimm slots
|-
| <!--Name-->MINISFORUM Deskmini UM250 Mini PC
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->{{maybe| }}
| <!--Ethernet-->{{maybe| }}
| <!--Test Distro-->
| <!--Comments-->2020 64bit AMD Ryzen V1605B -
|-
| <!--Name-->T-Bao MN25 Mini PC 2500U
| <!--IDE-->{{N/A| }}
| <!--SATA-->{{Unk|Intel NVMe}}
| <!--Gfx-->{{No|VESA Radeon Vega 8}}
| <!--Audio-->{{Unk| }}
| <!--USB-->{{maybe|USB 3}}
| <!--Ethernet-->{{Yes|Realtek PCIe 1GbE}}
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->Atari VCS || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{maybe|Vesa 2D for AMD Vega 3}} || <!--Audio-->{{unk|HDAudio with ALC codec}} || <!--USB-->{{maybe|USB3 USB 3.2 Gen 2 front and 3 usb2 rear }} || <!--Ethernet-->rtl8169 Realtek RTL8111H || <!--Test Distro--> || <!--Comments-->2021 64bit Ryzen Embedded R1606G - 2 ddr4 sodimm slots - TPM 2.0 -
|-
| <!--Name-->Minis Forum M200 Silver Athlon M300 3300U
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->Vega 8
| <!--Audio-->
| <!--USB-->{{maybe|USB 3.1 gen 1 and 2}}
| <!--Ethernet-->{{No|Realtek PCIe 2.5G}}
| <!--Test Distro-->
| <!--Comments-->2021 64bit
|-
| <!--Name-->Minis Forum DeskMini UM300 3300U, UM350 DMAF5 3550H, UM370 and UM700 with 3750H
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->Vega 8
| <!--Audio-->
| <!--USB-->{{maybe|USB 3.1 gen 1 and 2}}
| <!--Ethernet-->{{No|Realtek PCIe 2.5G}}
| <!--Test Distro-->
| <!--Comments-->2021 64bit
|-
| <!--Name-->MinisForum X300 with AMD 3400G
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->Vega 8
| <!--Audio-->
| <!--USB-->{{maybe|USB 3.1 gen 1 and 2}}
| <!--Ethernet-->{{No|Realtek PCIe 2.5G}}
| <!--Test Distro-->
| <!--Comments-->2021 64bit
|-
| <!--Name-->Beelink SER3 GTR4
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->AMD Vega 3 or 10
| <!--Audio-->HD Audio with codec
| <!--USB-->{{maybe|USB3}}
| <!--Ethernet-->Realtek RJ45 1GbE
| <!--Test Distro-->
| <!--Comments-->2020 64bit 3200u or 3750h
|-
| <!--Name-->AsRock DeskMini X300
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->2020 Ryzen 7 Pro 4750G 5600G
|-
| <!--Name-->MinisForum Besstar Tech X400 with AMD 4650G
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->AMD
| <!--Audio-->
| <!--USB-->{{maybe|USB 3.1 gen 1 and 2}}
| <!--Ethernet-->{{No|Realtek PCIe 2.5G}}
| <!--Test Distro-->
| <!--Comments-->2021 64bit - MP1584 - kill NB679 NB679GD-Z=ALTM=AL** QFN-12 IC-REG-DL buck/linear synchronous chip IC with bad usb cables -
|-
| <!--Name-->Beelink SER4 GTR5
| <!--IDE-->{{N/A}}
| <!--SATA-->cant boot from installed SSDs unless its an M.2
| <!--Gfx-->AMD Vega
| <!--Audio-->
| <!--USB-->{{maybe|USB3}}
| <!--Ethernet-->1 or 2 Realtek
| <!--Test Distro-->
| <!--Comments-->2021 64bit 4700U or 5900HX
|-
| <!--Name-->MSI PRO DP20Z 5M Mini PC - AMD Ryzen 5 5300G
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->{{No|Realtek 2.5G LAN RTL8125}}
| <!--Test Distro-->
| <!--Comments-->2018-2021 R3 3200G Vega 8 - R5 3400G Vega 11 - Ryzen 5 5600G Vega 7 - Athlon 3000G
|-
| <!--Name-->Minisforum UM450
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->Vega
| <!--Audio-->HDaudio
| <!--USB-->USB3
| <!--Ethernet-->{{No|Realtek 2.5G LAN RTL8125}}
| <!--Test Distro-->
| <!--Comments-->2022 64bit - Ryzen 4500U -
|-
| <!--Name-->Gigabyte Brix
GB-BRR7-4800 (rev. 1.0)
GB-BRR7-4700 (rev. 1.0)
GB-BRR5-4500 (rev. 1.0)
GB-BRR3-4300 (rev. 1.0)
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->{{maybe|}}
| <!--Ethernet-->Realtek 2.5G LAN RTL8125
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->ASUS PN50 mini PC AMD Ryzen 7 4700U
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Vega
| <!--Audio-->HD audio with codec
| <!--USB-->{{maybe|3.1 gen1}}
| <!--Ethernet-->{{No|realtek 2.5GbE}}
| <!--Test Distro-->
| <!--Comments-->2022 64bit -
|-
| <!--Name-->ASUS PN51-S1 mini PC AMD Ryzen 7 5700U
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->Vega thru dp or hdmi
| <!--Audio-->HD audio with codec
| <!--USB-->{{maybe|3.1 gen1}}
| <!--Ethernet-->{{No|realtek 2.5GbE}}
| <!--Test Distro-->
| <!--Comments-->2022 64bit - 19v or 19.5v 90w psu round barrel - 32gb ddr4 sodimm -
|-
| <!--Name-->Minis Forum Bessstar Tech EliteMini B550
| <!--IDE-->{{N/A}}
| <!--SATA-->1 x 2.5in and 2 nvme
| <!--Gfx-->Vega 8
| <!--Audio-->
| <!--USB-->{{maybe|4 usb3.1}}
| <!--Ethernet-->{{No|realtek 8125 2.5GbE}}
| <!--Test Distro-->
| <!--Comments-->2022 64bit AMD 4700G 5700G desktop cpu - 19v 120w round barrel -
|-
| <!--Name-->ASRock A300 and later X300 Mini itx with Desktop AM4 socket
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->Vega
| <!--Audio-->HDAudio
| <!--USB-->USB3
| <!--Ethernet-->1GbE
| <!--Test Distro-->
| <!--Comments-->2022 64bit - choose your own AMD APU GE 35w based - DDR4 -
|-
| <!--Name-->ASRock 4x4 BOX-5800U Zen 3-based AMD Ryzen 7 5800U 15W -
| <!--IDE-->{{N/A}}
| <!--SATA-->m.2 slot gen 3 and sata
| <!--Gfx-->vega
| <!--Audio-->HD audio with codec
| <!--USB-->{{maybe|}}
| <!--Ethernet-->{{Maybe|1 GbE and 1 2.5GbE}}
| <!--Test Distro-->
| <!--Comments-->2022 64bit - WiFi 6E -
|-
| <!--Name-->Topton S500+ Gaming Mini PC - Morefine S500+ 5900HX Mini PC - Minisforum UM590 Ryzen AMD Zen3 Ryzen 9 5900HX 7 5800H 45W -
| <!--IDE-->{{N/A}}
| <!--SATA-->2 nvme 1 sata
| <!--Gfx-->Vega 8 thru HDMI 2.0, DP 1.4, and USB type-C
| <!--Audio-->
| <!--USB-->{{maybe|usb3.1}}
| <!--Ethernet-->{{Maybe|1 realtek rtl 8111h and 1 8125 2.5GbE bg-cg}}
| <!--Test Distro-->
| <!--Comments-->2022 64bit - 2 sodimm ddr4 3200MHz -
|-
| <!--Name-->Chuwi RzBox later Ubox
| <!--IDE-->{{N/A}}
| <!--SATA-->2 nvme
| <!--Gfx-->Vega 8 later to 660m vga, dp, hdmi
| <!--Audio-->HDaudio
| <!--USB-->{{maybe|usb-c usb2}}
| <!--Ethernet-->dual gigabit
| <!--Test Distro-->
| <!--Comments-->2022 2025 64bit amd 5800h 4800h 6600H - 90w psu -
|-
| <!--Name-->Beelink Mini PC SER5, Trigkey AZW S5, Asus PN52, ZHI BEN MX-JB560,
| <!--IDE-->{{N/A}}
| <!--SATA-->PCIe3 M.2 2280 nvme
| <!--Gfx-->AMD Vega 6 with 1 or 2 hdmi
| <!--Audio-->HDAudio
| <!--USB-->{{maybe|USB3.0}}
| <!--Ethernet-->{{Maybe|Realtek 1GbE}}
| <!--Test Distro-->
| <!--Comments-->2022 64bit 5500U 5560u 5600U to PRO 5600H 5800H - 19v 3.42W 65W psu -
|-
| <!--Name-->NIPOGI Kamrui ACEMAGICIAN AM06PRO Dual LAN Mini PC AMD Ryzen 7 5800U, 5 5500U or 5600U/5625U
| <!--IDE-->{{N/A}}
| <!--SATA-->M.2 and 2.5in sata
| <!--Gfx-->Vega 7
| <!--Audio-->HDAudio
| <!--USB-->USB3
| <!--Ethernet-->2 GbE ports
| <!--Test Distro-->
| <!--Comments-->2022 64bit - plastic build - 90w usb-c power - loud at 25W setting -
|-
| <!--Name-->Topton FU02 Fanless Mini PC AMD Ryzen 7 4700U 5600U 5800U 8 Core 16 Threads
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe and 2.5in sata
| <!--Gfx-->Vega
| <!--Audio-->HDAudio
| <!--USB-->4 3.0 with 2 2.0
| <!--Ethernet-->2 x 1G
| <!--Test Distro-->
| <!--Comments-->2022 64 - 2 ddr4 sodimm slots - fanless with copper cube from cpu to metal sheet which gets warm
|-
| <!--Name-->Xuu XR1 Lite (5300u 4c 8t) PRO 5400U MAX 5600U
| <!--IDE-->{{N/A}}
| <!--SATA-->1 NVMe 2242 slot
| <!--Gfx-->Vega 6
| <!--Audio-->HDAudio
| <!--USB-->2 3.0
| <!--Ethernet-->1G
| <!--Test Distro-->
| <!--Comments-->2022 64 quiet fan - very small case no expansions -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->MINISFORUM UM690 Venus Series
| <!--IDE-->{{N/A}}
| <!--SATA-->pcie4 nvme 2280 and 1 sata3 2.5in
| <!--Gfx-->680m RNDA2 12CU with 2 hdmi
| <!--Audio-->HD Audio with codec
| <!--USB-->{{maybe|1 USB4 and 2 USB3.2}}
| <!--Ethernet-->{{No|2.5G LAN}}
| <!--Test Distro-->
| <!--Comments-->2022 64bit 6900hx 8C16T - 2 ddr5 sodimmm - 19v ???W -
|-
| <!--Name-->Beelink Mini PC GTR6
| <!--IDE-->{{N/A}}
| <!--SATA-->PCIe4
| <!--Gfx-->AMD 680M RDNA2
| <!--Audio-->
| <!--USB-->USB3.2
| <!--Ethernet-->{{No|Realtek 2.5GbE or intel i225}}
| <!--Test Distro-->
| <!--Comments-->2022 64bit Ryzen 9 6900HX Zen3+ and a 2gb Radeon 680m 12CU ddr5 sodimm - 19v 120w psu -
|-
| <!--Name-->Asus PN53, Geekom AS 6,
| <!--IDE-->{{N/A}}
| <!--SATA-->pcie gen4 nvme and ata 2.5in
| <!--Gfx-->680m RNDA2 12CU with 2 hdmi and 1 dp
| <!--Audio-->HD Audio with codec
| <!--USB-->{{maybe|2 usb-c, 2 USB2.1 and 3 USB3.2}}
| <!--Ethernet-->{{No|1G LAN}}
| <!--Test Distro-->
| <!--Comments-->2022 64bit 6900hx 8C 16T - 2 slots ddr5 sodimmm (64Gb max) - 19v 120W - 4 retained base screws beware ribbon cable -
|-
| <!--Name-->Micro Computer (HK) Tech Ltd MinisForum UM773 Lite later UM750L slim, GMKtec K2 Mini PC
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe PCIe4.0
| <!--Gfx-->RDNA
| <!--Audio-->HD Audio
| <!--USB-->USB4
| <!--Ethernet-->2.5GbE
| <!--Test Distro-->
| <!--Comments-->2023 2025 64bit - AMD Zen 3+ (8c 16t) Ryzen 7 7735HS, 7840HS and AMD Ryzen 9 7845HX AMD Ryzen™5 7545U (6c12t) - 19v up to 120w ac adapter - ddr5 sodimm 4800Mhz -
|-
| <!--Name-->[https://www.asrockind.com/en-gb/4x4 ASrock 4x4 SBC]
| <!--IDE-->{{N/A}}
| <!--SATA-->sata or nvme
| <!--Gfx-->Vega or 680M
| <!--Audio-->HDAudio
| <!--USB-->USB3 or USB4
| <!--Ethernet-->Realtek 1GbE or intel 2.5GbE
| <!--Test Distro-->
| <!--Comments-->2022 64bit -
|-
| <!--Name-->Beelink Mini PC GTR7 SER7
| <!--IDE-->{{N/A}}
| <!--SATA-->PCIe4 nvme 2280 up to 2Tb
| <!--Gfx-->AMD 780M RDNA3 GPU output on hdmi and dp
| <!--Audio-->HDAudio
| <!--USB-->USB3.2
| <!--Ethernet-->{{No|1 or 2 2.5GbE}}
| <!--Test Distro-->
| <!--Comments-->2023 64bit AMD Phoenix APUs Zen 4 CPU Ryzen 7 7840HS or 9 7940HS (8c 16t) - 19v 5.26A 120w psu - del dios setup f7 choose boot - 2 usb-c on back - up to 64gb via 2 ddr5 sodimm slots -
|-
| <!--Name-->MINISFORUM BD770i Ryzen 7 7745HX (8c16t) or BD795i SE 790i 9 7945HX (16c32t) or F1FXM_MB_V1.1 795M LGA1700 mATX
| <!--IDE-->{{N/A}}
| <!--SATA-->2 NVMe
| <!--Gfx-->Radeon 610m over usb-c, dp or hdmi
| <!--Audio-->HDAudio with codec
| <!--USB-->USB3 with 2 rear USB2
| <!--Ethernet-->Realtek 2.5G
| <!--Test Distro-->
| <!--Opinion-->2024 mini-ITX M/B is the first MoDT (Mobile on Desktop) with soldered AMD CPU - 2 dual PCIe4.0 M.2 slots - 2 ddr5 sodimm slots max 5200Mhz - 8pin cpu power - battery not easily replaceable underneath -
|-
| <!--Name-->Minisforum ms-a1 MS-a2
* 5700G to 8700G apu
* 9955HX
| <!--IDE-->{{N/A}}
| <!--SATA-->2 nvme
| <!--Gfx-->AMD 610M
| <!--Audio-->HDAudio
| <!--USB-->USB3
| <!--Ethernet-->dual 2.5GbE
| <!--Test Distro-->
| <!--Comments-->2024 64bit - 19v ?A round barrel jack - 2 ddr5 so-dimm slots -
|-
| <!--Name-->AOOSTAR GT68
| <!--IDE-->{{N/A}}
| <!--SATA-->Nvme
| <!--Gfx-->680m
| <!--Audio-->HDaudio
| <!--USB-->USB3
| <!--Ethernet-->2 2.5Gb
| <!--Test Distro-->
| <!--Comments-->2025 Ryzen7 Pro 6850H,
|-
| <!--Name-->NextSBC 7840HS
| <!--IDE-->{{N/A}}
| <!--SATA-->Nvme
| <!--Gfx-->AMD 780M 12CU
| <!--Audio-->HDAudio with codec
| <!--USB-->USB4 and USB 3.2
| <!--Ethernet-->2 GbE
| <!--Test Distro-->
| <!--Comments-->2025 64bit - 32Gb soldered -
|-
| <!--Name-->Firebat A6 R7 6800H
| <!--IDE-->{{N/A}}
| <!--SATA-->nvme
| <!--Gfx-->AMD 680M
| <!--Audio-->HDaudio
| <!--USB-->USB3
| <!--Ethernet-->rtl8169
| <!--Test Distro-->
| <!--Comments-->2025 64bit -
|-
| <!--Name-->Minisforum UM760 7640HS
| <!--IDE-->{{N/A}}
| <!--SATA-->nvme
| <!--Gfx-->AMD 760
| <!--Audio-->HDaudio
| <!--USB-->USB4
| <!--Ethernet-->rtl8169 and 2.5Gb
| <!--Test Distro-->
| <!--Comments-->2025 64bit -
|-
| <!--Name-->Peladn WO4 Mini PC
| <!--IDE-->{{N/A}}
| <!--SATA-->nvme
| <!--Gfx-->AMD 760
| <!--Audio-->HDaudio
| <!--USB-->USB3
| <!--Ethernet-->rtl8169
| <!--Test Distro-->
| <!--Comments-->2025 64bit 7640HS - 19v 5.26A 120W -
|-
| <!--Name-->BossGame M4 Neo 7840HS
| <!--IDE-->{{N/A}}
| <!--SATA-->nvme
| <!--Gfx-->AMD 780
| <!--Audio-->HDaudio
| <!--USB-->USB3
| <!--Ethernet-->rtl8169
| <!--Test Distro-->
| <!--Comments-->2025 64bit -
|-
| <!--Name-->Minisforum UM870 || <!--IDE-->{{N/A}} || <!--SATA-->NVme || <!--Gfx-->AMD 780M || <!--Audio-->HDaudio || <!--USB-->USB3 || <!--Ethernet-->2.5GbE || <!--Test Distro--> || <!--Comments-->2025 64bit -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->GEEKOM A8 Max AI Mini PC AMD Ryzen™ 9 8945HS, Ryzen™ 7 8845HS or 8745HS
| <!--IDE-->{{N/A}}
| <!--SATA-->NVme
| <!--Gfx-->AMD 780M
| <!--Audio-->HDAudio with codec
| <!--USB-->{{maybe| USB4}}
| <!--Ethernet-->{{No|Dual 2.5 G Ethernet ports}}
| <!--Test Distro-->
| <!--Comments-->2025 64bit -
|-
| <!--Name-->Beelink SER 9
| <!--IDE-->{{N/A}}
| <!--SATA-->NVme
| <!--Gfx-->Radeon 890M
| <!--Audio-->HDaudio
| <!--USB-->USB4
| <!--Ethernet-->{{No| }}
| <!--Test Distro-->
| <!--Comments-->2025 64bit - Ryzen AI HX 370 strix point -
|-
| <!--Name-->GMKtec EVO-X2 mini pc
| <!--IDE-->{{n/a}}
| <!--SATA-->nvme
| <!--Gfx-->AMD 8060S iGPU RDNA3.5 RADV GFX1151
| <!--Audio-->HDaudio
| <!--USB-->USB4
| <!--Ethernet-->{{No| }}
| <!--Test Distro-->
| <!--Comments-->2025 64bit - amd ryzen AI Max+ 395 (16c32t) strix halo -
|-
| <!--Name-->BosGame M5
| <!--IDE-->{{n/a}}
| <!--SATA-->nvme
| <!--Gfx-->AMD 8060S iGPU RDNA3.5 RADV GFX1151
| <!--Audio-->HDaudio
| <!--USB-->USB4
| <!--Ethernet-->{{No| }}
| <!--Test Distro-->
| <!--Comments-->2025 64bit - amd ryzen AI Max+ 395 (16c32t) -
|-
| <!--Name-->Steam Machine GabeCube
| <!--IDE-->{{N/A}}
| <!--SATA-->nvme
| <!--Gfx-->semi-custom 1080p amd 7600m like with 28cu 8gb ddr6 gddr 10GFlops
| <!--Audio-->hdaudio with codec
| <!--USB-->usb3
| <!--Ethernet-->{{maybe|rtl8169}}
| <!--Test Distro-->
| <!--Comments-->2026 64bit amd 1772 hawk point2 6c12t zen4 avx512 FP7 socket with FCH51 - 16gb ddr5 -
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|}
===Server Systems===
[[#top|...to the top]]
====IBM====
{| class="wikitable sortable" width="100%"
! width="15%" |Name
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Integrated Gfx
! width="10%" |Audio
! width="10%" |USB
! width="10%" |Ethernet
! width="15%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->xSeries 206m
| <!--IDE-->{{yes}}
| <!--SATA-->{{yes}}
| <!--Gfx-->{{Maybe|ATI RN50b (VESA only)}}
| <!--Audio-->{{n/a}}
| <!--USB-->{{yes|USB 2.0 (UHCI/EHCI)}}
| <!--Ethernet-->{{no|Broadcom}}
| <!--Test Distro-->Nightly Build 2014-09-27
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
|}
===Motherboard===
[[#top|...to the top]]
* Late 2002, USB2.0 added and slightly better AROS sound support (AC97) appeared
* 2002-2005 and still, to a limited extent, ongoing [http://en.wikipedia.org/wiki/Capacitor_plague bad capacitors]
* Late 2003, ATX PSUs moved from 5V to 12v rails (extra 4pin on motherboard for CPU)
* Late 2005, PCI Express replaced AGP and HDAudio replaced AC97
* Late 2007, ATX PSUs added extra 12V PCI-E connectors and 4+4pin for CPUs
* Late 2010, USB3.0 appears on motherboards or needing a PCI-E motherboard slot
* Late 2014 Hardware USB2 removed from USB3 chipsets
====AMD Sockets====
[[#top|...to the top]]
=====Socket 7 (1997/1999)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->1997 VT82C586B (QFP-208) is the first from VIA with DDMA
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2000 VT82C686 has close to excellent DDMA support
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->SiS 5581/5582
SiS 5591/5595
SiS 530 /5595
SiS 600/5595
SiS 620/5595
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|}
=====Socket A 462 (2001/4)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->[http://www.sharkyextreme.com/hardware/motherboards/article.php/2217921/ABIT-NF7-S-nForce2-Motherboard-Review.htm Abit NF7-S]
| <!--Chipset-->nForce 2
| <!--ACPI-->
| <!--IDE-->2 ports
| <!--SATA-->SIL 3112A
| <!--Gfx-->
| <!--Audio-->{{yes|ALC650 AC97 (Nvidia APU)}}
| <!--USB-->{{yes}}
| <!--Ethernet-->Realtek RTL 8201LB
| <!--Opinion-->Firewire Realtek RTL8801B
|-
| <!--Name-->ASRock K7NF2
| <!--Chipset-->nforce2 ultra 400
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->{{yes|AGP 8x}}
| <!--Audio-->CMedia CMI 9761A AC'97
| <!--USB-->{{yes}}
| <!--Ethernet-->Realtek 8201
| <!--Opinion-->
|-
| <!--Name-->ASRock K7S8X
| <!--Chipset-->SIS 746FX
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->
| <!--Gfx-->{{yes|AGP 8x}}
| <!--Audio-->{{yes|AC'97 cmedia}}
| <!--USB-->{{maybe|USB2.0 works but does not boot}}
| <!--Ethernet-->{{yes|SiS900}}
| <!--Opinion-->
|-
| <!--Name-->ASRock K7S41GX
| <!--Chipset-->SIS 741GX + DDR 333
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->
| <!--Gfx-->{{maybe|onboard sis does not work with vga or vesa but AGP 8x works}}
| <!--Audio-->{{yes|AC97 SIS 7012}}
| <!--USB-->{{maybe|USB2.0 works but does not boot}}
| <!--Ethernet-->{{yes|SiS 900}}
| <!--Opinion-->works ok
|-
| <!--Name-->[http://www.asus.com ASUS A7N8X]
| <!--Chipset-->nForce2
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->Silicon Image Sil 3112A
| <!--Gfx-->1 AGP slot
| <!--Audio-->{{yes|ac97 ALC650}}
| <!--USB-->{{yes|ehci USB2.0}}
| <!--Ethernet-->{{yes|rtl8201BL - nforce}}
| <!--Opinion-->first total support for AROS in 2004/5 - damocles and M Schulz
|-
| <!--Name-->Biostar M7NCD
| <!--Chipset-->nForce2 Ultra 400
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->{{yes|ALC650 AC97}}
| <!--USB-->
| <!--Ethernet-->{{yes|RTL8201BL}}
| <!--Opinion-->
|-
| <!--Name-->Chaintech 7NJS Ultra Zenith
| <!--Chipset-->nForce2 Ultra 400
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->Promise PDC 20376
| <!--Gfx-->
| <!--Audio-->{{yes|CMI8738}}
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->DFI Lanparty NF2 Ultra
| <!--Chipset-->nForce2 Ultra 400
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->{{no|via ac97 VT1616}}
| <!--USB-->
| <!--Ethernet-->RTL8139C
| <!--Opinion-->
|-
| <!--Name-->ECS N2U400-A
| <!--Chipset-->nForce2 Ultra 400
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->{{no|Cmedia 9379A AC97}}
| <!--USB-->{{yes|usb2.0}}
| <!--Ethernet-->{{no|VIA VT6103L}}
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA7N400L
| <!--Chipset-->nForce2 Ultra 400
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->1 AGP 8x slot
| <!--Audio-->{{yes|AC97 ALC650}}
| <!--USB-->2 USB2.0
| <!--Ethernet-->RTL8100C
| <!--Opinion-->
|-
| <!--Name-->[http://www.gigabyte.lv/products/page/mb/ga-8siml Gigabyte 8SIML]
| <!--Chipset-->SIS 650
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->
| <!--Gfx-->{{maybe|VESA}}
| <!--Audio-->{{yes|AC'97}}
| <!--USB-->{{maybe|working}}
| <!--Ethernet-->{{no|Realtek RTL8100L LAN}}
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Matsonic [http://www.elhvb.com/mobokive/archive/matsonic/manual/index.html Manuals] MS83708E
| <!--Chipset-->SIS730
| <!--ACPI-->
| <!--IDE-->{{yes|SiS 5513}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->{{maybe|sis 305 no support use VESA}}
| <!--Audio-->{{no|sis7018}}
| <!--USB-->{{no|SiS 7001 USB 1.1 only}}
| <!--Ethernet-->{{yes|SIS900}}
| <!--Opinion-->little support
|-
| <!--Name-->[http://h10025.www1.hp.com/ewfrf/wc/document?docname=bph07585&lc=en&dlc=en&cc=us&dest_page=softwareCategory&os=228&tool=softwareCategory&query=Pavilion%20742n&product=89232 MSI MS-6367 HP 722n 742n (Mambo) (2001/2)]
| <!--Chipset-->Nvidia nforce 220D (2001/2)
| <!--ACPI-->
| <!--IDE-->{{Yes}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->GeForce2 AGP works 2D nouveau only
| <!--Audio-->{{Maybe|AC97 ADI 1885 no volume control on Units 0-3}}
| <!--USB-->{{Yes|4 USB1.1 ports AMD based - front 2 ports iffy}}
| <!--Ethernet-->{{No|nForce}}
| <!--Opinion-->Tested 20th Aug 2012 NB
|-
| <!--Name-->MSI K7N2 [http://us.msi.com/index.php?func=proddesc&maincat_no=1&prod_no=546/ Delta ILSR] Delta-L
| <!--Chipset-->nForce2 (2002/3)
| <!--ACPI-->
| <!--IDE-->{{yes|Primary & Secondary ports}} IDE Tertiary port (RAID)
| <!--SATA-->2 ports (RAID)
| <!--Gfx-->{{yes|when fitted with an agp video card}}
| <!--Audio-->{{yes|ac97 ALC650}}
| <!--USB-->{{yes}}
| <!--Ethernet-->{{yes|rtl8201BL - nforce}}
| <!--Opinion-->runs AROS well. Tested with Icaros 1.2.3
|-
| <!--Name-->MSI K7N2 Delta2-LSR Platinum
| <!--Chipset-->nForce2 (2002/3)
| <!--ACPI-->
| <!--IDE-->{{yes|Primary & Secondary ports}} IDE Tertiary port (RAID)
| <!--SATA-->2 ports (RAID)
| <!--Gfx-->{{yes|when fitted with an agp video card}}
| <!--Audio-->{{No|ac97 ALC655}}
| <!--USB-->{{yes}}
| <!--Ethernet-->{{yes|rtl8201BL - nforce}}
| <!--Opinion-->runs AROS well. Tested with Icaros 1.2.3
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->[http://www.sharkyextreme.com/hardware/motherboards/article.php/2204281/Soltek-SL-75MRN-L-nForce2-Motherboard-Review.htm Soltek 75FRN-L]
| <!--Chipset-->nForce2
| <!--ACPI-->
| <!--IDE-->{{yes|2 ports}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->AGP slot
| <!--Audio-->{{yes|ALC650}}
| <!--USB-->{{yes|2 usb2.0}}
| <!--Ethernet-->{{yes|Realtek RTL8201BL}}
| <!--Opinion-->good support
|-
| <!--Name-->[http://www.3dvelocity.com/reviews/mach4nf2ultra/mach4.htm XFX Pine Mach4 nForce2 Ultra 400]
| <!--Chipset-->nForce2
| <!--ACPI-->
| <!--IDE-->{{yes|3 ports}}
| <!--SATA-->{{maybe|2 ports VIA VT6240}}
| <!--Gfx-->1 AGP 8x slot
| <!--Audio-->{{yes|ALC650}}
| <!--USB-->{{yes|2 USB2.0}}
| <!--Ethernet-->{{yes|RTL8201BL}}
| <!--Opinion-->some support
|-
| <!--Name-->ASUS A7V266
| <!--Chipset-->via KT266A + 8233
| <!--ACPI-->
| <!--IDE-->{{no|issues}}
| <!--SATA-->
| <!--Gfx-->1 AGP slot
| <!--Audio-->AC97 with AD1980 codec
| <!--USB-->via 8233
| <!--Ethernet-->VIA VT6103
| <!--Opinion-->2002 issues with booting
|-
| <!--Name-->Asus A7V8X-X
| <!--Chipset-->VIA KT400
| <!--ACPI-->
| <!--IDE-->{{unk| }}
| <!--SATA-->{{N/A}}
| <!--Gfx-->{{yes|agp}}
| <!--Audio-->{{unk|AC97 with ADI AD1980 codec}}
| <!--USB-->{{unk|VIA 8235}}
| <!--Ethernet-->{{unk|Realtek 10/100}}
| <!--Opinion-->2003 not booting for Socket A for AMD Barton/Thoroughbred/Athlon XP/Athlon/Duron 2.25+ GHz CPU - 3 x DDR DIMM Sockets Max. 3 GB -
|-
|}
=====Socket 754 (2004/5)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->Abit NF8-V2
| <!--Chipset-->nForce3 250GB (2004/5)
| <!--ACPI-->
| <!--IDE-->{{yes|2 ports}}
| <!--SATA-->{{maybe|2 ports}}
| <!--Gfx-->1 AGP slot x8
| <!--Audio-->ALC658 ac97
| <!--USB-->{{yes|2 USB2.0}}
| <!--Ethernet-->{{no|RTL8201C}}
| <!--Opinion-->a little support but no Firewire VIA VT6306
|-
| <!--Name-->Biostar CK8 K8HNA Pro
| <!--Chipset-->nforce3 150
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->VT6420 thru ide legacy only
| <!--Gfx-->
| <!--Audio-->{{no|AC97 ALC655}}
| <!--USB-->
| <!--Ethernet-->Realtek RTL8110S
| <!--Opinion-->Firewire VT6307 no
|-
| <!--Name-->[http://www.extremeoverclocking.com/reviews/motherboards/Chaintech_ZNF3-150_3.html Chaintech ZNF3-150 Zenith]
| <!--Chipset-->nforce3 150
| <!--ACPI-->
| <!--IDE-->2 ports
| <!--SATA-->{{maybe|Sli3114 SATA via IDE emul}}
| <!--Gfx-->1 AGP slot
| <!--Audio-->{{no|VIA Envy24PT (VT1720) + VT1616}}
| <!--USB-->{{Maybe|2 USB2.0}}
| <!--Ethernet-->{{no|Broadcom GbE 5788}}
| <!--Opinion-->very little support needs PCI cards but no Firewire VIA VT6306
|-
| <!--Name-->DFI Lanparty UT nF3 250GB
| <!--Chipset-->nForce3 250gb
| <!--ACPI-->
| <!--IDE-->2 ports
| <!--SATA-->{{maybe|2 ports nForce3 and 2 Marvell SATA PHY}}
| <!--Gfx-->
| <!--Audio-->{{yes|AC97 ALC850}}
| <!--USB-->{{Maybe|2 USB2.0}}
| <!--Ethernet-->CK8S - Winfast NF3 250K8AA works and Marvell 88E1111 does not work
| <!--Opinion-->2005 some support but no Firewire VIA VT6307
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Gigabyte GA-K8N
| <!--Chipset-->NVIDIA nForce3 150
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->Realtek ALC658 AC97
| <!--USB-->
| <!--Ethernet-->Realtek RTL8100C
| <!--Opinion-->Firewire TI43AB23 no
|-
| <!--Name-->Gigabyte K8NNXP
| <!--Chipset-->nForce3 150
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->Sata sil3512
| <!--Gfx-->
| <!--Audio-->ALC658 AC97
| <!--USB-->
| <!--Ethernet-->RTl8110S
| <!--Opinion-->Firewire TI STB82AA2 no
|-
| <!--Name-->Gigabyte GA-K8NSNXP
| <!--Chipset-->nForce3 250GB
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->SiI 3512 CT128 Sata Sil3515
| <!--Gfx-->
| <!--Audio-->ALC850 AC97
| <!--USB-->
| <!--Ethernet-->{{No|Marvel 88E8001}}
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->MSI K8N Neo-FIS2R
| <!--Chipset-->nVIDIA NF3-250Gb
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->Realtek 7.1 AC'97 ALC850
| <!--USB-->
| <!--Ethernet-->{{No|Marvell 88E1111}}
| <!--Opinion-->
|-
| <!--Name-->[http://techreport.com/articles.x/5748/1 Shuttle AN50R]
| <!--Chipset-->nF3-150
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->Sil 3112
| <!--Gfx-->
| <!--Audio-->ALC650 AC97
| <!--USB-->
| <!--Ethernet-->Nvidia nF3 (10/100) Intel 82540EM Gigabit
| <!--Opinion-->Firewire VT6307 no
|-
| <!--Name--> Foxconn WinFast K8S755A
| <!--Chipset-->SiS755 + SiS964 (DDR333)
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio--> {{yes|AC97}}
| <!--USB-->
| <!--Ethernet--> {{yes|RTL8169}}
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket 939 (2005)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->Asus A8N-LA GeForce 6150 LE
| <!--Chipset-->Geforce 6150 (MCP51) + nForce 430 (PC-3200)
| <!--ACPI-->
| <!--IDE-->{{yes|two ATA 133}}
| <!--SATA-->{{maybe|four 3.0GB/s SATAII ports}}
| <!--Gfx-->built in or PCI-E x16
| <!--Audio-->Realtek ALC883 HD Audio
| <!--USB-->6 USB2.0
| <!--Ethernet-->Realtek RTL 8201CL
| <!--Opinion-->
|-
| <!--Name-->Asus A8N-SLI Premium
| <!--Chipset-->NVidia
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->{{Yes|PCIe slot}}
| <!--Audio-->{{Yes|AC97}}
| <!--USB-->{{Maybe}}
| <!--Ethernet-->{{Yes|nForce LAN but not Marvell}}
| <!--Opinion-->Works well
|-
| <!--Name-->DFI nF4 Ultra-D LanParty - Diamond Flower International sold to BenQ group 2010
| <!--Chipset-->nF4
| <!--ACPI-->
| <!--IDE-->2 ports
| <!--SATA-->4 ports SATA 2
| <!--Gfx-->2 PCIe x16 slots
| <!--Audio-->AC97 with ALC850 codec
| <!--USB-->
| <!--Ethernet-->Dual Gigabit Ethernet, PCIe by Vitesse VSC8201 PHY nee Cicada 8201, PCI by Marvel 88E8001
| <!--Opinion-->2006 64bit - Four 184-pin DDR Dual-Channel Slots - 1 pci on Ultra, 2 pci on sli,
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus A8V E SE
| <!--Chipset-->VIA K8T890 +VT8237R CHIPSET ATX AMD Motherboard with Athlon 64 X2 / Athlon 64 FX / Athlon 64
| <!--ACPI-->{{N/A}}
| <!--IDE-->{{Yes}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->{{N/A}}
| <!--Audio-->{{Maybe}} AC97 driver using Realtek ALC850 codec
| <!--USB-->{{Yes}} USB 2.0 only
| <!--Ethernet-->{{No}} Marvell 88E8053
| <!--Opinion-->Good base but needs additional PCI cards added for better support
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->ASUS A8V Deluxe (2004)
| <!--Chipset-->VIA K8T800 Pro (DDR400)
| <!--ACPI-->
| <!--IDE-->Promise 20378 2 ports
| <!--SATA-->2 SATA2
| <!--Gfx-->
| <!--Audio-->{{no|VIA VT8233A 8235 8237 AC97}}
| <!--USB-->
| <!--Ethernet-->{{no|Marvell 88E8001 Gigabit}}
| <!--Opinion-->needs extra PCI cards
|-
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->AsRock 939Dual-SATA2
| <!--Chipset-->Ali Uli M1695 PCIe with M1567 AGP
| <!--ACPI-->
| <!--IDE-->2 ports
| <!--SATA-->1 Sata with JMicron JMB360 chip
| <!--Gfx-->1 pci-e and 1 agp
| <!--Audio-->AC97 with ALC850 codec
| <!--USB-->
| <!--Ethernet-->Realtek RTL8201CL PHY ULi 10/100
| <!--Opinion-->64bit pci-e and agp combo on board - 4 ddr slots -
|}
=====Socket AM2 (2006/8) and AM2+ (2007-2010) =====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-M61PME-S2 (rev. 2.x)
| <!--Chipset-->NVIDIA® GeForce 6100 / nForce 430 chipset
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->{{maybe|VESA 2d for vga}}
| <!--Audio-->{{yes|HDAudio Realtek ALC662 Audio Codec}}
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus M2N61-AR mini itx
| <!--Chipset-->NVIDIA nForce 430
| <!--ACPI-->
| <!--IDE-->1
| <!--SATA-->2
| <!--Gfx-->GeForce 6150SE via vga or 1 pci-e slot
| <!--Audio-->HD Audio with codec
| <!--USB-->Nvidia
| <!--Ethernet-->Nvidia
| <!--Opinion-->2006 32bit - 1 pci - 2 ddr2 dimm slots non-eec -
|-
| <!--Name-->asus m2n68-am se2
| <!--Chipset-->nvidia 630a 630/a MCP68SE
| <!--ACPI-->
| <!--IDE-->1 ports
| <!--SATA-->2 ports MCP61 chipset is SATA over IDE, not SATA over AHCI and reports subsystem as 0x1 IDE, not 0x6 SATA
| <!--Gfx-->{{Yes|nvidia 7025 2d and 3d thru vga}}
| <!--Audio-->{{Yes|hd audio with realtek alc662 codec}}
| <!--USB-->{{Yes| }}
| <!--Ethernet-->{{Yes|nForce chipset RTL 8201CP}}
| <!--Opinion-->2007 64bit Phenom IIX2, Athlon 64 LE X2, Sempron, and Phenom FX processors - ddr2 667Mhz ram max 4Gb -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-MA770-UD3 (rev. 1.0)
| <!--Chipset-->AMD 770 with SB700
| <!--ACPI-->
| <!--IDE-->{{yes| }}
| <!--SATA-->{{yes| }}
| <!--Gfx-->pci-e
| <!--Audio-->{{yes|ALC888 codec }}
| <!--USB-->{{yes|USB2}}
| <!--Ethernet-->{{yes|rtl8169 8111C later 8111D}}
| <!--Opinion-->Good support for AM2+ / AM2 with 4 ddr2 ram - 4 x PCI Express x1, 2 x PCI slots - firewire T.I. TSB43AB23 chip no support -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus M3A32-MVP Deluxe
| <!--Chipset-->AMD 790FX RD790 + SB600
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->{{No|Marvell 88SE6121 SATA II}}
| <!--Gfx-->pci-e 1.1 support
| <!--Audio-->{{No|HD Audio ADI® AD1988}}
| <!--USB-->
| <!--Ethernet-->{{No|Marvell 88E8056}}
| <!--Opinion-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->ASROCK N68-S N68C-S
| <!--Chipset-->AMD based nForce 630a
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->{{yes|slimline DVD drive works}}
| <!--Gfx-->{{maybe|GF 7025 use vesa}}
| <!--Audio-->{{yes|HDAudio for VIA 1708S VT1705}}
| <!--USB-->{{Maybe|echi usb 2.0}}
| <!--Ethernet-->{{no|RTL8201EL / 8201CL - nforce}}
| <!--Opinion-->2008 unbuffered 1066Mhz ddr2 ram - N68C-S may need noacpi added to grub boot line to disable pci temporarily to run as it cannot get to [PCI] Everything OK -
|-
| <!--Name-->Asus M2N68-AM Plus
| <!--Chipset-->Athlon 64, Sempron, Athlon 64 X2, Athlon 64 FX with nvidia 630a
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->no vga, pci-e slot only
| <!--Audio-->{{yes|HD Audio with ALC662 codec}}
| <!--USB-->
| <!--Ethernet-->{{no|RTL8211CL Gigabit LAN}}
| <!--Opinion-->adding "noacpi noapic noioapic" to the GRUB options - Dual channel DDR2 1066, 800, 667 MHz -
|-
| <!--Name-->Gigabyte GA-M68M-S2 (1.0) S2P (2.3) S2L GA-M68SM-S2 (1.x)
| <!--Chipset-->nForce 630a chipset
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->NVIDIA® GeForce 7025, vga (s2 and s2p), dvi (s2l)
| <!--Audio-->ALC883 (S2), ALC888B (S2P), ALC662 (S2L),
| <!--USB-->
| <!--Ethernet-->RTL 8201CL (S2), 8211CL (S2P), 8211BL (S2L),
| <!--Opinion-->2008 64bit possible with AMD AM2+ CPU on AM2 motherboard, the system bus speed will downgrade from HT3.0(5200MHz) to HT1.0(2000 MT/s) spec
|-
| <!--Name-->ASUS M2N68-VM
| <!--Chipset-->nForce 630a (MCP68PVNT)
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Nvidia GeForce ® 7050PV hdmi, dvi and vga
| <!--Audio-->HD audio VIA 1708B codec
| <!--USB-->
| <!--Ethernet-->RTL 8211C
| <!--Opinion-->2008 64bit - ddr2 800Mhz
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket AM3 White socket (2010/11)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->Gigabyte GA-MA74GM-S2 GA-MA74GM-S2H
| <!--Chipset-->740g with sb710
| <!--ACPI-->
| <!--IDE-->{{yes| }}
| <!--SATA-->{{yes|bios IDE}}
| <!--Gfx-->Radeon 2100 and pci-e slot
| <!--Audio-->ALC888 (r1.x),ALC888b (r2.0), ALC888B (rev4.x)
| <!--USB-->USB2
| <!--Ethernet-->rtl8169 Realtek 8111C later 8111D
| <!--Opinion-->2010 64bit - 2 x 1.8V DDR2 DIMM sockets max 8 GB - Micro ATX Form Factor 24.4cm x 23.4cm -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->[http://www.vesalia.de/e_aresone2011.htm Aresone 2011]
| <!--Chipset-->760g
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Yes}}
| <!--Gfx-->{{Maybe|no Radeon HD3000 driver yet<br>vesa driver works<br>and add PCIe card}}
| <!--Audio-->{{Yes|HD Audio}}
| <!--USB-->{{Yes|USB2.0}}
| <!--Ethernet-->{{yes}}
| <!--Opinion-->Good support - 4 DDR3 memory sockets -
|-
| <!--Name-->Foxconn A76ML-K 3.0
| <!--Chipset-->AMD 760g rev3.0
| <!--ACPI-->
| <!--IDE-->{{Yes|1 }}
| <!--SATA-->{{Yes|4 in IDE mode }}
| <!--Gfx-->HD3000 with pci-e slot
| <!--Audio-->HDAudio with ALC662-GR codec
| <!--USB-->USB2
| <!--Ethernet-->rtl8169 rtl8111E
| <!--Opinion-->2011 64bit - 2 ddr3 slots - 2 pci slots -
|-
| <!--Name-->GA-MA770T-UD3P (rev. 1.0 to 1.4)
| <!--Chipset-->amd 770 with sb710
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->{{yes|4 sata}}
| <!--Gfx-->pci-e
| <!--Audio-->{{yes|HDAudio with Realtek ALC888 codec}}
| <!--USB-->{{yes| }}
| <!--Ethernet-->{{yes|rtl8168 rtl8111c/d}}
| <!--Opinion-->2011 64 - 4 ddr3 dimm slots -
|-
| <!--Name-->Gigabyte GA-MA770-UD3 (rev. 2.0 2.1)
| <!--Chipset-->AMD 770 with SB700
| <!--ACPI-->
| <!--IDE-->{{yes| }}
| <!--SATA-->{{yes| }}
| <!--Gfx-->pci-e
| <!--Audio-->{{yes|ALC888 codec }}
| <!--USB-->{{yes|USB2}}
| <!--Ethernet-->{{yes|rtl8169 8111C later 8111D}}
| <!--Opinion-->Good support for AM3 with 4 ddr2 ram - 4 x PCI Express x1, 2 x PCI slots - firewire T.I. TSB43AB23 chip no support -
|-
| <!--Name-->Asus M4A785TD-M PRO
| <!--Chipset-->785G and SB710
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Maybe|ide legacy}}
| <!--Gfx-->{{Maybe|ATI Radeon HD 4200 - use vesa}} or pci-e 2.0 slot
| <!--Audio-->{{Yes|HD Audio}}
| <!--USB-->{{Yes| }}
| <!--Ethernet-->{{Yes| }}
| <!--Opinion-->Good support with 1366 ddr3 ram -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->ASUS M4A88T-I Deluxe ITX
| <!--Chipset-->AMD 880G with AMD SB710
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->Three SATA 3Gbps
| <!--Gfx-->Radeon HD 4350 GPU with HDMI and DVI or One 16x PCI-Express 2.0
| <!--Audio-->HDAudio with Realtek ALC889
| <!--USB-->6 x USB 2, 2 x USB 3
| <!--Ethernet-->{{No|Realtek RTL8112L}}
| <!--Opinion-->2014 64bit - 2 SODIMM DDR3 slots max 8GB
|-
| <!--Name-->Asus M4A88T-M Version E5907 E5826
| <!--Chipset-->AMD 880G SB710
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Radeon 4250
| <!--Audio-->HD Audio with VIA VT 1708S codec
| <!--USB-->
| <!--Ethernet-->Realtek rtl8169 8111E
| <!--Opinion-->2010 64bit -
|-
| <!--Name-->GigaByte 890GPA-UD3H
| <!--Chipset-->AMD 890GX together with SB850
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->Yes
| <!--Gfx-->use pci-e nvidia
| <!--Audio-->Maybe - ALC892 rev. 1.0, ALC892 rev 2.1, ALC889 rev. 3.1
| <!--USB-->Yes
| <!--Ethernet-->Yes
| <!--Opinion-->works well overall
|-
| <!--Name-->Gigabyte GA-890FXA-UD7
| <!--Chipset-->AMD 890FX with SB850
| <!--ACPI-->
| <!--IDE-->{{yes| }}
| <!--SATA-->{{yes|IDE }}
| <!--Gfx-->
| <!--Audio-->ALC889 (rev 2.x)
| <!--USB-->{{Yes|AMD USB2 but limited with NEC D720200F1 USB3}}
| <!--Ethernet-->2 x Realtek 8111D
| <!--Opinion-->2012 64bit - XL-ATX Form Factor 32.5cm x 24.4cm - 4 ddr3 slots -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->MSI 890GXM-G65
| <!--Chipset-->890GX + SB750
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->{{Maybe|legacy}}
| <!--Gfx-->{{Maybe|ATI 4290 built-in (vesa)}}
| <!--Audio-->{{Maybe|ALC889 DD GR}} HD Audio crackles
| <!--USB-->{{Yes}}
| <!--Ethernet-->{{Yes|RTL 8169}}
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->ASRock N68-VS3 FX
| <!--Chipset-->NVIDIA® GeForce 7025 / nForce 630a
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4 Sata2
| <!--Gfx-->Integrated NVIDIA® GeForce 7025
| <!--Audio-->HD Audio with VIA® VT1705 Codec
| <!--USB-->USB2
| <!--Ethernet-->Realtek PHY RTL8201EL
| <!--Opinion-->2010 64bit - 2 x DDR3 DIMM slots -
|-
| <!--Name-->MSI GF615M-P35 MS-7597
| <!--Chipset-->NVIDIA® nForce 430
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->GeForce 6150SE
| <!--Audio-->{{Maybe|HD Audio with Realtek® ALC888S}}
| <!--USB-->{{No|freezes}}
| <!--Ethernet-->{{No|Realtek 8211CL}}
| <!--Opinion-->2010 64bit
|-
| <!--Name-->Gigabyte GA-M68MT-S2
| <!--Chipset--> nForce 630a
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->NVIDIA® GeForce 7025 vga
| <!--Audio-->ALC888B (1.3), ACL887 (3.1),
| <!--USB-->
| <!--Ethernet-->RTL8211CL (all)
| <!--Opinion-->2010 64bit possible, AMD AM3 CPU on this motherboard, the system bus speed will downgrade from HT3.0 (5200MT/s) to HT1.0 (2000 MT/s) spec
|-
| <!--Name-->Gigabyte GA-M68MT-S2P
| <!--Chipset--> nForce 630a
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->NVIDIA® GeForce 7025 vga
| <!--Audio-->ALC888B (1.x 2.x), ALC889 (3.0), ALC888B/889 (3.1),
| <!--USB-->
| <!--Ethernet-->RTL8211CL (all)
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus M4N78 PRO
| <!--Chipset-->NVIDIA GeForce 8300
| <!--ACPI-->
| <!--IDE-->1 xUltraDMA 133/100
| <!--SATA-->6 xSATA 3 Gbit/s ports
| <!--Gfx-->Integrated NVIDIA® GeForce® 8 series GPU with 1 PCIe 2.0 slot
| <!--Audio-->HD Audio with VIA1708S 8 -Channel codec
| <!--USB-->12 USB 2.0 ports (8 ports at mid-board, 4 ports at back panel)
| <!--Ethernet-->NVIDIA Gigabit
| <!--Opinion-->4 x DIMM, Max. 16 GB, DDR2 1200(O.C.)/1066*/800/667 ECC,Non-ECC,Un-buffered Memory - ATX Form Factor 12 inch x 9.6 inch ( 30.5 cm x 24.4 cm ) -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|}
=====Socket AM3+ Black socket (2012/15)=====
*095W FX-6300 FD6300WMHKBOX (bulldozer SSE4.1 AVX) 970 mobos with FX-8320E 8core Black Editions FD832EWMHKBOX FX-8370E (Vishera/Piledriver)
*125W FX-6310 (bulldozer) 970 mobos with FX-8320 FX-8350 FX-8370 (Vishera/Piledriver)
*220W 990FX mobos with FX-9000 FX-9370 FX-9590
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->ASUS M5A78L-M LX3
| <!--Chipset-->AMD 760G with SB710
| <!--ACPI-->
| <!--IDE-->{{yes| }}
| <!--SATA-->{{Yes|bios IDE mode}}
| <!--Gfx-->HD3000 with pci-e slot
| <!--Audio-->HDAudio with ALC887, V? ALC892 codecs
| <!--USB-->USB2
| <!--Ethernet-->{{No|Qualcomm Atheros 8161/8171 add realtek 8111? pci-e card}}
| <!--Opinion-->2012 64bit - uATX Form Factor 9.6 inch x 7.4 inch ( 24.4 cm x 18.8 cm ) - 2 x DIMM, Max. 16GB, DDR3 -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-78LMT-S2P
| <!--Chipset-->AMD 760G and SB710
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->{{yes|6 SATA2 ports}}
| <!--Gfx-->GT240 and a nv7900gs, both pci-e
| <!--Audio-->{{Maybe|ALC889 (r3.1), ALC??? (rev. 4.0), ALC887 (r5.x)}}
| <!--USB-->4 USB2
| <!--Ethernet-->{{Maybe|Realtek 8111E (r3.1), Atheros (rev4.0), Atheros (r5.x) }}
| <!--Opinion-->2012 offers very poor control over its EFI vs. BIOS booting partition features
|-
| <!--Name-->Gigabyte GA-78LMT-USB3 (r3.0), (r4.1 Blue board), (r5.0 dark board), (rev6 dark mobo)
| <!--Chipset-->AMD 760G and SB710
| <!--ACPI-->
| <!--IDE-->{{yes| }}
| <!--SATA-->{{yes|Bios IDE mode for SATA2 on early ones}}
| <!--Gfx-->AMD HD3000, pci-e GT240 and a nv7900gs
| <!--Audio-->{{Maybe|ALC??? (r3.0), ALC887 (r4.1), VIA VT2021 (r5.0), Realtek® ALC892 codec (rev6) }}
| <!--USB-->{{yes|AMD USB2 but not VIA® VL805 USB3}}
| <!--Ethernet-->Realtek GbE
| <!--Opinion-->2013 64bit - Micro ATX Form Factor 24.4cm x 24.4cm - 4 x DDR3 DIMM sockets -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->MSI 760GM
| <!--Chipset-->ATI 760G plus SB710
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->{{yes| }}
| <!--Gfx-->HD3000 Use Vesa
| <!--Audio-->{{Maybe|P33 VT1705; P34, P21 and P23 (FX) MS7641 v3.0 ALC887, E51 ALC892}}
| <!--USB-->{{yes| }}
| <!--Ethernet-->{{Yes|Realtek}}
| <!--Opinion-->P23 issues with audio ALC887 crackles thru earphones -
|-
| <!--Name-->Gigayte GA-MA770T-UD3P (rev. 3.1)
| <!--Chipset-->amd 770 with sb710
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sata
| <!--Gfx-->pci-e slot
| <!--Audio-->HDaudio with Realtek ALC888/892 codec
| <!--USB-->
| <!--Ethernet-->rtl8169 rtl8111d/e
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->ASRock 890FX Deluxe5 Extreme3
| <!--Chipset-->AMD 890FX + AMD SB850 or SB950 (Extreme3)
| <!--ACPI-->
| <!--IDE-->{{Yes}}
| <!--SATA-->{{Yes}}
| <!--Gfx-->{{N/A}}
| <!--Audio-->{{Maybe|ALC892}}
| <!--USB-->{{Yes}}
| <!--Ethernet-->{{Yes|RTL8111E rtl8169}}
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus M5A97 R2.0 EVO
| <!--Chipset-->AMD 970 and SB950
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->Asmedia SATA Controller
| <!--Gfx-->n/a
| <!--Audio-->HDAudio with Realtek ALC887 (LE), ALC887 (Regular), ALC892 (EVO) codec
| <!--USB-->4 USB 2.0 and 2 Asmedia USB3.0 Controller
| <!--Ethernet-->Realtek 8111F
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-970A-D3
| <!--Chipset-->AMD 970 with SB950
| <!--ACPI-->
| <!--IDE-->{{Yes| }}
| <!--SATA-->{{Yes|IDE mode}}
| <!--Gfx-->pci-e
| <!--Audio--> ALC??? (rev. 1.0/1.1), ALC887 (rev1.2), VIA VT2021 codec (rev 1.3 1.4 and rev3.0)
| <!--USB-->{{yes|AMD USB2 but not Etron EJ168 chip (USB3)}}
| <!--Ethernet-->Realtek GbE 8111E (all revisions),
| <!--Opinion-->2015 64bit - ATX Form Factor 30.5cm x 22.4cm - 4 x 1.5V DDR3 DIMM sockets -
|-
| <!--Name-->MSI 970 Gaming
| <!--Chipset-->970FX SB950
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->Realtek® ALC1150 Codec
| <!--USB-->6 usb2 with 2 USB3 VIA VL806 Chipset
| <!--Ethernet-->Killer E2205 Gigabit LAN
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus M5A99X EVO
| <!--Chipset-->990X - RD980 with SB920
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->2 pci-e gen ?
| <!--Audio-->HDAudio with ALC892 codec
| <!--USB-->
| <!--Ethernet-->rtl8169 realtek 8111e
| <!--Opinion-->2012 64bit -
|-
| <!--Name-->Gigabyte GA-990XA-UD3
| <!--Chipset-->AMD 990 with SB950
| <!--ACPI-->
| <!--IDE-->{{yes| }}
| <!--SATA-->{{yes| }}
| <!--Gfx-->
| <!--Audio-->ALC889 (rev 1.x, 3.0, 3.1),
| <!--USB-->{{yes|AMD USB2 not 2 x Etron EJ168 chips for USB3}}
| <!--Ethernet-->realtek rtl8169 8111e
| <!--Opinion-->2012 64bit - ATX Form Factor; 30.5cm x 24.4cm - 4 ddr3 slots -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====AMD Fusion (2011/14)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->
| 1.2GHz single Bobcat Fusion C30 + Hudson M1
| ACPI
| IDE
| SATA
| AMD 6250
| Audio
| USB
| Ethernet
| <!--Opinion-->2011 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2011 64bit does not support AVX or SSE 4.1 -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| Asus E35M1-M PRO uATX
| 1.6GHz 18W AMD Fusion E-350 dual core + Hudson M1
| ACPI
| {{N/A}}
| SATA
| AMD 6310 - no HD driver yet
| ALC887 VD2
| USB
| RTL8111E
| 2011 64bit does not support AVX or SSE 4.1 - EFI bios [http://www.anandtech.com/show/4023/the-brazos-performance-preview-amd-e350-benchmarked]
|-
| Asus E35M1-I Deluxe miniITX
| 1.6GHz dual AMD Fusion E350 + Hudson M1 + DDR3
| ACPI
| {{N/A}}
| SATA
| AMD 6310 - no HD driver yet
| ALC892
| USB
| Realtek 8111E
| 2011 64bit does not support AVX or SSE 4.1 - no support for Atheros AR5008 on a Mini PCI-E
|-
| ASRock E350M1 / USB3 (also version with USB3.0 added)
| 1.6GHz dual AMD Fusion E350 + Hudson M1
| ACPI
| {{N/A}}
| SATA - 4 SATA3
| {{Maybe|AMD 6310 - use vesa with hdmi and dvi}}
| {{Yes|Audio ALC892 playback but no HDMI output}}
| USB - 4 USB2.0 and 2 USB3.0
| {{Yes|rtl8169 for Realtek 8111E 8411 ethernet chipset}}
| 2011 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name-->Gigabyte GA-E350N-USB3 mini-ITX
| <!--Chipset--> Hudson M1 FCH
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 SATA3
| <!--Gfx--> plus HDMI, DVI
| <!--Audio-->ALC892
| <!--USB-->2 NEC USB3.0 with 4 USB2.0
| <!--Ethernet-->Realtek 8111E
| <!--Opinion-->2011 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name-->Gigabyte GA-E350N Win8 V1.0
| <!--Chipset-->Hudson M1 FCH A45
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 SATA3
| <!--Gfx-->{{maybe|Use VESA - AMD 6310 plus HDMI, DVI}}
| <!--Audio-->{{yes|ALC887 playback through headphones but not thru hdmi}}
| <!--USB-->{{maybe|4 USB2.0 needs more testing}}
| <!--Ethernet-->{{yes|Realtek 8111 8168B}}
| <!--Opinion-->2011 64bit does not support AVX or SSE 4.1 - works well but need to test with sata hard disk
|-
| <!--Name-->MSI E350IA-E45
| <!--Chipset-->e-350 + Hudson M1 + DDR3
| <!--ACPI-->no support
| <!--IDE-->{{N/A}}
| <!--SATA-->4 Sata3 ports
| <!--Gfx-->AMD 6310 gpu
| <!--Audio-->ALC HDA
| <!--USB-->6 USB2.0 and 2 USB3.0 through NEC 720200 chipset
| <!--Ethernet-->Realtek RTL8111E
| <!--Opinion-->2011 64bit does not support AVX or SSE 4.1 -
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->ASUS E45M1-M PRO
| <!--Chipset-->E450 APU with Hudson M1
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->ALC887
| <!--USB-->
| <!--Ethernet-->Realtek
| <!--Opinion-->2011 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name-->ASUS E45M1-I Deluxe
| <!--Chipset-->E-450 together
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->ALC892
| <!--USB-->
| <!--Ethernet-->Realtek 8111E
| <!--Opinion-->2011 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket FM1 (2011/13)=====
On board Graphic on CPU - HD6410D, HD6530D, HD6550D,
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->ASUS F1A55-M LE
| <!--Chipset--> with AMD A55 FCH (Hudson D2)
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->6 x SATA 3Gbit/s port(s), blue Support Raid 0, 1, 10, JBOD
| <!--Gfx-->PCI-e 2.0 slot or Integrated AMD Radeon™ HD 6000 in Llano APU
| <!--Audio-->Realtek® ALC887 Audio CODEC
| <!--USB-->6 USB2.0 ports
| <!--Ethernet-->Realtek 8111E rtl8169
| <!--Opinion-->2012 2011 64bit does not support AVX or SSE 4.1 - A-Series/E2- Series APUs up to 4 cores - 2 x DIMM, Max. 32GB, DDR3 2250(O.C.)/1866/1600/1333/1066 MHz Non-ECC, Un-buffered Memory Dual Channel Memory Architecture -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket FM2 White Socket (2012/13)=====
Onboard Gfx on CPU - HD6570, HD7480D, HD7540D,
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->
| <!--Chipset-->A75 A85X
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2012 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket FM2 Plus Black socket (2013/15)=====
Onboard Gfx on CPU - HD6570, HD7480D, HD7540D,
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->
| <!--Chipset-->A88X
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket AM1 FS1b socket (2014/1x)=====
5350 4 core Jaguar cores 2GHz with Integrated AMD Radeon R Series Graphics in the APU Kabini [Radeon HD 8400]
Later Beema APU with 2/4 core Puma (slightly updated Jaguar) cores, GCN graphics and a compute capable Radeon core, along with a brand new AMD security processor and FT3 BGA packaging (probably best avoided for long term survival).
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->ASUS AM1I-A
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->HD Audio Realtek® ALC887-VD
| <!--USB-->
| <!--Ethernet-->Realtek 8111GR 8168
| <!--Opinion-->2011 64bit may support AVX or SSE 4.1 -
|-
| <!--Name-->MSI AM1I
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->HD Audio ALC887
| <!--USB-->
| <!--Ethernet-->Realtek 8111G
| <!--Opinion-->
|-
| <!--Name-->MSI AM1M
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->HD Audio ALC887
| <!--USB-->
| <!--Ethernet-->Realtek 8111G
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->BGA FT3 AM1x
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket AM4 FM3 Summit Ridge Zen Zen+ (2016/22)=====
Jim Keller’s group designed x86 Zen CPU - new and covering the same AM4 platform/socket for desktop
Zen will also shift from Bulldozer’s Clustered Multithreading (CMT) to Simultaneous Multithreading (SMT, aka Intel’s Hyperthreading). CMT is the basis for Bulldozer’s unusual combination of multiple integer cores sharing a single FPU within a module, so the move to SMT is a more “traditional” design for improving resource usage
Trusted Platform Module, or fTPM, that Windows 11 requires. Ryzen processors using a firmware TPM are causing stutters, even when doing mundane tasks. To enable TPM 2.0 on your AMD system please follow the steps below.
<pre>
Power on system and press DEL or F2 to get into the BIOS.
Navigate to Advanced\CPU Configuration.
Enable AMD fTPM switch.
Press F10 to save changes.
</pre>
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->Asus ROG Crosshair VI Hero
| <!--Chipset-->X370
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->pci-e 3.0 (1x16 or 2x8)
| <!--Audio-->SupremeFX audio features an S1220 codec
| <!--USB-->
| <!--Ethernet-->Intel I211
| <!--Opinion-->Ryzen 7 1800X 1700X
|-
| <!--Name-->Biostar X370gtn Itx Am4
| <!--Chipset-->AMD X370
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->PCIe 3.0
| <!--Audio-->HDAudio with ALC892
| <!--USB-->
| <!--Ethernet-->Realtek Dragon LAN RTL8118AS
| <!--Opinion--> 2 ddr4 slots
|-
| <!--Name-->Gigabyte GA-AX370 K7
| <!--Chipset--> X370
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->PCIe 3.0
| <!--Audio-->HDAudio with 2 x Realtek® ALC1220 codec 0x10EC, 0x0295
| <!--USB-->
| <!--Ethernet-->1 intel and 1 E2500
| <!--Opinion--> 4 ddr4 slots
|-
| <!--Name-->MSI Xpower Gaming Titanium
| <!--Chipset--> X370
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->PCIe 3.0
| <!--Audio-->8-channel Realtek 1220 Codec 0x10EC, 0x0295
| <!--USB-->ASMedia® ASM2142 and amd cpu
| <!--Ethernet-->1 x Intel® I211AT Gigabit LAN
| <!--Opinion--> 2 ddr4 slots
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus Prime B350 Plus ATX
| <!--Chipset-->B350
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx--> x PCIe 3.0/2.0 x16 (x16 mode)
| <!--Audio-->Realtek® ALC887 8-Channel
| <!--USB-->
| <!--Ethernet-->Realtek® RTL8111H
| <!--Opinion-->Ryzen 5 1600x 1600 1500X 1400 - 4 x DIMM Max 64GB, DDR4 up to 2666MHz ECC and non-ECC Memory - ATX 12 inch x 9.35 inch ( 30.5 cm x 23.7 cm ) - 2 pci
|-
| <!--Name-->Asus PRIME B350M-A/CSM Micro ATX
| <!--Chipset-->AMD B350
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->PCIe 3.0
| <!--Audio-->HDaudio with
| <!--USB-->
| <!--Ethernet-->Realtek LAN
| <!--Opinion-->Ryzen 3 1300x 1200 1100
|-
| <!--Name-->AsRock Pro4 AB350
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->2 PCIe 3.0 x16, 4 PCIe 2.0 x1
| <!--Audio-->Realtek ALC892
| <!--USB-->
| <!--Ethernet-->Realtek
| <!--Opinion-->2017 64bit -
|-
| <!--Name-->ASRock AB350 Gaming-ITX/ac
| <!--Chipset--> B350
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->PCIe 3.0
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->Intel LAN
| <!--Opinion-->
|-
| <!--Name-->MSI B350 Tomahawk Arctic Mortar
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->1 x PCIe 3.0 x16 (x16 mode)
| <!--Audio-->Realtek ALC892
| <!--USB-->
| <!--Ethernet-->Realtek RTL8111H
| <!--Opinion-->white and grey colours - 2 pci-e and 2 pci slots - m.2 in middle - atx 12 in by 9.6 in and matx versions -
|-
| <!--Name-->Jginyue M-ATX B350M-TI
| <!--Chipset-->B350
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Jginyue B350I-Plus ITX
| <!--Chipset-->B350
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->ASRock A320M-ITX MINI ITX Rev1.0 Rev2 Rev2.1
| <!--Chipset-->A320
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->pci-e
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2018
|-
| <!--Name-->Asus PRIME A320M-C R2.0 rev1.1 A320M-K
| <!--Chipset-->A320 A/B300 SFF
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->PCIe 3.0
| <!--Audio-->HD audio with Realtek ALC887 alc897 CODEC
| <!--USB-->2 usb 3.1 gen 1
| <!--Ethernet-->Realtek 8111E
| <!--Opinion-->2019 64bit - 3rd/2nd/1st Gen AMD Ryzen™ / 2nd and 1st Gen AMD Ryzen™ with Radeon™ Vega
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->MSI A320M-A PRO MicroATX
| <!--Chipset-->AMD A320
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->pci-e 3.0
| <!--Audio-->HDAudio Realtek® ALC892
| <!--USB-->USB3
| <!--Ethernet-->Realtek® 8111H
| <!--Opinion-->2019 64bit -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus ROG X399 Zenith Extreme
| <!--Chipset-->AMD X399
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->PCIe 3.0
| <!--Audio--> supremefx s1220
| <!--USB-->
| <!--Ethernet-->intel
| <!--Opinion-->Threadripper 1950X 1920X 1900X TR4 skt
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->PCIe 3.0
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->AsRock Fatality X470 Gaming K4 mATX
| <!--Chipset-->X470
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->nvme
| <!--Gfx-->pci-e rebar possible
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->intel
| <!--Opinion-->
|-
| <!--Name-->Asrock Fatal1ty X470 Gaming-ITXac AMD AM4
| <!--Chipset-->AMD X470
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->intel
| <!--Comments-->
|-
| <!--Name-->ASUS ROG STRIX X470-I GAMING AM4 ITX Motherboard
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus B450-I Gaming
| <!--Chipset-->AMD B450
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->PCIe 3.0
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->high VRM temps - raven ridge 14nm+ like 2200G 2400G
|-
| <!--Name-->AsRock B450 Gaming K4
| <!--Chipset-->B450
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio--> alc892
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion--> 4 ddr4 slots - low VRM thermals 3900x 3950x
|-
| <!--Name-->Gigabyte B450 I Aorus Pro Wifi
| <!--Chipset-->AMD B450
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->1 nvme pcie3 with 4 sata
| <!--Gfx-->pcie
| <!--Audio-->HDAudio with Realtek® ALC1220-VB codec
| <!--USB-->
| <!--Ethernet-->Intel LAN
| <!--Opinion-->very high vrm temps
|-
| <!--Name-->Jginyue B450i Gaming ITX
| <!--Chipset-->B450
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sata3 - none nvme
| <!--Gfx-->pcie3
| <!--Audio-->HDAudio
| <!--USB-->
| <!--Ethernet-->1G
| <!--Opinion-->2021 64 2nd 3rd AMD - 2 ddr4 dimm slots
|-
| <!--Name-->MSI b450 tomahawk max
| <!--Chipset--> b450
| <!--ACPI-->
| <!--IDE-->{{n/A}}
| <!--SATA-->
| <!--Gfx-->PCIe 3.0
| <!--Audio-->HD audio with Realtek® ALC892 Codec
| <!--USB-->
| <!--Ethernet-->Realtek 8111H
| <!--Opinion-->
|-
| <!--Name-->MSI B450 Pro Carbon
| <!--Chipset-->B450
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio--> ALC codec
| <!--USB-->
| <!--Ethernet-->Intel LAN
| <!--Opinion-->
|-
| <!--Name-->MSI B450-A PRO
| <!--Chipset-->B450
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->ALC892
| <!--USB-->
| <!--Ethernet-->rtl8169 8111h
| <!--Opinion-->
|-
| <!--Name-->MSI B450I GAMING Plus AC ITX
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2019 - 2nd and 3rd gen AMD - 2 ddr4 slots -
|-
| <!--Name-->MSI B450 GAMING PLUS MAX
| <!--Chipset-->B450
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->HDAudio with Realtek® ALC892/ALC897 Codec
| <!--USB-->USB3
| <!--Ethernet-->rtl8169 8111H
| <!--Opinion-->
|-
| <!--Name-->MAXSUN AMD Challenger B450M M-ATX (aka Soyo)
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->ASRock X570 PHANTOM GAMING-ITX/TB3 Mini ITX AM4
| <!--Chipset-->X570
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->nvme
| <!--Gfx-->PCIe 4.0
| <!--Audio--> ALC1200
| <!--USB-->
| <!--Ethernet-->Intel LAN
| <!--Comments-->
|-
| <!--Name-->Asus ROG Crosshair VIII Dark Hero
| <!--Chipset-->AMD X570
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio--> SupremeFX7.1 codec
| <!--USB-->
| <!--Ethernet-->Intel® I211-AT and Realtek® RTL8125-CG 2.5G LAN
| <!--Opinion-->
|-
| <!--Name-->Asus ROG Strix X570-I Gaming Mini ITX AM4 Motherboard
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->MSI MPG X570 Gaming Plus
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio--> alc1220 codec
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus ROG Strix B550-i AM4 ITX Motherboard
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2022 -
|-
| <!--Name-->Jginyue Jingyue B550i Gaming itx
| <!--Chipset-->B550
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->3 with 1 nvme
| <!--Gfx-->1 pci-e 4
| <!--Audio-->HDAudio alc
| <!--USB-->
| <!--Ethernet-->1G
| <!--Comments-->2022 64bit max of Ryzen 5500 (c t), 5600, 5600g (6c12t) - 2 ddr4
|-
| <!--Name-->Asrock B550 PHANTOM GAMING ITX/AX
| <!--Chipset-->AMD B550
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio--> alc1220
| <!--USB-->
| <!--Ethernet-->intel 2.5G
| <!--Comments-->
|-
| <!--Name-->AsRock B550M-ITX/ac
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio--> Realtek ALC887/897 Audio Codec
| <!--USB-->
| <!--Ethernet-->Realtek Gigabit LAN
| <!--Opinion-->2022 - 2 ddr4 slots
|-
| <!--Name-->Asus ROG STRIX B550-A GAMING
| <!--Chipset-->B550
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->PCIe Gen4 x4 & SATA3
| <!--Gfx-->pci-e 4
| <!--Audio--> supremefx S1220A
| <!--USB-->
| <!--Ethernet-->Intel® I225-V 2.5Gb
| <!--Opinion-->
|-
| <!--Name-->Gigabyte AMD B550I AORUS PRO AX Mini-ITX rev 1.0
| <!--Chipset-->AMD B550
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->2 nvme pci-e3 with 4 sata3
| <!--Gfx-->pci-e
| <!--Audio-->Realtek® ALC1220-VB codec
| <!--USB-->
| <!--Ethernet-->Realtek® 2.5GbE LAN
| <!--Opinion-->2021 2 x DDR4 DIMM sockets 1Rx8/2Rx8/1Rx16 -
|-
| <!--Name-->Gigabyte B550 AORUS ELITE AX V2 ATX
| <!--Chipset-->B550
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->PCI-e 4.0 DP and hdmi
| <!--Audio-->HDAudio ALC1200
| <!--USB-->USB3 USB 3.2 Gen1 Type-C
| <!--Ethernet-->2.5GbE LAN
| <!--Opinion-->2022 64bit- finer tuning than A520's - AMD Ryzen 5000 Series/ 3rd Gen Ryzen and 3rd Gen Ryzen with Radeon Graphics CPU - Dual Channel ECC/ Non-ECC Unbuffered DDR4, 4 DIMMs -
|-
| <!--Name-->Gigabyte B550M DS3H mATX
| <!--Chipset--> B550
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->2 NVMe
| <!--Gfx-->PCI-e 4.0
| <!--Audio-->HDaudio ALC887
| <!--USB-->USB3
| <!--Ethernet-->realtek rtl8118
| <!--Opinion-->2021 64bit - 4 ddr4 dimms -
|-
| <!--Name-->MSI MPG B550 GAMING PLUS ATX
| <!--Chipset--> B550
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->PCI-e 4.0
| <!--Audio-->HDAudio ALC892
| <!--USB-->USB 3
| <!--Ethernet-->rtl8169 Realtek 8111H
| <!--Opinion-->2022 64bit - 3rd Gen AMD Ryzen Processors - 4 dimm ddr4 -
|-
| <!--Name-->MSI MAG B550 TOMAHAWK ATX
| <!--Chipset--> B550
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe 1 x M.2, Socket 3, M Key (up to Type 22110) and 1 x M.2, Socket 3, M Key (Type 2242/2260/2280)
| <!--Gfx-->PCI-e 4.0 with dp and hdmi
| <!--Audio-->HDaudio ALC1200
| <!--USB-->USB3 1 x USB 3.1 Type-C and 1 x USB 3.1 Type-A
| <!--Ethernet-->Realtek RTL8125B and Realtek RTL8111H
| <!--Opinion-->2022 64bit - 4 Dimm slots -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Jginyue A520M-H mATX
| <!--Chipset-->A520
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion--> old bios with random issues with APU ryzens -
|-
| <!--Name-->Gigabyte A520M S2H mATX
| <!--Chipset-->AMD A520
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->HDAudio
| <!--USB-->
| <!--Ethernet-->Realtek 1GbE
| <!--Opinion-->2022 64bit Zen3 65W and up - 2 ddr4 -
|-
| <!--Name-->Gigabyte A520I AC mITX mini-itx
| <!--Chipset-->AMD A520
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->HDAudio
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2022 64bit Zen3 65W and up 5600G (6c12t) or 5700G (8c16t) - 2 ddr4 dimm slots -
|-
| <!--Name-->MSI A520M-A PRO mATX
| <!--Chipset-->A520
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe 1 x M.2, Socket 3, M Key (Type 2242/2260/2280)
| <!--Gfx-->PCI-e 3.0
| <!--Audio-->HDAudio ALC892
| <!--USB-->USB3
| <!--Ethernet-->rtl8169 rtl8111H
| <!--Opinion-->2022 64bit - 2 ddr4 dimm slots - 3rd Gen AMD Ryzen Desktop and AMD Ryzen 4000 G-Series CPU
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|}
===== (Socket AM5 LGA1718 Zen4 Zen5 Zen6 2022/27)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->Asrock Steel Legend
| <!--Chipset-->x670e
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->PCI-e rnda2
| <!--Audio-->HD audio
| <!--USB-->USB3
| <!--Ethernet-->
| <!--Opinion-->2022 64bit - ddr5 ecc (10 chip) and non-ecc (8 chips) 64Gb @ 6000Mhz or 128GB @ 4800Mhz -
|-
| <!--Name-->Asrock TaiChi
| <!--Chipset-->x670e
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->PCI-e rnda2
| <!--Audio-->HD Audio
| <!--USB-->USB4 with Thunderbolt 4 equivalent
| <!--Ethernet-->{{No|Realtek killer E3000 2.5GbE}}
| <!--Opinion-->2022 64bit - ddr5 ecc (10 chip) and non-ecc (8 chips)
|-
| <!--Name-->Asus ROG Crosshair Hero
| <!--Chipset-->x670e
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->PCIe rnda2
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2022 64bit
|-
| <!--Name-->
| <!--Chipset-->x670e
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->rnda3
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2022 64bit 7950x3d 120W, 7900 7800 7600 90W
|-
| <!--Name-->
| <!--Chipset-->x670e
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->rnda3
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2022 64bit
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus B650E-I
| <!--Chipset-->B650
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->pci-e 5
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2023 - better sound with an actual AMP, PCIe 5, USB-C display outs -
|-
| <!--Name-->
| <!--Chipset-->x650 B650
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->x650 B650
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->x650 B650
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->MAXSUN AMD Challenger B650M WIFI M-ATX (aka Soyo)
| <!--Chipset-->B650
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->MSI b650i mini itx
| <!--Chipset-->B650
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->pci-e 4
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->Realtek
| <!--Opinion-->2023 - front panel connectors at the back of the board - dead rear nvme slot and a drained CMOS battery as the CMOS button being pressed during shipping -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->A620M Zen4
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->A620M
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->A620M
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->A620M
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset--> Zen5
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset--> Zen6
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name--> || <!--Chipset--> || <!--ACPI--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Opinion-->2026 FP8 Zen 6 Medusa Point 4bigC, 4 econC, 2lpC, 8coreGPU -
|-
| <!--Name--> || <!--Chipset--> || <!--ACPI--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Opinion-->2026 FP10 Zen 6 Medusa Point 4bigC, 4 econC, 2lpC, 8coreGPU -
|-
|}
===== (Zen7 AM6 2027/3x)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
===== (Zen AM 203x/3x)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
====Intel Sockets====
[[#top|...to the top]]
=====Socket 370 (2000/2)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->Intel D815EEA
| <!--Chipset-->866Mhz P3 and i815 chipset
| <!--ACPI-->
| <!--IDE-->{{Yes}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->{{Yes|Nvidia AGPx8 6200LE added}}
| <!--Audio-->{{N/A}}
| <!--USB-->{{Yes|2 USB1.1}}
| <!--Ethernet-->{{N/A}}
| <!--Opinion-->Tested AspireOS 1.7, simple basic board with useful 5 PCI slots
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|}
=====Socket 478 (2002/4)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->[http://translate.google.co.uk/translate?hl=en&sl=zh-CN&u=http://detail.zol.com.cn/motherboard/index46381.shtml&prev=/search%3Fq%3Dc.865pe.l%2Bmotherboard%26client%3Dfirefox-a%26hs%3DsZB%26rls%3Dorg.mozilla:en-US:official Colorful Technology C.865PE-L Silver Fighter Warrior V2.3]
| <!--Chipset-->865PE
| <!--ACPI-->{{dunno| }}
| <!--IDE-->{{Yes|tested with CDROM}}
| <!--SATA-->{{dunno| }}
| <!--Gfx-->{{Maybe|AGP slot}}
| <!--Audio-->{{Yes|ALC650 AC97}}
| <!--USB-->{{Yes|USB 1.1 and 2.0}}
| <!--Ethernet-->{{Yes|RTL 8100 8139}}
| <!--Opinion-->Still testing with NB (Nightly Build) May 2013
|-
| <!--Name-->Intel 845
| <!--Chipset-->865P
| <!--ACPI-->
| <!--IDE-->{{Yes}}
| <!--SATA-->
| <!--Gfx-->{{No|intel 800}}
| <!--Audio-->{{No|AC97 AD1985}}
| <!--USB-->{{Yes|USB1.1 and USB2.0}}
| <!--Ethernet-->{{No|e1000}}
| <!--Opinion-->Tested ICAROS 1.3
|-
| <!--Name-->Intel 845
| <!--Chipset-->865GC
| <!--ACPI-->
| <!--IDE-->{{Yes}}
| <!--SATA-->
| <!--Gfx-->{{No|intel 865 Extreme Graphics 2}}
| <!--Audio-->{{No|AC97 AD1985}}
| <!--USB-->{{Yes|USB1.1 and USB2.0}}
| <!--Ethernet-->{{No|e1000}}
| <!--Opinion-->Tested ICAROS 1.3
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket LGA775 s775 (2005/8)=====
an industry standard DDR2 module could in theory contain fallback JEDEC, intel XMP and AMD EPP configuration data
Intel PC CL5 ram modules but an "AMD" CL5 ram module the BIOS cannot read the AMD EPP info on the SPD (Serial Presence Detect) but can recognize the CL5 timing info in the JEDEC data table. PC BIOS auto configures for the AMD ram module and boots normally.
an AMD PC CL6 ram modules but an "INTEL" CL6 ram module the BIOS cannot read the INTEL XMP info on the SPD but can recognize the CL6 timing info in JEDEC data table. PC BIOS auto configures for the AMD ram module and boots normally.
an INTEL PC needs CL6 ram modules but have an "AMD" CL4 ram module. INTEL BIOS cannot read the AMD EPP info on the SPD but can recognize the CL4 timing info in JEDEC data table. PC BIOS recognizes module timings as incompatible an refuses to boot.
entirely separate issue if the RAM module timing specs are incompatible.(i.e. CL4 RAM in a "CL6 only" PC)
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->Abit AG8
| <!--Chipset-->P915 + ICH6R
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4 ports SATA1
| <!--Gfx-->1 PCIe x16 Slot
| <!--Audio-->Realtek ALC658 AC97
| <!--USB-->4 USB2.0
| <!--Ethernet-->Realtek 8110S-32
| <!--Opinion-->2004 32bit - Firewire TI 4200R7T no
|-
| <!--Name-->MSI 915 Neo2
| <!--Chipset-->P915 + ICH6R
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4 ports SATA1
| <!--Gfx-->1 PCIe x16 Slot
| <!--Audio-->CMI 9880L HD Audio
| <!--USB-->4 USB2.0
| <!--Ethernet-->{{no|Broadcomm BCM5751 PCIe}}
| <!--Opinion-->Firewire VIA VT6306 no
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus P5GC P5GC-MX
| <!--Chipset-->P945GC Lakeport-GC + ICH7R northbridge
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4 SATA1 3.0 Gbit/s ports
| <!--Gfx-->1 PCIe 1.1 slot
| <!--Audio-->HD Audio with ALC662 codec
| <!--USB-->{{yes|2 usb2.0}}
| <!--Ethernet-->{{no|atheros L2}}
| <!--Opinion-->2005 32bit - 3 pci slots - 4 x 240-pin DIMM Sockets max. 4GB DDR2 667/533 non-ECC -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Foxconn PC45CM-SA 45CM-S
| <!--Chipset-->945GC with ICH7
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4 sata2 ports
| <!--Gfx-->{{Yes|pcie 1.0 slot with gma950 integrated}}
| <!--Audio-->{{Yes|HD audio with aLC883 codec playback}}
| <!--USB-->{{Yes|}}
| <!--Ethernet-->{{Yes|realtek 8139 8100sc}}
| <!--Opinion-->2 dimm slots 667mhz max 4gb - can be found in Advent desktops - 2 pci-e and 2 pci - core 2 duo only e6xxx - Micro ATX (9.6” x 8.8”) -
|-
| <!--Name-->Gigabyte GA-81945GM MFY-RH
| <!--Chipset-->Intel® 945GM Express with ICH7M-DH
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->{{Yes|GMA950 VGA15 and PCI-e 1.0 slot}}
| <!--Audio-->{{Yes|HD Audio with ALC880 codec playback only rear port}}
| <!--USB-->{{Yes|4 usb 2.0}}
| <!--Ethernet-->{{No|Intel PRO1000PL 82573L Gigabit Ethernet}}
| <!--Opinion-->2006 MoDT term “Mobile on DeskTop.”, low TDP CPUs to work on desktop form-factor motherboards. mATX Micro ATX 24.4cm x 24.4cm - 2 DDR2 dimm 1.8v slots with 4Gb max - will not boot if PCI2 slot occupied -
|-
| <!--Name-->Gigabyte GA-945 GCM S2C
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->{{yes|ALC662 (1.x)}}
| <!--USB-->
| <!--Ethernet-->{{yes|8101E Rtl 8169 (1.x)}}
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA945-GCM S2L
| <!--Chipset-->945GC with ICH7
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4 SATA1 ports
| <!--Gfx-->PCi-E slot
| <!--Audio-->{{Maybe|Intel HD Audio with ALC662 codec 2/4/5.1-channel (1.x)}}
| <!--USB-->{{Yes|4 USB2.0}}
| <!--Ethernet-->{{Yes|Realtek 8111c 8169 (1.x)}}
| <!--Opinion-->2 x 1.8V DDR2 DIMM 4GB DDR2 memory max - 2 PCI-e and 2 PCI - Micro ATX form factor; 24.4cm x 19.3cm -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->MSI 945P Neo-F rev 1.0
| <!--Chipset-->P945 + ICH7
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4 SATA1 ports
| <!--Gfx-->PCie 1.0 slot
| <!--Audio-->ALC662 HDA
| <!--USB-->4 USB2.0
| <!--Ethernet-->8110SC (rtl8169)
| <!--Opinion-->
|-
| <!--Name-->MSI 945P Neo2-F rev 1.2
| <!--Chipset-->P945 + ICH7
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4 SATA1 ports
| <!--Gfx-->PCie 1.0 slot
| <!--Audio-->ALC850 AC97
| <!--USB-->4 USB2.0
| <!--Ethernet-->8110SC (rtl8169)
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-P31-DS3L
| <!--Chipset-->P31 with ICH7
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->PCI Express x16
| <!--Audio-->HD Audio with ALC888 codec
| <!--USB-->4 USB 2.0
| <!--Ethernet-->Realtek 8111B
| <!--Opinion-->DDR2 800Mhz up to 4Gb 4 x 240 pin - 3 PCI - ATX 12.0" x 8.3" -
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus P5KPL-AM /PS
| <!--Chipset-->G31 with ICH7
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->4 xSATA 3 Gbit/s ports
| <!--Gfx-->PCIe 1.1 with integrated Intel® GMA 3100
| <!--Audio-->HD Audio with VIA VT1708B with ALC662 codec
| <!--USB-->
| <!--Ethernet-->Realtek RTL8102EL 100/10 LAN with Realtek RTL8111C Gigabit LAN
| <!--Opinion-->2 x 2 GB DDR2 Non-ECC,Un-buffered DIMMs with 2 PCI - Intel Graphics Media Accelerator -
|-
| <!--Name-->Asus P5KPL/EPU
| <!--Chipset-->G31 with ICH7
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Pci-e 1.0 slot
| <!--Audio-->{{Yes|HD audio with ALC887 codec}}
| <!--USB-->
| <!--Ethernet-->{{Yes|RTL8169 Realtek 8111C}}
| <!--Opinion-->Tested - 4 240-pin DIMM, Max. 4 GB - 4 pci-e and 3 pci - ATX Form Factor 12 inch x 8.2 inch ( 30.5 cm x 20.8 cm ) -
|-
| <!--Name-->Gigabyte GA-G31M ES2L
| <!--Chipset-->G31 plus ICH7
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->{{Yes|Intel GMA 3100 2d}}
| <!--Audio-->{{Maybe|ALC883 (1.x), ALC883/888B (2.x)}}
| <!--USB-->
| <!--Ethernet-->{{Maybe|RTL8111C (1.x), Atheros 8131 (2.x)}}
| <!--Opinion-->reduces DRAM capacity to 4GB
|-
| <!--Name-->ASRock G31M-S r1.0 G31M-GS
| <!--Chipset-->G31 + ICH7
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->{{maybe|4 sata2}}
| <!--Gfx-->{{maybe|GMA 3100 2d not 3d}}
| <!--Audio-->{{yes|ALC662}}
| <!--USB-->{{yes|4 USB2.0}}
| <!--Ethernet-->{{partial|rtl8169 RTL8111DL 8169 (for -GS) RTL8102EL (for -S)}}
| <!--Opinion-->2007 64bit Core2 - 2 DDR2 800 max 8Gig AMI bios MicroATX -
|-
| <!--Name-->ASRock G31M-S r2.0
| <!--Chipset-->G31 + ICH7
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->{{maybe|4 sata2}}
| <!--Gfx-->{{maybe|GMA 3100 2d not 3d}}
| <!--Audio-->{{yes|ALC662}}
| <!--USB-->{{yes|4 USB2.0}}
| <!--Ethernet-->{{yes|RTL 8111DL 8169}}
| <!--Opinion-->2008 64bit core2 - 2 DDR2 800 max 8Gig MicroATX
|-
| <!--Name-->[http://www.intel.com/cd/channel/reseller/apac/eng/products/desktop/bdb/dg31pr/feature/index.htm Intel DG31PR]
| <!--Chipset-->iG31
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->{{maybe|3100 but can use PCIe 1.1 slot}}
| <!--Audio-->{{yes|ALC888 playback}}
| <!--USB-->
| <!--Ethernet-->{{yes|RTL8111B Rtl 8169}}
| <!--Opinion-->good support
|-
| <!--Name-->
| <!--Chipset-->Intel G33 Express Chipset with ich9 southbridge
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Intel 3100 powervr tile based
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2008 64bit - embedded on Core 2 Quad, Core 2 Duo, Pentium Dual-Core CPUS with Integrated GPU Intel GMA 3100 -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->ASUS P5G41T-M LX
| <!--Chipset-->G41 + ICH8 + DDR3
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->{{maybe}}
| <!--Gfx-->{{yes|X4500 some 2d only)}}
| <!--Audio-->ALC887
| <!--USB-->3 USB2.0
| <!--Ethernet-->{{no|Atheros L1c AR8131}}
| <!--Opinion-->reduces maximum supported memory ddr3 from 16 to 8GB 2 dimm slots non-EEC - demotes the PCIe controller mode from revision 2.0 (5.0GT/s) to revision 1.1 (2.5GT/s
|-
| <!--Name-->Gigabyte GA-G41MT S2
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->VT1708S (1.3), ALC887-VD2 (1.4), ALC887 (2.1),
| <!--USB-->
| <!--Ethernet-->Atheros AR8151 l1c (1.x 2.x),
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-G41MT S2PT
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->ALC887 (1.0), VIA (2.0), ALC887 (2.1)
| <!--USB-->
| <!--Ethernet-->RTL8111E (1.x), Atheros AR8151 l1c (2.1),
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-G41MT D3
| <!--Chipset-->G41 + ICH7
| <!--ACPI-->
| <!--IDE-->1 Port
| <!--SATA-->4 Ports
| <!--Gfx-->{{yes|GMA X4500 2d only and pci-e 1.1 slot}}
| <!--Audio-->{{yes|ALC888B}}
| <!--USB-->4 ports + headers
| <!--Ethernet-->{{yes|RTL8111 D/E}}
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-P41T D3P
| <!--Chipset-->G41 + ICH7 with Intel Core 2 Duo (E6xxx) CPU
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4ports
| <!--Gfx-->GMA X4500 2d
| <!--Audio-->ALC888 889/892
| <!--USB-->4 ports
| <!--Ethernet-->RTL 8111C or D/E
| <!--Opinion-->
|-
| <!--Name-->Intel DG41AN Classic
| <!--Chipset-->iG41 +
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4 ports
| <!--Gfx-->X4500 2d
| <!--Audio-->ALC888S ALC888VC
| <!--USB-->4 ports
| <!--Ethernet-->8111E
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->AsRock P5B-DE
| <!--Chipset-->P965 + ICH8
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->{{Maybe|works ide legacy}}
|<!--Gfx-->{{Yes|with PCI-E 1.1 slot}}
| <!--Audio-->{{Yes|HD Audio via VT1708S}}
| <!--USB-->{{Yes}}
| <!--Ethernet-->{{Yes|RTL8169}}
| <!--Opinion-->2006 works well
|-
| <!--Name-->Asus P5B SE
| <!--Chipset-->965 intel
| <!--ACPI-->
| <!--IDE-->{{Yes| }}
| <!--SATA-->{{Yes| }}
| <!--Gfx-->{{N/A}}
| <!--Audio-->{{Yes|HD Audio ALC662 codec}}
| <!--USB-->{{Yes}}
| <!--Ethernet-->{{No| }}
| <!--Opinion-->works well except ethernet
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus P5W DH Deluxe P5WDG2 WS PRO
| <!--Chipset-->975X
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->2 ports
| <!--Gfx-->2 PCIe x16 slots
| <!--Audio-->ALC882 AND LATER ADI 1988B
| <!--USB-->2 USB2.0
| <!--Ethernet-->{{No|Marvell 88E8052 88E8053}}
| <!--Opinion-->Firewire TI TSB43AB22A no
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Abit IP35
| <!--Chipset-->P35 Express + ICH9R
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->6 ports
| <!--Gfx-->
| <!--Audio-->ALC888 HDA
| <!--USB-->4 USB2.0
| <!--Ethernet-->two RTL8110SC
| <!--Opinion-->Firewire Texas TSB43 AB22A no
|-
| <!--Name-->MSI P35 Neo F FL MS-7630 rev 1
| <!--Chipset-->Intel P35
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->pci-e 1.1 support
| <!--Audio-->HD Audio ALC888
| <!--USB-->
| <!--Ethernet-->Realtek
| <!--Opinion-->Base model of this range of P35 mobos
|-
| <!--Name-->GA-P35-DS3
| <!--Chipset-->P35 and ICH9
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4 ports
| <!--Gfx-->
| <!--Audio-->HDAudio with Realtek ALC889A codec
| <!--USB-->
| <!--Ethernet-->rtl8169 Realtek 8111B
| <!--Opinion-->2008 - 4 x 1.8V DDR2 DIMM sockets max 8 GB -
|-
| <!--Name-->GA-EP35-DS3 (rev. 2.1)
| <!--Chipset-->Intel® P35 + ICH9 Chipset
| <!--ACPI-->
| <!--IDE-->{{unk|}}
| <!--SATA-->{{unk|4 }}
| <!--Gfx-->pci-e
| <!--Audio-->{{unk|Realtek ALC889A codec }}
| <!--USB-->{{yes | }}
| <!--Ethernet-->{{yes|rtl8169 Realtek 8111B}}
| <!--Opinion-->good
|-
| <!--Name-->Abit IX38 Quad GT
| <!--Chipset-->X38 / ICH9R Chipset
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->6 ports
| <!--Gfx-->PCI-E 2.0 slot
| <!--Audio--> HD Audio ALC888
| <!--USB-->4 USB2.0
| <!--Ethernet-->Realtek RTL 8110SC 8169SC
| <!--Opinion-->Firewire Texas TSB 43AB22A no
|-
| <!--Name-->Gigabyte X38-DQ6
| <!--Chipset-->X38 / ICH9R Chipset
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->6 ports
| <!--Gfx-->PCI-E 2.0 slot
| <!--Audio-->ALC889A HDA
| <!--USB-->4 USB2.0
| <!--Ethernet-->twin 8111B 8169
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Gigabyte GA-EP45 DS3 (2008)
| <!--Chipset-->P45 + ICH9 or ICH10
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->6 x SATA 3Gbit/s (SATAII0, SATAII1, SATAII2, SATAII3, SATAII4, SATAII5)
| <!--Gfx-->two PCI-E v2.0 x16 slots support splitting its 16 PCIe 2.0 lanes across two cards at x8 transfers
| <!--Audio-->HD Audio with ALC888 or ALC889A codec
| <!--USB-->6 USB2.0
| <!--Ethernet-->2 x Realtek 8111C chips (10/100 /1000 Mbit)
| <!--Opinion-->4 x 1.8V DDR2 DIMM sockets non-EEC
|-
| <!--Name-->MSI P45 Platinum (2008)
| <!--Chipset-->P45 + ICH9
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->6 sata2 ports
| <!--Gfx-->two PCI-E x16 v2.0 slots
| <!--Audio-->ALC888 HD Audio
| <!--USB-->6 USB2.0
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->G45 +
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->adds Intel’s GMA X4500HD graphics engine to P45 Express features
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->G43 +
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->GMA X4500 2d
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->removes HD video acceleration from the G45’s features
|-
| <!--Name-->Asus P5E Deluxe
| <!--Chipset--> X48 with ICH9
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->HD Audio with ADI 1988B codec
| <!--USB-->
| <!--Ethernet-->Marvell 88E8001
| <!--Opinion-->
|-
| <!--Name-->GigaByte GA-X48 DQ6
| <!--Chipset-->X48 plus ICH9R
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->8 ports
| <!--Gfx-->two PCI-E x16 v2.0 slots
| <!--Audio-->ALC889A
| <!--USB-->8 USB2.0
| <!--Ethernet-->RTL 8111B 8169
| <!--Opinion-->Firewire TSB43AB23 no - ICH9 pairs with Intel’s 3-series (X38, P35, etc.) chipsets, in addition to the X48 Express, but excluding the G35 Express
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Gigabyte EP43-DS3L and Gigabyte GA-EP43-UD3L
| <!--Chipset-->P43 with ICH10
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->6 x SATA 3Gbit/s connectors
| <!--Gfx-->1 x PCI Express x16 slot PCI Express 2.0 standard
| <!--Audio-->HD Audio with ALC888 codec
| <!--USB-->
| <!--Ethernet-->realtek 8111C
| <!--Opinion-->4 x 1.8V DDR2 DIMM sockets - 4 pcie x1 - 2 pci - ATX Form Factor; 30.5cm x 21.0cm
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Gigabyte 73-pvm-s2h rev.1.0
| <!--Chipset-->NVIDIA GeForce 7100 nForce 630i
| <!--ACPI-->
| <!--IDE-->{{Yes|1 port}}
| <!--SATA-->{{yes|3 ports SATA2}}
| <!--Gfx-->{{Maybe|Vesa 2d GeForce 7100 (vga /hdmi/dvi), 1 PCIe x16 Slot }}
| <!--Audio-->{{Yes|Realtek ALC889A MCP73}}
| <!--USB-->{{Yes|7 USB2.0}}
| <!--Ethernet-->{{no|RTL 8211B MCP73}}
| <!--Opinion-->Firewire Not, tested with Icaros Desktop 2.0.3 MCP73 is a single chip solution in three different versions
|-
| <!--Name-->Nvidia 7150 630i
| <!--Chipset-->intel based nForce 630i (MCP73)
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->{{maybe|ide legacy}}
| <!--GFX-->GF 7150
| <!--Audio-->{{yes|HD AUDIO ALC883}}
| <!--USB-->{{yes|ohci echi}}
| <!--Ethernet-->{{no|RTL8201C}}
| <!--Opinion-->being tested
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->pci-e 2.0 x16
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion--> the MCP73PV or the GeForce 7050/nForce 630i
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->the MCP73S or the GeForce7025/nForce 630i
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->the MCP73V or the GeForce 7025/nForce 610i
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Atom SOC (2008/2x)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->D945CLF
| <!--Chipset-->N230 single core
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->
| <!--Gfx-->{{yes|GMA945}}
| <!--Audio-->{{yes|ALC662}} Skt 441
| <!--USB-->{{yes|uhci and ehci}}
| <!--Ethernet-->{{yes|rtl8169}}
| <!--Opinion-->works very well
|-
| <!--Name-->[http://www.clusteruk.com iMica D945GCKF2 mobo]
| <!--Chipset-->Intel Atom N330 Dual Core
| <!--ACPI-->wip
| <!--IDE-->{{yes|IDE}}
| <!--SATA-->{{maybe}}
| <!--Gfx-->{{yes|gma}}
| <!--Audio-->{{yes|HD AUDIO}}
| <!--USB-->{{yes|uhci ehci}}
| <!--Ethernet-->{{yes|rtl8169}}
| <!--Opinion-->
|-
| <!--Name-->D945GSEJT + Morex T1610
| <!--Chipset-->Atom 230 with 945GSE
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->{{maybe}}
| <!--Gfx-->{{yes|GMA900 vga but issues with DVI output}}
| <!--Audio-->{{yes|HDAudio with ALC662 codec}}
| <!--USB-->{{yes| }}
| <!--Ethernet-->{{yes|RTL8169 8111DL}}
| <!--Opinion-->small size, runs off 12V
|-
| <!--Name-->ASUS AT3N7A-I
| <!--Chipset-->Atom N330 Nvidia ION
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->{{maybe|3 ports legacy IDE}}
| <!--Gfx-->{{yes|nouveau cube cube 2 45 quake 3 }}
| <!--Audio-->{{yes|HD Audio with VIA 1708S codec playback}}
| <!--USB-->{{yes}}
| <!--Ethernet-->{{yes|RTL8169 device}}
| <!--Opinion--><ref>http://www.youtube.com/watch?v=EAiJpvu73iw</ref> good but can freeze randomly at times
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->D410PT 45nm pinetrail
| <!--Chipset-->D410 and NM10
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->{{maybe|ide legacy}}
| <!--Gfx-->{{maybe|GMA3150}}
| <!--Audio-->{{yes|ALC262 or ALC66x odd clicks}}
| <!--USB-->{{yes}}
| <!--Ethernet-->{{yes|RTL8111DL}}
| <!--Opinion-->some support
|-
| <!--Name-->45nm pinetrail
| <!--Chipset-->D510 and NM10 + GMA3150
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->GMA3150
| <!--Audio-->ALC888B or ALC66x
| <!--USB-->{{yes}}
| <!--Ethernet-->RTL8111DL
| <!--Opinion-->some support
|-
| <!--Name-->Gigabyte GA-D525TUD (rev. 1.0 1.2 1.5)
| <!--Chipset-->D525 NM10
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->gma 3150
| <!--Audio-->HDAudio ALC887
| <!--USB-->
| <!--Ethernet-->rtl8169 rtl8111f
| <!--Opinion-->2012 64 - 2 ddr3 dimm slots max 8g - Mini-ITX Form Factor; 17.0cm x 17.0cm -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
|}
=====Socket 1366 (2009/10)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->Asus P6T DELUXE
| <!--Chipset-->x58 + ICH10 and Intel 1st gen. (Nehalem/Lynnfield) Core i7 (8xx) CPU
| <!--ACPI-->
| <!--IDE-->{{yes|1 port}}
| <!--SATA-->4 ports
| <!--Gfx-->2 PCIe x16 (r2.0) slots
| <!--Audio-->ADI AD2000B HD Audio
| <!--USB-->{{yes|4 USB2.0}}
| <!--Ethernet-->{{no|Marvell 88E8056 Gigabit}}
| <!--Opinion-->Firewire VIA VT6308 no
|-
| <!--Name-->gigabyte ex58 ds
| <!--Chipset--> x58 + ICH10
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->Realtek 8111D rtl8169
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket 1156 (2010)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->Acer Aspire M3910
| <!--Chipset-->i3
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->{{unk| }}
| <!--Gfx-->{{maybe|VESA intel HD}}
| <!--Audio-->{{unk|HDAudio with Realtek ALC}}
| <!--USB-->{{yes| }}
| <!--Ethernet-->{{unk| Realtek}}
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-H55M-S2H
| <!--Chipset-->H55
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->PCIe slot
| <!--Audio-->{{Yes|ALCxxx playback}} ALC888B (Rev1.x)
| <!--USB-->{{Yes| }}
| <!--Ethernet-->{{Yes|RTL8111D}} (Rev 1.x)
| <!--Opinion-->Tested but no support for WLAN Realtek 8188su
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->MSI H55M-E33 v1.0
| <!--Chipset-->E7636 M7636 H55 chipset so older i3/i5/i7 system
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->{{yes|HD Audio ALC889}}
| <!--USB-->
| <!--Ethernet-->{{Yes|PCI-E Realtek 8111DL}}
| <!--Opinion-->Works well
|-
| <!--Name-->Asus P7P55D
| <!--Chipset-->P55
| <!--ACPI-->
| <!--IDE-->{{unk| }}
| <!--SATA-->{{unk| }}
| <!--Gfx-->pci-e
| <!--Audio-->{{maybe | via codec}}
| <!--USB-->{{unk| }}
| <!--Ethernet-->{{maybe |rtl8169 Realtek RTL8111B/C RTL8112L }}
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket LGA 1155 H2 (2010/13)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->ASUS P8H61-I LX R2.0
| <!--Chipset-->H61
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sata
| <!--Gfx-->1 pci-e slot
| <!--Audio-->{{unk|HDAudio via7018s codec}}
| <!--USB-->USB3
| <!--Ethernet-->{{yes|rtl8169 8111f}}
| <!--Opinion-->2013 64bit up to intel ivybridge cpus - 2 ddr3 dimm slots -
|-
| <!--Name-->Asus P8H61-I/RM/SI mini-itx
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->2 sata
| <!--Gfx-->pci-e 2
| <!--Audio-->{{unk|HDAudio via7018s codec}}
| <!--USB-->
| <!--Ethernet-->{{yes|rtl8169 8111f}}
| <!--Opinion-->2013 64bit up to i3-2010 - OEM board from an RM machine but not ivybridge as the Asus BIOS isn't compatible with these, 0909 hacked one might work -
|-
| <!--Name-->asus p8h61-i lx r2.0/rm/si mini itx
| <!--Chipset-->h61
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->pci-e 2.0
| <!--Audio-->HDaudio with VIA codec
| <!--USB-->
| <!--Ethernet-->rtl8169 rtl8111e
| <!--Opinion-->2012 sandy and ivy - oem from rm machine 2 x 240-Pin DDR3 DIMM sockets max DDR3 1333MHz -
|-
| <!--Name-->Bewinner 63q9c7omvs V301 ITX
| <!--Chipset-->H61
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sata with nvme
| <!--Gfx-->pci-e 4
| <!--Audio-->HDAudio
| <!--USB-->
| <!--Ethernet-->Realtek 8106E 100M Network Card
| <!--Opinion-->2022 64
|-
| <!--Name-->Biostar H61 H61MHV2 H61MHV3 Ver. 7.0
| <!--Chipset-->H61 with Intel Pentium G 2xxx series CPU
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->pci-e
| <!--Audio-->Realtek ALC662 later ALC897
| <!--USB-->4 usb2
| <!--Ethernet-->rtl8169 Realtek RTL8111H
| <!--Opinion-->2014 - 2 ddr3 dimm slots -
|-
| <!--Name-->Gigabyte GA-H61M-D2-B3
| <!--Chipset-->H61 + Sandybridge
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 ports sata2
| <!--Gfx-->
| <!--Audio-->ALC889
| <!--USB-->2 ports
| <!--Ethernet-->Realtek RTL8111E
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-H61MA-D3V
| <!--Chipset-->H61 +
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 ports sata2
| <!--Gfx-->
| <!--Audio-->Maybe No Realtek ALC887 (Rev 2.0) ALC887 (Rev2.1)
| <!--USB-->2 ports
| <!--Ethernet-->Realtek RTL8111E
| <!--Opinion-->
|-
| <!--Name-->GA-H61M-S2PV
| <!--Chipset-->H61 with 2400k 2500k 2600k 2700k
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->pci-e 2.0 slot
| <!--Audio-->ALC887 (rev 1.0 2.0 2.1 2.2 2.3)
| <!--USB-->4 USB 2.0
| <!--Ethernet-->Rtl811E (1.0) 8151 (2.0) Rtl8111F (2.1 2.2 2.3)
| <!--Opinion-->Micro ATX Form Factor; 24.4cm x 20cm with 2 pci-e and 2 pci -
|-
| <!--Name-->Intel Classic Series DH61CR Desktop
| <!--Chipset-->H61 +
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 ports
| <!--Gfx-->
| <!--Audio-->Intel HD with ALC892
| <!--USB-->4 ports
| <!--Ethernet-->{{no|Intel 82579V}}
| <!--Opinion-->
|-
| <!--Name-->MSI H61M-P20 (G3) MS-7788
*retail MSI board
*OEM Advent, etc
| <!--Chipset-->H61
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->{{yes|four SATAII ports}}
| <!--Gfx-->1 PCI Express gen3 (retail) gen2 (oem) x16 slot
| <!--Audio-->{{yes|HDAudio ALC887 codec}}
| <!--USB-->{{yes|}}
| <!--Ethernet-->{{yes|Realtek 8105E 100M Network Card}}
| <!--Opinion-->2012 64bit - 2 ddr3 slots - 22.6cm(L) x 17.3cm(W) M-ATX Form Factor - BIOS - [https://www.arosworld.org/infusions/forum/viewthread.php?thread_id=1149&rowstart=140&pid=6009#post_6007 works well],
|-
| <!--Name-->MSI H61I-E35 (B3) MS-7677 Ver.1.2
| <!--Chipset-->H61
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sata2 3gbps
| <!--Gfx-->{{maybe|VESA 2d for hdmi and 1 pcie 2.0 x1 slot}}
| <!--Audio-->{{yes|https://www.arosworld.org/infusions/forum/viewthread.php?thread_id=1149&rowstart=140&pid=5861#post_5861 works}}
| <!--USB-->USB3 and USB2
| <!--Ethernet-->{{yes|rtl8169 rtl8111e}}
| <!--Opinion-->2012 64bit - 2 ddr3 slots -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus P8H67-M
| <!--Chipset-->H67 +
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->2 sata3 - 4 sata2
| <!--Gfx-->
| <!--Audio-->Intel HD with ALC887
| <!--USB-->6 USB2.0
| <!--Ethernet-->Realtek® 8111E
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus P8Z68-V LX
| <!--Chipset-->Z68 + Intel 2nd generation (Sandy Bridge) Core i7 (2xxx) CPU and possibly ivybridgev
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->{{yes|2 sata3 - 4 sata2}}
| <!--Gfx-->pci-e slot
| <!--Audio-->{{yes|HDAudio Intel HD with ALC887 codec}}
| <!--USB-->{{yes|2 USB3.0 - 4 USB2.0}}
| <!--Ethernet-->{{yes|rtl8169 Realtek® 8111E}}
| <!--Opinion-->2011 64bit SSE 4.1 and AVX - EFI bios - 4 ddr3 dimm slots -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte Z68AP-D3 (B3)
| <!--Chipset-->Z68 + Ivybridge
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->2 sata3 - 4 sata2
| <!--Gfx-->
| <!--Audio-->Intel HD with ALC889
| <!--USB-->2 USB3.0 - 4 USB2.0
| <!--Ethernet-->Realtek® 8111E
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus B75M-A
| <!--Chipset-->B75
| <!--ACPI-->
| <!--IDE-->{{yes| }}
| <!--SATA-->{{yes| }}
| <!--Gfx-->pci-e
| <!--Audio-->{{maybe|HDAudio with Realtek ® ALC887-VD codec}}
| <!--USB-->{{maybe| }}
| <!--Ethernet-->{{yes|rtl8169 Realtek ® 8111F-VB-CG }}
| <!--Opinion-->2013 64bit - 2 ddr3 slots -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->H77
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-H77-D3H 1.0 1.1
| <!--Chipset-->H77
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sata 3.0
| <!--Gfx-->pci-e
| <!--Audio-->{{No|HDAudio VIA VT2021 codec}}
| <!--USB-->
| <!--Ethernet-->{{No|Atheros GbE LAN chip}}
| <!--Opinion-->2013 64bit i5 3550 7 3770 - 4 DDR3 slots - 2 full pci-e 2 pci slots -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Gigabyte GA Z77 D3H with i3 3225 dual
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->pci-e
| <!--Audio-->{{No|HDAudio VIA VT2021 codec}}
| <!--USB-->
| <!--Ethernet-->{{No|Atheros GbE LAN chip}}
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket LGA 1150 H3 (2013/2016)=====
[[#top|...to the top]]
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->[https://theretroweb.com/motherboards/s/asus-b85m-e-rev-1-02 Asus B85M-E]
| <!--Chipset-->B85
| <!--ACPI-->
| <!--IDE-->{{yes| }}
| <!--SATA-->{{yes| }}
| <!--Gfx-->pci-e
| <!--Audio-->{{maybe|HDAudio with Realtek ® ALC887-VD2 codec}}
| <!--USB-->{{no| }}
| <!--Ethernet-->{{yes|rtl8169 Realtek 8111F}}
| <!--Opinion-->2014 64bit - 4 ddr3 slots -
|-
| <!--Name-->Gigabyte GA-H87N-WIFI mITX
| <!--Chipset-->H87 and Intel 4th generation (Haswell) Core i5 (4xxx) CPU
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->Intel HD with ALC892
| <!--USB-->
| <!--Ethernet-->Intel Atheros
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->ASUS H81I-PLUS Mini ITX
| <!--Chipset-->H81
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sata3 6gbps
| <!--Gfx-->pci-e 3.0 x4 slot
| <!--Audio-->{{unk|HDAudio with ALC8878 codec}}
| <!--USB-->USB3 USB2
| <!--Ethernet-->{{yes|rtl8169 rtl8111g}}
| <!--Opinion-->2014 64bit -
|-
| <!--Name-->Asus H81M-C H81M-P-SI
| <!--Chipset-->H81 with 4th generation (Haswell) Core i7 (4xxx) CPU
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->2x3g 2x6g
| <!--Gfx-->pci-e slot
| <!--Audio-->hdaudio alc887 vd
| <!--USB-->
| <!--Ethernet-->realtek 8111gr
| <!--Opinion-->2013 skt 1150 - 2 ddr3 max 16g - mini atx -
|-
| <!--Name-->Asus H81T
| <!--Chipset-->H81
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->2 sata
| <!--Gfx-->HD4000 igpu only
| <!--Audio-->HDAudio ALC887-VD
| <!--USB-->Intel USB3
| <!--Ethernet-->rtl8169 realtek 8111G
| <!--Opinion-->2013 64bit intel 4th gen mini itx - external dc brick with 19v rare barrel pin 7.4MM x 5.0MM - 2 ddr3 laptop sodimm slots -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-H81M-S2V
| <!--Chipset-->H81
| <!--ACPI-->
| <!--IDE-->{{N/A|}}
| <!--SATA-->
| <!--Gfx-->pci-e
| <!--Audio-->HDAudio ALC887
| <!--USB-->USB3
| <!--Ethernet-->Realtek® GbE LAN chip
| <!--Opinion-->2014 64bit up to i7 4790K - 2 DDR3 slots -
|-
| <!--Name-->Gigabyte GA-H81M-D3V (rev. 1.0)
| <!--Chipset-->H81
| <!--ACPI-->
| <!--IDE-->{{N/A| }}
| <!--SATA-->{{yes|2 sata2 2 sata3 }}
| <!--Gfx-->pci-e
| <!--Audio-->{{unk| HDAudio Realtek® ALC887 codec}}
| <!--USB-->{{unk|intel and VIA® VL805}}
| <!--Ethernet-->{{unk|rtl8169 Realtek }}
| <!--Opinion-->
|-
| <!--Name-->MSI H81M-E34 (MS-7817)
| <!--Chipset-->H81
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->{{yes| }}
| <!--Gfx-->PCIe 2.0 x16
| <!--Audio-->HDAudio with ALC887 codec
| <!--USB-->USB3
| <!--Ethernet-->{{yes|rtl8169 RTL8111G}}
| <!--Opinion-->2013 64bit -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus Z87-K
| <!--Chipset-->Z87 with 4th generation (Haswell) Core i7 4c8t i5 4c4t CPU
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->pci-e
| <!--Audio-->Intel HD with ALC
| <!--USB-->
| <!--Ethernet-->Realtek lan
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-Z87X-UD3H
| <!--Chipset-->Z87 Express
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->pci-e
| <!--Audio-->Intel HD with Realtek® ALC898 codec
| <!--USB-->
| <!--Ethernet-->intel
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA H97M D3H r1.0 r1.1 with i3 4360 or 4370 dual
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->pci-e
| <!--Audio-->Intel HD with ALC892
| <!--USB-->
| <!--Ethernet-->Realtek lan
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus Z97 A with i7 4790K
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->750, 960, 970 and 980 nvidia GTX cards
| <!--Audio-->Intel HD with ALC
| <!--USB-->
| <!--Ethernet-->intel lan ethernet
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA Z97X UD3H rev1.0 1.1 1.2
| <!--Chipset-->Z97 with i5 4690K
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->HDaudio with ALC1150
| <!--USB-->
| <!--Ethernet-->intel lan
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->MSI GAMING 5 Z97
| <!--Chipset-->Z97 with 4th generation (Haswell) Core i7 4c8t CPU
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->ASUS Q87M-E
| <!--Chipset-->Q87
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2014 64bit - 4 DDR3 slots -
|-
| <!--Name-->
| <!--Chipset-->H99
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket LGA2011V2 s2011-2 (2012/15)=====
[[#top|...to the top]]
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->
| <!--Chipset-->x79
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2013 Xeon e5-???? W TDP, e5-2667V2 W TDP, e5-????V2 W TDP, Sandybridge and Ivybridge V2
|-
| <!--Name-->Asus
| <!--Chipset-->X79
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket LGA2011V3 s2011-3 (2015/18)=====
[[#top|...to the top]]
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->
| <!--Chipset-->x99
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2016 Xeon e5-1620v3 130W TDP, e5-1650V3 (i7-5930K) 140W TDP, e5-2640V3 90W TDP, Haswell-EP
|-
| <!--Name-->Asus
| <!--Chipset-->X99
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->most cheap Ryzens are better nowadays
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Huananzhi X99-CD4
| <!--Chipset-->Intel C612 and X99
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sata 3 connectors and 1 m.2 nvme slot
| <!--Gfx-->pcie slot
| <!--Audio-->HDaudio with ALC897 codec
| <!--USB-->{{No|USB3}}
| <!--Ethernet-->{{maybe|rtl8169}}
| <!--Opinion-->2024 quality might not be great outside of a simple setup - 2 ddr4 dimms -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Keyiyou X99 XD4
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Machinist MR9A Pro
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2023
|-
| <!--Name-->Machinist MR9A Pro
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2023
|-
| <!--Name-->Mogul
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Qiyida X99 H9S
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2023
|-
| <!--Name-->Soyo
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket LGA 1151 Socket H4 (2015/2018)=====
[[#top|...to the top]]
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->Skylake CPUs have TPM 2.0 imbedded
|-
| <!--Name-->Asus H110 Plus H110M-A/DP
| <!--Chipset--> with 6th Gen Core and 7th with bios update
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->Sunrise Point-H SATA [AHCI mode] [8086 a102]
| <!--Gfx-->{{No|Skylake Integrated HD Graphics use PIC-E slot}}
| <!--Audio-->Intel HD Audio with Realtek ALC887 Audio CODEC
| <!--USB-->Sunrise Point-H USB 3.0 xHCI [8086: a12f] no usb2.0 fallback
| <!--Ethernet-->{{Yes|Realtek 8111GR or 8111H RTL8111 8168 8411}}
| <!--Opinion-->ATX with 3 pci-e and 2 DDR4 slots - uatx version smaller - turn off TLSF as it was causing AHI driver to corrupt. Turned off ACPI for errors but works fine once booted -
|-
| <!--Name-->ASUS H110M-R M-ATX
| <!--Chipset-->H110 6th Gen Skylake Core™ i7/Core™ 6950X i7-6970HQ i7-6700K 4c8t hyperthreading, i5/Core™ i5-6600K 4c4t i3/Pentium® / Celeron®
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 x SATA 6Gb/s
| <!--Gfx-->pci-e
| <!--Audio-->HDAudio Realtek® ALC887 codec
| <!--USB-->Intel USB3
| <!--Ethernet-->Realtek® RTL8111H
| <!--Opinion-->2016 64bit - 2 DDR4 DIMMS Max 32GB 2133MHz - 1 full pci-e and 2 pci-e 1 -
|-
| <!--Name-->Asus H110T
| <!--Chipset-->H110
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->2 sata
| <!--Gfx-->intel igpu only
| <!--Audio-->HDaudio
| <!--USB-->
| <!--Ethernet-->Dual Intel/Realtek GbE languard
| <!--Opinion-->2016 - mini itx 12v / 19v laptop type rare barrel pin 7.4MM x 5.0MM - 2 sodimm ddr4 slots - no pci-e slot -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-H110M-S2H MATX Rev1.0
| <!--Chipset-->H110
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sata
| <!--Gfx-->pci-e 3.0
| <!--Audio-->Realtek® ALC887 codec
| <!--USB-->2 (USB 3.1 Gen 1) ports with 4 us2
| <!--Ethernet-->Realtek® GbE LAN
| <!--Opinion--> 2 ddr4 slots
|-
| <!--Name-->Gigabyte ga-h110n
| <!--Chipset-->H110
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Yes| sata}}
| <!--Gfx-->{{maybe|Vesa 2d for Intel or PCI-e slot}}
| <!--Audio-->{{Maybe|HDaudio for ALC887 codec}}
| <!--USB-->{{Maybe| }}
| <!--Ethernet-->{{maybe|RTL8169}}
| <!--Opinion-->2016 mini-itx 6th gen
|-
| <!--Name-->Msi H110M-PRO-VH
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 x SATA 6Gb/s
| <!--Gfx-->pci-e 3.0
| <!--Audio--> Realtek® ALC887 Codec
| <!--USB-->
| <!--Ethernet-->rtl8169 rtl8111h
| <!--Opinion--> 6th gen intel - 2 ddr4 slots
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus H170 Pro Gaming
| <!--Chipset-->H170
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sata
| <!--Gfx-->pci-e
| <!--Audio-->HDAudio
| <!--USB-->Asmedia USB3.1/3.0
| <!--Ethernet-->intel lan
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->MSI Z170A TOMAHAWK
| <!--Chipset-->Z170
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sara, 1 x 2280 Key M(PCIe Gen3 x4/SATA), 1 x 2230 Key E(Wi-Fi)
| <!--Gfx-->pci-e
| <!--Audio-->HDAudio
| <!--USB-->
| <!--Ethernet-->intel lan
| <!--Opinion-->2016 64bit up to i7 7700k - 2 DDR4 -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->GIGABYTE GA-B250M-DS3H HD3P D3H D2V
| <!--Chipset-->B250
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2018 coffee lake intel 8th gen
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus
| <!--Chipset--> with Kaby Lake X Intel 7th Gen
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion--> up to 16 pcie lanes
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus
| <!--Chipset--> Z390 with Kaby Lake X
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion--> up to 16 pcie lanes
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset--> Q370M
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset--> H370M
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset--> B360M
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus Rampage
| <!--Chipset-->x299 with i9
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion--> - up to 24 to 44 pcie lanes
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte
| <!--Chipset--X299 >
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|}
=====Socket LGA 1200 (2020/2022)=====
[[#top|...to the top]]
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->MSI H510M-A PRO (MS-7D22)
| <!--Chipset--> with 10th gen Comet Lake X
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2021 64bit - up to 16 pcie lanes rebar possible
|-
| <!--Name-->Asus PRIME H410M-E
Asrock H470M-HDV/M.2
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus
| <!--Chipset--> with 11th gen Rocket Lake X
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion--> up to 16 pcie lanes
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|}
=====Socket LGA 1700 (2023/ )=====
[[#top|...to the top]]
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->Alder Lake / 14th gen Raptor Lake
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2021 2022 64bit - QoS work to 2 level cpus, P down to E cores -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->Meteor Lake ultra 5 7 1xxH series 1
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2023 2024 64bit 10nm - 3 level cpus, Low Power Island (SOC tile) to E onto P cores -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset--> 15th gen Arrow Lake
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->Lunar lake ultra 5 7 2xxV series 2
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2025 64bit 7nm -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->Nova Lake
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2026 64bit -
|-
| <!--Name-->
| <!--Chipset-->Panther Lake
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2026 64bit - either 44, 484, or 448 tiled cores 18A process - core ultra x9 288h, x7 358H, -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket LGA 1954 (2027/ )=====
[[#top|...to the top]]
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->Nova Lake-S
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->Serpent Lake, Titan Lake, and Razer Lake
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2027
|-
|}
=====Socket LGA (203x/203x)=====
[[#top|...to the top]]
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->MSI
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|}
===Chromebooks===
For most (EOL) cromebooks, the recommended UEFI path forward is to:
*put the device into Developer Mode
*disable firmware write protection
*flash MrChromebox's UEFI Full ROM firmware
*install ChromeOS Flex, Linux, etc
See [https://mrchromebox.tech/#home MrChrome], [https://mrchromebox.tech MrChrome] and the [https://www.reddit.com/r/chrultrabook/ chrultrabook subreddit] for more info
ChromeOS has several different boot modes, which are important to understand in the context of modifying your device to run an alternate OS:
*Normal/Verified Boot Mode
Can only boot Google-signed ChromeOS images
Full verification of firmware and OS kernel
No root access to the system, no ability to run Linux or boot other OSes
Automatically enters Recovery Mode if any step of Verified Boot fails
Default / out-of-the-box setting for all ChromeOS devices
*Recovery Mode
User presented with Recovery Mode boot screen (white screen with 'ChromeOS is missing or damaged')
Boots only USB/SD with signed Google recovery image
Automatically entered when Verified Boot Mode fails
Can be manually invoked:
On Chromebooks, via keystroke: [ESC+Refresh+Power]
On Chromeboxes, by pressing a physical recovery button at power-on
On Convertibles/Tablets, by holding the Power, Vol+, and Vol- buttons for 10s and then release
Allows for transition from Verified Boot Mode to Developer Mode
On Chromebooks/Chromeboxes, via keystroke: [CTRL+D]
On Convertibles/Tablets, via button press: Vol+/Vol- simultaneously
Booting recovery media on USB/SD will repartition/reformat internal storage and reload ChromeOS
Note: The ChromeOS recovery process does not reset the firmware boot flags (GBB Flags), so if those are changed from the default, they will still need to be reset for factory default post-recovery.
*Developer Mode
"Jailbreak" mode built-in to every ChromeOS device
Loosened security restrictions, allows root/shell access, ability to run Linux via crouton
Verified Boot (signature checking) disabled by default, but can be re-enabled
Enabled via [CTRL+D] on the Recovery Mode boot screen
Boots to the developer mode boot screen (white screen with 'OS verification is off' text),
The user can select via keystroke
<pre>
ChromeOS (in developer mode) on internal storage ( [CTRL+D] )
ChromeOS/ChromiumOS on USB ( [CTRL+U] )
Legacy Boot Mode ( [CTRL+L] )
</pre>
Boot screen displays the ChromeOS device/board name in the hardware ID string (eg, PANTHER F5U-C92, which is useful to know in the context of device recovery, firmware support, or in determining what steps are required to install a given alternate OS on the device.
*Legacy Boot Mode
Unsupported method for booting alternate OSes (Linux, Windows) via the SeaBIOS RW_LEGACY firmware
Accessed via [CTRL+L] on the developer mode boot screen
Requires explicit enabling in Developer Mode via command line: sudo crossystem dev_boot_legacy=1
Most ChromeOS devices require a RW_LEGACY firmware update first
Boots to the (black) SeaBIOS splash screen; if multiple boot devices are available, prompt shows the boot menu
Note: If you hear two beeps after pressing [CTRL+L], then either your device doesn't have a valid Legacy Boot Mode / RW_LEGACY firmware installed, or legacy boot capability has not been been enabled via crossystem.
https://www.howtogeek.com/278953/how-to-install-windows-on-a-chromebook/
Chromebooks don’t officially support other OSs. You normally can’t even install as Chromebooks ship with a special type of BIOS designed for Chrome OS. But there are ways to install, if you’re willing to get your hands dirty and potentially ruin everything
[https://mrchromebox.tech/#devices Firmware Compatibility]
[https://wiki.galliumos.org/Hardware_Compatibility Here is the list of hardware that the GalliumOS supports and information on getting Gallium OS on to those devices]
Development on GalliumOS has been discontinued, and for most users, GalliumOS is not the best option for running Linux due to lack of hardware support or a kernel that's out of date and lacking important security fixes.
Meet Eupnea and Depthboot, the successors to Galliumos and Breath [https://eupnea-linux.github.io This is the bleeding edge]
Most older Chromebooks need the write-protect screw removed in order to install MrChromebox's firmware that allows you to install other operating systems. Most newer Chromebooks don't work in the same way as there is no write-protect screw on them.
Very rough guide to '''total''' (i.e. all cores / threads) processor performance (AROS usually uses only the [https://gmplib.org/gmpbench one core])
[[#top|...to the top]]
<pre>
060000 AMD Ryzen 9 7900X (AM5 170W),
056000 AMD Ryzen 9 5950X,
055000 AMD Ryzen 9 5900X3D,
053000 AMD Ryzen 9 5900X (AM4 105W), AMD Ryzen 9 3950X (105W),
044000 AMD Ryzen 7 5800X3D,
042000 AMD Ryzen 9 6900HX, AMD Ryzen 5 5600X3D (AM4 95W), AMD Ryzen 7 PRO 5750GE (AM4 35W),
039000 AMD Ryzen 9 5900HS, Intel Core i7-12700T, AMD Ryzen 7 7735HS (8c16t 45W), AMD 8840U,
038000 AMD Ryzen 7 5800H (FP6 45W), AMD Ryzen 7 6800U, Intel Core i5-12490F, Intel Core i5-12500E,
037000 AMD Ryzen 7 5800HS (FP6 35W), AMD Ryzen 5 8500G 8600GE (AM5 6c12t 35W), AMD Ryzen Z2 (8c16t),
036500 AMD Ryzen 7 5700G (AM4 8c16t 65W), AMD Ryzen 9 6900HS, Intel Core i7-12800H,
036200 AMD Ryzen 7 5700GE (AM4 8c16t 35W), AMD Ryzen Z1 Extreme (top TDP), AMD Ryzen 5 8600G (AM5 65W),
036000 AMD Ryzen 5 3600X (Am4 95W), AMD Ryzen 5 5500 (AM4 65W), AMD Ryzen 5 5600 (65W),
035000 AMD Ryzen 5 6600H, Intel Core i5-12400F,
031000 AMD Ryzen™ 9 8945HS, Ryzen™ 7 8845HS, AMD Ryzen 7 7840U,
030000 AMD Ryzen 7 4800U, AMD Ryzen 4800H, Intel Core i5-11400F, Intel Zeon E5-2697A V4,
029500 AMD Ryzen 5 4500 (AM4 65W), AMD Ryzen 5 3600 (65W), Apple M3 Pro 12c,
029000 AMD Ryzen 5 4600G (AM4 65W), AMD Ryzen 5 PRO 4650GE (AM4 35W), AMD Ryzen 7 PRO 1700X (AM4 95W),
028500 AMD Ryzen 5 PRO 5675U, AMD Ryzen 7 1700 (AM4 65W), AMD Ryzen 7 2700 (65W), Ryzen 3 7540U,
028000 AMD Ryzen 5 PRO 5650U, 5 5560U (FP6 25W 6c12t Zen3), Intel Core i5-13500H, AMD Ryzen 7 4800HS,
027700 AMD Ryzen 9 PRO 7940HS (FP8 65W), AMD 8745HS, AMD Ryzen H255 AI, AMD Ryzen 3 7545U,
027500 AMD Ryzen 3 7736U, AMD Ryzen 5 7640U,
027400 AMD Ryzen 5 8540U, AMD Ryzen 5 PRO 5650GE (AM4 6c12t 35W), AMD Ryzen 5 PRO 4650G (AM4 45W),
027300 AMD Ryzen 7 PRO 4750GE, AMD Ryzen 5 5600H, AMD Ryzen 7 5825U (FP6 8c16t 15W),
027200 AMD Ryzen 5 6600U, AMD Ryzen 7 2700X, AMD Ryzen 5 5600GE (AM4 35W), AMD Ryzen Z1,
027100 AMD Ryzen 7 7730U (FP6 15W 8c16t), AMD Ryzen 7 5800U (FP6 25W 8c16t), Ryzen 9 4900H,
027000 AMD Ryzen 7 PRO 4750U (8c16t), Ryzen 5 7430U (FP6 6c12t), Ryzen 5 PRO 6650U, Intel 10500H,
026500 AMD Ryzen 7 PRO 7840HS (FP7 65W), AMD Ryzen 7 8840HS, AMD Ryzen Z2 Extreme,
025000 AMD Ryzen 5 5600U (FP6 25W hot 6c12t Zen3), AMD Ryzen 5 2600 (65W), Ryzen 5 7530U,
024500 AMD Ryzen 5 4600HS (FP6 35W 6c12t), Apple M1 Pro, AMD Ryzen 5 5625U (FP6 15W 6c12t),
023700 AMD Ryzen 3 PRO 5350GE (AM4 35W), AMD Ryzen 5 3500X (AM4 95W), Intel Core i7-9700,
023500 AMD Ryzen 5 1600X (95W), AMD Ryzen 3 5300GE (AM4 4c8t 35W), AMD Ryzen 7 5700U (FP6 25W 8c16t Zen2),
023200 AMD Ryzen 3 7330U (FP6 15W 4c8t), AMD Ryzen 7 4700U (FP6 25W 8c8t), AMD Ryzen 5 4400G,
023000 Intel Core i7-1255U, Intel Core i7 13700H, Ryzen 7640HS,
022000 AMD Ryzen Z2 Go (4c8t), AMD Ryzen 5 5500U (FP6 25W 6c12t Zen2), Snapdragon 8 Elite,
020500 AMD Ryzen 3 4300G (AM4 65W), AMD Ryzen 3 5450U 5425U, AMD Ryzen 5 PRO 4650U (6c12t),
019500 Intel Core i5-1135G7, AMD Ryzen 5 5500H, AMD Ryzen 5 4600U (FP6 25W 6c), AMD Ryzen 5 2600 (65W),
019250 Intel Core i5-1145G7,
019000 AMD Ryzen 5 3400G (AM4 65W), AMD Ryzen 5 2500X, AMD Ryzen 5 7520U, AMD Ryzen V3C18I (? 15W),
017750 AMD Ryzen 5 3400GE (AM4 35W), Intel Core i5-8400, AMD Ryzen 5 1500X (AM4 65W), Xbox One Series X,
017500 Intel Core i7-6700K, Intel i5-10400, AMD Ryzen 5 4500U (FP6 25W 6c6t), AMD Ryzen 3 5400U,
017000 AMD Ryzen 3 PRO 4350GE (AM4 35W), AMD Ryzen 3 5300U (FP6 25W 4c8t), Intel Core i5-11300H,
016500 AMD Ryzen 7 3750H, AMD Ryzen Embedded V1756B (FP5 45W), AMD Ryzen 3 PRO 4200GE, SD G3 Gen3,
016250 Intel Core i5-1035G7, intel core i5 7600 (4c4t 65W),
016000 AMD Ryzen 5 2400G (AM4 65W), AMD Ryzen 5 3550H, Ryzen 5 PRO 3350GE (4c 8t), Intel Core i5-8500T,
015500 AMD Ryzen Embedded R2544,
015000 AMD Ryzen 3 7320U, Ryzen 7 3700U, Ryzen 3200G (AM4 65W), Intel Core i7-8550U, Intel Core i5-1035G1,
014000 AMD Ryzen 5 2400GE (AM4 35W), Intel Core i7-6700T, AMD Ryzen 5 3550U,
013500 AMD Ryzen 5 3500U (FP5 15W 4c8t), AMD Ryzen 3 4300U, AMD Athlon Gold 4150GE, AMD Ryzen 5 3450U,
013250 AMD Ryzen 3 3200GE (AM4 45W), AMD Ryzen 3 1300X (65W), AMD Ryzen 3 2200G, Xbox One Series S,
013000 AMD Ryzen Embedded V1605B (FP5 25W), AMD Ryzen 2700U, AMD Ryzen R2514,
012500 AMD Ryzen 5 2500U (FP5 25W 4c8t), Intel Core i3-8300T, Intel Xeon X5680, Intel i3-1115G4 (2c4t),
012300 Intel Core i7-8565U, Intel Core i5-8350U, Intel Core i7-8700, Allwinner A733 (2 A76, 6 A55),
012200 ARM Cortex-X3 Prime Snapdragon SD8G2 Gen2 4nm 64-bit Kryo CPU, i5-8250U (4c8t),
012000 AMD Ryzen 3 2200GE, AMD Ryzen 3 1200 (65W), AMD Ryzen 5 3500C,
011500 AMD Ryzen 3 3300U, Intel Core i3-8100T, Intel Core i5-8265U, Intel i5-10210U, CORE i5-10310U,
010500 AMD Ryzen 3 2300U (FP5 25W 4c4t), Allwinner A527 (8 A55), Intel i5 4690K,
010300 Intel Core i7-3630QM, Intel Core i5-6600T, Intel Core i5-4670K,
010200 Intel Core i5-6440HQ, Intel Core i7-3610QM, Snapdragon SD865,
010000 AMD FX-8320E (AM3+ 125W 8c8t), Intel Core i5-7500T, Intel Core i5-4690, Intel i5 4690T,
009000 Spectrum Unisoc Tiger T7280 (T620), Cortex-X2, MediaTek Dimensity 1300 (4 A78, 4 A55),
008700 AMD FX-6130 (AM3+ 90W 6c6t), Intel Core i5-7400T, Intel Core i5-4590T,
008500 Intel Core i5-6500T, AMD Athlon 300GE (AM4, 35W), AMD Athlon Gold 7220U,
008000 AMD Ryzen R1606G (FP5 15W), AMD FX-6300 (AM3 65W 6c6t), Intel Core i5-2500K,
007500 AMD Ryzen 3 3200U, AMD Ryzen 3 3250U, Intel Alderlake ULX N100 / N95,
007200 AMD Ryzen 3 2200U (FP5 25W 2c4t), Intel Core i3-7100T, Intel Twinlakes N150 N200, Xbox(TM) One S,
007100 AMD Ryzen R1505G (FP5, 15W), RK3576 4 A72, 4 A53, Snapdragon XR2 Gen 1, Intel i7-6600U and 7600U,
006600 Qualcomm Snapdragon 888 5G, AMD Athlon 300U (FP5 2c4t 15W), Intel Core i7-7500U, AMD V1202B,
006500 Intel Core i7-6500U, AMD Athlon Gold 3150U, Intel Celeron N5105 (FCBGA1338 15W), SD 685,
006300 Intel Core i3-8130U (15W), Intel Celeron N5095 (FCBGA1338 15W), Intel Core i3-6100T,
006100 Intel Core i5-6300U, Intel Core i5-7200U (2c4t), Intel i7-5500U, Intel Core i7-6600U (2c4t),
006000 Intel Core i5-6200U (2c4t), Intel Core i3-7130U, Intel i7-4500U, Qualcomm Snapdragon 888 4G,
005950 Intel Core i5-4570T, Intel Core i5-5257U, Rockchip RK3588 (4 A76, 4 A55), Snapdragon 7325,
005900 Intel Xeon X5550, Intel Core i5-4300M, MediaTek Dimensity 1200 (4 A78, 4 A55), Unisoc 7255 (T616),
005800 Intel Celeron J4125 J4105 (FCBGA1090 15W), Intel Core i5-3470T, AMD A8-6600K APU, AMD 3015E (2c4t),
005600 Intel Core i5-3360M, Intel Core i7-3520M, Intel Core i5-4210M, Intel Pentium G4600T,
005400 MediaTek Dimensity 900 (2 A78, 6 A55), AMD Athlon Silver 7120U, Snapdragon 860,
005300 AMD PRO A12-9800B 7th Gen APU (FP4 15W), AMD FX-4300 4c4t, AMD Ryzen R1305G,
005250 Intel Core i5-3230M, AMD FX-7600P, Intel Pentium G4400, Unisoc T7200 (Unisoc T606 2 A76, 6 A55),
005200 AMD PRO A10-8770E, AMD A10-9700E, AMD PRO A10-9700B (FP4 15W), Intel Core i3-4130T,
005100 AMD RX-427BB (FP3 15W), AMD A10-9620P, AMD A12-9720P, Intel Core i3-8145U, AMD A12-9830B,
005050 AMD A8-5500 (FM2 65W), AMD A10 PRO-7800B APU, Intel Pentium Silver N5000, Intel Core i7-5500U,
005000 Intel Core i5-5300U, Intel Core i5-3320M (2c4t), Intel Core i5-5350U, Unisoc T618 (2 A73 6 A53),
004900 Intel Core i5-4300U, Intel Core i5-5200U, Intel Core i3-4100M, Snapdragon 662 (SM6115),
004860 Intel Core i7-2620M, Intel Core i7-2640M, AMD Athlon Silver 3050U 3050e, Intel i3-7020U,
004650 Intel Core i5-2520M (2c4t), Intel Core i5-3210M, AMD A10-9600P (FP4 4c 15W), Pentium 4415U,
004625 Intel Core i3-7100U (FCBGA1356 15W), ARM A76 RK3588S, AMD A10-6800B APU,
004600 AMD PRO A8-9600B, AMD PRO A12-8830B, AMD PRO A10-8730B, AMD A12-9700P, Intel Core i3-6100U,
004200 AMD A10-8700P A8-8600P, Intel Core i5-4200U, Intel Core i5-2540M, Intel i3-6006U, Intel i3-4150T,
004000 Intel Core i5-2430M, AMD PRO A8-8600B, AMD 3020e, Intel Core i3-5005U, Mediatek MT6797 Helio X20,
003850 Intel Core i5-2410M (2c4t), Intel Core i3-2120 (LGA1155 65W), Mediatek MT8786,
003800 AMD A10-4600M APU, AMD A10 PRO-7350B APU, AMD A10-5750M APU, Rockchip RK3399,
003600 AMD A8-6500T APU, AMD A8-7410 APU, AMD PRO A6-8550B, AMD A8-5550M (4c4t),
003500 AMD GX-424CC SOC (FT3b 25W 4c4t), ARM A75 Unisoc Tiger T610 (Spreadtrum) (8c 5W),
003400 AMD A10-7300 APU, AMD A6-7310 APU, AMD A8-6410, AMD A10-5745M APU, Intel Core i3-4000M,
003350 Intel Pentium G2020, Intel Core i3-3120M (G2 2c4t), AMD R-464L APU, Intel® Core m5-6Y57 (2c4t),
003300 AMD GX-420CA SOC (FT3 BGA769 25W), AMD A6-9500E, Intel Celeron N4200, AMD A6-5200 ( 25W 2c2t),
003200 AMD A6-6310 APU, AMD A6-6400B APU, AMD A6-8570E, AMD A8-4500M APU, AMD A6-7400K APU
003000 AMD A8-7150B, AMD A9-9410, A9-9420, A9-9425, AMD A6-8500B (FP4 15W), AMD A8-7100,
002900 AMD PRO A6-8530B, AMD A6-8500P, AMD A8-3500M APU, Intel Core i3-2120T,
002700 AMD Embedded GX-420GI (FP4 15W), AMD PRO A6-9500B, AMD GX-415GA, AMD A4-6210 APU,
002600 AMD A6-9225, AMD A8-4555M APU, AMD A4-5000 APU (FT3 15W), AMD A6-9220, AMD A6-3420M APU,
002450 Intel Celeron 2950M, Intel Pentium N3700, Intel Core i3-2350M, Allwinner A523 (8 A55),
002400 Intel Celeron N3150, Intel Core i3-2330M, Intel Xeon W3505, AMD A6-9210, Allwinner H618 (4 A53),
002300 Intel Celeron N3350, AMD A4-9120, AMD A4-9125, Intel Core i3-2310M, Intel Celeron 3865U,
002200 AMD A9-9420e, AMD A6-5350M APU, AMD E2-6110 APU, AMD E2-9000e, Celeron N4500, Intel N3710,
002000 AMD GX-412HC, AMD A4-4300M APU, AMD A6 PRO-7050B APU, AMD A6-4400M APU, AMD A6-7000,
001925 Intel Core2 Duo E6700, Intel Pentium Extreme Edition 965, Intel Core i3-370M, Celeron N4020,
001750 Intel Core i3-2365M 2375M, AMD A4-9120C, Intel Core2 Duo T8300, Qualcomm MSM8939,
001600 AMD GX-222GC (BGA769 FT3b 15W), AMD A4-9120e, AMD Embedded GX-215JJ, AMD A4-4355M APU,
001550 Intel Core2 Duo SL9400 T7600 T6600, AMD E2-3200, AMD A6-9220e, Mediatek MT8783, AMD E2-3800,
001500 AMD GX-218GL SOC, AMD A6-4455M, AMD A4-5150M APU, ARM A55 RK3566 (4c 3W), Intel Core2 Duo T8100,
001400 AMD GX-217GA SOC, ARM Cortex-A53 4c4t H700, AMD A4-3300M APU, Allwinner A133P A64 (4 A53),
001300 AMD Turion 64 X2 Mobile TL-64 TL-62, Intel Core2 Duo T7300, Intel Core2 Duo T5600, AMD RX-216TD,
001250 AMD GX-412TC SOC, AMD A4-3320M APU, AMD Athlon 64 X2 QL-66, Intel Core2 Duo T7200
001200 AMD Athlon 64 X2 2c TK-57, AMD Turion 64 X2 Mobile TL-60 RM-74, AMD E1-2500, AMD E2-7015,
001150 Intel Core2 Duo T5550, Intel Core2 Duo L7500, AMD E2-3000M APU, ARM A35 RK3266, AMD E2-7110,
001100 Intel Core2 Duo T5300, AMD Athlon 64 X2 3800, Intel Core2 Duo E4300, Mediatek MT8127,
001050 AMD E1-6010 APU, Intel Pentium T4300, Intel Celeron N2840,
001050 AMD Athlon 64 FX-57, AMD Athlon 64 X2 Dual-Core TK-55, AMD Turion 64 X2 Mobile TL-52
001000 Intel Core2 Duo T5500, Intel Core2 Duo L7300, Intel Core2 Duo SU9400,
000950 AMD G-T56N, AMD Athlon 64 3100+, AMD E2-2000 APU,
000950 AMD Turion 64 X2 Mobile TL-50, AMD E1-2200 APU, Intel Celeron U3400,
000925 AMD TurionX2 Dual Core Mobile RM-72, AMD Sempron 140
000920 Intel Celeron SU2300, Intel Core2 Duo T5200, AMD Turion 64 X2 Mobile TL-56
000890 AMD E2-1800 APU, AMD Turion 64 X2 Mobile TL-58
000880 AMD G-T56E, AMD G-T48E,
000860 AMD E-450 APU, AMD E-350 APU, AMD Athlon LE-1620
000820 AMD A4-1250 APU, AMD Athlon LE-1600,
000810 AMD E1-2100 APU, Intel Core Duo T2500,
000810 Intel Atom D510, Intel Core2 Duo U7500,
000800 AMD Geode NX 2400+, AMD Turion 64 Mobile ML-42, AMD Athlon II Neo K325,
000760 AMD V140, AMD E1-1200 APU, AMD Athlon 64 3300+,
000730 Intel Core Duo T2400, AMD Turion 64 Mobile MK-38, AMD Sempron 3600+,
000700 Intel Core2 Duo U7600 U7700, AMD Sempron LE-1200, AMD V120
000680 AMD GX-212JC SOC, AMD E-300 APU, AMD A4-1200 APU,
000670 AMD Turion 64 Mobile MK-36 ML-37 ML-40, Mobile AMD Sempron 3800+
000640 Intel Atom N2600, Intel Atom N570, Mobile AMD Athlon 64 3200+
000640 Intel Core Duo T2300, Intel Core Duo T2050,
000630 VIA Eden X2 U4200, AMD Sempron LE-1100, AMD Sempron 3100+ 3600+,
000620 AMD C-70 C70 APU, Intel Atom 330, AMD G-T40N, AMD Athlon Neo MV-40,
000610 Intel Core2 Duo U7300, AMD Athlon II Neo K125 K145,
000600 Intel Atom N550, Intel Pentium 4, AMD Athlon 64 2800+,
000580 AMD C-60 C60, AMD G-T40E, AMD Sempron LE-1250
000530 AMD C-50 C50, Intel Celeron M 723, AMD Sempron 210U,
000490 AMD GX-210JA SOC, PowerPC 970 G5 IBM's 970 server CPU (2c),
000470 Mobile AMD Sempron 3500+, Mobile AMD Athlon XP-M 2200+,
000460 AMD Athlon XP 2500+, AMD Sempron 3500+, Mobile Intel Pentium 4,
000440 Intel Atom D425, Intel Atom N470, POWER 4 PPC,
000410 Intel Pentium M, Intel Celeron M, AMD Sempron 2300+
000400 Intel Atom N450, AMD Sempron 2400+,
000340 Intel Atom D410, AMD G-T52R, AMD C-30, AMD Sempron 2200+
000330 Intel Atom N455, Intel Atom N280, Intel Atom N270 (1c1t 2W), Intel P3,
000320 Freescale NXP QorIQ P1022
000310 PowerPC G4 7447 1Ghz (1c1t 15W), PPC440 core,
000230 PowerPC PPC G3/PPC 750,
000160 Pentium II, Motorola 68060
000080 Intel 80486, Motorola 68030,
000040 Intel 80386,
000030 Motorola 68020
000008 Motorola 68000
</pre>
=== Recommended hardware (32-bit) ===
[[#top|...to the top]]
Recommended hardware is hardware that has been tested with latest release of AROS and is relatively easy to purchase second hand (ie. ebay). This hardware also comes with commitment that compatibility will be maintained with each future release.
If in future decision will be made to drop any of the recommended hardware from the list (for example due to it no longer being available for purchase), such hardware will move to list of legacy supported systems and will have an indicated end of life date so that users have time to switch to other hardware.
{| class="wikitable sortable" width="100%"
| <!--OK-->{{Yes|'''Works well'''}} || <!--Not working-->{{No|'''Does not work'''}} || <!--Not applicable-->{{N/A|'''N/A not applicable'''}}
|-
|}
==== Virtual Hardware ====
{| class="wikitable" width="100%"
! width="20%" |Name
! width="5%" |Storage
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |Ethernet
! width="5%" |Wireless
! width="10%" |Additional hardware
! width="45%" |Comments
|-
| VirtualBox 7.x (Other/Unknown template) || {{Yes|IDE<br/>SATA(AHCI)}} || {{Yes|VMWARESVGA}} || {{Yes|HDAudio}} || {{Yes|PCNET32<br/>E1000}} || NOT APPLICABLE || NOT APPLICABLE || <!--Comments-->
|-
| VMware 16+ (Other32 template) || {{Yes|IDE<br/>SATA(AHCI)}} || {{Yes|VMWARESVGA}} || {{Yes|SB128}} || {{Yes|PCNET32}} || NOT APPLICABLE || NOT APPLICABLE || <!--Comments-->
|-
| QEMU 8.x ("pc" and "q35" machines) || {{Yes|IDE<br/>SATA(AHCI)}} || {{Yes|VESA}} || {{Yes|SB128}} || {{Yes|PCNET32}} || NOT APPLICABLE || NOT APPLICABLE || <!--Comments-->
|-
|}
==== Laptops ====
{| class="wikitable" width="100%"
! width="20%" |Name
! width="5%" |Storage
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |Ethernet
! width="5%" |Wireless
! width="10%" |Additional hardware
! width="45%" |Comments
|-
| ACER Aspire One ZG5 || {{Yes|IDE<br/>SATA(IDE)}} || {{Yes|GMA}} || {{Yes|HDAudio}} || {{Yes|RTL8169}} || {{Yes|ATHEROS}} || NOT APPLICABLE || <!--Comments-->
|-
| Dell Latitude D520 || {{Yes|IDE}} || {{Yes|GMA}} || {{Yes|HDAudio}} || {{Yes|BCM4400}} || {{No|}} || {{Yes|Atheros AR5BXB63}} || * select Intel Core 2 64-bit version, not Celeron 32-bit version <br/> * replace WiFi card to get wireless working
|-
|}
==== Desktop Systems ====
{| class="wikitable" width="100%"
! width="20%" |Name
! width="5%" |Storage
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |Ethernet
! width="5%" |Wireless
! width="10%" |Additional hardware
! width="45%" |Comments
|-
| Fujitsu Futro S720 || {{Yes|SATA(AHCI)}} || {{Yes|VESA}} || {{Yes|HDAudio}} || {{Yes|RTL8169}} || NOT APPLICABLE || NOT APPLICABLE || * no 2D/3D acceleration<br/> * use USB ports at back
|-
|}
==== Motherboards ====
{| class="wikitable" width="100%"
! width="20%" |Name
! width="5%" |Storage
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |Ethernet
! width="5%" |Wireless
! width="10%" |Additional hardware
! width="45%" |Comments
|-
| ASUS P8Z68V LX || {{Yes|SATA(AHCI)}} || {{Yes|VESA}} || {{Yes|HDAudio}}|| {{Yes|RTL8169}} || NOT APPLICABLE || {{Yes|GeForce 8xxx/9xxx}} || * add external PCIe video card for better performance
|-
| Gigabyte GA-MA770T UD3/UD3P || {{Yes|IDE<br/>SATA(AHCI)}} || NOT APPLICABLE || {{Yes|HDAudio}}|| {{Yes|RTL8169}} || NOT APPLICABLE || {{Yes|GeForce 8xxx/9xxx}} || * requires external PCIe video card
|-
| ASUS M2N68-AM SE2 || {{Yes|IDE}} || {{Yes|NVIDIA}} || {{Yes|HDAudio}}|| {{Yes|NVNET}} || NOT APPLICABLE || {{Yes|GeForce 8xxx/9xxx}} || * connecting a disk via SATA connector is not supported at this time <br/> * add external PCIe video card for better performance
|-
| Gigabyte GA-H55M-S2H || {{Yes|IDE<br/>SATA(AHCI)}} || {{Yes|VESA}} || {{Yes|HDAudio}}|| {{Yes|RTL8169}} || NOT APPLICABLE || {{Yes|GeForce 8xxx/9xxx}} || * add external PCIe video card for better performance
|-
|}
==== Legacy supported hardware ====
{| class="wikitable" width="100%"
! width="20%" |Name
! width="5%" |Storage
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |Ethernet
! width="5%" |Wireless
! width="10%" |Additional hardware
! width="10%" |EOL
! width="35%" |Comments
|-
| iMica || {{Yes|IDE}} || {{Yes|GMA}} || {{Yes|HDAudio}}|| {{Yes|RTL8169}} || NOT APPLICABLE || NOT APPLICABLE || 2026-12-31 ||
|-
| Gigabyte GA-MA770 UD3 || {{Yes|IDE<br/>SATA(IDE)}} || NOT APPLICABLE || {{Yes|HDAudio}}|| {{Yes|RTL8169}} || NOT APPLICABLE || {{Yes|GeForce 8xxx/9xxx}} || 2026-12-31 || * requires external PCIe video card
|-
|}
=== Recommended hardware (64-bit) ===
[[#top|...to the top]]
Recommended hardware is hardware that has been tested with latest release of AROS and is relatively easy to purchase second hand (ie. ebay). This hardware also comes with commitment that compatibility will be maintained with each future release.
==== Virtual Hardware ====
{| class="wikitable" width="100%"
! width="20%" |Name
! width="5%" |Storage
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |Ethernet
! width="5%" |Wireless
! width="10%" |Additional hardware
! width="45%" |Comments
|-
| VirtualBox 7.x (Other/Unknown (64-bit) template) || {{Yes|IDE<br/>SATA(AHCI)}} || {{Yes|VMWARESVGA}} || {{Yes|HDAudio}} || {{Yes|PCNET32<br/>E1000}} || NOT APPLICABLE || NOT APPLICABLE || * No accelerated 3D support
|-
| VMware 16+ (Other64 template) || {{Yes|IDE<br/>SATA(AHCI)}} || {{Yes|VMWARESVGA}} || {{Yes|SB128}} || {{Yes|E1000}} || NOT APPLICABLE || NOT APPLICABLE || * No accelerated 3D support
|-
| QEMU 8.x ("pc" and "q35" machines) || {{Yes|IDE<br/>SATA(AHCI)}} || {{Yes|VESA}} || {{Yes|SB128}} || {{Yes|PCNET32}} || NOT APPLICABLE || NOT APPLICABLE || * No accelerated 3D support
|-
|}
==== Motherboards ====
{| class="wikitable" width="100%"
! width="20%" |Name
! width="5%" |Storage
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |Ethernet
! width="5%" |Wireless
! width="10%" |Additional hardware
! width="45%" |Comments
|-
| ASUS P8Z68V LX || {{Yes|SATA(AHCI)}} || {{Yes|VESA}} || {{Yes|HDAudio}}|| {{Yes|RTL8169}} || NOT APPLICABLE || NOT APPLICABLE || * No accelerated 3D support
|-
|}
==References==
[[#top|...to the top]]
{{reflist}}
{{BookCat}}
sn1f5cd0tsd9w7vuwdmnassdi21i7m7
4641134
4641133
2026-06-25T15:18:33Z
Jeff1138
301139
4641134
wikitext
text/x-wiki
{{ArosNav}}
==Introduction==
This a list of computer hardware tested with mostly native AROS installs and, in the recommended sections, of virtual machines
With 64bit support it is recommended 8Gb ram is needed and that SSE 4.1 and AVX are supported in the CPU i.e. from year 2012 for Intel CPUs and 2013 for AMD CPUs. They are x86-64 instruction sets designed to perform the same operations on multiple data items simultaneously, a technique known as Single Instruction, Multiple Data (SIMD). This allows for increased performance in tasks involving parallel computation. SSE 4.1 is a 128-bit SIMD instruction set, while AVX introduced 256-bit SIMD, further enhancing performance. Some apps require these features to run well, like 3D, multimedia decoding or JIT (javascript) in Odyssey web browser. If not the apps may work slower or might fail.
If you have encountered differently (i.e. problems, incompatibilities, faults, annoyances, environment, errors, review of setup etc) please update this information.
Please bear in mind that AROS has only a few hardware driver developers, whilst Linux counts in the tens and Windows in the hundreds.
[[#Laptops]]
[[#Netbook]]
[[#Desktop Systems]]
[[#AMD Sockets]]
[[#Intel Sockets]]
[[#Recommended hardware (32-bit)]]
[[#Recommended hardware (64-bit)]]
=== Laptops ===
[[#top|...to the top]]
* 2006/2007 Dell Latitude D-series laptops - business class machines, good support in Aros, easy to replace wifi card
* 2006 some [https://www.techradar.com/reviews/pc-mac/laptops-portable-pcs/laptops-and-netbooks/toshiba-satellite-pro-a200-28550/review Satellite Pro A200]
* 2008 For the tiny carry anywhere, the early run of Acer Aspire netbooks
Rough estimate from taking a random laptop notebook what you can expect from a Native install of AROS
{| class="wikitable sortable" width="100%"
! width="10%" |Date
! width="5%" |Overall
! width="5%" |Gfx VESA
! width="5%" |Gfx 2D Acceleration
! width="10%" |Gfx 3D Acceleration
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="10%" |Wireless
! width="20%" |Comments
|-
| Before 2002 || Poor to OK || VESA 90% || 2D 10% || {{N/A}} || Audio 10% || 40% || Wired 70% || 2% || Max RAM 512MB
|-
| 2002-2005 || OK || VESA 95% || 2D 10% || 3D 0% || Audio 30% || 70% || Wired 50% || 10% || Max RAM 2GB (for 32bit)
|-
| 2005-2012 || Good || VESA 98% || 2D 60% || 3D 30% || Audio 40% || 80% || Wired 30% || 10% || Max RAM 3Gb (32bit) to 8GB (64bit)
|-
| 2013-2017 || OK || VESA 98% || 2D 30% || 3D 0% || Audio 30% || 60% || Wired 20% || 0% || Max RAM 8GB / 16GB better to go Intel / AMD Ryzen over AMD A series
|-
| 2018-2024 || OK || VESA 98% || 2D 20% || 3D 0% || Audio 40% || 60% || Wired 30% || 0% || Max RAM 32GB better 64bit options if has an internal dvd drive and working ethernet
|-
| 2025-202x || Poor || VESA 95% || 2D 0% || 3D 0% || Audio 0% || 0% || Wired 10% || 0% || Max RAM 64GB AI disruption of previous hardware
|-
|}
3D tests now conducted with apps found in Demos/AROS/Mesa and run at default size (may need to View As -> Show All to see them.
Any laptop with Windows 7(TM) 64bit or higher install, the bios and hard drive set in uefi/gpt mode (install of AROS incompatible)
Most vendor suppliers get OEM (original equipment manufacturers) to make their laptops. These brand name companies purchase their laptops from
*80% ODM (Original Design Manufacturer) such as Quanta, Compal, Wistron, Inventec, Foxconn (Hon Hai), Flextronics and Asus (now Pegatron)
*20% MiTAC, FIC, Arima, Uniwill, ECS, Tonfang Origin and Clevo
{| class="wikitable sortable" width="100%"
| <!--OK-->{{Yes|'''Works well'''}} || <!--May work-->{{Maybe|'''Works a little'''}} || <!--Not working-->{{No|'''Does not work'''}} || <!--Not applicable-->{{N/A|'''N/A not applicable'''}}
|-
|}
====Acer/Gateway/Emachines====
Company founded under the name of Multitech in Taiwan in 1976, renamed to Acer or Acer Group in 1987
Order of build quality (Lowest to highest)
<pre >
Packard Bell
Aspire
Extensa
TimeLine
Travelmate
</pre >
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="2%" |Ethernet
! width="5%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->Travelmate 505 506 507 508 Series || <!--Chipset-->P2 Celeron 466Mhz || <!--IDE-->{{Yes|boots}} || <!--SATA--> || <!--Gfx-->{{Maybe|use VESA Neo Magic Magic Graph 128XD (NM2160)}} || <!--Audio-->{{No|AC97 Crystal CS}} || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->1998 minimal support but no audio etc - 506T, 506DX, 507T, 507DX, 508T
|-
| <!--Name-->TravelMate 340 342 343 345 347 || <!--Chipset-->ALi M1621 with piii || <!--IDE--> || <!--SATA--> || <!--Gfx-->Trident Cyber 9525 || <!--Audio-->{{No|ESS ES1969 Solo-1}} || <!--USB-->2 ALi OHCI USB 1.1 || <!--Ethernet-->a few have Intel e100 || <!--Wireless-->{{N/A}} || <!--Test Distro--> || <!--Comments-->2000 32bit - 340T, 341T, 342T, 342TV, 343TV, 345T, 347TV
|-
| <!--Name-->TravelMate 350 351 352 353 || <!--Chipset-->Ali with piii || <!--IDE-->{{Yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->Trident Cyber Blade DSTN/Ai1 || <!--Audio-->{{No|ali5451}} || <!--USB-->2 USB 1.1 Ali M5237 OHCI || <!--Ethernet-->e100 || <!--Wireless-->Acer InviLink IEEE 802.11b || <!--Test Distro--> || <!--Comments-->2001 32bit very limited support but no support for PCMCIA O2 Micro OZ6933 - 350T, 351TEV, 352TEV, 353TEV
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->TravelMate 610 series 611 612 613 614 || <!--Chipset-->815 P3 || <!--IDE--> || <!--SATA-->{{N/A}} || <!--Gfx-->Intel 82815 cgc || <!--Audio-->AC97 || <!--USB-->USB 1.1 || <!--Ethernet-->Intel e100 pro || <!--Wireless-->{{N/A}} || <!--Test Distro--> || <!--Comments-->2001 32bit - 610TXVi 610T 611TXV 612TX 613TXC
|-
| Aspire 3003LM || SIS AMD 3000 1.8GHz || {{yes}} || {{N/A}} || {{maybe|SIS AGP M760GX (VESA only)}} || {{yes|AC97 SIS codec}} || 3 USB 2.0 || {{yes|SIS900}} || {{no|Broadcom BCM4318 AirForce One 54g}} || Icaros 1.2.4 || 2003 sempron
|-
| Travelmate 2310 Series ZL6 || Intel Celeron M 360 1.4GHz with SiS 661MX || {{yes}} || {{N/A}} || {{maybe|SiS Mirage M661MX (VESA only)}} || {{yes|SIS SI7012 AC97 with realtek ALC203 codec speakers only}} || || {{yes|SIS900}} || {{N/A|LM version has pci card slot but no antenna}} || 2017 Icaros 2.1.1 || 2004 32bit - No USB boot option but boot from DVD - reports of wifi losing connection (isolate/remove the metallic grounding foil ends of the antennas) - 2312LM_L -
|-
| <!--Name-->Aspire 3000 3002LMi 3500 5000 || <!--Chipset-->AMD CPU W-with SIS M760 || <!--IDE--> || <!--SATA--> || <!--Gfx-->SIS 760 || <!--Audio-->SIS || <!--USB--> || <!--Ethernet-->SIS 900 || <!--Wireless-->{{No|Broadcom BCM4318 swap for Atheros}} || <!--Test Distro--> || <!--Comments-->2005 32bit
|-
| <!--Name-->Aspire 3050 5020 5050 || <!--Chipset-->AMD Single and Turion MK-36 Dual and RS480 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Use VESA - RS482M Xpress 1100 or RS485M Xpress 1150 || <!--Audio-->HD Audio Realtek ALC883 || <!--USB--> || <!--Ethernet-->8139 || <!--Wireless-->Atheros 5006G or Broadcom BCM 4318 || <!--Test Distro--> || <!--Comments-->2005 32bit MK36 gets very hot
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->TravelMate 2410 2420 2430 series || <!--Chipset-->915GM || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel Mobile 915GMS 910GML || <!--Audio-->Intel AC97 ICH6 with ALC203 codec || <!--USB-->4 USB2.0 || <!--Ethernet-->Realtek RTL-8139 || <!--Wireless-->Atheros 5005GS || <!--Test Distro--> || <!--Comments-->2005 32bit 2428AWXMi -
|-
| <!--Name-->Acer Aspire 3610 - WISTRON MORAR 3614WLMI || <!--Chipset-->Intel 915 || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Yes|Intel GMA 2D and 3D}} || <!--Audio-->{{yes|[http://www.amiga.org/forums/showpost.php?p=644066&postcount=13 AC97]}} || <!--USB--> || <!--Ethernet-->{{yes|RTL 8139 8139C+}} || <!--Wireless-->{{Maybe|Atheros AR5001X+, AR5BMB5 or Broadcom 4318}} || <!--Test Distro--> Icaros 1.2.4 || <!--Comments-->2005 32bit with good support [http://ubuntuforums.org/showthread.php?p=6205188#post6205188 wifi issues]
|-
| <!--Name-->TravelMate 2480 series 2483 WXMi (HannStar J MV4 94V) 2483NWXCi Aspire 3680, 3690 || <!--Chipset-->940GML i943 with Celeron 430 1.77GHz - 14.1" || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes| }} || <!--Gfx-->{{Yes|2D and 3D openGL 1.x - Tunnel 181 gearbox 104 scores}} || <!--Audio-->{{Yes|HD Audio with ALC883 codec playback}} || <!--USB-->{{Yes|3 USB 2.0}} || <!--Ethernet-->{{No|Marvell 88E8038 yukon sky2}} || <!--Wireless-->{{No|Atheros 5k AR5005G AR5BMB5 mini pci}} suspect laptop hardware issues || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2006 Works well shame about the internet options - noisy fan - poor battery life - no boot option for TI based mass storage sd card - Max 2GB memory - LCD Inverter Board IV12090/T-LF -
|-
| <!--Name-->TravelMate 2490 series 2492WXMi || <!--Chipset-->940GML || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Yes|Intel 945 2D and 3D tunnel 164 gearbox 105}} || <!--Audio-->{{Yes|HD Audio}} || <!--USB--> || <!--Ethernet-->{{Maybe|Broadcom BCM4401}} || <!--Wireless-->{{No|Atheros AR5005GS suspect hardware issue}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2006 32bit - 15inch screen - strange curved up at ends keyboard style - overall plastic construction - Atheros AR5005G(s) -
|-
| <!--Name-->Gateway ML6227B MA7 || <!--Chipset-->Celeron M 520 1.6Ghz with 945GM || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{Yes|945GM 2D and 3D tunnel 169 gearbox 132}} || <!--Audio-->{{No|HDA Intel with STAC9250 codec}} || <!--USB--> || <!--Ethernet-->{{No|Marvell 88E8038}} || <!--Wireless-->{{No|8187L but swap ath5k mini pcie}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2006 15.4 ultrabrite widescreen - Wifi Switch on side Fn/F2 -
|-
| <!--Name-->Acer Aspire 5630-6796 6288 BL50 || <!--Chipset-->T5200 T5500 Intel® Core™2 Duo T7200 T7400 T7600 || <!--IDE-->{{Yes| }} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Yes|Intel® GMA 950 with S-Video out with 2D and 3D}} || <!--Audio-->{{Yes|HDAudio with ALC883? codec}} || <!--USB-->{{Yes|4 USB}} || <!--Ethernet-->{{yes|Broadcom BCM4401}} || <!--Wireless-->{{No|Intel 3945abg swap for Atheros 5K}} || <!--Test Distro-->Tiny AROS || <!--Comments-->2006 - 64bit 39.1 cm (15.4" 1280 x 800) - 2 DDR2-SDRAM slots max 4GB - green mobo?? -
|-
| <!--Name-->Acer Aspire 5633WMLI BL51 || <!--Chipset-->T5500 with Intel® 945PM/GM Express || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE mode}} || <!--Gfx-->{{Yes|Nvidia Go 7300 with 2D and 3D}} || <!--Audio-->{{Yes|HD Audio with Realtek codec}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{yes|Broadcom 440x}} || <!--Wireless-->{{No|Intel 3945 swap for Atheros 5k}} || <!--Test Distro-->Tiny Aros || <!--Comments-->2007 64 bit dual core2 - 15.4 WXGA screen - ddr2 max 4gb - OrbiCam no support - ENE chipset SD card - blue mobo?? -
|-
| <!--Name-->Acer Aspire 9410 9420 || <!--Chipset-->Intel Core Duo with 945PM Express || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes| }} || <!--Gfx-->{{Yes|2D NVIDIA GeForce Go 7300 - 128 MB VRAM G72M}} || <!--Audio-->{{Yes|Intel HD audio with codec}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{Yes|rtl8169 8111 }} || <!--Wireless-->{{No|Intel 3945ABG but could swap with atheros 5k}} || <!--Test Distro-->Icaros 2.3 || <!--Comments-->2007 32bit - 17in TFT 1,440 x 900 WXGA+ - 2 ddr2 sodimm slots max 4gb -
|-
| <!--Name-->eMachines E510 series KAL10 || <!--Chipset-->Intel Celeron M 560 2.13Ghz with PM965 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel x3100 || <!--Audio-->{{Yes|Intel with codec}} || <!--USB-->Intel || <!--Ethernet-->{{No|Broadcom BCM5906M}} || <!--Wireless-->{{No|Atheros G AR5BXB63 bios issue??}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2007 32bit very budget machine with InsydeH20 bios and F10 boot menu
|-
| <!--Name-->ACER Aspire 5920 [http://tim.id.au/laptops/acer/aspire%205920g.pdf 5920G] || <!--Chipset-->Santa Rosa Core 2 Duo T7300 T7500 later T9300 with GM965 and PM965(G) Express || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Maybe|use VESA for X3100M or 8600M GS (rev a1) 9500M GT 256MB vram (G) but some AMD/ATI RV635 M86 HD 3650}} || <!--Audio-->{{No|HD Audio with realtek alc268, [https://forums.opensuse.org/t/no-sound-on-acer-aspire-5920g/32392 ALC883] or Realtek ALC1200 / alc888s codec ICH8}} || <!--USB-->{{Yes|USB2 }} || <!--Ethernet-->{{No|Broadcom BCM5787M}} || <!--Wireless-->{{unk|Intel 3945ABG 4965 or Atheros 9k AR9285}} || <!--Test Distro-->Deadwood test iso 2023-01 2023-11 || <!--Comments-->2008 64bit boot with 'noacpi' or 'noioapic' - 15.4in 1280 x 800 pixels 16:10 - BMW Designworks ‘Gemstone’ design - over 3.0kg with options for 8-cell or 6-cell batteries - 2 SODIMM DDR2 667MT/s max 4GB - synaptics touchpad -
|-
| <!--Name-->Acer A0521 Ao721 || Athlon II Neo K125 + AMD M880G || {{N/A}} || {{maybe| }} || {{maybe|ATI Radeon HD 4225 (VESA only)}} || {{No|Conexant}} || {{Maybe| }} || {{no|AR8152 l1c}} || {{unk|AR9285 ath9k}} || AspireOS 1.7 || 2006 64bit possible
|-
| <!--Name--> Extensa 5630Z || <!--Chipset-->T6600 with Intel GL40 Express || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe|IDE mode}} || <!--Gfx--> {{Yes|Intel GMA 4500M HD (2D)}} || <!--Audio--> {{Yes|HD Audio}} || <!--USB--> {{Yes|USB 2.0}} || <!--Ethernet--> {{No|Broadcom BCM 5764M}} || <!--Wireless--> {{No|RaLink RT2860}} || <!--Test Distro--> || <!--Comments-->2008 64bit
|-
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Aspire 5250 series 5253 BZ400 BZ602 || <!--Chipset-->E350 || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{no|VESA 2D for AMD HD6310}} || <!--Audio-->{{yes|HDaudio for codec Conexant CX20584}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{no|Atheros AR8151}} || <!--Wireless-->{{no|Atheros 9k AR5B97}} || <!--Test Distro--> || <!--Comments-->2011 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name-->Aspire V5 V5-121 V5121 AO725 One 725 || <!--Chipset-->AMD C-70 C70 || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{no|VESA for AMD 6290G}} || <!--Audio-->{{no|Realtek ALC269 codec}} || <!--USB-->{{yes|2 x USB2}} || <!--Ethernet-->{{no|Broadcom}} || <!--Wireless-->{{no|Broadcom}} || <!--Test Distro--> || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name-->Aspire V5-122P MS2377 || <!--Chipset-->C-70 C70 with M55, AMD A4-1250 or A6 1450 up to 1.4Ghz || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->AMD 8210 || <!--Audio-->{{unk|HDaudio with codec}} || <!--USB-->{{maybe|FCH USB EHCI OHCI}} || <!--Ethernet-->{{Maybe|rtl8169 but LAN/VGA Combo Port Cable (AK.LAVGCA 001) or MiniCP port to Acer Converter Cable (Mini CP to VGA/LAN/USB) (NP.OTH11 00C) needed}} || <!--Wireless-->{{unk|Atheros 9k AR9565}} || <!--Test Distro-->Aros One || <!--Comments-->2012 64bit but no sse4 or avx - 26w battery internal, extension possible - 11.6in 1366 x 768 ips touchscreen - 7mm hd ssd - 2gb ddr3l soldered with 1 slot free max 4GB - bios hacking needed for virtualisation -
|-
| <!--Name-->Packard Bell EasyNote TE69 TE69KB 522 || <!--Chipset-->slow E1-2500, E2-3800 2c2t Dual or A4-5000 4c4t Quad both soldered BGA769 (FT3) on Hudson-2 FCH || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe|Use IDE mode}} setting AHCI to IDE mode - boots if UEFI set to Legacy || <!--Gfx-->{{Maybe|VESA 2D for ATI Radeon 8120 8240, 8320, 8330 or 8280 islands}} || <!--Audio-->{{Yes|HDAudio with ALC282 0x10ec, 0x0282 codec but not HDMI}} || <!--USB-->{{Yes|Bios, Boot, set Boot mode to Legacy, nothing from USB3}} || <!--Ethernet-->{{No|Atheros AR8171 AR8175 or Broadcom BCM57780}} || <!--Wireless-->{{unk|Atheros AR9565 0x1969 0x10a1}} || <!--Test Distro-->Aspire OS Xenon and AROS One 1.6 usb || <!--Comments-->2013 64bit with sse4.1 and AVX - 15.6in washed out screen big netbook - Boots with noacpi after using F2 to enter EFI firmware and f12 boot device - 2 ddr3 sodimm slots max 16Gb -
|-
| <!--Name-->ASPIRE Acer Aspire ES1-520 521 522 Series N15C4 ES1-523 || <!--Chipset-->AMD AMD E1-7010, A8-7410 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{partial|VESA for RADEON R5}} || <!--Audio-->{{no|Realtek ALC 233 or CX20752 HD AUDIO CODEC}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{no|Atheros AR8151 Gigabit or Broadcom 590x}} || <!--Wireless-->{{no|Realtek RTL8187 or 8812BU}} || <!--Test Distro-->Aros One || <!--Comments-->2015 64bit with sse4.1 and AVX - 2 ddr3l slots - keyboard connected to top case -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Nitro 5 an515-42 || <!--Chipset-->Ryzen 2500u || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->AMD rx560x || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2018 64bit -
|-
| <!--Name-->aspire 3 A315-41 || <!--Chipset-->Ryzen 2500u || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->AMD Vega || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2018 64bit -
|-
| <!--Name-->swift 3 sf315-41 || <!--Chipset-->Ryzen 2500u || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->AMD Vega || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2018 64bit -
|-
| <!--Name-->Acer Aspire 3 A315-23 || <!--Chipset-->AMD Ryzen 3020e, r3 3200u || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D for AMD || <!--Audio-->{{unk|HDAudio with codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe| }} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2019 64bit -
|-
| <!--Name-->Aspire 3, 5 A515-44-R0ZN || <!--Chipset-->AMD Ryzen 5 4500u || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D for AMD Radeon || <!--Audio-->{{unk|HDAudio with ALC codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2020 64bit - 14in or 15.6" 1080p - 19v round charging - [https://www.youtube.com/watch?v=vr0tC3QJWxk repair], 4gb soldered with 1 ddr4 sodimm slot -
|-
| <!--Name-->Swift 3 SF314-42 series N19C4 , Swift SF315-4 || <!--Chipset-->Ryzen 5 4500U, 7 4700U|| <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D for AMD || <!--Audio-->{{unk|HDAudio with codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2020 64bit 1080p - small round ac 19v 3.42A or usb-c - mobo FH4FR LA-J731P -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->Acer Swift 3 SF314-43, Swift SF315-41 || <!--Chipset-->Ryzen 7 5700U || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D for AMD || <!--Audio-->{{unk|HDAudio with codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2021 64bit 1080p - small round ac or usb-c -
|-
| <!--Name-->Aspire 5 A515-45 || <!--Chipset-->r7 5700U || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->AMD || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2021 64bit - 15.6in 1080p - asus round ac -
|-
| <!--Name-->Aspire 5 A515-47 || <!--Chipset-->ryzen 5 5625U, || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->AMD || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2021 64bit - 15.6in 1080p - asus round ac -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
====Asus====
[[#top|...to the top]]
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->Asus L8400-K Medion MD9467 || <!--Chipset-->Intel desktop 850MHz || <!--IDE--> || <!--SATA--> || <!--Gfx-->S3 Savage MX || <!--Audio-->{{No|ESS allegro 1988}} || <!--USB--> || <!--Ethernet-->Realtek 8139 || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2001 32bit
|-
| <!--Name-->Asus L2000 L2400 L2D Series Medion 9675 || <!--Chipset-->Athlon 4 mobile || <!--IDE--> || <!--SATA--> || <!--Gfx-->use vesa sis630 || <!--Audio-->{{No|sis7018}} || <!--USB--> || <!--Ethernet-->sis900 || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2002 32bit
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->x51R X51RL || <!--Chipset-->Duo T2250 T2330 with RS480 || <!--IDE--> || <!--SATA-->{{N/A}} || <!--Gfx-->{{Maybe|use VESA RC410 [Radeon Xpress 200M]}} || <!--Audio-->{{Yes|HD with codec}} || <!--USB-->{{Maybe|boots and detects}} || <!--Ethernet-->{{Yes|RTL-8139}} || <!--Wireless-->{{No|Atheros AR5006EG AR5111 ath5k AzureWave AW-GE780 - could be ATI Chipset}} || <!--Test Distro-->Icaros 2.2, deadwood 2021, || <!--Comments-->2003 32bit 15.4 WXGA - 19v barrel - ESC boot select - F2 bios -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Asus R2H Ultra Mobile PC UMPC || <!--Chipset-->Celeron 900Mhz 910GML || <!--IDE--> || <!--SATA--> || <!--Gfx-->GMA900 || <!--Audio-->Ac97 ALC880 || <!--USB--> || <!--Ethernet-->realtek 8169 8101e || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2004 32bit [https://www.youtube.com/watch?v=Jm4fOrqyj3g boots]
|-
| <!--Name-->Asus A3 series A3F Ergo Ensis 211 RM || <!--Chipset-->P-M 1.6GHz to Core Duo with 950 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel 945 || <!--Audio-->Ac97 ALC655 || <!--USB--> || <!--Ethernet-->Realtek 8100CL 10/100 || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2004 32bit only
|-
| <!--Name-->Z33 || <!--Chipset-->915 || <!--IDE--> || <!--SATA--> || <!--Gfx-->915GM || <!--Audio-->HD Audio ALC880 || <!--USB--> || <!--Ethernet-->Realtek 8139 || <!--Wireless-->Intel 2915ABG || <!--Test Distro--> || <!--Comments-->2005 32bit Z33A Z33AE N5M N5A
|-
| Z70A Z70V Z70Va M6A z7000 z7000a || i915 + ICH6 || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{yes|mobile 915GML}} || <!--Audio-->{{no|ICH6 HD Audio}} || <!--USB-->{{yes|USB2.0}} || <!--Ethernet-->{{no|Marvell 88E8001}} || {{no|Intel PRO 2200BG Fn / F2}} || Icaros 1.3 || 2005 32bit
|-
| [http://www.progweb.com/en/2010/09/linux-sur-un-portable-asus-a6jm/ A6jm] A6JC || 945GM || IDE || SATA || {{yes|nVidia GeForce Go 7600 G70}} || {{no|HD Audio}} || {{yes|USB}} || {{yes|RTL8111 8168B}} || {{no|Intel 3945 ABG}} || Icaros 1.2.4 || 2006 32bit only
|-
| <!--Name-->F3Jc || <!--Chipset-->945PM || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->G72M Quadro NVS 110M, GeForce Go 7300 || <!--Audio-->D audio || <!--USB--> || <!--Ethernet-->realtek 8169 8111 || <!--Wireless-->Intel 3945 || <!--Test Distro--> || <!--Comments-->2007 32bit -
|-
| <!--Name-->X50GL F5GL || <!--Chipset-->T5800 with 965 || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe}} || <!--Gfx-->{{Maybe|use VESA 2d - Nvidia 8200M G84 runs hot}} || <!--Audio-->{{No|HD Audio MCP79 with codec}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No|MCP79}} || <!--Wireless-->{{No|Atheros AR5B91 AW-NE77}} || <!--Test Distro-->Icaros 2.2 || <!--Comments-->2008 64bit not much support no display with nouveau - 19v barrel - ddr2 max 4gb -
|-
| <!--Name-->ASUS G50 & G51 series G50V G50Vt G51V G51VX G51J G51Jx G50VT X1 X5 ROG || <!--Chipset-->AMD64 with MCP71 || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes}} || <!--Gfx-->nVidia GeForce 9800M GS (G94M) up to GT200 [GeForce GTX 260M] (G92M) || <!--Audio-->Nvidia HD Audio with codec || <!--USB--> || <!--Ethernet-->{{No|Atheros L1C atl1c}} || <!--Wireless-->Atheros G or Intel || <!--Test Distro-->Icaros 2.3 || <!--Comments-->2009 64bit not all GPUs are failing but a much higher % failing early, 8x00 and 9x00 G84, G86, G92, G94, and G96 series chips dying - ddr2 max 4gb -
|-
| <!--Name-->M50V M50 series || <!--Chipset-->Intel Core 2 Duo P8400 or T9400 with Intel PM45 ICH9 || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|BIOS set to compatibility IDE mode}} || <!--Gfx-->NVIDIA GeForce 9600M GS or 9650M GT || <!--Audio-->HDAudio with Realtek ALC663 || <!--USB-->USB2 || <!--Ethernet-->{{Yes|rtl8169 realtek 8169 8111C}} || <!--Wireless-->{{unk|Intel 5100 or Atheros AR928X}}|| <!--Test Distro-->AROS One 2.0 USB || <!--Comments-->2009 64bit - 15.40 inch 16:10, 1680 x 1050 glossy - the "Infusion" design - heavy 3kg - ddr2 ram max 4gb -
|-
| <!--Name-->Series F9 F9E F9dc F9f F9j F9s || <!--Chipset-->965GM || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{maybe|Vesa}} || <!--Audio-->{{yes|HD Audio ALC660 playback}} || <!--USB-->{{yes|works}} || <!--Ethernet-->{{yes|RTL8169 }} || <!--Wireless-->{{no|intel 3495 not working}} || <!--Test Distro-->Icaros 1.41 || <!--Comments-->2009 64bit - ddr2 max 4gb -
|-
| P52F SO006X || i3-370M || IDE || SATA || {{yes|nVidia G92 [GeForce 9800 GT] (2D)}} || {{no|Intel HD Audio}} || {{yes|2 USB2.0}} || {{no|Atheros AR8121 AR8113 AR8114 (l1e)}} || {{dunno}} || Icaros 1.3 || 2010 64bit - ddr3 slot -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Asus
* X53U MB Ver K53U or K52U Asus K53U MB Ver K53U
* A53U XT2 X53B MB ver: K53BY (compal)
|| <!--Chipset-->Slow atom like speed E-350 (2011), E-450 (2011) on AMD M780G, much slower C-50 C50 (2012), C-60 C60 on the AMD A50M dark brown plastic build || <!--IDE-->{{N/A|}} || <!--SATA-->{{yes|Set IN Bios IDE MODE}} || <!--Gfx-->{{Maybe|use VESA ATi 6310M, 6320M later 6250M or 6290M}} || <!--Audio-->{{Yes|HD audio with alc269 codec Altec Lansing® Speakers}} || <!--USB-->{{Yes|3 x USB2}} || <!--Ethernet-->{{Unk|rtl8169 with RTL8111 phy}} || <!--Wireless-->{{unk|Atheros half height ar9285}} || <!--Test Distro-->2016 Icaros 2.1.2 and 2018 AROS One 1.6 USB || <!--Comments-->2011 64bit does not support AVX or SSE 4.1 - 15.6in 1368 x 768 dull 50% srgb screen - f2 bios setup, esc boot drive - 5200 or 7800 mAh battery covers ASUS K53S K53E X54C X53S K84L X53SV X54HR K53F X53U laptops - 2 DDR3L slots max 8Gb - 19v barrel 5.5 / 2.5 mm -
|-
| <!--Name-->Asus K53T, Asus A53Z X53Z
|| <!--Chipset-->AMD A4-3305M on AMD M780G, A6-3420M dark brown plastic build || <!--IDE-->{{N/A|}} || <!--SATA-->{{yes|Set IN Bios IDE MODE}} || <!--Gfx-->{{Maybe|VESA 2D for AMD 6520G, 7670M}} || <!--Audio-->{{Yes|HD audio with codec}} || <!--USB-->{{Yes|3 x USB2}} || <!--Ethernet-->{{Yes|rtl8169 with RTL8111 phy}} || <!--Wireless-->{{No|Atheros half height}} || <!--Test Distro-->AROS One USB || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 - 15.6in 1368 x 768 dull 50% srgb screen - f2 bios setup, esc boot drive - 2 DDR3L slots max 8Gb - 19v barrel 5.5 / 2.5 mm - Altec Lansing® Speakers -
|-
| <!--Name-->X55U X401U X501U 1225B || <!--Chipset-->slow C-60 C60, C-70 C70 or E1 1200 E2 1800 || <!--IDE--> || <!--SATA--> || <!--Gfx-->6290G || <!--Audio-->{{No| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->Realtek 8111 8169 || <!--Wireless-->{{unk| Atheros AR9485}} || <!--Test Distro--> || <!--Comments-->2013 64bit does not support AVX or SSE 4.1 - 11.6" display - ram soldered -
|-
| <!--Name-->Asus A43TA A53TA K53TA XE2 A73T || <!--Chipset-->AMD A4-3300M, A6 3400M (laptop chip) || <!--IDE-->{{N/A|}} || <!--SATA-->{{yes|Set IN Bios IDE MODE}} || <!--Gfx-->{{Maybe|use VESA AMD Radeon HD 6520G Integrated + HD 6470M (1GB GDDR3)}} || <!--Audio-->{{yes| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{Unk|}} || <!--Wireless-->{{No|Atheros}} || <!--Test Distro--> || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 - f2 bios setup, esc boot drive -
|-
| <!--Name-->X102BA || <!--Chipset-->Llano E1 1200 || <!--IDE-->{{N/A}} || <!--SATA-->{{yes|ide bios setting}} || <!--Gfx-->Radeon HD 8180 || <!--Audio-->{{No| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->RTL8101E RTL8102E || <!--Wireless-->{{unk| Qualcomm Atheros AR9485}} || <!--Test Distro--> || <!--Comments-->2013 64bit does not support AVX or SSE 4.1 - 10.1” Touchscreen - special asus 45w ac adapter -
|-
| <!--Name-->K55N, K75DE || <!--Chipset-->AMD a6 4400M A8 4500M || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->AMD 7640G || <!--Audio-->HD Audio with ALC codec none through ATi Trinity HDMI || <!--USB-->{{maybe| }} || <!--Ethernet-->rtl8169 || <!--Wireless-->{{unk| Atheros AR9485}} || <!--Test Distro--> || <!--Comments-->2013 64bit does support AVX or SSE 4.1 - 17.3-inch -
|-
| <!--Name-->X452EA X552EA F552E || <!--Chipset-->AMD E1 2100 or A4 5000M A8 4500M A10 4600M with A || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{Maybe|use VESA for AMD ATI Sun XT Radeon HD 8330 8670A 8670M 8690M}} || <!--Audio-->{{Yes|AMD FCH Azalia rev 02 with ALC898 codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{{Yes|Realtek RTL8111 8168 8411}} || <!--Wireless-->{{unk|Atheros AR9485}} || <!--Test Distro-->2016 Icaros 2.1 || <!--Comments-->2013 64bit may support avx kabini trinity -
|-
| <!--Name-->Asus X555Y || <!--Chipset-->AMD A6-7210 A8-7410 || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|2.5" and mSATA form factors using SATA Rev 3.0 interface }} || <!--Gfx-->{{Maybe|VESA 2D for AMD R5}} || <!--Audio-->{{unk|HD Audio codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{Maybe|rtl8169 Realtek}} || <!--Wireless-->{{no| }}Realtek || <!--Test Distro--> || <!--Comments-->2015 64bit does support AVX or SSE 4.1 - 4gb soldered with 1 ddr3 slot - silver-colored plastic - internal battery -
|-
| <!--Name-->Asus X555B X555DG X555S X555U X555YI X555LAB || <!--Chipset-->Intel Core i5-4210U to || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|2.5" and mSATA form factors using SATA Rev 3.0 interface }} || <!--Gfx-->{{Maybe|VESA 2D for Intel}} || <!--Audio-->{{No|HDAudio with coxenant and realtek alc codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{Maybe|Realtek}} || <!--Wireless-->{{no| }}Realtek || <!--Test Distro--> || <!--Comments-->2015 64bit does support AVX or SSE 4.1 - 4gb soldered with 1 ddr3 slot - silver-colored plastic - internal battery -
|-
| <!--Name-->Asus X555D || <!--Chipset-->AMD A10-8700P || <!--IDE-->{{N/A}} || <!--SATA-->{{unk|2.5" and mSATA form factors using SATA Rev 3.0 interface }} || <!--Gfx-->{{Maybe|VESA 2D for AMD R6}} || <!--Audio-->{{unk|HD Audio codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|Realtek}} || <!--Wireless-->{{No|Realtek}} || <!--Test Distro--> || <!--Comments-->2016 64bit - 15.6in 1366 x 768 - 4gb soldered with 1 ddr3 slot - silver-coloured plastic - internal battery - keyboard swap problematic -
|-
| <!--Name-->ASUS X555Q || <!--Chipset-->AMD® Bristol Ridge A10-9600P 7th Gen, A12-9720p || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|2.5" and mSATA form factors using SATA Rev 3.0 interface}} || <!--Gfx-->{{Maybe|R5 + Radeon™ R6 M435DX Dual Graphics with VRAM GCN 3}} || <!--Audio-->{{unk| }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no|Realtek 8821AE}} || <!--Test Distro--> || <!--Comments-->2017 64bit - FHD 15.6 1920x1080 - 37W battery internal - 4gb soldered with 1 ddr3 slot - internal battery -
|-
| <!--Name-->ASUS M509ba || <!--Chipset-->AMD A9-9425 || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|2.5" and mSATA form factors using SATA Rev 3.0 interface}} || <!--Gfx-->{{Maybe|Vesa 2d for RADEON R5}} || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{No| }} || <!--Test Distro--> || <!--Comments-->2020 64bit - 15.6in 1366 x 768 - 1 ddr4 sodimm slot max 16Gb - 19VDC 2.37A Max 45W 4.0mm x 1.35mm - keyboard swap problematic -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->ExpertBook P1410, ASUS ExpertBook P1 P1510CD, Expertbook Y1511CD || <!--Chipset-->Ryzen 3 3200U, Ryzen 5 3500U || <!--IDE-->{{N/A}} || <!--SATA-->Nvme || <!--Gfx-->{{Maybe|Vesa 2d for AMD}} || <!--Audio-->{{unk|HDaudio with codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{No| }} || <!--Test Distro--> || <!--Comments-->2019 64bit 14in or 15.6in 768p to 1080p - keyboard swap problematic - 19V 3.42A asus barrel connector 4.0MM X 1.35MM 4phi -
|-
| <!--Name-->ASUSTeK ASUS EXPERTBOOK L1 L1400CDA, L1500CDA - 19v 3.42a 4.5phi Barrel with centre pin Outer 4.5mm Inner 3mm asus special untested EXA1203XH, EXA1203YH, EXA1208UH, PA-1650-30, PA-1650-78, PA-1650-93, ADP-65GD B, ADP-65DW B (Euro) || <!--Chipset-->'''tested''' Ryzen 5 3500U - '''untested''' Ryzen 3 3200U, 3250U || <!--IDE-->{{N/A}} || <!--SATA-->{{no|1 Nvme m.2 slot will not boot with sata3 m.2, optional 1 sata hdd with ribbon cable, no dvd drive}} || <!--Gfx-->{{Maybe|Vesa 2d for AMD vega 3, 8}} || <!--Audio-->{{unk|HDaudio 0x15de 0x15e3 with ALC256 codec 0x10ec 0x0256}} || <!--USB-->{{maybe|USB3 1 usb-c and 3 usb-a }} || <!--Ethernet-->{{maybe|rtl8169 Realtek RTL8111HSH-CG }} || <!--Wireless-->{{No| }} || <!--Test Distro-->3500U with AROS One 64bit 1.2 usb installed to m.2 sata on another machine || <!--Comments-->2019 64bit 14in or 15.6in 1080p - keyboard swap problematic - up to 8Gb ddr4 sodimm soldered on board and 1 slot - micro sd card slot on some models - 42Whr B31N1915 C31N1915 C31N2204 - hold down F2 and press power for bios setup -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
==== Dell ====
[[#top|...to the top]]
Order of build quality (Lowest to highest)
<pre >
Studio
Inspiron
Vostro
XPS
Alienware
Precision
Latitude
</pre >
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="10%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="5%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->Latitude CP 233GT, CPi d233xt d266xt D300XT a366xt, CPt S400GT S500GT S550GT S600GT S700ST, CPt C333GT C400GT || <!--Chipset-->Neo Magic || <!--IDE--> || <!--SATA--> || <!--Gfx-->Use VESA - Neo magic Magic Media 2160 2360 256ZX || <!--Audio-->{{No|crystal pnp 4237b or magic media 256zx sound nm2360}} || <!--USB-->USB 1.1 || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{N/A}} || <!--Test Distro--> || <!--Comments-->1998 32bit Low-Density 16-chip 144p 144-pin 32Mx64 3.3V SODIMM -
|-
| <!--Name-->Dell Latitude CPx H450GT H500GT H Series, CPt V433GT V466GT V600, Inspiron 5000 || <!--Chipset-->Intel 440BX with Pentium 3M (CPx) or Celeron (CPt) || <!--IDE-->{{{Yes| }} || <!--SATA-->{{N/A| }} || <!--Gfx-->{{Maybe|Use Vesa - ATi Rage Pro Mobility M1}} || <!--Audio-->{{No|ESS ES1978 Maestro 2E Canyon 3D}} || <!--USB-->{{Yes|1 slot 1.1 only}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{N/A| }} || <!--Test Distro-->NB May 2013 || <!--Comments-->1998 32bit - 3 pin PA-6 PA6 power adapter plug - CDROM DVD Cxxx family media bay accessories untested
|-
| <!--Name-->Latitude C500 C600 (Quanta TM6) Inspiron 4000 7500, CPx J Series || <!--Chipset-->440BX ZX/DX || <!--IDE-->{{yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{partial|ATI Rage 128Pro Mobility M3 (VESA only)}} || <!--Audio-->{{no|ES1983S Maestro 3i}} || <!--USB-->{{yes|USB 1.1 only}} || <!--Ethernet-->{{N/A|some models had mini pci e100}}|| <!--Wireless-->{{N/A|a few came with internal antenna wiring}} || <!--Test Distro--> || <!--Opinion-->1999 square 3 pin charger PA9 PA-9 - C/Dock II untested - C/Port untested - Parallel to Floppy cable untested - CPx J600GT J650GT J700GT J750GT J800GT J850GT
|-
| <!--Name-->Latitude C510 C610 Insprion 4100 PP01L 2600 || <!--Chipset-->i830 and 1GHz+ P3-M || <!--IDE-->{{yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{partial|use VESA - ATI Radeon Mobility M6}} || <!--Audio-->{{No|AC97 CS4205}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{yes|3Com Etherlink}} || <!--Wireless-->{{Maybe|internal antenna wiring for an Atheros mini pci card}} || <!--Test Distro--> || <!--Opinion-->2000 poor build quality - hard to find in good working order
|-
| <!--Name-->Latitude C400 || <!--Chipset-->Intel 830 || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|use VESA Intel 830 CGC}} || <!--Audio-->{{No|ac97 Crystal 4205}} || <!--USB--> || <!--Ethernet-->{{Yes|3Com 3c905C TX/TX-M}} || <!--Wireless-->{{N/A| }} || <!--Test Distro--> || <!--Comments-->2000 Slim for the time - no media bays
|-
| <!--Name-->Latitude C640 (Quanta TM8) C840 Inspiron 8k2 8200 i8200 precision m50 || <!--Chipset-->P4M with 845EP || <!--IDE--> || <!--SATA--> || <!--Gfx-->use VESA if ATi - use nouveau if 64mb Nvidia Gforce 4 440 Go || <!--Audio-->AC97 CS4205 || <!--USB--> || <!--Ethernet-->3com 905c || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2001 C640 had one fan so was noisy and hot - C840 had 2 fans and ran slightly cooler but fan noise louder
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| Latitude D400 || P-M 82845 || {{yes|82801 ide}} || {{N/A}} || {{partial|VESA only}} || {{yes|AC97 Audio playback only}} || {{maybe|USB 2.0}} || {{maybe|PRO 100 VM (KM)}} || {{no|BCM4318 AirForce one 54g replace with atheros 5k mini pci}} || <!--Test Distro--> Icaros 1.2.4 || 2003 32bit might boot from USB stick but won't boot from USB-DVD - no sd card slot - power plug style -
|-
| Latitude D500 / D505 PP10L, Inspiron 510m
|| 855GME
* revA00
* revA03
* revA06
| {{yes|IDE but needs the Dell adapter}} || {{N/A}} || {{partial|855GM Gfx (VESA only)}} || {{Yes|Intel AC97 with IDT STAC 9750 codec playback head phones only}} || {{maybe| }} || {{yes|Intel PRO 100 VE}} || {{no|Broadcom BCM4306 but exchange with atheros g in panel on laptop bottom}} || <!--Test Distro-->2016 Icaros 2.1.1 || 2003 - 14 / 15 inch XGA 4:3 screen - plastic build - no sd card slot - boots from bay optical drive - not powering on/off with ac adapter is a [http://www.geekzone.co.nz/forums.asp?forumid=37&topicid=30585 mobo fault of PC13 SMT 1206 ceramic cap hot] suggest [http://www.die4laser.com/D505fix/ 0.1uF 50V instead] - pc2700 333Mhz ram 1Gb max -
|-
| Latitude D505 (some) || VIA VT8237 VX700 || {{yes|IDE}} || || {{partial|VESA 2d on ATI RV350 Radeon 9550}} || {{no|VIA AC97 with codec}} || {{maybe|VIA USB glitchy}} || {{yes|VIA VT6102 Rhine-II}} || {{no|Intel 2200g Calexico2}} || <!--Test Distro--> || 2003 32bit little support - diagnostics pressing holding the Fn key, press the Power ON button (battery removed). Check the LEDs pattern - cmos battery behind flap in laptop battery slot -
|-
| <!--Name-->Inspiron 1000 || <!--Chipset-->SIS || <!--IDE--> || <!--SATA-->{{N/A}} || <!--Gfx-->{{maybe|use VESA SIS}} || <!--Audio-->{{Yes|AC97 SIS with AD1981B codec playback}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{Yes|SIS 900 but}} || <!--Wireless-->{{N/A}} || <!--Test Distro-->2016 Icaros 2.1 || <!--Comments-->2004 32bit [https://forum.level1techs.com/t/my-time-with-icaros-desktop-and-what-i-am-doing-as-a-dev-contributor-also-some-other-shit/113358 aremis using it]
|-
| <!--Name-->Inspiron 1100 PP07L || <!--Chipset-->845 || <!--IDE-->{{Yes| }} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Maybe|use VESA Intel 845G}} || <!--Audio-->{{Yes|AC'97 playback}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{Maybe|Broadcom 4401}} || <!--Wireless--> || <!--Test Distro-->Icaros 1.5 || <!--Comments-->2004
|-
| <!--Name-->Inspiron 8500 5150 || <!--Chipset-->P4 855GM || <!--IDE-->{{Yes| }} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Yes|Nvidia 5200 Go - VESA if intel gfx}} || <!--Audio-->{{Yes|MCP AC97 with SigmaTel 9750}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{Yes|Broadcom 440x}} || <!--Wireless-->{{No|Broadcom 4306 rev 02 use Atheros Mini PCI}} || <!--Test Distro-->Icaros 2.3 || <!--Comments-->2004 32bit P4 runs well but hot
|-
| Latitude X300 PP04S small, slim and light case
|| 855GME
* revA00 Intel ULV 1.2 Ghz
* revA01 Intel ULV 1.4Ghz
| {{yes|IDE internal and will boot cd/dvd through dock PR04S}} || {{N/A}} || {{partial|855GM Gfx (VESA only)}} || {{Yes|Intel AC97 with STAC 97xx codec but no audio out of the dock}} || {{maybe|works but dock usb ports and usb DVD PD01S not detected}} || {{No|Broadcom BCM5705M gigabit}} || {{no|Broadcom BCM4306 later intel - replace with atheros in the underside}} || <!--Test Distro-->2016 Icaros 2.1.1, 2020 AROS One 1.6 usb, || 2003 12.1" 1024 x 768 - 19.5v PA-10 or PA-12 dell - ACPI works but bad s3 ram suspend sleep - no sd card boot - 1Gb max sodimm ddr 2700
|-
| <!--Name-->Latitude D600 (Quanta JM2) PP05L - 600m
|| <!--Chipset-->82855 PM i855
* reva00
* revA01
* revA02
* revA03
* revA04
| <!--IDE--> {{yes}} || <!--SATA--> {{N/A}} || <!--Gfx-->{{Maybe|Use VESA - ATI Radeon RV250 Mobility FireGL 9000}} || <!--Audio-->{{Yes|AC97 - STAC 9750}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{no|Broadcom BCM5705}} || <!--Wireless-->{{no|Intel 2100 or Broadcom BCM4306 - swap for Atheros panel in base}} || <!--Test Distro-->2011 Icaros 1.3 and [http://www.amiga.org/forums/archive/index.php/t-62187.html 1.4.1 and 2016 2.1.1] || <!--Opinion-->2003 32bit 14inch using pc2100 memory with Caps light blinking is usually a memory error - Dell D505 D600 power up pressing the case docking port -
|-
| <!--Name-->Latitude D600 (Quanta JM2) || <!--Chipset-->82855 PM i855 || <!--IDE--> {{yes}} || <!--SATA--> {{N/A}} || <!--Gfx-->{{Yes|2D only vidia NV28 GeForce4 Ti 4200 Go 5200 Go 5650 Go}} || <!--Audio-->{{Yes|AC97 - STAC 9750}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{no|Broadcom BCM5705}} || <!--Wireless-->{{no|Broadcom BCM4306 mini pci - swap for Atheros}} || <!--Test Distro--> Icaros 1.3 and [http://www.amiga.org/forums/archive/index.php/t-62187.html 1.4.1] || <!--Opinion-->2003 32bit 14" - solder joints on the bios chip (press down f7/f8 keys) - RAM clean with eraser - memory cover plate maybe apply some pressure -
|-
| <!--Name-->D800 (Compal LA-1901) || <!--Chipset-->Intel 855 || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio-->AC97 || <!--USB-->{{maybe| }} || <!--Ethernet-->Broadcom 570x || <!--Wireless-->Broadcom 4309 || <!--Test Distro--> || <!--Comments-->2004 32bit - trackpoint type pointing device -
|-
| <!--Name-->D800 || <!--Chipset-->Intel 855 || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{No|Nvidia }} || <!--Audio-->AC97 || <!--USB-->{{maybe| }} || <!--Ethernet-->Broadcom 570x || <!--Wireless-->Broadcom 4309 || <!--Test Distro--> || <!--Comments-->2004 32bit 15inch 39cm
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Inspiron 1200 2200 PP10S Latitude 110L m350 1.3Ghz || <!--Chipset-->Intel 915GM || <!--IDE--> {{yes|UDMA boots cd or DVD and installs to HDisk}} || <!--SATA--> {{N/A}}|| <!--Gfx-->{{yes|Intel GMA900 (2D and 3D openGL 1.x) Gearbox 56}} || <!--Audio-->{{yes|Intel AC97 playback only}} || <!--USB-->{{maybe|USB 2.0}} || <!--Ethernet-->{{yes|Intel PRO 100 VE}} || <!--Wireless-->{{no|BroadCom BCM4318 - swap for Atheros mini PCI in base panel}} || <!--Test Distro-->Icaros 1.4.5 || <!--Comments-->2005 single core 32bit 14" 4:3 1024 768 XGA screen - heavy 6 lbs - PA16 barrel 19V 3.16A AC adapter - battery life 4cell 29WHr lasts 2 hours - 256mb soldered with 1 ddr pc2100 sodimm 1gb max -
|-
| <!--Name-->Inspiron 1300 business B130 home PP21L Latitude 120L B120 by Compal - Inspiron 630m || <!--Chipset-->Intel Celeron M360 1.4GHz, M370 1.50 GHz, M380 1.73GHz || <!--IDE-->{{Yes|boots cd or DVD and installs to HDisk}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Yes|GMA 915 2D and 3D openGL 1.x tunnel 172 gearbox 70}} || <!--Audio-->{{Yes|HD Audio playback ear phones only}} || <!--USB-->{{maybe|works but waiting boot fail with AROS One usb version}} || <!--Ethernet-->{{Yes|Broadcom 440x}} || <!--Wireless-->{{No|intel 2200 or BCM4318 swap for Atheros mini pci underside - one antenna lead for main wifi}} || <!--Test Distro-->2016 Icaros 2.1.2, 2020 AROS One 1.6 usb, || <!--Comments-->2005 32bit single core - 14.1″ XGA 4:3 or 15.4" WXGA wide 1280 x 800 matte - ddr2 sodimm ram 2gb max - PA-16 19v psu tip 7.4mm * 5mm - f10 boot select f1 f2 bios
|-
| Latitude X1 PP05S || PP-M GMA915 rev A00 1.1GHz non-pae || {{yes|ide 1.8in zif/ce under keyboard}} || {{N/A}} || {{Maybe|Vesa for Intel 915GM}} || {{yes|AC97 6.6 playback only with STAC codec}} || {{maybe|USB 2.0 but partial boot to blank screen}} || {{No|Broadcom 5751}} || {{no|Intel 2200BG - swap for Atheros mini pci under keyboard palm rest - disassembly of all laptop}} || <!--Test Distro-->Icaros 2.3 dvd iso image virtualbox'd onto usb, Aros One 1.5 and 1.8 usb (2022) || 2005 32bit 12.1" 4:3 1024 x 768 - sd slot not bootable - 256mb soldered to board and 1 sodimm max 1GB ddr2 under keyboard - F12 bios boot F2 - pa-17 pa17 19v octagonal psu port
|-
| Latitude D410 PP06S
*rev A00
*A01, A02
*A03
|| GMA915 1.6GHz Pentium® M 730, 1.7GHz, 750 1.86GHz & 760 2.0GHz, 770 2.13GHz || {{yes|caddy and adapter needed 2.5" - remove hdd and write}} || {{N/A}} || {{Yes|Intel 915GM 2D and 3D OpenGL 1.3 tunnel 170 and gearbox 75}} || {{yes|AC97 playback only with STAC 9751 codec}} || {{maybe|works but will not boot from USB-DVD or AROS One 1.5 usb version}} || {{No|Broadcom 5751}} || {{no|Intel 2915ABG or later 2200BG - swap for Atheros mini pci under keyboard}} || <!--Test Distro-->2015 Icaros 1.4, 2016 2.1.1 and AROS One 1.5 usb, || 2005 32bit 12.1" 4:3 1024 x 768 - no sd card slot - PR06S dock base
|-
| <!--Name-->Latitude D510 (Quanta DM1) || <!--Chipset-->915GM socket 479 || <!--IDE--> {{N/A}} || <!--SATA--> {{partial|IDE mode}}|| <!--Gfx-->{{yes|Intel GMA 915 2D and 3D}} || <!--Audio-->{{Yes|AC97 STAC 975x}} || <!--USB--> {{maybe|USB 2.0}} || <!--Ethernet-->{{no|Broadcom BCM5751}} || <!--Wireless-->{{no|Intel PRO Wireless 2200BG swap Atheros mini pci in base}} || <!--Test Distro--> || <!--Comments-->2005 14.1" 32bit single core Intel Celeron M 1.6GHz Pentium M 730 1.73Ghz - squarish 3:2 - issues with 3rd party battery 4 quick flashes of red led with 1 final green
|-
| <!--Name-->Latitude D610 (Quanta JM5B) PP11L
|| <!--Chipset-->910GML 915GM with mobile 1.6 to 2.26ghz
* Rev A0x
* Rev A0x
* Rev A07 1.73Ghz
| <!--IDE--> {{N/A}} || <!--SATA--> {{partial|IDE mode}}|| <!--Gfx-->{{yes|Intel GMA 915 2D and 3D tunnel 174 gearbox 74}} || <!--Audio-->{{yes|Intel AC97 speaker head phones playback only with stac codec}} || <!--USB--> {{maybe|USB 2.0}} || <!--Ethernet-->{{no|Broadcom BCM5751}} || <!--Wireless-->{{no|Intel 2200BG or Broadcom mini pci under keyboard, swap wifi card for atheros 5k}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2005 32bit 14" 1024 x 768 - very noisy clicky trackpad buttons - one dimm slot under keyboard and other in underside 2GB 533Mhz 667Mhz DDR2 max -
|-
| <!--Name-->Latitude D610 (Quanta JM5B) 0C4717 REV A05, 0K3879 REV.A00 || <!--Chipset-->915GM || <!--IDE--> {{N/A}} || <!--SATA--> {{partial|IDE mode}}|| <!--Gfx-->{{Maybe|Use VESA 2d - Ati X300 no radeon 2d}} || <!--Audio-->{{yes|Intel AC97}} || <!--USB--> {{maybe|USB 2.0}} || <!--Ethernet-->{{no|Broadcom NetXtreme 57xx Gigabit replace with Atheros 5k}} || <!--Wireless-->{{no|Intel PRO Wireless 2200BG mini pci use Atheros 5k}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2005 32bit 14" 1024 x 768 - very noisy clicky trackpad buttons - 19.5v psu
|-
| <!--Name-->Latitude D810 (Quanta ) || <!--Chipset-->915GM || <!--IDE-->{{Yes| }} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Maybe|Use VESA 2d - Ati X300 RV370 M22 later x600}} || <!--Audio-->{{yes|Intel AC97 stereo playback only idt 9751 codec}} || <!--USB--> {{maybe|USB 2.0 but no boot from usb on 1.5}} || <!--Ethernet-->{{no|Broadcom NetXtreme 57xx Gigabit}} || <!--Wireless-->{{no|Intel PRO Wireless 2200BG mini pci replace with Atheros 5k}} || <!--Test Distro-->2017 Icaros 2.1.1, aros one 1.5 || <!--Comments-->2005 32bit 15.4" F12 one time boot menu - 19.5v 90w psu ideal - battery not same as later dx20 ones -
|-
| <!--Name-->Inspiron 6000 6400, E1505 PP20L
*A00 Pentium M
*A0? Core Duo
|| <!--Chipset-->GM945 with PM 1.73Ghz, T2050 or T2060 || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe|}} || <!--Gfx-->{{Maybe|vesa 2d - Ati 9700, x1300 RV515 M52, x1400 or nvidia go 7300 on mxm board}} || <!--Audio-->{{yes|HD Audio IDT 9200}} || <!--USB-->{{Yes|usb boot }} || <!--Ethernet-->{{Yes|Broadcom BCM4401 B0}} || <!--Wireless-->{{No|Intel 2200 3945 - swap for Atheros 5k}} || <!--Test Distro-->2016 Icaros 2.1, AROS One 1.6 || <!--Comments-->2006 mostly 32bit - 15.4 inch glossy - 2 ddr2 sodimm slots - broadcom bcm92045 bluetooth detected but no support - 19.5v dell psu socket - f2 bios setup, f12 boot order -
|-
| <!--Name-->Inspirion E1705 9200 9300 9400 PP12L PP14L || <!--Chipset-->945GM || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->proprietary Dell card/socket format Nvidia 6800, ati X300 or nVidia 7900GS gpu 3d corrupt || <!--Audio-->{{Maybe| }} || <!--USB-->{{Maybe| }} || <!--Ethernet-->{{Maybe|Broadcom BCM4401}} || <!--Wireless-->Intel 3945 swap with Atheros 5k mini pcie || <!--Test Distro--> || <!--Comments-->2006 [http://amigaworld.net/modules/news/article.php?mode=flat&order=0&item_id=6481 increasing vertical lines issues] 32bit -
|-
| <!--Name-->Studio XPS M1210 || <!--Chipset-->GM945 with Core Duo to intel C2D T5500, T7400 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->nVidia G72M 7300 7400m || <!--Audio-->HD Audio IDT 92xx || <!--USB-->{{Maybe| }} || <!--Ethernet-->{{Maybe|Broadcom BCM4401 B0}} || <!--Wireless-->{{No|Broadcom BCM4311 - swap for Atheros 5k mini pci-e}} || <!--Test Distro--> || <!--Comments-->2006 64bit - 2 ddr2 slots max 4Gb -
|-
| <!--Name-->Inspiron 1501 PP23LA Latitude 131L || <!--Chipset-->AMD Sempron 1.8GHz Turion MK-36 or X2 1.6Ghz TL-50 or TL-56 on ATI RS480 || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|Use VESA 2d - ATI 1150 (x300) RS482M Mobility Radeon Xpress 200}} || <!--Audio-->{{Yes|HD audio with stac 92xx codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{Maybe|Broadcom bcm 4401}} || <!--Wireless-->{{No|Broadcom bcm4311 replace with Atheros 5k}} || <!--Test Distro-->Icaros 1.5 || <!--Comments-->2006 64bit 15.4 inch matt 16:10 1280x800 WXGA -
|-
| <!--Name-->Inspiron 6400 (Quanta FM1)
*A00 Pentium M
*A0? Core Duo
*A08 Core2 Duo
|| <!--Chipset-->GM945 with BGA479 (socket M) T2050 1.6Ghz, T2060 1.60Ghz, T2080 1.73Ghz much later T5500 1.66Ghz || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{Yes|GMA 2D and 3D}} || <!--Audio-->{{Yes|HD Audio with IDT 92xx codec}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{Yes|Broadcom BCM4401 B0}} || <!--Wireless-->{{No|Broadcom BCM4311 swap for Atheros 5k mini pci-e under keyboard}} || <!--Test Distro-->deadwood 2019-04-16 iso || <!--Comments-->2006 mostly 32bit - 15.4" glossy - sd card - front multimedia keys - dvd rw - generic dell keyboard - coin cr2032 bios battery under keyboard -
|-
| <!--Name-->Inspiron 640m PP19L XPS M140 e1405 || <!--Chipset-->Core Solo T2050, T2300 Duo 1.83GHz T2400 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel GMA 950 || <!--Audio-->HD Audio IDT || <!--USB--> || <!--Ethernet-->Broadcom BCM4401-B0 100Base || <!--Wireless-->{{No|Intel 3945 or Broadcom 43xx, swap for Atheros 5k - Wireless Internet ON or OFF press the Function key + F2}} || <!--Test Distro--> || <!--Comments-->2006 32 bit - 12.1 LCD CCFL WXGA 1280x800 up to 14.1 inch 16:10 1440x900 pixel, WXGA+ UltraSharp - supports also SSE3 on duos -
|-
| <!--Name-->Latitude D420 (Compal LA-3071P) PP09S
|| <!--Chipset-->945
* revA00 Solo 1.2Ghz ULV U1400
* revA01 Duo 1.06Ghz u2500
* revA02 Duo 1.2Ghz
| <!--IDE-->{{yes|ZIF/CE 1.8" slow under battery, ribbon cable}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{yes|Intel GMA950 - 2D and 3D opengl tunnel 138 gearbox 103}} || <!--Audio-->{{yes|HD Audio with STAC 92xx playback speakers head phones only)}} || <!--USB-->{{yes|2 and external usb optical drive works}} || <!--Ethernet-->{{no|Broadcom BCM5752}} || <!--Wireless-->{{No|Intel 3945 mini pcie - swap Atheros 5k in base panel}} || <!--Test Distro-->Icaros Desktop 1.4 || <!--Opinion-->2006 32bit only - 12.1" 1280x800 - PR09S dock base rev02 DVD-RW usb boots - 1GB DDR2 2Rx16 max in base panel - f2 setup f5 diagnostics f12 boot list -
|-
| <!--Name-->Latitude D520 PP17L
|| <!--Chipset-->
* 64bit rev A01, A02 945GM Core2 Duo 1.83Ghz to 2.3Ghz
* 32bit rev A00, A01 940GML Solo later Duo T2400
| <!--IDE-->{{yes| Philips SDR089, Philips CDD5263, TEAC DW224EV, Optiarc AD-5540A, HL-DL-ST GSAT21N, TSSTcorp TS-L632D}} || {{Yes|bios sata set to ide mode}} || {{Yes|Intel GMA 900 series 2D and OpenGL1 3D tunnel 210 gearbox 153 teapot 27}} || {{Yes|HD audio with STAC 9200 codec}} || {{Yes|Boots and detects USB2.0}} || {{Yes|Broadcom 4400}} || {{No|Broadcom BCM4312 BCM4321 Dell 1390 / 1490 mini pcie - easy to replace with atheros 5k in base panel}} || <!--Test Distro-->Icaros 1.4 and 2.2 and both AROS One 1.8 and AROS One x64 1.1 USB boot || 2006 mostly 64bit 4:3 aspect ratio 14.1 (XGA 1024x768) or later 15 inches (XGA+ 1400 by 1050) - F2 enter bios F12 choose boot - 19.5v dell tip pa-12 charger - bios coin cell cr2032 battery socketed in base panel -
|-
| <!--Name-->Latitude D620 (Compal LA-2792) PP18L
|| <!--Chipset-->945GMS
* rev A00 all Core Duo's 32 bit
* rev A0x all Core 2 Duo's 64 bit
| <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->Intel GMA 950 (2D and 3D tunnel gearbox opengl1 || <!--Audio-->{{yes|HD Audio playback}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{no|Broadcom BCM5752}} || <!--Wireless-->{{no|Intel 3945 mini pcie swap with Atheros 5k}} || <!--Test Distro-->AspireOS Xenon || <!--Opinion-->2006 64bit AROS capable with later revisions - 14" 1280 x 800
|-
| <!--Name-->Latitude D620
|| <!--Chipset-->Intel i945
* revA00 all Core Duo's 32 bit
* revA01 all Core 2 Duo's 64 bit
| <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->Nvidia 7300, 7600 NVS 110M G72 || <!--Audio-->{{dunno|HD Audio with STAC 9200 codec}} || <!--USB--> || <!--Ethernet-->{{No|Broadcom BCM5752}} || <!--Wireless--> {{dunno}} || <!--Test Distro--> || <!--Opinion-->2007 1440x900 screen - LA-2792P Rev.2.0 - DT785 UC218 Fan/ Heatsink (64bit) -
|-
| <!--Name-->Latitude D820 (Quanta JM6)
|| <!--Chipset-->945GMS 940GML
* rev A00
* rev A01
| <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Yes|Intel GMA 2D and 3D tunnel 195 - 100? gearbox 156}} || <!--Audio-->{{Yes|HD Audio with STAC 9200 playback}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No|Broadcom BCM5752}} || <!--Wireless-->{{No|BCM4310 replace with mini pcie atheros 5k}} || <!--Test Distro-->2016 Icaros 2.1.2 || <!--Opinion-->2007 widescreen 15 inch 1280 x 800 matte - -
|-
| <!--Name-->Latitude D820 (Quanta JM)
|| <!--Chipset-->945GMS 940GML
* revA00
* revA01
| <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Maybe|Nvidia NVS 110M 120M G72}} || <!--Audio-->{{Yes|HD Audio STAC 9200}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No|Broadcom BCM5752}} || <!--Wireless-->{{No|BCM4310 swap with Atheros 5k mini pcie}} || <!--Test Distro--> || <!--Opinion-->2007 64bit 15.4 1650x1050 WXGA or WSXGA+ or 1920x1200 WUXGA -
|-
| <!--Name-->Dell Latitude D531 15" || <!--Chipset-->AMD Turion X2 TL56 or TL60 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{Maybe|Use VESA - ATi xpress X1270}} || <!--Audio-->HD Audio with IDT codec || <!--USB-->{{Maybe| }} || <!--Ethernet-->{{No|Broadcom 57xx}} || <!--Wireless-->Intel 3945 or Dell Wireless 1390, 1505 or BCM4311 mini pcie || <!--Test Distro--> || <!--Comments-->2007 64bit possible - no trackpoint - fails and goes wrong often -
|-
| <!--Name-->Latitude D430 PP09S
|| <!--Chipset-->945 with Core2 Duo C2D U7500 1.06GHz U7600 1.2GHz U7700 1.33GHz
* rev A00
* rev A01
* rev A02
| <!--IDE-->ZIF PATA IDE 1.8inch under battery and ribbon cable - slow use USB instead || <!--SATA-->{{N/A}} || <!--Gfx-->{{yes|945GML 2D and 3D opengl 1.x 171 tunnel 105 gearbox}} || <!--Audio-->{{yes|STAC 92xx HD Audio speaker and ear phone - mono speaker}} || <!--USB-->{{yes|3 }} || <!--Ethernet-->{{no|Broadcom BCM5752}} || <!--Wireless-->{{no|Intel 4965 AGN or 3945 ABG mini pci-e underside with Atheros 5k mini pci-e}} || <!--Test Distro-->Aspire 1.8 || <!--Comments-->2007 64bit capable - sd card not supported - 19.5v PA12 power adapter - 12.1" 1280x800 matte - f2 setup f5 diagnostics f12 boot list -
|-
| <!--Name-->Latitude D530 || <!--Chipset-->GM965 + ICH8 || <!--IDE-->{{N/A}} || <!--SATA-->{{partial|IDE mode}}|| <!--Gfx-->{{partial|nVidia Quadro NVS 135M 2D 3d glitches G86}} || <!--Audio-->{{partial|HD Audio with STAC 9205 head phones only}} || <!--USB-->{{yes|USB 2.0}}|| <!--Ethernet-->{{no|Broadcom BCM5755M}} || <!--Wireless-->{{no|Intel PRO Wireless 3945ABG swap with Atheros 5k}} || <!--Test Distro-->Icaros 1.4.5 || <!--Comments-->2007 [http://amigaworld.net/modules/news/article.php?mode=flat&order=0&item_id=6481 ] cool air intake from underneath needed with pa-10 or pa-3e 90w psu required - standard 4:3 ratio aspect screen -
|-
| <!--Name-->Latitude D630 (Compal LA-3301P) PP18L
|| <!--Chipset-->GM965 + ICH8 T7250 2.0Ghz T7300
* revA00
* revA01
| <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{yes|Intel GMA X3100 (2D only, no external monitor)}} || <!--Audio-->{{yes|HD Audio STAC 9205 but speaker and head phones}} || <!--USB-->{{yes|4 USB 2.0}}|| <!--Ethernet-->{{no|Broadcom BCM5755M}} || <!--Wireless-->{{no|Broadcom BCM4312 swap with pci-e Atheros 5k under keyboard}} || <!--Test Distro--> || <!--Comments-->2007 64bit possible - F12 to choose boot option - 2 ddr2 sodimm max 4G - 4400mah 48Wh battery lasts 2 hours - 6600mah 73Wh lasts just over 3 hours
|-
| <!--Name-->Latitude D630
|| <!--Chipset-->GM965 + ICH8
* revA00 [http://amigaworld.net/modules/news/article.php?mode=flat&order=0&item_id=6481 ] GPU heatpad, no copper
* revA01 0DT785 heatsink
| <!--IDE-->{{N/A}} || <!--SATA-->{{partial|IDE mode}}|| <!--Gfx-->{{partial|use VESA as nVidia NVS 135M 3d corrupts 0.7 tunnel 0.25 gearbox G86}} || <!--Audio-->{{partial|HD Audio with STAC 9205 head phones only}} || <!--USB-->{{yes|USB 2.0}}|| <!--Ethernet-->{{no|Broadcom BCM5755M}} || <!--Wireless-->{{no|Intel PRO Wireless 3945ABG swap with Atheros 5k mini pcie}} || <!--Test Distro-->Icaros 1.4.5 || <!--Comments-->2007 64bit
|-
| <!--Name-->Latitude D830
|| <!--Chipset-->965GM with Core2
* revA00
* revA01
| <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{Yes|GM965 crestline 2d and 3d tunnel 115}} || <!--Audio-->{{Yes| }} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No| }} || <!--Wireless-->{{Maybe|replace with Atheros 5k mini pcie}} || <!--Test Distro-->Icaros || <!--Comments-->2007 15 inch 1280 x 900 but updating the LCD to WXGA or WSXGA+ could be better - 2 ddr2 sodimm -
|-
| <!--Name-->Latitude D830 || <!--Chipset-->ICH8, Core2 DUO T7800 @ 2.60GHz || <!--IDE-->{{N/A}} || <!--SATA-->Intel ICH8M Serial ATA || <!--Gfx-->nVidia Quadro NVS 140M G86 || <!--Audio-->{{yes|HD Audio with STAC 92XX codec}} || <!--USB-->{{yes|USB 2.0}} || <!--Ethernet-->Broadcom NetXtreme 57xx Gigabit || <!--Wireless-->Intel Wireless 4965AGN swap with Atheros 5k || <!--Test Distro-->Icaros 2.03 || <!--Comments-->2007 64bit 15." - FN,F2 or FN,F8 or FN,F12
|-
| <!--Name-->XPS M1710 || <!--Chipset-->945PM with T2400 T2600 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->proprietary Dell card socket format GTX 7950 || <!--Audio-->HD Audio with STAC 92XX codec || <!--USB--> || <!--Ethernet-->Intel 1000 or Broadcom BCM5752 || <!--Wireless-->Intel swap with Atheros 5k || <!--Test Distro-->Aros One 64bit || <!--Comments-->2007 64bit 17.3" workstation type WXGA+ screen 1920x1200 - 2 ddr-2 667Mhz sodimm slots,
|-
| <!--Name-->XPS M1730 || <!--Chipset-->965 with T7200 T7600 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->GTX 7950 || <!--Audio-->HD Audio with STAC 92XX codec || <!--USB--> || <!--Ethernet-->Intel 1000 || <!--Wireless-->Intel swap with Atheros 5k || <!--Test Distro--> || <!--Comments-->2008 64bit 17" workstation type WXGA+ screen manufactured by AU Optronics poor viewing angles, unevenly lit, light leakage, 2 ddr-2 800Mhz slots,
|-
| <!--Name-->Latitude E6410 P27LA, E6510 PP30LA, E6310 || <!--Chipset-->Intel Core i5-520M to i7-620M i7 820QM but no sse4.1 or AVX || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Maybe|NVidia NVS 3100M GT218 2D but 3D through external monitor}} || <!--Audio-->{{Maybe|HD Audio IDT 92HD81}} || <!--USB-->{{Yes|USB2 }} || <!--Ethernet-->{{No|Intel}} || <!--Wireless-->{{No|Broadcom or Intel 6200AGN or Link 6300}} || <!--Test Distro-->Icaros 1.3 || <!--Comments-->2010 64 bit - 14.1” WXGA+ up to 15.6in 15.6” FHD 1080p - 2 ddr3l 1333Mhz max 8Gb - 90w dell charger -
|-
| <!--Name-->Inspiron M5030 || <!--Chipset-->rev A01 AMD V120, V140 rev A0? V160 M880G || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE}} || <!--Gfx-->{{Maybe|VESA RS880M Radeon HD 4225, 4250}} || <!--Audio-->{{Yes|HD audio with ALC269q codec}} || <!--USB--> || <!--Ethernet-->{{No|Atheros AR8152 v2}} || <!--Wireless-->{{unk|Atheros AR9285}} || <!--Test Distro--> || <!--Comments-->2011 64bit does not support AVX or SSE 4.1 - DDR3 sodimm -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->E6420 E6520 ATG semi ruggized XFR || <!--Chipset-->sandy bridge i5 2520M 2540M or duo I7 || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|set to Bios UEFI mode AHCI}} || <!--Gfx-->{{Maybe|Intel HD 3000 with optional fermi Nvidia NVS 4200M GF119}} || <!--Audio-->{{Maybe|HD Audio with IDT 92HD90 BXX codec but not HDMI codec}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No|Intel}} || <!--Wireless-->{{No|Intel 6205}} || <!--Test Distro-->Icaros 2.03 || <!--Comments-->2011 64bit 15.6in - fan exhausts a lot of hot air when cpu taxed - VGA if Bios ATA set and Vesa only with Bios ACHI set -
|-
| <!--Name-->Inspiron M5040 || <!--Chipset-->slow amd E450, later C-50 C50 or C-60 C60 with A50M chipset || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|non efi sata in IDE mode but base plastic difficult to remove for access}} || <!--Gfx-->{{Maybe|use VESA AMD Radeon 6320, 6250 or 6290}} || <!--Audio-->{{Yes|HD Audio IDT}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{Yes|rtl8169 Realtek RTL8105E VB 10/100}} || <!--Wireless-->{{unk|Atheros AR9285}} || <!--Test Distro-->2016 icaros 2.1.1 and AROS USB 1.6 || <!--Comments-->2012 64bit 15INCH 1388 X 768 - f2 bios setup, f12 boot order - under removable keyboard via 4 top spring loaded catches is 1 ddr3l sodimm max 8gb and wifi -
|-
| Latitude e6230 E6330 E6430 || i3 3320M 3350M 2.8 GHz i5 3360M i7 3520M || {{N/A}} || {{partial|non RAID mode}} || {{partial|Intel HD 4000 (VESA only)}} || {{no|HD Audio}} || {{partial|Intel USB 3.0 (USB 1.1 2.0 only)}} || {{No|Intel 82579LM Gigabit}} || {{No|Broadcom BCM4313}} || <!--Test Distro-->Nightly Build 2014 09-27 || 2013 64bit Ivy Bridge - 12.5-inch 13.3-inch 14-inch screen - not great support, better under hosted -
|-
| <!--Name-->Dell Latitude 3330 || <!--Chipset-->Core i3 – 2375M to i5 – 3337U, Intel® Core i3 – 3227U, Celeron 1007U on HM77 || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->{{maybe|VESA 2d for intel Hd 2000 3000 vga hdmi}} || <!--Audio-->{{maybe|HDAudio with IDT 92HD93 Controller codec }} || <!--USB-->{{maybe|USB 3.0 (2), USB 2.0 PowerShare capable }} || <!--Ethernet-->{{no|Intel }} || <!--Wireless-->{{no|Intel }} || <!--Test Distro-->Deadwood usb3 test iso || <!--Comments-->2013 64bit, 13.3” HD 1366X768 16:9, 2 ddr3l slots max 8Gb, 720p HD video webcam,
|-
| <!--Name-->Inspiron 15 5565 5567 AMD versions, Inspiron 3595 || <!--Chipset-->AMD A6-9200u A9-9400 9425 A12-9700P Bristol Ridge || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata}} || <!--Gfx-->Radeon R5 R8 GCN 3 || <!--Audio-->{{No| }} || <!--USB-->{{partial| }} || <!--Ethernet-->{{maybe|Realtek 1GbE}} || <!--Wireless-->{{No| }} || <!--Test Distro--> || <!--Comments-->2017 64bit AVX2 - 15.6in 768p or 900p - there are intel versions avoid -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Latitude 5495, Inspiron 15 3585 || <!--Chipset-->Ryzen 2300U 2500U 2700U || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|NVMe or optional 2.5in sata if caddy and ribbon cable}} || <!--Gfx-->Radeon Vega 3 or 7 || <!--Audio-->{{No|HDAudio with Realtek ALC3246 aka ALC295 0x10ec, 0x0295 or ALC3263 aka ALC 0x10ec, 0x0 codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|Realtek}} || <!--Wireless-->{{No| }} || <!--Test Distro--> || <!--Comments-->2018 64bit - 14.0" FHD WVA 1080p (16:9) 220 nits or HD 768p - 2 ddr4 sodimm slots max 32gb - 68whr battery with 2pin cmos bios coin - DC 19.5V 4.62A (90W) or 19.5V 3.34W (65W) 5.0mm x 7.4mm PA12 charging adapter -
|-
| <!--Name-->Inspiron 3505, Vostro 3515 || <!--Chipset-->athlon 300u, Ryzen 3250u (2c4t) 3450u 3500u 3700u (4c8t), Athlon Silver (2c2t) Gold (2c4t) || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|up to 2 nvme with optional 2.5in sata ribbon connector}} || <!--Gfx-->{{Maybe|VESA 2D for Vega 8, 10}} || <!--Audio-->{{No|Realtek ALC3204, Cirrus Logic CS8409 (CS42L42 and SN005825)}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{No|RTL 8106E}} || <!--Wireless-->{{No|Realtek RTL8723DE}} || <!--Test Distro--> || <!--Comments-->2019 64-bit - 15.6inch - 2 ddr4 sodimm max 16G - avoid knocking usb-c charging whilst in use -
|-
| <!--Name-->Inspiron 5485 2-in-1 || <!--Chipset-->athlon 300u, Ryzen 3250u (2c4t) 3450u 3500u 3700u (4c8t), Athlon Silver (2c2t) Gold (2c4t) || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|nvme}} || <!--Gfx-->{{Maybe|VESA 2D for Vega 8, 10}} || <!--Audio-->{{No|Realtek ALC3204}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{No|Realtek RTL8723DE}} || <!--Test Distro--> || <!--Comments-->2019 64-bit - 14inch - 2 ddr4 sodimm max 16G - avoid knocking usb-c charging whilst in use -
|-
| <!--Name-->Latitude 3500, 3310, 3410, 3510, || <!--Chipset-->Intel Celeron-4205U, Pentium-5405U, Core i5 (8th Gen) i3-8145U, 8265U, i5-8365U || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|nvme}} || <!--Gfx-->{{Maybe|Vesa 2D for Intel UHD Graphics 610 or 620 hdmi}} || <!--Audio-->{{no|HDAudio with Realtek ALC}} || <!--USB-->{{maybe|USB3 usb-c usb-a}} || <!--Ethernet-->{{Maybe|rtl8169 RTL8111H}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2019 64bit - 14in or 15.6in 768p to 1080p 220nits - 65w - 2 ddr4 sodimm slots - rtc cr2032 cmos 2 pin -
|-
| <!--Name-->Inspiron 5405 || <!--Chipset-->AMD Ryzen 5 4500U || <!--IDE-->{{N/A}} || <!--SATA-->One M.2 2230/2280 nvme || <!--Gfx-->VESA 2D for AMD Radeon || <!--Audio-->{{No|HDAudio with Realtek ALC3204 codec}} || <!--USB-->{{maybe|USB3 }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{No| }} || <!--Test Distro--> || <!--Comments-->2020 64bit - 14" 1080p - dell round ac 19.50 VDC 4.50 mm x 2.90 mm 65W(19.5V-3.34A) round 4.5mm tip -
|-
| <!--Name-->Inspiron 5415, Inspiron 5515 || <!--Chipset-->AMD Ryzen 3 5300U, Ryzen 5 5500U, Ryzen 7 5700U || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|nvme}} || <!--Gfx-->VESA 2D for AMD Radeon || <!--Audio-->{{No|HDaudio with realtek ALC3254 codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2021 64bit 14" or 15.6in - avoid knocking usb-c charging whilst in use or use dell round ac 65W 4.5MM x 3.0MM - replacing keyboard not easy - 1 ddr4 sodimm -
|-
| <!--Name-->Vostro 3425, Vostro 3525, Vostro 5625 || <!--Chipset-->AMD Ryzen 3 5425U, Ryzen 5 5625U || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D for AMD Radeon || <!--Audio-->{{no|HDAudio with codec}} || <!--USB-->{{maybe|USB4}} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2021 64bit - 14in 15.6" to 16" FHD 1080p - dell round ac 65w 4.5MM x 3.0MM or avoid knocking usb-c charging whilst in use -
|-
| <!--Name-->Dell Inspiron 15 Model 3535, Inspiron 14 7435 || <!--Chipset-->AMD Ryzen 5 7520U, AMD Ryzen 5 7530U, 7 7730U || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->{{No| hdmi 1.4 but no gpmi}} || <!--Audio-->{{No|HDaudio with codec }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2024 64bit - 14.0" or 15.6" 1080p - dell round ac 65w 4.5MM x 3.0MM or usb-c charging - full sd card slot -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|}
====Fujitsu-Siemens====
[[#top|...to the top]]
Order of build quality (Lowest to highest)
<pre >
Amilo
Esprimo
Lifebook
</pre >
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="5%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->Fujitsu [http://www.labri.fr/perso/fleury/index.php?page=bug_transmeta FMV-Biblo Loox S73A (Japan P1100) LifeBook P1120 Biblo Loox T93C (Japan P2120) P2020] || <!--Chipset-->Transmeta Crusoe CPU TM5600 633MHz with Ali M1535 chipset || <!--IDE-->{{Yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->ATI Rage Mobility M with 4MB SDRAM || <!--Audio-->{{No|AC97 Ali M1535 + STAC9723 Codec}} || <!--USB-->USB 1.1 only || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{N/A}} || <!--Test Distro--> || <!--Comments-->1999 32bit 10" 1280 x 600 matte LCD - QuickPoint IV mouse - metal chassis with palm rest plastic - 15GB 2.5 inch drive and SR 8175 8X DVD-ROM drive -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Lifebook S7000 S7010 S7010D S2020 || <!--Chipset-->Pentium M 1.6 or 1.7GHz || <!--IDE-->{{Yes| }} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Maybe|use VESA - Intel 855}} || <!--Audio-->{{maybe|AC97 with STAC 9751T or 9767 codec}} || <!--USB--> || <!--Ethernet-->{{No|Broadcom}} || <!--Wireless-->{{No|Atheros, Broadcom or Intel 2200BG - FN,F10}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2002 32bit 14.1 inch with minimal support
|-
| <!--Name-->Lifebook e8010 || <!--Chipset--> || <!--IDE-->{{Yes| }} || <!--SATA--> || <!--Gfx-->{{Maybe|use VESA Intel 855GM}} || <!--Audio-->AC97 STAC9767 or ALC203 codec || <!--USB--> || <!--Ethernet-->{{No|Broadcom NetXtreme BCM5705M}} || <!--Wireless-->Intel PRO Wireless 2200BG || <!--Test Distro-->Icaros 1.3.1 || <!--Comments-->2002 32bit 15.1 inch
|-
| <!--Name-->Stylistic ST5000 ST5010 ST5011 ST5012 ST5020 ST5021 ST5022 || <!--Chipset-->1.0GHz P-M and later 1.1GHz on Intel 855GME || <!--IDE--> || <!--SATA-->{{N/A}} || <!--Gfx-->Intel 800 use VESA || <!--Audio-->Intel AC97 || <!--USB--> || <!--Ethernet-->Broadcom BCM5788 tg3 || <!--Wireless-->{{No|Intel 2200BG}} || <!--Test Distro--> || <!--Comments-->2003 32bit charged via a proprietary port power connector 16V 3.75A with wacom serial pen interface - indoor Screen transmissive 10.1 and later 12.1 XGA TFT -
|-
| <!--Name-->Amilo Pro V2010 || <!--Chipset-->VIA CN400 PM880 || <!--IDE--> || <!--SATA-->{{N/A}} || <!--Gfx-->{{No|S3 unichrome use VESA}} || <!--Audio-->{{No|VIA AC97 VT8237 with codec}} || <!--USB--> || <!--Ethernet-->Rhine 6102 6103 || <!--Wireless-->RaLink RT2500 || <!--Test Distro-->2017 Icaros 2.1.2 || <!--Comments-->2003 32bit boot mount - unknown bootstrap error then crashes
|-
| <!--Name-->Amilo Li 1705 CN896 || <!--Chipset--> with VIA P4M900 || <!--IDE--> || <!--SATA-->{{Maybe|IDE}} || <!--Gfx-->ATi || <!--Audio-->{{No|VIA VT8237 HD Audio with codec}} || <!--USB-->VT82xx 62xx || <!--Ethernet-->{{Yes|VIA Rhine}} || <!--Wireless-->{{No|Atheros G}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2005 32bit random freezes
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name--> Esprimo Mobile V5535 Skt mPGA 478MN
| <!--Chipset-->
| <!--IDE--> {{yes|IDE and EIDE}}
| <!--SATA--> {{maybe|IDE mode with SIS 5513}}
| <!--Gfx--> {{maybe|SiS 771 / 671 (VESA only)}}
| <!--Audio--> {{yes|HD Audio SIS968 SIS966 SI7012 with ALC268 codec}}
| <!--USB--> {{no|USB 1.1 and 2.0 issues}}
| <!--Ethernet--> {{no|SiS 191 gigabit}}
| <!--Wireless--> {{yes|Atheros AR5001 mini pci express}}
| <!--Test Distro-->aros one 1.5 usb
| <!--Comments-->2005 32bit 20v barrel - f2 setup f12 multi boot - random freezing short time after booting - chipset SIS 671MX -
|-
| <!--Name-->Amilo SI 1520 1521p || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Yes|GMA 2D}} || <!--Audio-->{{No|HD Audio Conexant codec}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{Yes|Intel Pro 100}} || <!--Wireless--> || <!--Test Distro-->Icaros 1.4.2 || <!--Comments-->2005 32bit - Set Bios option ATA Control Mode to Compatible
|-
| <!--Name-->Lifebook S7020 S7020D || <!--Chipset--> Pentium M 740 1.73MHz || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel 915 || <!--Audio-->HD Audio ALC260 codec || <!--USB-->{{Yes| }} || <!--Ethernet-->Broadcom BCM5751M Gigabit || <!--Wireless-->Intel PRO Wireless 2200BG or Atheros 5k || <!--Test Distro--> || <!--Comments-->2006 32bit
|-
| <!--Name-->Stylistic ST5030 ST5031 ST5032 || <!--Chipset-->1 to 1.2GHx Pentium M with 915GM || <!--IDE--> || <!--SATA-->{{N/A}} || <!--Gfx-->Intel 900 || <!--Audio--> || <!--USB-->{{Yes| }} || <!--Ethernet-->Marvell || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2006 32bit charged via a proprietary port power connector 6.0 x 4.4 mm round - 200 pin ddr2 ram
|-
| <!--Name-->Stylistic ST5110 ST5111 ST5112 || <!--Chipset-->945GM with 1.2GHz Core Duo and Core2 Duo || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->Intel 900 || <!--Audio-->HD audio with STAC9228 codec || <!--USB-->{{No| }} || <!--Ethernet--> || <!--Wireless-->Intel 3945 ABG or optional atheros || <!--Test Distro--> || <!--Comments-->2006 either 32 or 64 bit - charged via a proprietary port power connector 6.0 x 4.4 mm round - SigmaTel® touchscreen -
|-
| <!--Name-->E8110 S7110 E8210 || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Yes|945GM}} || <!--Audio-->{{Yes|HD Audio with ALC262 codec playback}} || <!--USB-->{{Yes}} || <!--Ethernet-->{{No|Marvell 88E8055 Gigabit}} || <!--Wireless-->{{No|Intel PRO Wireless 3945ABG}} || <!--Test Distro-->Icaros 2.0 || <!--Comments-->2006 32bit Core Duo
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || CHIPSET || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Lifebook PH521 || <!--Chipset-->AMD E-350 E-450 1.65GHz || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->HD 6310M 6320M || <!--Audio-->Realtek ALC269 || <!--USB-->{{No| }} || <!--Ethernet-->Realtek || <!--Wireless-->{{No|Atheros 802.11 bgn}} || <!--Test Distro--> || <!--Comments-->2011 64bit does not support AVX or SSE 4.1 - 11.6 inch 1366x768 pixels - DDR3 1066MHz -
|-
| <!--Name-->LIFEBOOK E752/E782/S752/S782 || <!--Chipset--> with Intel Core i3-2328M to i3-3110M || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->{{Maybe| }} || <!--Audio-->{{yes| }} || <!--USB-->{{yes| }} || <!--Ethernet-->{{no|Intel 82579V 1000 }} || <!--Wireless-->{{no|Intel Wireless 6205 may be able to swap for Atheros 5k }} || <!--Test Distro-->Aros One 64bit || <!--Comments-->2012 64bit
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
====HP Compaq====
[[#top|...to the top]]
Build quality (Lowest to highest)
<pre >
Presario
Pavilion
Omnibook
ProBook
Armada
Elitebook
</pre >
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->1c00 series Compaq Presario [http://users.utu.fi/sjsepp/linuxcompaqarmada100s.html Armada 100S made by Mitac], 1247 || <!--Chipset-->K6-II with PE133 MVP-4 || <!--IDE--> || <!--SATA--> || <!--Gfx-->use VESA - Trident Blade3D AGP sp16953 || <!--Audio-->VIA ac'97 audio [rev20] with AD1881A codec || <!--USB-->{{Maybe|usual VIA issues [rev10]}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{N/A}} || <!--Test Distro--> || <!--Comments-->1998 32bit 192MB max - PCcard Texas PC1211 no support - 1200 XL1 1200-XL1xx, XL101, XL103 XL105 XL106 XL109 XL110 XL111 XL116 XL118 XL119 XL125
|-
| <!--Name-->1c01 series Armada 110, Evo N150 || <!--Chipset-->Intel with VIA PLE133 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Use VESA - Trident Cyber Blade i1 chipset || <!--Audio-->VIA 686 rev20 82xxx 686a || <!--USB--> || <!--Ethernet-->Intel 82557 Pro 100 || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->1998 32bit max 192mb sodimm 100Mhz 133Mhz ram memory - 1200-XL405A 12XL405A XL502A 12XL502A 1600XL
|-
| Armada M300 M700 E500 || 440BX || {{Yes| }} || {{N/A}} || {{maybe|ATI Rage LT M1 Mobility (VESA only)}} || {{no|AC97 ESS Maestro 2E M2E ES1987 sound}} || {{yes|USB1.1 only}} || {{No|[http://perho.org/stuff/m300/index_en.html Intel PRO 100+ Mini PCI]}} || {{N/A}} || Aspire OS 2012, Nightly 30-01 2013 and 04-05 2013 || 1999 32bit - F10 bios options and Fn+F11 reset CMOS with 64mb ram already on board
|-
| <!--Name-->HP Omnibook XE3 || <!--Chipset-->Intel BX 600Mhz GC model 256mb or AMD GD 500Mhz || <!--IDE--> || <!--SATA--> || <!--Gfx-->Use VESA - S3 Inc. 86C270 294 Savage IX-MV (rev 11) || <!--Audio-->{{No|ESS ES1988 Allegro 1 (rev 12)}} || <!--USB-->Intel 82371AB PIIX4 USB (rev 01) || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{N/A}} || <!--Test Distro--> || <!--Comments-->2002 32bit no cardbus pcmcia support - no audio from Polk Audio Speakers -
|-
| <!--Name-->HP Omnibook XE3 || <!--Chipset-->82830 ICH3 P3-M 750MHz 800Mhz 900MHz || <!--IDE-->{{Yes| }} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Maybe|use VESA - CGC 830MG}} || <!--Audio-->{{No|ESS ES1988 Maestro 3i}} || <!--USB-->{{Yes|only one 1.1 port}} || <!--Ethernet-->{{Yes|e100 82557}} || <!--Wireless-->{{N/A|}} || <!--Test Distro-->Icaros 1.51 || <!--Comments-->2002 32bit Boots USB Stick via Plop boot floppy - Memory for GF 256-512mb, GS up 1GB
|-
| <!--Name-->TC1000 TC-1000 Tablet PC || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->NVIDIA NV11 [GeForce2 Go] (rev b2) || <!--Audio-->VIA AC97 Audio (rev 50) || <!--USB-->OHCI NEC USB 2.0 (rev 02) || <!--Ethernet-->Intel 82551 QM (rev 10) || <!--Wireless-->Atmel at76c506 802.11b || <!--Test Distro--> || <!--Comments-->2002 32bit Transmeta LongRun (rev 03) with VT82C686 - Texas Instruments TI PCI1520 PC card Cardbus
|-
| <!--Name-->HP Compaq R3000 ZV5000 (Compal LA-1851) || <!--Chipset-->Nvidia nForce 3 with AMD CPU || <!--IDE--> || <!--SATA--> || <!--Gfx-->Nvidia NV17 [GeForce4 420 Go 32M] || <!--Audio-->Nvidia || <!--USB--> || <!--Ethernet-->Broadcom or Realtek RTL8139 || <!--Wireless-->{{Maybe|Broadcom BCM4303 BCM4306 or Atheros bios locked}} || <!--Test Distro--> || <!--Comments-->2003 32bit - HPs have a setting to automatically disable wireless if a wired connection is detected
|-
| <!--Name-->Compaq [http://www.walterswebsite.us/drivers.htm Presario 700 series] || <!--Chipset-->VT8363 VT8365 [Apollo Pro KT133 KM133] || <!--IDE-->{{yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{maybe|VT8636A (S3 Savage TwisterK) (VESA only)}} || <!--Audio-->{{Maybe|VIA AC97 [rev50] with AD1886 codec}} || <!--USB-->{{maybe|VIA UHCI USB 1.1 [rev1a]}} || <!--Ethernet-->{{yes|RealTek RTL8139}} || <!--Wireless-->{{no|Broadcom BCM4306}} || <!--Test Distro--> || <!--Comments-->2003 32bit poor consumer grade level construction - jbl audio pro speakers - no support for cardbus pcmcia TI PCI1410 - 700A EA LA UK US Z 701AP EA BR FR 701Z 702US 703US AP JP audio sp18895 Sp19472
|-
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| N400c || P3-M 82845 || {{yes|82801 CAM IDE U100}} || {{N/A}} || {{maybe|Rage Mobility 128 (VESA only)}} || {{No|Maestro 3 allegro 1}} || {{yes|USB1.1}} || {{yes|Intel PRO 100 VM (KM)}} || {{N/A}} || Icaros 1.2.4 || 2003 32bit Has no optical disc drive
|-
| N410c || P3-M 82845 || {{yes|82801 CAM IDE U100}} || {{N/A}} || {{maybe|Radeon Mobility M7 LW 7500 (VESA only)}} || {{yes|Intel AC97 with AD1886 codec}} || {{yes|USB1.1}} || {{yes|Intel PRO 100 VM (KM)}} || {{N/A}} || Icaros 1.2.4 || 2003 32bit Has no optical disc drive
|-
| Evo N600c || Pentium 4 || {{yes|IDE}} || {{N/A}} || {{partial|ATI Radeon Mobility M7 (VESA only)}} || {{No|ESS ES1968 Maestro 2}} || {{yes|USB}} || {{yes|Intel PRO 100}} || {{dunno}} || Icaros 1.3 || 2003 32bit
|-
| Evo N610c || Pentium 4 || {{yes|IDE}} || {{N/A}} || {{partial|ATI Radeon Mobility M7 (VESA only)}} || {{yes|Intel ICH AC97 with AD1886 codec}} || {{yes|USB}} || {{yes|Intel PRO 100}} || {{dunno}} || Icaros 1.2.4 ||
|-
| N800c || P4 || {{Yes|IDE}} || {{N/A}} || {{partial|ATI Radeon Mobility 7500 (VESA only)}} || {{yes|AC97}} || {{yes|USB}} || {{yes|Intel PRO 100}} || {{N/A}} || Icaros 1.2.4 || 2003 32bit P4M CPU can get very warm
|-
| <!--Name-->NX7010 || <!--Chipset-->Intel || <!--IDE-->{{yes|IDE}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{partial|ATI mobility 7500 or 9000 Radeon 9200 64MB (VESA only)}} || <!--Audio-->{{yes|AC97 ADI codec}} || <!--USB-->{{yes|uhci (1.1) and ehci (2.0)}} || <!--Ethernet-->{{yes|Realtek 8139}} || <!--Wireless-->{{No|Intel 2200b bios locked}} || <!--Test Distro--> || <!--Comments-->2003 32bit
|-
| <!--Name-->Compaq Preasrio V5000 (Compal LA-2771) || <!--Chipset-->AMD Sempron 3000+ or Turion ML with SB400 || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|use VESA - Ati RS480M Xpress 200}} || <!--Audio-->{{No|AC97 ATI with Conexant CX 20468 codec}} || <!--USB--> || <!--Ethernet-->{{Yes|Realtek 8100 8101L 8139}} || <!--Wireless-->{{No|bcm4318 bios locked}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2004 64bit single core machine V5001 V5002 V5002EA V5003
|-
| <!--Name-->TC1100 TC-1100 Tablet PC || <!--Chipset-->855PM || <!--IDE--> || <!--SATA--> || <!--Gfx-->Nvidia Geforce4 Go || <!--Audio-->AC97 || <!--USB--> || <!--Ethernet-->{{Maybe|BCM 4400}} || <!--Wireless-->{{Maybe|Atheros wlan W400 W500 or ? bios locked}} || <!--Test Distro--> || <!--Comments-->2004 32bit
|-
| <!--Name-->NC6000 NC8000 NW8000 || <!--Chipset-->855PM with Pentium M 1.5 1.6 1.8GHz 2.0GHz || <!--IDE-->max 160 GB for NW 8000 || <!--SATA--> || <!--Gfx-->{{Maybe|Ati RV350 mobility 9600 M10 Fire GL T2 ISV use VESA 2D as no laptop display}} || <!--Audio-->{{Yes|Intel AC97 with ADI codec playback only}} || <!--USB-->{{Yes|2 ports}} || <!--Ethernet-->{{No|Broadcom BCM 5705M}} || <!--Wireless-->{{Maybe|mini pci Atheros 5212 BG W400 W500 or Intel - all bios locked}} || <!--Test Distro--> || <!--Comments-->2005 based [http://amigaworld.net/modules/newbb/viewtopic.php?topic_id=41916&forum=47 works] - Firewire TI TSB43AB22/A - 8 pound 2.5 kg travel weight - an SD slot as well as two PC Card slots - 15-inch UXGA screen (1,600 x 1,200) or 15" SXGA+ (1400 x 1050) (4:3 ratio)
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Compaq NC6110 NX6110 NC6120 NC6220 NC4200 NC8200 TC4200 || <!--Chipset-->GMA 915GML || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Yes|2D GMA 900}} || <!--Audio-->{{Yes|AC97 with ADI AD1981B playback}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{Unk|440x or BCM 5705M or 5751M}} || <!--Wireless-->{{No|Intel IPW 2200 bios locked}} || <!--Test Distro-->Icaros 1.5.2 || <!--Comments-->2005 32bit Sonoma based - Wifi with Atheros AR5007eg if apply hacked bios RISKY else use USB one - (INVENTEC ASPEN UMA MV) (INVENTEC ASPEN DIS PV) -
|-
| <!--Name-->Compaq C500 CTO aka HP G7000 || <!--Chipset-->Intel 945GM || <!--IDE--> || <!--SATA--> || <!--Gfx-->GMA 950 || <!--Audio-->HD Audio with realtek ALC262 codec || <!--USB--> || <!--Ethernet-->Realtek 8139 || <!--Wireless-->Broadcom BCM 4311 bios locked || <!--Test Distro--> || <!--Comments-->2005 32bit
|-
| <!--Name-->HP DV6000 || <!--Chipset-->945GMS || <!--IDE--> || <!--SATA--> || <!--Gfx-->GMA 950 || <!--Audio-->HD Audio IDT 92HD 91B || <!--USB--> || <!--Ethernet-->Intel PRO 100 VE || <!--Wireless-->{{No|Intel 3945 bios locked}} || <!--Test Distro--> || <!--Comments-->2006 32 bit only - Mosfet FDS6679 common cause of shorts giving no power to the tip. To reset adapter, unplug from AC (mains) and wait 15-30 sec. Then plug in again -
|-
| Presario F700 series, HP G6000 f730us F750 F750us F755US F756NR F765em || AMD Turion Mono MK-36 2.0Ghz NForce 560m or Twin X2 TK-55 with nForce 610m MCP67 || {{N/A| }} || {{Yes|but needs special sata adapt bit and caddy}} || {{Yes|GF Go 7000m 2D and 3D 640x350 to 1280x800 - ball solder issues due to poor cooling}} || {{Maybe| }} || {{Maybe|uhci and ehci boots}} || {{No|Nvidia }} || {{Yes|Atheros AR5007 bios locked}} || Icaros 1.3.1 and Aros One 1.6 USB || 2006 64bit - f9 boot device f10 bios setup - random freezes after a minutes use means internal ventilation maintenance needed each year essential - No sd card and overall limited phoenix bios options -
|-
| <!--Name-->Presario v6604au v6608au V3500 || <!--Chipset-->NVIDIA MCP67M with AMD Athlon64 X2 TK 55 amd 1.8ghz || <!--IDE--> || <!--SATA-->{{Yes|SATA 150}} || <!--Gfx-->NVIDIA GeForce Go 7150M 630i or C67 630M MCP67 || <!--Audio-->conexant codec || <!--USB--> || <!--Ethernet-->Nvidia or Realtek 10/100 || <!--Wireless-->{{No|Broadcom 4311 bios locked}} || <!--Test Distro--> || <!--Comments-->2006 64bit Altec Lansing Stereo Speakers - ball solder issues -
|-
| <!--Name-->Compaq presario v6610 v6615eo v6620us || <!--Chipset-->Turion 64 X2 mobile TK-55 / 1.8 GHz to athlon 64x2 @ 2.4ghz || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|SATA 150}} || <!--Gfx-->{{Yes|geforce 7150 or 7300m 2d and 3d}} || <!--Audio-->{{Yes|AMD HD Audio with IDT codec stereo playback only}} || <!--USB-->3 OHCI EHCI || <!--Ethernet-->{{Maybe| }} || <!--Wireless-->{{No|Broadcom bios locked}} || <!--Test Distro-->Icaros 1.3 - || <!--Comments-->2007 [http://amigaworld.net/modules/newbb/viewtopic.php?topic_id=40956&forum=48 works well] - 1 x ExpressCard/54 - SD Card slot - AO4407 test voltage of the Drain side (pins 5-8) with AC adapter and no battery, see 0 volts, connect the battery you should have 10-14v -
|-
| <!--Name-->v6630em v6642em || <!--Chipset-->nForce 630M with AMD Turion 64 X2 Mobile TL-58 || <!--IDE--> || <!--SATA--> || <!--Gfx-->NVIDIA GeForce 6150M or 7150M || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless-->{{No|Broadcom bios locked}} || <!--Test Distro--> || <!--Comments-->2007 64bit 15.4 in 1280 x 800 ( WXGA ) -
|-
| <!--Name-->HP Compaq NC6400 || <!--Chipset-->945GM Core Duo || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|GMA 950 2D issues and no 3d}} || <!--Audio-->{{No|HD Audio AD1981HD}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No|BCM }} || <!--Wireless-->{{No|Broadcom locked}} || <!--Test Distro-->Icaros || <!--Comments-->2007 - replaced with Atheros AR5007eg if apply hacked bios RISKY else use USB g -
* 32bit Core Duo T2400
* 64bit Core 2 Duo T5600 T7600
|-
| <!--Name-->HP Compaq NV NC6400 || <!--Chipset-->Core Duo + 945PM || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Maybe|use VESA Radeon x1300M (2D)}} || <!--Audio-->{{Maybe|HD Audio with ADI1981 low volume}} || <!--USB-->{{yes}} || <!--Ethernet-->{{no|BCM 5753M}} || <!--Wireless-->{{No|Intel 3945 ABG bios locked}} || <!--Test Distro--> Icaros 1.4.2 || <!--Opinion-->2007 Harmon Kardon speakers
|-
| <!--Name-->HP Compaq NC6320 || <!--Chipset-->945GM with
* 32bit Core Duo 1.83GHz T2400
* 64bit Core2 Duo 1.83GHz T5600
|| <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Yes|GMA 950 2D with a little 3D tunnel 213}} || <!--Audio-->{{Maybe|Intel HD Audio with AD1981HD codec}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No|BCM 5788}} || <!--Wireless-->{{No|Intel 3945 bios locked}} || <!--Test Distro-->Icaros 2 || <!--Comments-->2007 replaced with Atheros AR5007eg if applying hacked wifi bios RISKY!! else use USB - 14.1" or 15 inch XGA 1024x768 - noisy cpu fan for core2 - trackpad rhs acts as window scroller -
|-
| <!--Name-->HP NC4400 TC4400 Tablet || <!--Chipset-->Core Duo with 82945 chipset || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|bios F.07 limits to 100GB 120GB}} || <!--Gfx-->{{yes|2D and 3D 282 tunnel and gearbox 150}} || <!--Audio-->{{Yes|HD Audio with ADI 1981HD codec via ear phones}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{No|BCM 5753M}} || <!--Wireless-->{{No|Intel 3945 or BCM 4306 - Whitelist BIOS F.0C needed but risky}} || <!--Test Distro-->2017 Icaros 2.1.2 || <!--Comments-->2008 64 bit possible with Core2 - TI SD card reader non bootable - wacom serial digitiser pen not working -
* 32bit 1.86GHz core duo
* 64bit 2Ghz T7200, 2.16Ghz Core 2 Duo T7600 2.33GHz
|-
| <!--Name-->HP Pavilion DV2000 CTO || <!--Chipset-->945GMS || <!--IDE--> || <!--SATA--> || <!--Gfx-->GMA 950, X3100, Nvidia 8400M || <!--Audio-->HD Audio Conexant CX 20549 Venice || <!--USB--> || <!--Ethernet-->Nvidia MCP51 || <!--Wireless-->{{No|Broadcom BCM 4311 or Intel 3945 4965 ABG bios locked}} || <!--Test Distro--> || <!--Comments-->2008 Atheros AR5007eg if apply hacked bios RISKY
|-
| <!--Name-->Compaq Presario C700 || <!--Chipset-->GMA960 || <!--IDE--> || <!--SATA--> || <!--Gfx-->X3100 || <!--Audio-->HD Audio || <!--USB--> || <!--Ethernet-->RTL 8139 || <!--Wireless-->{{Maybe|Atheros AR5007 AR5001 AR242x}} || <!--Test Distro--> || <!--Comments-->2008
|-
| <!--Name-->Compaq 2510p 6510b 6710b 6910b || <!--Chipset-->GMA 965GM GL960 || <!--IDE-->{{yes| }} || <!--SATA--> || <!--Gfx-->{{yes|X3100 some 2d but slow software 3d only}} || <!--Audio-->{{maybe|HD Audio ADI AD1981 HD low volume on head phones}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{no|Intel 82566 or Broadcom BCM 5787M}} || <!--Wireless-->{{No|Intel 3945ABG or 4965ABG bios locked}} || <!--Test Distro-->Aspire OS Xenon 2014 || <!--Comments-->2008 no sd card boot support - F9 to choose boot option - [http://forums.mydigitallife.info/threads/7681-This-is-no-request-thread!-HP-COMPAQ-bioses-how-to-modify-the-bios/page111?p=333358#post333358 whitelist removal (risky) bios block for wifi card swap]
|-
| <!--Name-->CQ40 CQ41 || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|VESA Intel}} || <!--Audio-->HD Audio || <!--USB--> || <!--Ethernet-->Realtek RTL8101E || <!--Wireless-->{{No|Broadcom BC4310 bios locked}} || <!--Test Distro--> || <!--Comments-->2008
|-
| <!--Name-->Compaq Presario CQ35 CQ36 || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|VESA }} || <!--Audio--> || <!--USB--> || <!--Ethernet-->Realtek RTL8101E RTL8102E || <!--Wireless-->{{No|Broadcom BCM4312 bios locked}} || <!--Test Distro--> || <!--Comments-->2008 Compal LA-4743P -
|-
| <!--Name-->HP Compaq CQ42 CQ43 CQ45 || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|VESA }} || <!--Audio-->HD Audio with Coxenant codec || <!--USB--> || <!--Ethernet-->Realtek || <!--Wireless-->{{No|Realtek RTL8191SE, Realtek 8188CE}} || <!--Test Distro--> || <!--Comments-->2008 (Quanta AX1)
|-
| <!--Name-->Compaq Presario CQ50 CQ56 || <!--Chipset-->Nvidia MCP78S || <!--IDE--> || <!--SATA--> || <!--Gfx-->Geforce 8200M || <!--Audio-->nVidia HD Audio with codec || <!--USB--> || <!--Ethernet-->nvidia MCP77 || <!--Wireless-->{{unk|Atheros AR928X bios locked}} || <!--Test Distro--> || <!--Comments-->2008 [http://donovan6000.blogspot.co.uk/2013/06/insyde-bios-modding-wifi-and-wwan-whitelists.html bios modding risky] MCP72XE MCP72P MCP78U MCP78S
|-
| <!--Name-->CQ60 || <!--Chipset-->Single core Sempron to dual turion || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|VESA for Nvidia 8200M}} || <!--Audio-->{{yes|HD Audio}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{no| }} || <!--Wireless-->{{No| bios locked}} || <!--Test Distro--> || <!--Comments-->2008
|-
| <!--Name-->HP DV6700 || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{no|Vesa for Nvidia 8400M}} || <!--Audio-->{{no| }} || <!--USB-->{{no| }} || <!--Ethernet-->{{no| }} || <!--Wireless-->{{No|Intel }} || <!--Test Distro--> || <!--Comments-->2008 64bit -
|-
| <!--Name-->CQ60 || <!--Chipset-->Intel C2D || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|VESA for Nvidia 9200M}} || <!--Audio-->{{yes|HD Audio}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{no| }} || <!--Wireless-->{{No| bios locked}} || <!--Test Distro--> || <!--Comments-->2009 64bit -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->CQ57z || <!--Chipset-->AMD slow E-300 || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->{{Maybe|VESA ATi HD 6310 wrestler}} || <!--Audio-->{{unk| }} || <!--USB-->{{yes| }} || <!--Ethernet-->{{maybe|Realtek RTL8101 RTL8102}} || <!--Wireless-->{{No|RaLink RT5390}} || <!--Test Distro--> || <!--Comments-->2011 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name-->HP CQ58z 103SA E5K15EA || <!--Chipset-->AMD slow Dual-Core E1-1500 APU with A68M FCH || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->{{Maybe|VESA 2D for Radeon HD 7310}} || <!--Audio-->Realtek idt codec || <!--USB-->{{yes| }} || <!--Ethernet-->{{yes|Realtek 10/100 BASE-T}} || <!--Wireless-->{{No|Broadcom}} || <!--Test Distro--> || <!--Comments-->2011 64bit does not support AVX or SSE 4.1 - 39.6 cm (15.6") HD BrightView LED-backlit (1366 x 768)
|-
| <!--Name-->HP 635 DM1 || <!--Chipset-->AMD slow E-300, E-450 later E2-1800 on SB7x0 SB8x0 SB9x0 || <!--IDE-->{{N/A}} || <!--SATA-->ATI non efi SATA AHCI - IDE mode || <!--Gfx-->{{Maybe|use VESA 2D - AMD HD6310, 6320 to HD7340}} || <!--Audio-->{{Yes|Realtek ALC270A GR but not Wrestler HDMI Audio}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{Yes|rtl8169 driver covers Realtek RTL8101E RTL8102E}} || <!--Wireless-->{{unk|Atheros AR9285}} || <!--Test Distro--> || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 - 14" 1366 x 768 - f9 f10 - external battery - 2 stacked ddr3l sodimm slots max 16Gb under one base plate - removable keyboard -
|-
| <!--Name-->HP G6 2000-2b10NR 2000-2d10SX 2000-2d80NR || <!--Chipset-->AMD very slow E1-2000 E2-3000M on A50M (soldered) A4-3305A on A60M (socket) || <!--IDE-->{{N/A}} || <!--SATA-->2.5in || <!--Gfx-->{{Maybe|VESA AMD Radeon 6320, 6620G, 6520G, 6480G, 6380G}} || <!--Audio-->{{No| }} || <!--USB-->{{No| }} || <!--Ethernet-->{{maybe|Realtek 100 1000}} || <!--Wireless-->{{No|Realtek}} || <!--Test Distro--> || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 - 39.6-cm (15.6-in) HD LED BrightView (1366×768) - 1 or 2 ddr3l max 8G - 19VDC 3.42A Max 65W Tip 7.4mm x 5.0mm -
|-
| <!--Name-->HP ProBook 6465B || <!--Chipset-->AMD massively slow A6-3310MX or A6-3410MX with A60M || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->{{Maybe|VESA AMD 6480G or 6520G}} || <!--Audio-->{{No|IDT 92HD81B1X}} || <!--USB-->{{No| }} || <!--Ethernet-->{{maybe|rtl8169 Realtek 8111}} || <!--Wireless-->{{No|Intel AC 6205 or broadcom 4313 bios locked}} || <!--Test Distro--> || <!--Comments-->2013 64bit does not support AVX or SSE 4.1 - 13-inch or 14-inch runs hot -
|-
| <!--Name-->HP Elitebook 8470p 8570p || <!--Chipset-->Intel Quad i7-3840QM, i7-3610QM, i7-3520M, i5-3210M, i3-3130M, i3-2370M on Intel QM77 chipset || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|set the bios boot options to not fastboot and drive mode IDE rather than AHCI }} || <!--Gfx-->{{Maybe|Vesa 2d for HD4000 with some having switchable Radeon M2000 or 7570M}} || <!--Audio-->{{yes|HDAudio for IDT codec}} || <!--USB-->{{yes|USB2}} || <!--Ethernet-->{{No|Intel 82579LM }} || <!--Wireless-->{{No|Intel, Broadcom, Atheros}} || <!--Test Distro-->64 bit boots from CD* if safe mode 2 is used, although it is possible to remove the 'nodma' and 'debug' entries and boot || <!--Comments-->2013 64bit with SSE4.1 and AVX - 14in 1600 x 900 to 1366 x 768 - 2 DDR3L sodimm slots max 16Gb - TPM 1.2 - dual boot 32/64 bit is working fine -
|-
| <!--Name-->HP ProBook 6475b, Probook 4445s 4545s, HP Pavilion 15-b115sa, [https://support.hp.com/gb-en/document/c04015674#AbT6 HP mt41 Mobile Thin Client PC] || <!--Chipset-->AMD very slow A4 4300M, A6 4400M 4455M or A8 4500M with AMD A70M A76M FCH || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->{{Maybe|VESA 7420 7520G 7640G 7660G}} || <!--Audio-->{{no|HD Audio with idt or realtek codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{No|Realtek RTL8151FH-CG}} || <!--Wireless-->{{No|Intel 6205 or Broadcom BCM 43228 bios locked}} || <!--Test Distro--> || <!--Comments-->2014 64bit does support AVX or SSE 4.1 - 15.6-inch -
|-
| <!--Name-->HP ENVY 15-k112nl K1Y78EA || <!--Chipset-->Intel® Core™ i7 i7-4510U || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe| }} || <!--Gfx-->Intel HD4400 and/without NVIDIA® GeForce® GTX 850M || <!--Audio-->{{maybe| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{no| }} || <!--Wireless-->{{no| }} || <!--Test Distro-->Deadwood usb3 test iso || <!--Comments-->2014 64bit - 15.6" 768p to 1080p - 19.5V 3.33A/4.62A/6.15A 65W/90W/120W AC -
|-
| <!--Name-->HP ProBook 255 G1, 455 G1 F2P93UT#ABA, 645 G1, Envy 15-j151ea G7V80EA, Envy m6-1310sa (E4R01EA#ABU) || <!--Chipset-->AMD very slow Dual-Core E1-1500, or AMD Quad A4-4300M A8-4500M A10-4600M A4-5150M A6-5350M 2.9Ghz A10-5750M || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->{{Maybe|VESA 2D for 7310, 7420G 7520G 7640G 7660G 8350G 8450G or 8550G, 8650G, 8750G }} || <!--Audio-->{{No|HD Audio IDT 92HD91 codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|realtek}} || <!--Wireless-->{{No|Atheros}} || <!--Test Distro--> || <!--Comments-->2015 64bit does support AVX or SSE 4.1 - 14in and 15in 1366 x 768 - external battery - 2 ddr3l sodimm slots - 19.5v / 4.62A psu runs hot -
|-
| <!--Name-->HP ProBook 245 G4, 255 G2, 455 G2, 255 G3, 455 G3, 255 G4 80CB, 255 G5 82F6, 355 G2, HP Pavilion 15-p038na 15-g092sa 15-p091sa 15-G094S 15-p144na 15-p142na, 15-Af156sa || <!--Chipset-->AMD very slow A4-5000 A6-5200, E2-6110, E1-6010 E2-2000, E1-2100 E2-3800, A4-6210 A6-6310 A8-6410, E2-7110, A6-7310 A8-7410 APU on A68M || <!--IDE-->{{N/A}} || <!--SATA-->sata some with cdrw dvdrw || <!--Gfx-->{{Maybe|VESA Radeon R2 R4 R5}} || <!--Audio-->{{no|HD Audio ALC3201-GR}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 RTL8102E or Atheros 1GbE}} || <!--Wireless-->{{unk|Qualcomm Atheros AR9565}} || <!--Test Distro--> || <!--Comments-->2015 64bit most have SSE4 AVX but E2-2000 does not - 15.6-inch (1366 x 768) - 2 ddr3l sodimm slots - small 31Whr or 41Whr external battery covers 240 G4, 245 G4, 250 G4, 255 G4, 256 G4, 14G, 15G - keyboard repair swap requires removal of all components -
|-
| <!--Name-->HP Elitebook 725 G2, 745 G2, 755 G2 || <!--Chipset-->Amd Quad very slow A6-7050B A8-7150B 1.9GHz A10-7350B || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->{{Maybe|VESA on AMD R4 R5 Radeon R6 with DP and vga}} || <!--Audio-->{{No|HD audio with IDT 92HD91}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 PCIe GBE}} || <!--Wireless-->{{no|Broadcom or Atheros}} || <!--Test Distro--> || <!--Comments-->2016 64bit - 12.5-inch, 14" or 15.6in (all 1366 x 768) - 19.5V 65w 45W AC adapter - internal pull up tab battery under base which slides off - 2 ddr3l sodimm slots - keyboard swap requires removal of all components -
|-
| <!--Name-->HP ProBook 645 g2, Probook 445 G2, Probook 245 G2 most have cmos rtc battery || <!--Chipset-->AMD very slow A6-8600 A8-8700 a10- || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->{{Maybe|VESA 2D for Radeon R5 R6}} || <!--Audio-->{{No|HD Audio }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{No|Intel I219V 100/1000}} || <!--Wireless-->{{No|Intel or Qualcomm Atheros}} || <!--Test Distro--> || <!--Comments-->2016 64bit - 14in and 15.6-inch HD (1366 x 768) or FHD 1080p - 2 ddr3l sodimm slots max 16GB - internal battery - hp ac psu tip -
|-
| <!--Name-->HP Probook 455 G3 should have a cmos battery || <!--Chipset-->AMD slow A10-8700P || <!--IDE-->{{N/A}} || <!--SATA-->1 2.5in sata and most should have 9.5mm dvd-rw || <!--Gfx-->{{Maybe|VESA 2D for Radeon R5}} || <!--Audio-->{{No|HDAudio with Conexant CX7501 codec }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 Realtek RTL8111HSH-CG}} || <!--Wireless-->{{no|RTL8188EE }} || <!--Test Distro--> || <!--Comments-->2016 64bit - 2 ddr3l sodimm slots - keyboard swap problematic -
|-
| <!--Name-->HP Elitebook 725 G3, 745 G3, 755 G3, 725 G4, 745 G4, 755 G4, HP mt43 || <!--Chipset-->Amd slow A8-8600B, A10-8700B, A12-8800B to Quad A8 Pro 9600B to A10 9800 || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->{{Maybe|VESA on AMD R5 R6 R7 with DP and vga but screen is low res, dull colours, and blurry}} || <!--Audio-->{{No|HD audio with IDT codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{No|Broadcom 5762 PCIe GBE}} || <!--Wireless-->{{no|Realtek RTL8723BE-VB}} || <!--Test Distro--> || <!--Comments-->2016 64bit - 12.5-inch (1366 x 768) to 14" and 15.6in - 2 sodimm ddr3 - 19.5V 45W AC slim 4.5mm hp adapter - randomly shuts down and the noisy fans constantly on - keyboard swap problematic -
|-
| <!--Name-->HP ProBook 645 G3, 655 G3 should have a cmos rtc battery underside of mb || <!--Chipset-->AMD 8th Gen slow A10-8730B, A8-9600B (4c4t) A6-8530B (2c2t) || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->{{Maybe|VESA 2d for AMD R5}} || <!--Audio-->{{No|HD Audio}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 RTL8111HSH}} || <!--Wireless-->{{No|Intel or Realtek}} || <!--Test Distro--> || <!--Comments-->2016 64bit - 15.6in - 2 ddr4 sodimm slots - keyboard repair swap requires removal of all components -
|-
| <!--Name-->HP ProBook 250 G5 easy cmos and external main battery || <!--Chipset-->Intel i7-6500U, i5-6200U, i3-6100U to slow i3-6006U, N3710 all sse4.1 and avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe| }} || <!--Gfx-->{{maybe|VESA 2D for iGPU Intel HD405 to HD520 dGPU or AMD Radeon R5 430M}} || <!--Audio-->{{unk|HDAudio with Realtek ALC3227 (or ALC282) codec 0x0282 }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 rtl8111HSH}} || <!--Wireless-->{{no| }} || <!--Test Distro-->Deadwoods' latest usb3 test iso with noacpi || <!--Comments-->2016 64bit - 15.6 inch 768p - HP ac psu - 2 ddr4 sodimm slots -
|-
| <!--Name-->HP ProBook 250 G6 SL52 LA-E801P - easy cmos battery and external battery || <!--Chipset-->Intel tested '''7200U''' untested 7500U to slow N3060 || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|ahci on M.2 sata or 2.5in whichever installed with 1 m.2 permanent and internal dvdrw}} || <!--Gfx-->{{Maybe|VESA 2D for Intel Intel HD Graphics 620 or AMD Radeon 520}} || <!--Audio-->{{yes|HDAudio 0x8086, 0xa170 or 0x8086, 0x9dc8 with ALC3227 aka ALC282 codec 0x10EC, x0282}} || <!--USB-->{{maybe|intel sunrise point-lp USB3.0 xHCI}} || <!--Ethernet-->{{yes|rtl8169 Realtek RTL8111}} || <!--Wireless-->{{No|RTL8821CE or Intel wifi}} || <!--Test Distro-->Deadwoods' latest usb3 test iso with noacpi || <!--Comments-->2017 64bit 768p or 1080p - 19.5V 65W - 2 DDR4 sodimm slots max 16Gb - keyboard swap problematic - synaptics touchpad - poor hinges -
|-
| <!--Name-->HP Pavilion 14-BS, HP 15-BS LA-E802P cmos battery and external battery || <!--Chipset-->Intel i3-7200U to slow Celeron || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata 2.5in (possibly requires the drive cable and M.2 sata3, most have no cdrw dvdrw}} || <!--Gfx-->{{Maybe|VESA 2d for Intel}} || <!--Audio-->{{No|HDAudio 0x8086, 0x9d70 with ALC codec 0x10EC, x0}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|Realtek rtl8169}} || <!--Wireless-->{{No|RTL8188CTV, RTL8821CE or Intel Dual Band Wireless-AC 3168}} || <!--Test Distro-->Deadwoods' latest usb3 test iso || <!--Comments-->2017 64bit 768p all - 19.5V 65W - DDR4 slot max 8Gb - keyboard swap problematic - synaptics touchpad -
|-
| <!--Name-->HP 14-bw022na - cmos coin battery and external battery || <!--Chipset-->AMD very slow A6-9120 APU || <!--IDE-->{{N/A}} || <!--SATA-->m.2 sata || <!--Gfx-->{{Maybe|VESA 2D for R3}} || <!--Audio-->{{no|HDAudio VOID with conexant CX7501 codec}} || <!--USB-->{{maybe|USB3 not working but port on the right works}} || <!--Ethernet-->{{yes|Realtek GbE}} || <!--Wireless-->{{No|Realtek}} || <!--Test Distro-->Deadwoods' latest usb3 test iso with noacpi || <!--Comments-->2017 64bit 768p to 900p - keyboard swap problematic -
|-
| <!--Name-->HP Probook 455 G4, Probook 455 G5, cmos battery on underside of mb take off back cover and below wifi card || <!--Chipset-->AMD very slow A10-9600P APU, A9-9410, A6-9210 APU || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->{{Maybe|VESA Radeon R4, R5 or R6}} || <!--Audio-->{{No|HD }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|realtek 1GbE}} || <!--Wireless-->{{no|realtek or intel Wireless-AC 7265}} || <!--Test Distro--> || <!--Comments-->2017 64bit 15.6in 768p - 2 ddr4 sodimm slots - keyboard swap problematic - rr03xl battery -
|-
| <!--Name-->HP ProBook 255 G6 (), easy cmos and external battery || <!--Chipset-->AMD very slow E2-9000e, A9-9420, 9220P, A4-9125 (all 2c) AMD A6-9225 AMD A9-9425 || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata 2.5in (possibly requires the drive cable and M.2 sata3 and internal cdrw dvdrw}} || <!--Gfx-->{{Maybe|VESA 2d for R2 R3 R4}} || <!--Audio-->{{No|HDAudio 0x1022, 0x157a or 0x1002, 0x15b3 with ALC codec 0x10EC, x0}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|Realtek rtl8169}} || <!--Wireless-->{{No|RTL8188CTV, RTL8821CE or Intel Dual Band Wireless-AC 3168}} || <!--Test Distro--> || <!--Comments-->2017 64bit 768p all - 19.5V 65W - DDR4 slot max 8Gb - keyboard swap problematic - synaptics touchpad -
|-
| <!--Name-->HP ProBook 255 G7 (la-g078p) - no cmos battery so needs internal battery || <!--Chipset-->AMD very slow E2-9000e, A9-9420, 9220P, A4-9125 (all 2c) AMD A6-9225 AMD A9-9425 || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata 2.5in (possibly requires the drive cable and M.2 sata3, most have no internal cdrw dvdrw}} || <!--Gfx-->{{Maybe|VESA 2d for R2 R3 R4}} || <!--Audio-->{{No|HDAudio 0x1022, 0x157a or 0x1002, 0x15b3 with ALC codec 0x10EC, x0}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|Realtek rtl8169}} || <!--Wireless-->{{No|RTL8188CTV, RTL8821CE or Intel Dual Band Wireless-AC 3168}} || <!--Test Distro--> || <!--Comments-->2017 64bit 768p all - 19.5V 65W - DDR4 slot max 8Gb - keyboard swap problematic - synaptics touchpad -
|-
| <!--Name-->ProBook 245 g8 - no cmos rtc coin battery but uses internal battery || <!--Chipset-->AMD very slow A6-9225, A4-9125, A6-8350B, A4-5350B APU || <!--IDE-->{{N/A}} || <!--SATA-->m.2 sata || <!--Gfx-->{{Maybe|VESA R4 R6}} || <!--Audio-->{{no|HDAudio}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|Realtek GbE}} || <!--Wireless-->{{No|Realtek}} || <!--Test Distro-->Deadwoods' latest usb3 test iso || <!--Comments-->2017 64bit 768p - many later variants - keyboard swap problematic -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Probook 255 G7 84AE 7DE72EA 7DE73EA (epv51 la-g076p) - CMOS Error (502) replace main internal battery HT03XL to have bios remember settings || <!--Chipset-->Ryzen 3 2200U 2300U (2c4t), R5 2500U, R7 2700U (4c8t) Raven Ridge || <!--IDE-->{{N/A}} || <!--SATA-->{{no|M.2 (Sata or NVMe) and very optional 2.5in sata, most have mini sata port}} || <!--Gfx-->{{Maybe|VESA 2d 640p to 768p for AMD Vega 3, 6, or 8}} || <!--Audio-->{{unk|HDAudio 0x1022, 0x15e3 with ALC236 0x10ec, 0x0236 codec}} || <!--USB-->{{maybe|USB3 }} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no|Realtek RTL8821CE, 8822BE or Intel AC 8265}} || <!--Test Distro-->AROS x64 deadwoods' iso does not boot with cd/dvd and installed to 2.5in ssd, boots to grub choice, select but no further and reboots || <!--Comments-->2017 64bit - 12.5 to 15.6in 768p mostly to 1080p - 1 on smaller laptops or 2 ddr4 2400mhz sodimm slots on larger laptops max 16Gb - hp 4.5mm blue tip charging - keyboard swap problematic - esc boot options f9 boot order f10 bios - synaptics touchpad -
|-
| <!--Name-->HP EliteBook 725 G5, 735 G5, 745 G5, 755 G5, Probook 455 G6, ProBook 645 G6 || <!--Chipset-->Ryzen 3 2200U 2300U (2c4t), R5 2500U, R7 2700U (4c8t) Raven Ridge || <!--IDE-->{{N/A}} || <!--SATA-->{{no|M.2 (Sata or NVMe) and very optional 2.5in sata, some have mini sata port but no cdrw dvdrw}} || <!--Gfx-->{{Maybe|VESA 2d 640p to 768p for AMD Vega 3, 6, or 8}} || <!--Audio-->{{No|HDAudio 0x1022, 0x15e3 with ALC 0x10ec, 0x0 codec}} || <!--USB-->{{maybe|USB3 }} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no|Realtek RTL8821CE, 8822BE or Intel AC 8265}} || <!--Test Distro-->Deadwoods' latest usb3 test iso does not boot software error || <!--Comments-->2017 64bit - 12.5 to 15.6in 768p mostly to 1080p - 1 on smaller laptops or 2 ddr4 2400mhz sodimm slots on larger laptops max 16Gb - hp 4.5mm blue tip charging - keyboard swap problematic - esc boot options f9 boot order f10 bios - synaptics touchpad -
|-
| <!--Name-->HP 14-cm, 15-bw0, HP 15-db0043na, HP 15-db0996na, HP 15-db0997na, 17-ca0007na, 17-ca1, ProBook 645 G4 - no cmos battery || <!--Chipset-->Ryzen 2200U (2c 4t) 2500U (4c 8t) with AMD Carrizo FCH 51 || <!--IDE-->{{N/A}} || <!--SATA-->{{no|1 M.2 and 1 2.5in on some larger models and hdd port }} || <!--Gfx-->{{Maybe|VESA Radeon R5 and later Vega 3 or 7}} || <!--Audio-->{{No|HDaudio 0x1002, 0x103c or 0x1022, 0x157a with Realtek ALC3227 0x10ec, 0x0282 but ATI HDMI}} || <!--USB-->{{Maybe|USB3 USB boot drive stuck on kitty's eyes}} || <!--Ethernet-->rtl8169 RTL8111E || <!--Wireless-->{{No|RTL 8723DE 8821 bios locked}} || <!--Test Distro-->2020 Icaros 2.3 USB, Deadwoods' latest usb3 test iso does not boot software error || <!--Comments-->2018 64bit 2kg - screen is dim 14in, 15.6in or 17.3" 768p or 1080p - 65W 19.5V ac adapter - internal 3-cell 41 Wh Li-ion battery does not last long - 2 ddr4 sodimm slots - no DVD-Writer - keyboard swap problematic -
|-
| <!--Name-->HP ProBook 250 G7, 250 G8 - no cmos battery so needs internal battery and needs usb3 boot due to garbage bios boot options || <!--Chipset-->Intel 8235U 8265U || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|M.2 nvme not working, optional sata 2.5in requires LS-G072P and ribbon cable, if internal cdrw dvdrw partial boot}} || <!--Gfx-->{{Maybe|VESA 2D for Intel WhiskeyLake-U 620 GT2 UHD}} || <!--Audio-->{{No|HDAudio 0x8086, 0xa170 or 0x8086, 0x9dc8 with ALC236 codec 0x10EC, x0236}} || <!--USB-->{{maybe|Cannon Point-LP USB3.1 xHCI}} || <!--Ethernet-->{{maybe|rtl8169 Realtek RTL8111}} || <!--Wireless-->{{No|RTL8821CE or Intel Dual Band Wireless-AC 3168}} || <!--Test Distro-->Deadwoods' latest usb3 test iso does not boot stuck on kittys eyes || <!--Comments-->2018 64bit 1080p all - 19.5V 65W - DDR4 slot max 16Gb - keyboard swap problematic - synaptics touchpad -
|-
| <!--Name-->HP 255 G7 7DC73EA 2D200EA 87CE (fpp55 la-g07jp), - CMOS Error (502) replace 41.04Wh ht03xl hto3xl dynapack suzhou main battery to have bios remember settings || <!--Chipset-->'''tested''' R5 3500U (4c8t) '''untested''' mostly dual cores - AMD Athlon Gold 3150U (2c2t), Silver 3050U APU (2c2t), Ryzen 3 Pro 3145U APU, 3200U (2c4t) || <!--IDE-->{{N/A}} || <!--SATA-->{{no|1 m.2 NVMe or sata3 up to 2280, optional 2.5in sata, many have mini-sata slimline 6+7 internal port but no physical 9mm drive}} || <!--Gfx-->{{Maybe|VESA 2D from 640p to 1080p for AMD Vega 3, 6 or 8 with up to 2gb ram taken}} || <!--Audio-->{{unk|HDAudio 0x1022, 0x15e3 with realtek ALC236 codec 0x10ec, 0x0236}} || <!--USB-->{{maybe|USB3 but no usb-c}} || <!--Ethernet-->{{maybe|rtl8169 Realtek GbE RTL8111HSH}} || <!--Wireless-->{{No|Realtek 8822BE}} || <!--Test Distro-->2025 Aros One 32bit and 64bit burnt iso does not fully boot (stuck on kitty's eyes) and installed onto 2.5in on another compatible computer, sometimes has dosboot bootstrap error -6 || <!--Comments-->2018 64bit - 14in / 15.6in dim tn panel 768p or 1080p - 2 ddr4 sodimm slots max 16gb - hp 19.5V 45W 65W AC blue tip round 4.5 mm - keyboard swap problematic - synaptics touchpad - caps lock blinking 3 times then 2 quick pulses means ram or bios issue - f9 boot order f10 uefi - laptop needs usb3 to boot and use so avoid until usb3 arrives
|-
| <!--Name-->HP ProBook 450 G5 needs main battery for bios settings saved || <!--Chipset-->Intel i7-8550U, i5-8250U, i3-8130U, i7-7500U, i5-7200U, i3-7100U, i3-7020, i3-6006U all sse4.1 and avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe| }} || <!--Gfx-->{{maybe|VESA 2D for Intel UHD}} || <!--Audio-->{{unk|HDAudio with codec }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 rtl8111HSH}} || <!--Wireless-->{{no| }} || <!--Test Distro-->Deadwoods' latest usb3 test iso with noacpi || <!--Comments-->2018 64bit - 15.6 inch 768p or 1080p - HP ac psu, 1 ddr4 sodimm slot -
|-
| <!--Name-->[https://support.hp.com/gb-en/document/c06955717 ProBook 245 g8], Probook 445R G6, 455R G6, HP14-dk0599sa, pavilion 15-cw1511na 15-cw1507sa, HP 15s-eq1516sa no cmos battery || <!--Chipset-->AMD Athlon Gold 3150U (2c2t), Silver 3050U APU (2c2t), Ryzen 3 Pro 3145U APU, 3200U (2c4t) and 3500U (4c8t) || <!--IDE-->{{N/A}} || <!--SATA-->{{no|1 m.2 (NVMe or sata3 up to 2280), optional 2.5in sata but resets}} || <!--Gfx-->{{Maybe|VESA 2D from 640p to 1080p for AMD Vega 3, 6 or 8 with up to 2gb ram taken}} || <!--Audio-->{{unk|HDAudio 0x1022, 0x15e3 with realtek ALC codec 0x10ec, 0x0}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 Realtek GbE RTL8111HSH}} || <!--Wireless-->{{No|Realtek 8822BE}} || <!--Test Distro-->Aros || <!--Comments-->2018 64bit - 14in / 15.6in dim tn panel 768p or 1080p - 2 ddr4 sodimm slots max 16gb - hp 19.5V 45W 65W AC blue tip round 4.5 mm - keyboard swap problematic - synaptics touchpad - f9 boot order f10 uefi
|-
| <!--Name-->HP ProBook 450 G6 needs main battery for bios settings saved || <!--Chipset-->Intel i7-8565U, i5-8265U, i3-8165U all sse4.1 and avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe| }} || <!--Gfx-->{{maybe|VESA 2D for Intel UHD 620}} || <!--Audio-->{{unk|HDAudio with Realtek ALC3246 aka ALC295 codec }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 rtl8111HSH}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2019 64bit - 15.6 inch 768p or 1080p - 45W 19.5V HP ac psu - 2 ddr4 sodimm slots -
|-
| <!--Name-->Elitebook 735 G6 5VA23AV, Elitebook 745 G6, 255 g8, HP 15s-dy - no cmos battery || <!--Chipset-->AMD® Ryzen™ 5-3500U Ryzen 3-3300U AMD Ryzen 3-3250U AMD Athlon® Gold 3150U AMD Athlon Silver 3050U AMD 3020e || <!--IDE-->{{N/A}} || <!--SATA-->{{no|m.2 2280 nvme in legacy - hp sure start and secure boot disabled but still issues with gpt installs - LS-H323P LS-K201P}} || <!--Gfx-->{{Maybe|VESA for Vega 8, 5 or 3}} || <!--Audio-->{{No|HDAudio 6.34 ahi with realtek ALC codec 0x10EC, 0x0295}} || <!--USB-->{{maybe|USB3 type-A port boots stick partially to kitty eyes}} || <!--Ethernet-->{{Maybe|rtl8169 realtek RTL8111E or 8111H}} || <!--Wireless-->{{No|realtek or intel}} || <!--Test Distro-->2020 Icaros 2.3 onto USB and AROS One 1.8 USB, Deadwoods' latest usb3 test iso with noacpi || <!--Comments-->2019 64bit - 15.6in 1366x768 to 1920x1080 - 2 3200MHz DDR4 sodimms - 19.5V 2.31A or 20V 2.25 45W 4.5X3.0MM hp - esc bios setup, f9 boot device select - low travel keyboard - poor hw03xl or battery life - plastic hooked base with retained screws - touchpad? -
|-
| <!--Name-->HP ProBook 445 G7, 455 G7 || <!--Chipset-->Ryzen 3 4300U 5 4500U 4700U || <!--IDE-->{{N/A}} || <!--SATA-->1 sata and 1 nvme || <!--Gfx-->{{Maybe|VESA Vega 3}} || <!--Audio-->{{unk|HDAudio with realtek alc236 codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|realtek rtl8111ep}} || <!--Wireless-->{{No|realtek RTL8822CE or intel AC 9260 or Wi-Fi 6 AX200}} || <!--Test Distro-->Deadwoods' latest usb3 test iso || <!--Comments-->2020 64bit - 14 inch 768p or 1080p - 2 ddr4 sodimm slots - smart 45w 65w hp or usb-c charging - keyboard swap problematic - RE03XL battery -
|-
| <!--Name-->HP ProBook 450 G7 || <!--Chipset-->Intel || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe| }} || <!--Gfx-->{{maybe|VESA 2D for Intel UHD}} || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 rtl8111EP}} || <!--Wireless-->{{no| }} || <!--Test Distro-->Deadwoods' latest usb3 test iso with noacpi || <!--Comments-->2020 15.6 inch 768p or 1080p - 1 ddr4 sodimm slot -
|-
| <!--Name-->HP EliteBook 745 G7, 845 G7, HP 15-EH0006NA || <!--Chipset-->AMD Ryzen 3 4300U, 5 4500U, PRO 4650U || <!--IDE-->{{N/A}} || <!--SATA-->SSD M.2 || <!--Gfx-->{{Maybe|VESA AMD Radeon Vega 8}} || <!--Audio-->{{unk|Hdaudio with codec 0x10EC, 0x0257}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{No| }} || <!--Test Distro--> || <!--Comments-->2020 64bit - 15.6in 1080p - 1 ddr4 sodimm slot - Bang & Olufsen speakers - keyboard swap problematic -
|-
| <!--Name-->HP ProBook 255 G8, HP 245 G9, ProBook 255 G9 816C2EA#ABE, - no cmos battery only internal battery || <!--Chipset-->AMD RYZEN 3 5300u, 5425U, 5 5500U 5625U, 7 5700u || <!--IDE-->{{N/A}} || <!--SATA-->{{no|NVMe}} || <!--Gfx-->{{Maybe|VESA AMD Vega 6 or 8 hdmi 1.4B}} || <!--Audio-->{{unk|HDAudio}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 Realtek RTL8111HSH-CG GbE}} || <!--Wireless-->{{No|Realtek RTL8822CE or Intel}} || <!--Test Distro--> || <!--Comments-->2021 64bit - 14" to 15.6in 768p to 1080p poor gamut - 45 or 65w hp psu - 2 ddr4 sodimm slots max 16GB - keyboard swap problematic -
|-
| <!--Name-->HP ProBook 450 G9 || <!--Chipset--> || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe| }} || <!--Gfx-->{{maybe|VESA 2D for Intel Iris Xe}} || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 rtl8111H}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2020 15.6 inch - 1 ddr4 sodimm slot -
|-
| <!--Name-->HP EliteBook 645 g7, 835 G8, 845 g8, HP ENVY x360 13 15, HP 17-cp0021na || <!--Chipset-->AMD Ryzen 5 5650U, 7 5800U, R7 Pro 5850U || <!--IDE-->{{N/A}} || <!--SATA-->NVMe || <!--Gfx-->{{Maybe|VESA 2D for AMD Radeon}} || <!--Audio-->{{unk|HDAudio 0x, 0x with ALC3247 aka ALC236 codec 0x10ec, 0x0236}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{Maybe|Realtek 1Gbe on 645 only}} || <!--Wireless-->{{No| }} || <!--Test Distro--> || <!--Comments-->2021 64bit - 13.3" or 14" 1080p - poor screens low nits and srgb score - 845 gets hot ue to poor cooling - slim round hp ac - keyboard swap problematic -
|-
| <!--Name-->HP Dev One, HP ProBook 455 G8 || <!--Chipset-->AMD Ryzen 7 5800U, R7 5850U || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Maybe|VESA }} || <!--Audio-->{{unk| }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2021 64bit 15.6" 1080p - 2 internal sodimm slots - hp barrel charging -
|-
| <!--Name-->Elitebook 655 g9 669y1ut#aba, || <!--Chipset-->AMD Ryzen 5 PRO 5675U || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Maybe|VESA }} || <!--Audio-->{{unk| }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2021 64bit 15.6" 1080p - 1 or 2 internal sodimm slots - usb-c charging -
|-
| <!--Name-->HP probook 635 Aero G8 || <!--Chipset-->AMD Ryzen 5 5600U || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2921 64bit - 14in 1080p - 2 ddr4 slots - ec chip nuvoton NPCX797HA1B - bios winbond 250256JYEN -
|-
| <!--Name-->HP PROBOOK X360 435 G8 cmos battery || <!--Chipset-->RYZEN 5 5600U || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe| }} || <!--Gfx-->{{maybe|Vesa 2D }} || <!--Audio-->{{maybe|HDaudio with ALC236 codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no|RTL8822CE or Intel AX200}} || <!--Test Distro--> || <!--Comments-->2021 64bit - hp round ac plug -
|-
| <!--Name-->HP Elitebook 845 g9 || <!--Chipset-->AMD 6000 series 6850u || <!--IDE-->{{N/A}} || <!--SATA-->M.2 NVMe || <!--Gfx-->{{Maybe|VESA 2D for Vega 8}} || <!--Audio-->{{unk|HDaudio with codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no| }}Qualcomm Atheros || <!--Test Distro--> || <!--Comments-->2022 64bit aluminum case - 14in 1080p to 2140p 16:10 poor screen again - 2 internal ddr5 sodimm slots - usb-c ac charging avoid any knocks - keyboard swap problematic -
|-
| <!--Name-->HP ProBook 445 G10, 455 G10 || <!--Chipset-->AMD Ryzen 5 7530U || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D for AMD Vega 7 || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2023 64bit - 15.6in - hp round ac -
|-
| <!--Name-->Hp 455 G11 || <!--Chipset-->AMD Ryzen 3 7335U (4c8t), 5 7535U (6c12t), 7 7735U (8c16t) || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D for AMD Vega 7 || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 RTL8111HSH}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2023 64bit - 35.6 cm (14.0 in) 1920x1200 or 2560x1600 - usb-c 45w or 65w ac - 2 ddr5 sodimm slots max 32gb -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|}
====IBM/Lenovo====
[[#top|...to the top]]
Build quality (Lowest to highest)
<pre >
iSeries
Edge
Ideapad
Thinkpad - good cases and construction but electronic internals same as anyone else
</pre >
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->Thinkpad 390X 390E (2626) || <!--Chipset-->Neo Magic MM2200 with C400 P2-266 to P3 500MHz || <!--IDE--> || <!--SATA--> || <!--Gfx-->use VESA || <!--Audio-->{{No|256AV or ESS Solo-1}} || <!--USB--> || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{N/A}} || <!--Test Distro--> || <!--Comments-->1998 32bit
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Thinkpad 600x || <!--Chipset-->Intel 440BX || <!--IDE-->{{Maybe| }} || <!--SATA--> || <!--Gfx-->{{Maybe|use VESA Neomagic NM2360 MagicMedia 256ZX}} || <!--Audio-->{{No|Crystal CS4297A codec}} || <!--USB--> || <!--Ethernet-->{{N/A| }} || <!--Wireless-->{{N/A| }} || <!--Test Distro-->Icaros 1.3.1 || <!--Comments-->1998 32bit a little support - earlier 600 and 600e were Pentium 2 based
|-
| <!--Name-->Thinkpad X20 (2662-32U) X21 || <!--Chipset-->Intel 440 BX ZX DX || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio-->{{no|AC97 with Cirrus Logic Crystal cs4281}} || <!--USB-->1.1 || <!--Ethernet-->no mini pci intel e100 || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2002 32bit
|-
| Thinkpad T20 (2647) T21 (26) T22 || 440BX || {{Maybe| }} || {{N/A}} || {{partial|Savage IX-MV (VESA only)}} || {{no|Cirrus Logic CS 4614/22/ 24/30}} || {{yes|USB 1.1}} || {{yes|Intel PRO 100}} || {{N/A}} || Icaros 1.2.4 || 2002 32bit
|-
| <!--Name-->A21e (2628, 2655) A22e || <!--Chipset-->440MX || <!--IDE--> || <!--SATA--> || <!--Gfx-->Ati rage mobility || <!--Audio-->{{no|AC97 Cs4299 CS4229}} || <!--USB--> || <!--Ethernet-->intel e100 || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2002
|-
| Thinkpad T23 (2647) || i810 || {{yes|IDE}} || {{N/A}} || {{maybe|S3 Super Savage IX/C SDR (VESA only)}} || {{maybe|AC'97 CS4299}} || {{yes|USB 1.1}} || {{yes|Intel ICH3 PRO 100 VE}} || {{no|Realtek RTL8180L others with bios hacking risky}} || || 2003 32bit with some support
|-
| <!--Name-->Thinkpad X22 X23 X24 || <!--Chipset-->830 || <!--IDE--> || <!--SATA--> || <!--Gfx-->ATi Mobility M6 LY || <!--Audio-->Ac97 CS4299 || <!--USB-->2 x 1.1 || <!--Ethernet-->Intel Pro 100 || <!--Wireless-->Actiontec Harris Semi Intersil Prism 2.5 (X23 and X24 only) || <!--Test Distro--> || <!--Comments-->2003 32bit with slice Ultrabase X2 -
|-
| <!--Name-->A30 A30p || <!--Chipset-->830 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Ati Radeon M6 || <!--Audio-->AC97 CS 4299 || <!--USB--> || <!--Ethernet-->Intel Pro 100 ve || <!--Wireless-->{{No|Intel 2200 bios locked}} || <!--Test Distro--> || <!--Comments-->2003 32bit
|-
| <!--Name-->A31 A31p R31 R32 T30 || <!--Chipset-->830 || <!--IDE-->{{yes| }} || <!--SATA-->{{N/A| }} || <!--Gfx-->Ati Radeon 7500 or FireGL || <!--Audio-->{{yes|AC97 Intel with AD1881A codec}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{yes| Intel Pro 100 ve}} || <!--Wireless-->{{No|Intel bios locked}} || <!--Test Distro-->[https://forums.lenovo.com/t5/Android-Ecosystem-Developers/AROS-An-operation-system-inside-Android/td-p/1441741 Icaros 1.5.2] || <!--Comments-->2003 32bit Also tested with Icaros 2.0.3.
|-
| Thinkpad X30 (2673) X31 (2884-xx2) X31t || i830 || {{yes}} || {{N/A}} || {{maybe|VESA only Radeon M6 Mobility}} || {{yes|AC97 - AD1981B codec}} || {{yes|USB 1.1}} || {{yes|Intel PRO 100}} || {{no|Cisco Aironet or Intel 2915 but atheros with bios hacking}} || Icaros 1.4 || 2004 32bit sound bit distorted
|-
| <!--Name-->R50e R51 || <!--Chipset-->855M || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|Intel 855M use VESA}} || <!--Audio-->intel AC97 with AD1981B codec || <!--USB--> || <!--Ethernet-->{{Yes|Intel 100 VE}} || <!--Wireless-->{{No|Intel PRO Wireless 2200BG bios locked}} || <!--Test Distro--> || <!--Comments-->2004 32bit -
|-
| IBM Thinkpad T40 (2373) T41 T41p (2379) T42 T42p T43 T43p || Intel 8xx || {{partial|PIO}} || {{N/A}} || {{partial|ATI mobility 7500 9000 (VESA only)}} || {{yes|AC97 playback}} || {{yes|uhci 1.1 and ehci 2.0}} || {{no|e1000}} || {{Maybe|Intel 2200bg bios locked but possible AR5BMB-44 AR5212 FRU 39T0081 mini PCI}} || Icaros 1.2.4 || 2004 32bit 16v IBM plug - Centrino Needs ATA=nodma option - issues with the inner chip of the SMT BGA graphics chip
|-
| Thinkpad X32 || i855 || {{yes|40, 60 or 80GB 2.5" PATA HDD}} || {{N/A}} || {{maybe|VESA only ATI Mobility Radeon 7000 with 16MB}} || {{maybe| Intel AC'97 Audio with a AD1981B codec}} || {{yes|USB}} || {{no|Intel 1000}} || {{no|Intel 2200 but atheros with bios hacking}} || 2016 Icaros 2.1 || 2004 32bit - 12.1" TFT display with 1024x768 resolution; 256 or 512MB PC2700 memory standard (2GB max)
|-
| <!--Name-->Thinkpad X40 X40t by Quanta || <!--Chipset--> || <!--IDE--> || <!--SATA-->{{N/A}} || <!--Gfx-->{{maybe|Intel 800 (VESA only)}} || <!--Audio-->{{yes|AC97 AD1981B}} || <!--USB-->{{yes}} || <!--Ethernet-->{{no|Intel e1000}} || <!--Wireless-->{{Maybe|Intel but most atheros with bios hacking - difficult though}} || <!--Test Distro--> || <!--Comments-->2004 32bit last IBM design
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Thinkpad X41 (IBM) MT 1864 1865 2525 2526 2527 2528 x41t (Lenovo) MT 1866 1867 || <!--Chipset-->Intel with single core 1.5 1.6 and tablet 1.2GHz || <!--IDE-->{{yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Yes|Intel 915GML 2D}} || <!--Audio-->{{yes|AC97 AD1981B}} || <!--USB-->{{yes}} || <!--Ethernet-->{{no|Broadcom BCM5751M tg3}} || <!--Wireless-->{{Maybe|Intel or MiniPCI Wi-Fi Atheros AR5BMB FRU 39T0081 but ordinary atheros 54meg needs risky bios hacking}} || <!--Test Distro--> || <!--Comments-->2005 32bit - amongst first Lenovo design
|-
| <!--Name-->R52 (most 18xx) || <!--Chipset-->Intel 915 || <!--IDE-->{{Yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Yes|Intel 915GML 2D}} || <!--Audio-->{{yes|AC97 AD1981B}} || <!--USB-->{{yes}} || <!--Ethernet-->{{no|Broadcom}} || <!--Wireless-->{{no|Broadcom bios locked}} || <!--Test Distro--> || <!--Comments-->2005 32bit
|-
| <!--Name-->R52 1846, 1847, 1848, 1849, 1850, 1870 || <!--Chipset-->ATi 200m || <!--IDE-->{{Yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{No|ATI}} || <!--Audio-->{{yes|AC97 AD1981B}} || <!--USB-->{{yes}} || <!--Ethernet-->{{no|Broadcom BCM5751M tg3}} || <!--Wireless-->{{no|Broadcom bios locked}} || <!--Test Distro--> || <!--Comments-->2005 32bit
|-
| <!--Name-->Thinkpad T60 T60P
* 64bit - 6 or 8 is 16:10 on T60/p, eg. 8742-CTO 15.4"
* 32bit - 1 and 2 are 14", 15" 4:3, like 2007-YM3 or 1952-CTO
|| <!--Chipset-->*any* T60/p will take a Core 2 Duo CPU with newer BIOS || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->Intel GMA (2D) with "p" graphics card (ATi V5200 or V5250) || <!--Audio-->{{no|HD Audio}} || <!--USB-->{{yes}} || {{no|e1000e 82573L}} || <!--Wireless-->{{No|Intel ipw3945 ABG but atheros with Middleton's or Zender BIOS hacking risky}} || Icaros 1.4 || <!--Comments-->2006 -
|-
| <!--Name-->X60 x60s x60t tablet || <!--Chipset-->945GMS 940GML || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{yes|Intel GMA (2D)}} || <!--Audio-->{{no|AD1981 HD Audio}} || <!--USB-->{{yes}} || <!--Ethernet-->{{no|Intel}} || <!--Wireless-->{{no|Intel 3945 ABG or fru 39T5578 Atheros 5K AR5BXB6 ar5007eg with bios hacking}} || <!--Comments-->Icaros 1.4 || 2006 32bit - perhaps needs a zendered bios update but risky
|-
| <!--Name-->R60 R60e || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->intel 950 with optional radeon x1300 x1400 || <!--Audio-->HD Audio with 1981HD codec || <!--USB--> || <!--Ethernet-->Intel or Broadcom || <!--Wireless-->{{Maybe|Intel 3945 or atheros fru 39T5578 bios locked}} || <!--Test Distro--> || <!--Comments-->2006 32bit
|-
| Thinkpad T61 T61p without Middleton's or Zender BIOS || Core 2 Duo CPU T7300 T8300 || {{N/A}} || <!--SATA-->{{yes| }} || Intel GMA (2D), NVS 140m or Quadro FX 570M () || {{maybe|HD Audio with Analog Devices AD1984 or AD1984A HD Audio Codec routed to the line output}} || <!--USB-->{{yes}} || {{no|intel e1000e 82573L}} || {{No|Intel but atheros with bios hacking risky}} || Icaros 1.6, AROS One || 2007 64bit
|-
| <!--Name-->X61 x61s X61T Tablet || <!--Chipset-->Core Duo T8100 on i965 || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->{{yes|Intel GMA 3100 (2D) slow 3D}} || <!--Audio-->{{no|AD1984 HD Audio}} || <!--USB-->{{yes|USB 2.0}} || <!--Ethernet-->{{no|Intel 82566DM}} || <!--Wireless-->{{maybe|Atheros AR5212 (some revisions use Intel WLAN runs very hot) bios locked}} || <!--Test Distro--> || <!--Opinion-->2007 64bit ultrabook running very hot - ddr2 max 4gb -
|-
| <!--Name-->R61 R61i || <!--Chipset-->Intel 965 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->intel 965 || <!--Audio-->HD Audio with conexant codec || <!--USB--> || <!--Ethernet-->Broadcom BCM5787M || <!--Wireless-->{{No|Intel 3945 bios locked}} || <!--Test Distro--> || <!--Comments-->2008 64bit
|-
| Lenovo 3000 N200 || <!--Chipset-->Santa Rosa || {{N/A}} || <!--SATA-->{{maybe| }} || {{yes|Geforce 7300 (2D)}} || {{yes|ALC262 HD Audio}} || <!--USB-->{{yes}} || {{no|Broadcom}} || {{no|Intel 3945 bios locked}} || Icaros 1.4 || 2007 64bit 3D graphics parts are supported but buggy.
|-
| Lenovo 3000 N200 / V200 || GM965 ICH9-M with Intel Mobile Core 2 Duo T5450 || {{N/A}} || <!--SATA-->{{maybe| }} || {{yes|X3100 (2D)}} || {{Maybe|HD Audio ALC269VB or CX20549}} || {{yes| }} || {{no|BCM5906M}} || {{no|Intel 3965 / 4965AGN bios locked}} || Icaros 1.4.1 2.1 || 2007 64bits of laptop works
|-
| <!--Name-->X300 || <!--Chipset-->Core 2 Duo Merom SL7100 1.2GHz || <!--IDE-->{{N/A}} || <!--SATA-->1.8 inch || <!--Gfx-->{{maybe|Intel X3100}} || <!--Audio-->HD Audio AD1984A || <!--USB--> || <!--Ethernet-->Intel || <!--Wireless-->{{No|Intel 4965 bios locked}} || <!--Test Distro--> || <!--Comments-->2007 64bit 13.3" TFT 1440x900 (WXGA+) with LED backlight
|-
| <!--Name-->Thinkpad Edge 11″ AMD K325 || <!--Chipset-->M880G || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{maybe|VESA for ATI HD4200}} || <!--Audio-->{{maybe| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 8111}} || <!--Wireless-->{{no|8192CE (Realtek 8176) bios locked}} || <!--Test Distro--> || <!--Comments-->2007 little support
|-
| <!--Name-->Thinkpad X301 || <!--Chipset-->Core 2 Duo Penryn SU9400 Su9600 with GM45 chipset || <!--IDE-->{{N/A}} || <!--SATA-->1.8 inch micro SATA (uSATA) || <!--Gfx-->{{maybe|Intel X4500}} || <!--Audio-->AD1984A || <!--USB--> || <!--Ethernet-->Intel || <!--Wireless-->{{No|Intel 5xxx WiFi link 5100, 5150, 5300 and 5350 (WiMAX) bios locked}} || <!--Test Distro--> || <!--Comments-->2009 WXGA+ (1440×900) LED backlight display - 2774 or 4057 Alps and 2776 Synaptics touchpad - optical bay interface is Legacy IDE (PATA) - Addonics ADMS18SA, Lycom ST-170m
|-
| <!--Name-->X100e || <!--Chipset-->AMD Athlon Neo Single-Core (MV-40) and dual cores || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|2.5in tray in ide mode in bios}} || <!--Gfx-->{{Maybe|Vesa ATI HD3200}} || <!--Audio-->{{yes|HD Audio with CX20582 codec playback}} || <!--USB-->{{Maybe| }} || <!--Ethernet-->{{Yes|Realtek 8111}} || <!--Wireless-->{{no|Realtek r8192se bios locked}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2009 64bit 11.6in 1366 x 768 - 20v 65W round barrel - enter f1 setup f11 diagnostics f12 boot list - runs very warm -
|-
| <!--Name-->SL400 SL500 || Intel || {{N/A}} || {{Yes|IDE mode}} || {{Maybe|Nvidia 9400M}} || {{Maybe|ALC269}} || {{yes|USB 2.0}} || {{Maybe|RTL8169}} || {{Maybe| bios locked}} || ||
|-
| <!--Name-->SL410 SL510 || 965 || {{N/A}} || {{maybe|IDE mode}} || {{maybe|Intel GMA X4500M (some 2D)}} || {{yes|HD Audio with ALC269 codec - speaker and ear phones}} || {{yes|USB 2.0}} || {{yes|RTL8169}} || {{Maybe| bios locked}} || [http://www.amiga.org/forums/showpost.php?p=645774&postcount=28 Icaros 1.3] || 2009 64bit SL-410
|-
| <!--Name-->T400 ODM Wistron || <!--Chipset-->i || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE in BIOS}} || <!--Gfx-->{{Maybe|Intel 4500MHD works limited 2d no 3d - optional switchable Nvidia or ATi HD3470 untested}} || <!--Audio-->{{Yes|HD Audio with Codec CX20561 (T400)}} || <!--USB--> || <!--Ethernet-->{{no|Intel e1000e}} || <!--Wireless-->{{No|Intel Wifi Link 5100 (AGN) half height card with FRU 43Y6493 or 5300 bios locked}} || <!--Test Distro--> || <!--Comments-->2009 64bit 20v lenovo plug - non-free firmware required iwlwifi
|-
| <!--Name-->T400s || <!--Chipset-->i || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE in BIOS}} || <!--Gfx-->{{Maybe|VSEA for Intel 4500MHD works limited 2d no 3d}} || <!--Audio-->{{Maybe|HD Audio with CX20585}} || <!--USB--> || <!--Ethernet-->{{no|Intel e1000e}} || <!--Wireless-->{{No|Intel Wifi Link 5100 (AGN) half height card with FRU 43Y6493 or 5300 bios locked}} || <!--Test Distro--> || <!--Comments-->2009 64bit non-free firmware required iwlwifi
|-
| <!--Name-->Lenovo T500 T510 || <!--Chipset-->i || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE in BIOS}} || <!--Gfx-->{{maybe|VESA for switchable Intel / AMD HD 3640}} || <!--Audio-->{{maybe|Intel HD Audio with a CX20561 (t500) and CX20585 (T510) codec}} || <!--USB--> || <!--Ethernet-->{{no|Intel }} || <!--Wireless-->{{no|Intel or Lenovo branded unit Atheros AR5007EG AR5BHB63 bios locked}} || <!--Test Distro--> || <!--Comments-->2009 64bit
|-
| <!--Name-->X200 ODM Wistron [http://itgen.blogspot.co.uk/2008/12/installing-arch-linux-on-lenovo.html X200s] and x200t tablet model without [http://fsfe.soup.io/post/590865884/the-unconventionals-blog-English-Flashing-Libreboot-on Risky flash of the Libreboot BIOS] || <!--Chipset-->GM45 GS45 with slow Celeron, SU or faster SL Core 2 Duos CPUs || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE in BIOS}} || <!--Gfx-->{{maybe||Intel GMA 4500 MHD 2D but slow software 3D tunnel 10 gearbox 8 tests}} || <!--Audio-->{{yes|Intel HD Audio with Conexant CX20561 codec playback}} || <!--USB-->{{{Yes|USB 2.0 USB SD card reads and writes}} || <!--Ethernet-->{{no|Intel 82567LM Gigabit}} || <!--Wireless-->{{no|Intel Pro 5100 5150 5300 5350 AGN due to whitelist prevention bios locked}} || <!--Test Distro-->Icaros 2.0.1 || <!--Comments-->2009 64bit 12.1" CCFL (webcam version) or LED backlit (no webcam). no support for 54mm express cards or Authentec 2810 fingerprint reader - thinkpoint only no trackpad - thinklight -
|-
| <!--Name-->Lenovo T410 T410s T410si || <!--Chipset-->qm57 with i5 m || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE in BIOS}} || <!--Gfx-->{{maybe|use vesa Intel 5700MHD (Ironlake) core processor igp with optional Nvidia Quadro NVS 3100M}} || <!--Audio-->{{yes|HD Audio Conexant CX20585 codec playback}} || <!--USB-->{{Yes|2.0}} || <!--Ethernet-->{{no|Intel 82577lm gigabit}} || <!--Wireless-->{{unk|Intel n 6200 or Atheros AR9280 AR5BHB92 half size minipcie bios locked}} || <!--Test Distro-->Icaros 2.2 xmas || <!--Comments-->2009 64bit battery life much lower with Nvidia graphics version - no support firewire ricoh r5c832 - ricoh sd card - series 5 3400
|-
| <!--Name-->X201 X201s x201t || <!--Chipset-->QM57 Core i3 370m, i5 M520 2.4GHz or i7 620LM 2.0GHz || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE in BIOS}} || <!--Gfx-->{{Maybe|vesa 2d on Intel GMA HD}} || <!--Audio-->{{yes|Intel HD with [https://ae.amigalife.org/index.php?topic=94.0 Conexant 20585] codec}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{no|Intel}} || <!--Wireless-->{{No|bios locked}} || <!--Test Distro--> || <!--Comments-->2010 X201 arrandale power consumption limits battery life to 3-4 hours for 48Whr though to 6 on 72Whr - 12.5" WXGA
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Ideapad B470, B570, V370, V470, V570 || <!--Chipset-->Intel® Core™ i5 i5-2430M, i5-2450M, || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata}} || <!--Gfx-->Vesa 2d for Intel || <!--Audio-->HDaudio 0x8086, 0x1c20 with codec || <!--USB-->USB3 || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no|whitelisted}} || <!--Test Distro--> || <!--Comments-->2011 64bit - 14in or 15.6in 768p -
|-
| <!--Name-->T420 type 4180 4236, t420s , T520 4239 L520 || <!--Chipset-->i5 2540, 2520 or i7 2860QM 2620 has sse4.1 avx || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE in BIOS but not AHCI}} || <!--Gfx-->{{Maybe|Vesa 136 x 768 - Intel HD 3000 with optional NVS 4200M Nvidia optimus or Radeon HD 565v }} || <!--Audio-->{{Yes|HD Audio playback ear phones only with Conexant CX20672 codec - AHI 6.27}} || <!--USB-->{{Maybe| }} || <!--Ethernet-->{{No|Intel PRO 1000 82579LM}} || <!--Wireless-->{{No|Realtek 1x1, Intel Ultimate-N 6205 6250 2x2 6300 3x3 all bios locked}} || <!--Test Distro-->Icaros 2.2.2 add noacpi to grub boot options || <!--Comments-->2011 64bit - screen 1600x900 or 1366x768 - 2 ddr3l sodimm slots max 16gb -
|-
| <!--Name-->Thinkpad W520 || <!--Chipset--> has sse4.1 avx || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE in BIOS}} || <!--Gfx-->{{Maybe|VESA Intel HD 3000 with nvidia quadro 1000m 2000m optimus issues with Nvidia Intel hybrids}} || <!--Audio-->{{Maybe|Intel Hd with CX 20585 codec}} || <!--USB--> || <!--Ethernet-->{{No|Intel 82579 Lm}} || <!--Wireless-->{{No|Intel 6000s}} || <!--Test Distro--> || <!--Comments-->2011 64bit - 15.6" TFT display with 1366x768 (HD), 1600x900 (HD+) or 1920x1080 (FHD) resolution with LED backlight
|-
| <!--Name-->X220 x220t || <!--Chipset-->QM67 express, dual i5 2520M or i7 dual 2620M sse4.1 avx support || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|IDE in BIOS but not AHCI}} || <!--Gfx-->{{Maybe|VESA 2D 1024 x 768 for Intel HD Graphics 3000}} || <!--Audio-->{{Yes|Intel HD playback with Conexant 20672 codec ear phones and speaker - AHI 6.27 6.34}} || <!--USB-->{{Yes|USB 2.0}} || <!--Ethernet-->{{No|Intel 82579LM}} || <!--Wireless-->{{No|Intel Centrino Advanced-N 6205 Wi-Fi bios locked}} || <!--Test Distro-->Icaros 2.3, Aros One USB 1.6 || <!--Comments-->2011 64bit possible - uses slimmer 7 mm storage sata devices - NEC USB 3.0 on i7's - unwanted trackpad gestures when palms rests on it - 2 ddr3 sodimm slots - external battery -
|-
| <!--Name-->Thinkpad X120e, x121e Quanta FL8A DAFL8AMB8D0 Rev D || <!--Chipset-->Hudson M1 with slow AMD E350 has no sse4.1 or avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata}} || <!--Gfx-->{{Maybe|VESA ATI 0x9802}} || <!--Audio-->{{Maybe|ATI SBx00 Azalia HD Audio}} || <!--USB-->USB 2.0 || <!--Ethernet-->RTL8169 RTL8111 || <!--Wireless-->{{no|Broadcom 0x0576 bios locked}} || <!--Test Distro--> || <!--Comments-->2011 64bit 11.6 inch screen - 1 inch think - chiclet keyboard
|-
| <!--Name-->Ideapad S205 G575 G585, Edge 11 E325 || <!--Chipset-->Slow E-350 later E-450 with A75 or AMD Athlon II Neo has no sse4.1 or avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata}} || <!--Gfx-->{{Maybe|VESA HD6310}} || <!--Audio-->{{Yes| }} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No|Atheros}} || <!--Wireless-->{{No|Broadcom}} || <!--Test Distro--> || <!--Comments-->2011 64bit does not support AVX or SSE 4.1 - removeable and plug in battery - 2pin CR2032 CMOS battery -
|-
| <!--Name-->Ideapad S206 || <!--Chipset-->AMD E300 1.3GHZ Dual has no sse4.1 or avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata}} || <!--Gfx-->{{Maybe|VESA }} || <!--Audio-->{{Maybe|Intel HD Audio with CX20672 codec}} || <!--USB-->{{Maybe|3.0}} || <!--Ethernet-->Broadcom 10/100 || <!--Wireless-->{{unk|Atheros AR9285}} || <!--Test Distro--> || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 - 11.6" and integrated battery - Conexant®
|-
| <!--Name-->Lenovo x130e or x131e edu || <!--Chipset-->Slow AMD E-300 or E-450 has no sse4.1 or avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata}} || <!--Gfx-->{{Maybe|VESA Radeon HD 6310 or 6320 }} || <!--Audio-->{{Maybe|HD Audio Realtek ALC269VC / ALC3202 codec}} || <!--USB-->{{Maybe|USB 30 and USB 20}} || <!--Ethernet-->{{maybe|Realtek RTL8111 RTL8168B}} || <!--Wireless-->{{No|Realtek RTL8188CE or Broadcom BCM43228 bios locked}} || <!--Test Distro--> || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 - rubber edged bumper for K12 education market - 2pin CR2032 CMOS battery -
|-
| <!--Name-->Thinkpad Edge E135 E335 || <!--Chipset-->amd dual E-300, E2-1800 or E2-2000 slow atom like A68M FCH has no sse4.1 or avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|SATA 3.0Gb/s 2.5" wide 7mm high}} || <!--Gfx-->{{Maybe|VESA radeon 6310 or 7340 vga or hdmi}} || <!--Audio-->{{Maybe|HDAudio with Realtek ALC3202 codec}} || <!--USB-->{{maybe|2 usb3, 1 powered usb2}} || <!--Ethernet-->{{maybe|rtl8169 8111f}} || <!--Wireless-->{{no|Realtek WLAN whitelist bios locked}} || <!--Test Distro--> || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 - 11.6 inch to 13.3in 1366x768 - Acrylonitrile-Butadiene-Styrene (ABS) plastic case - external battery - 20v 65w lenovo barrel ac - 2 ddr3 sodimm 8Gb max -
|-
| <!--Name-->ThinkPad Edge E525 E535 LENOVO IDEAPAD Z575 || <!--Chipset-->AMD A6-3420M A8-3500M later A8-4500M has no sse4.1 or avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata}} || <!--Gfx-->{{Maybe|VESA AMD 6620G later 7640G}} || <!--Audio-->{{No|HDAudio with Conexant codec}} || <!--USB-->{{Maybe|USB2 but not usb3}} || <!--Ethernet-->{{maybe|rtl8169 Realtek 8111}} || <!--Wireless-->{{No|Broadcom bios locked}} || <!--Test Distro--> || <!--Comments-->2013 64bit does not support AVX or SSE 4.1 - 15.6in 1368 x 768 matt - 65W 20v lenovo round psu - thick desktop replacement - ThinkPad Edge E520 E520S E525 E530 E545 E535 E530C Laptop Keyboard swap -
|-
| <!--Name-->T430 t430i T530 || <!--Chipset-->ivy bridge i5 3320 3230m on Intel QM77 has sse4.1 and avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata}} || <!--Gfx-->{{Maybe|VESA 1366 x 768 for Intel HD 4000 with optional Nvidia 5400M}} || <!--Audio-->{{Maybe|Intel HD with Realtek ALC3202 aka ALC269VC codec playback ear head phones - HDA 6.27}} || <!--USB-->{{Yes|USB 2 ports and usb2.0 devices thru usb 3.0 ports}} || <!--Ethernet-->{{No|Intel e1000}} || <!--Wireless-->{{unk|Intel or Atheros AR9285 bios locked}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2013 64bit fan noise and chiclet keyboard, synaptics trackpad - HD+ 768p -
|-
| <!--Name-->Thinkpad X230 x230t || <!--Chipset-->Intel QM67 express i5 has sse4.1 and avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata}} || <!--Gfx-->{{Maybe|VESA }} || <!--Audio-->{{Maybe|Intel HD with ALC269 aka ALC3202}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{no|Intel }} || <!--Wireless-->{{No|I}} || <!--Test Distro--> || <!--Comments-->2013 64bit - 12.2 in 1366 x 768 - 2 ddr3 sodimm slots - external battery -
|-
| <!--Name-->Thinkpad T440 t440s t440p T540 L440 L540 || <!--Chipset-->intel haswell 8 series Core i3 to i7 has sse4.1 and avx || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata}} || <!--Gfx-->{{Maybe|VESA - Intel 4600 or Nvidia}} || <!--Audio-->Intel HD with Realtek ALC3232 alc269 codec or ALC292 || <!--USB-->{{maybe| }} || <!--Ethernet-->{{No|Intel}} || <!--Wireless-->{{No|Intel AC 7260 bios locked}} || <!--Test Distro--> || <!--Comments-->2014 64bit - 14 and 15" models with glitchy trackpad and no physical buttons - keyboard repair not easy as well as 4 variants of key caps - 2pin CR2032 CMOS battery -
|-
| <!--Name-->Thinkpad X240 x240t ultrabook TN (20AL0081GE), HD IPS display without touch (20AL007NGE) and touch (20AL0076GE) but all 65% sRGB || <!--Chipset-->haswell i7-4600U i5 4200U 4210U 4300U i3-4100U - two batteries, one internal 3cell 45N1110 (45N1111) or 45N1112 (FRU 45N1113) and external 3 / 6cell 45N1126 (FRU 45N1127) || <!--IDE-->{{N/A}} || <!--SATA-->2.5in 7mm sata (torq t7), m.2 2242 in WWAN slot (m and b key NGFF Sata) || <!--Gfx-->{{Maybe|use VESA for Intel 4400 for vga or mini-dp}} || <!--Audio-->{{No|HDAudio 0x8086, 0x0a0c 0x8086, 0x9c20 with Realtek ALC3232 aka ALC292 0x10ec, 0x0292}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{no|Intel® 82577LM Gigabit (Hanksville) }} || <!--Wireless-->{{no|Realtek or Intel 7260n I218-V or I218-LM bios locked}} || <!--Test Distro-->AROS One USB || <!--Comments-->2014 64bit - 12.2in 1366 x 768 or 1080p - 1 ddr3l sodimm slot - no keyboard spill drainage and at least 2 variants of key caps - lenovo rectangle pwr ac - TPM 1.2 - Bluetooth 4.0 no support - bottom panel with 8 retained screws - 2pin CR2032 CMOS battery -
|-
| <!--Name-->ThinkPad Edge E545
* key cap swap with E440 E531 E540 L440 L450 T431S T440S T440P T540
* Keyboard swap L540 T540p W540 Edge E531 E540 W541 T550 W550S L560 P50S T560
|| <!--Chipset-->AMD Socket FS1r2 A6-5350M (2c2t) or A8-4500M, A8-5550M, A10-5750M (4c4t) with A76M FCH has sse4.1 and avx || <!--IDE-->{{N/A}} || <!--SATA-->2.5in 9.5mm - enter UEFI bios with Enter or ESC, config section, sata into compatibility and security, secure boot disabled - mini sata DVD burner PLSD DS8A9SH || <!--Gfx-->{{Maybe|VESA 2D for AMD 7640G, 8450G, 8550G, 8650G ?? Islands}} || <!--Audio-->{{no|VOID for HDAudio 6.34 0x1022, 0x780d with Conexant CX20590 Analog 0x14f1, 0x506e CX20671 codec 0x14f1, 0x5069 or audio over Trinity HDMI}} || <!--USB-->{{maybe|boots pen drives from yellow usb port but not from blue USB3 ones, issues with AMD usb3 hardware quirks}} || <!--Ethernet-->{{yes|rtl8169 1GbE 8111F}} || <!--Wireless-->{{No|Broadcom BCM43142 bios locked}} || <!--Test Distro-->AROS One 2.3 USB works with noacpi added to end of grub2 boot line but not booting on AROS One 64bit 1.1 via usb2 stick or iso burnt to dvd || <!--Comments-->2015 64bit - 15.6in 1366 x 768 matt - 20v 65w 90w round lenovo plug psu - 2 DDR3 SODIMM slots 16GB Max - external 6 Cell Li-Ion Battery 48Wh l11s6y01 45n1043 - 2pin CR2032 CMOS battery in wifi area jp1202 - amd v(tm) virtualization not working -
|-
|<!--Name-->AMD platform codes
*Beema: ABM,
*Carizzo-L: ACL,
*Carizzo: ACZ,
*Godavari: AGR,
*Kaveri: AKV,
*Stoney Ridge: ASR,
*Stoney Ridge: AST (NB),
|| <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
*Summit Ridge: ASU,
*Bristol Ridge-L: ABL,
*Bristol Ridge: ABR,
*Raven Ridge: ARR,
*Picasso: API
|-
| <!--Name-->[https://www.laptop-schematics.com/db/78/V%20series%20laptops%20(Lenovo)/ V110-14AST (14in) V110-15AST, V110-14ISK V110-15ISK 80TL (15")], || <!--Chipset-->AMD E1-9000, A6-9210 to A9-9410 all dual core and intel 6006u, 6100u, 6200u || <!--IDE-->{{N/A}} || <!--SATA-->1 2.5in sata most 7mm some 9.5mm || <!--Gfx-->{{Maybe|VESA 2D for AMD R2, R3, R5 or R6 or Intel Gfx}} || <!--Audio-->{{No|HDAudio with codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2016 64bit - 14in to 15.6in mostly 768p 220 nits - 20v 45W or 65W lenovo slim rectangle end ac - keyboard swap hard - integrated 24WHr battery - 4gb ddr4 ram soldered and 1 2133Mhz ddr4 slot max 12Gb - abs plastic -
|-
|<!--Name-->
*ThinkPad A275 12in (1 ddr4 1866MHz sodimm)
*Thinkpad A475 14in (2 ddr4 1866MHz sodimm) - both internal (main) and external (secondary) battery
|| <!--Chipset-->A10-8730B A10-9700B 2.500Ghz later A12-8830B A12-9800B all 4c4t (AVX2 on 9000s) || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe|7mm 2.5in sata with mbr and not gpt, setup in another machine - secure boot disabled, bios startup boot set to legacy then uefi - WWAN slot cannot use M.2 2242 sata with M and B key}} || <!--Gfx-->{{Maybe|VESA 2D for AMD R5 or R7}} || <!--Audio-->{{No|HDAudio 6.34 ahi 0x1022, 0x157a with ALC3268 aka ALC298 codec 0x10ec, 0x0298 - VOID even with QUERY / QUERYD added}} || <!--USB-->{{no|USB3 error on boot suspect AMD usb3 quirk}} || <!--Ethernet-->{{Yes|rtl8169 RTL8111EPV}} || <!--Wireless-->{{No|Realtek RTL8822BE WLAN whitelist locked cannot swap}} || <!--Test Distro-->{{maybe|AROSOne USB 32bit 1.8 with noacpi noapic noioapic added to grub2 boot line but Aros One 64bit 1.2 USB has krnPanic }} || <!--Comments-->2016 64bit 12 or 14in 768p - 45W or 65w lenovo rectangle ac adapter - F1 enter bios and F12 boot order - 6 retained screws and snap on base - 2100 error message no solution except using only efi/gpt bios option -
|-
|<!--Name-->320S-15AST, 320S-15ABR, ideapad Slim 1-11AST-05 81VR || <!--Chipset-->AMD A6-9220e, AMD A6-9225, A9-9425, A10-9600P 7th Gen || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata 2.5in}} || <!--Gfx-->{{maybe| Vesa 2D for AMD}} || <!--Audio-->{{No| }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{No|Qualcomm Atheros QCA9377 or Realtek RTL8821CE}} || <!--Test Distro--> || <!--Comments-->2018 64bit AVX2 - 14in or 15.6" 768p - 1 ddr4 sodimm slot - keyboard swap problematic -
|-
|<!--Name-->Lenovo Ideapad S145-14AST S145-15AST 81N3 || <!--Chipset-->AMD A6-9225, A9-9425, A10-9600P 7th Gen, AMD A12-9720P Mobo 5B20P11110 NMB341 Bristol Ridge || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata 2.5in}} || <!--Gfx-->{{Maybe|VESA Radeon 8670A 8670M 8690M GCN 3}} || <!--Audio-->{{No| }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{No|Qualcomm Atheros QCA9377 or Realtek RTL8821CE}} || <!--Test Distro--> || <!--Comments-->2018 64bit AVX2 - 14in or 15.6" 768p or 1080p - 1 ddr4 sodimm slot -
|-
|<!--Name-->Lenovo Ideapad V145-14AST V145-15AST, 81mt, Ideapad 310, Ideapad 320-15ABR, Ideapad 330-14AST 330-15AST 330-17AST || <!--Chipset-->AMD A6-9225, A9-9425 (2c2t), A10-9600P 7th Gen, AMD A12-9720P Mobo 5B20P11110 NMB341 Bristol Ridge || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|sata 2.5in with optional dvd}} || <!--Gfx-->{{Maybe|VESA Radeon 8670A 8670M 8690M GCN 3}} || <!--Audio-->{{unk|HDaudio with ALC3240-va3-cg aka ALC236? codec 0x10de, 0x0236}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{no|rtl8169 8106E 10/100 only}} || <!--Wireless-->{{No|Qualcomm Atheros QCA9377 or Realtek RTL8821CE}} || <!--Test Distro--> || <!--Comments-->2017 64bit AVX2 - 14in or 15.6" 768p or 1080p - 1 ddr4 sodimm slot - 45w 65w slim ac adapter -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
|<!--Name-->Lenovo V330-14ARR 81B1, V330-15ARR 81, 330-14ARR 81 330-15ARR 81D2 - battery internal about 30whr || <!--Chipset-->AMD Ryzen R3 2200U, 2300U or R5 2500U Raven Ridge || <!--IDE-->{{N/A}} || <!--SATA-->M.2 nvme/sata, optional 2.5in sata but no dvd || <!--Gfx-->{{Maybe|VESA Vega 3, 6 or 8 up to 1Gb of soldered ram memory taken}} || <!--Audio-->{{No|HDAudio 0x1002, 0x15de with Realtek® ALC5682I-VD codec 0x10de, 0x or coxenant CX11802 codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|Realtek 1GbE}} || <!--Wireless-->{{no|Realtek}} || <!--Test Distro--> || <!--Comments-->2018 64bit - 14" 768p 20mm thick 1.8kg - 20v 2.25a 45w ac round barrel - chiclet keyboard - 4Gb soldered and 1 ddr4 sodimm - TPM 2.0 in bios - 4GB soldered -
|-
|<!--Name-->Ideapad 330s-14ARR, 330s-15ARR, ideapad 330S-14IKB, 330S-15IKB, - battery internal about 30whr || <!--Chipset-->AMD Ryzen R3 2200U, 2300U or R5 2500U Raven Ridge || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|nvme}} || <!--Gfx-->{{Maybe|VESA 2D for AMD or Intel 610, 620 up to 1Gb of soldered ram memory taken}} || <!--Audio-->{{No|HD Audio with codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no|Realtek}} || <!--Test Distro--> || <!--Comments-->2018 64bit - 14" 20mm thick 1.8kg - 20v 2.25a 45w ac round barrel - chiclet keyboard - 4Gb soldered and 1 ddr4 sodimm - TPM 2.0 in bios - 4GB soldered -
|-
|<!--Name-->Thinkpad Edge E485 E585 - internal battery only || <!--Chipset-->AMD Ryzen R3 2300U R5 2500U R7 2700U || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|m.2 nvme optional 1 2.5in sata}} || <!--Gfx-->{{Maybe|VESA for Vega 3, 8 or 10}} || <!--Audio-->{{No|HDAudio with CX11852 codec }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 rtl8111GUS}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2018 64bit - 14in or 15.6in 768p or 1080p - USB-C 20V 2.25A 3.25A avoid knocking charging port as damages easily - 2 ddr4 sodimm slot max 2400Mhz 32GB - TPM 2.0 software -
|-
|<!--Name-->Thinkpad A285 - internal and external battery || <!--Chipset-->AMD Ryzen PRO 3 2200U 5 2500U || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|m.2 nvme/sata}} || <!--Gfx-->{{Maybe|VESA Vega up to 2Gb of soldered ram memory taken}} || <!--Audio-->{{unk|HD Audio with ALC ALC3287 codec aka ALC257 }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{No|Mini-Ethernet/Docking}} || <!--Wireless-->{{no|Realtek or Qualcomm - WLAN whitelist no more??}} || <!--Test Distro--> || <!--Comments-->2018 64bit - 12.5in 1080p - avoid usb-c port being lifted/moved whilst in use as damages laptop easily - soldered ram 8gb or 16gb - WWAN whitelist - keyboard swap problematic -
|-
|<!--Name-->Thinkpad A485 bios setting [https://github.com/PSPReverse/PSPTool AMD PSP Platform Security Processor Key] - internal and external battery || <!--Chipset-->AMD Ryzen PRO 5 2500U || <!--IDE-->{{N/A}} || <!--SATA-->sata port and m.2 nvme port || <!--Gfx-->{{Maybe|VESA Vega }} || <!--Audio-->{{unk|HD Audio with ALC ALC3287 codec aka ALC 257 }} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 RTL8111GUL}} || <!--Wireless-->{{no|Realtek or Qualcomm wifi - WLAN whitelist no more??}} || <!--Test Distro--> || <!--Comments-->2018 64bit - 14in 768p, 1080p or 1440p - avoid usb-c port being lifted/moved whilst in use as damages laptop easily - 2 ddr4 sodimm slots max 32gb - WWAN whitelist - keyboard swap problematic -
|-
|<!--Name-->[https://www.diy-laptoprepair.com/forum/fix-Lenovo-V155-15-repair-guide-schematics.php Lenovo v155-15api 81V5] V155 (15" AMD) budget all plastic build - MS new protocol, HID over I2C so [https://askubuntu.com/questions/1033033/elantech-touchpad-does-not-work-i2c-hid i2c] [https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/drivers/input/mouse/elantech.c?h=v6.17 i2c] [https://www.kernel.org/doc/html/v4.16/input/devices/elantech.html PS2 hybrid trackpad] [https://cgit.freebsd.org/src/tree/sys/dev/atkbdc/psm.c?h=releng/14.3 elantech] [https://cvsweb.openbsd.org/cgi-bin/cvsweb/src/sys/dev/pckbc/?only_with_tag=OPENBSD_7_8_BASE i2c-hid] 04F3:3140 touchpad not working - internal sunwoda battery L18D3PF1, L18L3PF1, L18C3PF2 35Whr most dead after 5 years || <!--Chipset-->'''tested''' Ryzen 5 3500U and Ryzen 3 3200U - '''untested''' AMD Athlon 300U with bios winbond 25q64fwsiq soic 1.8v bios near nvme || <!--IDE-->{{N/A}} || <!--SATA-->1 M.2 nvme and usually 2.5in 7mm sata - install on mbr not gpt 2.5in in another compatible machine - mini sata dvd/cd da-8aesh11b will boot cd or dvd aros || <!--Gfx-->{{Maybe|VESA 2D to 1080p work for Vega 3 or 8 with up to 2Gb of soldered ram memory taken but hdmi 1.4b no output}} || <!--Audio-->{{Yes|HDAudio add 0x1022, 0x15E3 with ALC3287 aka Realtek ALC257 codec 0x10ec, 0x0257 with 32bit on external speaker and most of the time works on 64bit}} || <!--USB-->{{maybe|2 USB3.0, on left hand side, detected but no usb-c ports}} || <!--Ethernet-->{{yes|rtl8169 RTL8111GUS works well with 32bit and 64bit}} || <!--Wireless-->{{no|Realtek or Intel wifi}} || <!--Test Distro-->2025 AROS One 2.8 DVD 32bit and AROS One x64 1.1 and 1.2 iso DVD burnt || <!--Comments-->2019 64bit - 15.6in 768p or 1080p 200nits tn panel - 4Gb ddr4 2400MHz soldered with 1 dimm slot max 20Gb - round ac 20V 65W psu 4.0mm x 1.7mm - Fn+F2 to enter bios and F12 boot order - no sd card slot - 2pin cr2032 cmos coin battery -
|-
|<!--Name-->V15-ADA 82C700E4UK- elan touchpad not working - internal battery 34whr L16M2PB2 l16l2pb3 || <!--Chipset-->AMD r5 3500U || <!--IDE-->{{N/A}} || <!--SATA-->1x 2.5" HDD + 1x M.2 SSD NVMe near fan, no cd dvd || <!--Gfx-->{{Maybe|VESA 2D for Vega 3, 8 with up to 1080p with 2Gb of soldered ram memory taken}} || <!--Audio-->{{Yes|HD Audio 6.36 0x1022, 0x15E3 with R155189 ALC236 codec 0x10ec, 0x0236 on 32bit and on 64bit}} || <!--USB-->{{maybe|3 USB3, on left hand side,}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no|Realtek or Qualcomm wifi}} || <!--Test Distro-->2025 3500U with Aros One 32bit 2.8 installed to 2.5in drive on another machine and same for 64bit || <!--Comments-->2019 64bit - 14 or 15.6in 768p on low spec machines to 1080p - 4GB soldered with 1 ddr4 sodimm slot - 2pin cr2032 cmos coin battery - sd card slot - noisy fan -
|-
|<!--Name-->V15-ADA 82C7 - elan touchpad not working - internal battery 34whr L16M2PB2 l16l2pb3 || <!--Chipset-->AMD Athlon Silver 3020e, Ryzen 3 3050U, 3150U, 3250U || <!--IDE-->{{N/A}} || <!--SATA-->1x 2.5" HDD + 1x M.2 SSD NVme near fan, no cd dvd || <!--Gfx-->{{Maybe|VESA 2D for Vega 3, 8 with up to 1080p with 2Gb of soldered ram memory taken}} || <!--Audio-->{{No|HD Audio 6.36 0x1022, 0x15E3 with RTS5119 R155119 ALC230 codec}} || <!--USB-->{{maybe|3 USB3.0, on left hand side,}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no|Realtek or Qualcomm wifi}} || <!--Test Distro-->2025 Aros One 32bit 2.8 and 64bit || <!--Comments-->2019 64bit - 14 or 15.6in 768p on low spec machines to 1080p - 4GB soldered with 1 ddr4 sodimm slot - 2pin cr2032 cmos coin battery - sd card slot - for this mbd bios ram disable doesn't work - noisy fan -
|-
|<!--Name-->Lenovo V14-ADA 82C6, - elan touchpad not working - if blank black display, bios bug going from uefi->legacy so reset bios rhs push in with pin, then Down, ent, Right x3, ent, up, ent, right, ent x2 - internal battery 34whr L16M2PB2 l16l2pb3 || <!--Chipset-->'''tested''' 3250U - '''untested''' AMD Athlon Silver 3020e, Ryzen 3 3050U, 3150U - for this mbd GV451&GV551 NM-D151 bios ram disable doesn't work || <!--IDE-->{{N/A}} || <!--SATA-->1x 2.5" HDD if cbl + 1x M.2 SSD NVMe near fan, no cd dvd || <!--Gfx-->{{Maybe|VESA 2D for Vega 3 up to 1080p with 2Gb of soldered ram memory taken}} || <!--Audio-->{{no|HD Audio 6.36 0x1022, 0x15E3 with Realtek ALC3223 RTS5119 R185199 aka ALC230 codec 0x10ec, 0x0230 on 32bit and on 64bit}} || <!--USB-->{{maybe|3 USB3, on left hand side,}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no|Realtek or Qualcomm wifi}} || <!--Test Distro-->2025 AMD 3250U with Aros One 32bit 2.8 installed to 2.5in drive on another machine and same for 64bit || <!--Comments-->2019 64bit - 14 or 15.6in 768p on low spec machines to 1080p - 4GB soldered with 1 ddr4 sodimm slot - 2pin cr2032 cmos coin battery - sd card slot - F2 bios F12 select -
|-
|<!--Name-->IdeaPad 1 14ADA5 (low spec cpus) ideaPad 3 14ADA05, IdeaPad 3 15ADA05 81W100QVUK, IdeaPad 3 17ADA05 - elan touchpad not working - internal battery 34whr L16M2PB2 l16l2pb3 || <!--Chipset-->AMD Athlon Silver 3020e, Ryzen 3 3050U, 3150U, 3250U, Ryzen 5 3500U on mobo NM-C821 REV 0.2 1.0 || <!--IDE-->{{N/A}} || <!--SATA-->1x 2.5" HDD if cbl + 1x M.2 SSD NVMe near fan, no cd dvd || <!--Gfx-->{{Maybe|VESA 2D for Vega 3, 8 up to 1080p with 2Gb of soldered ram memory taken}} || <!--Audio-->{{no|HD Audio 6.36 0x1022, 0x15E3 with ALC230 codec 0x10ec, 0x0230 on 32bit and on 64bit}} || <!--USB-->{{maybe|3 USB3, on left hand side,}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no|Realtek or Qualcomm wifi}} || <!--Test Distro-->2025 Aros One 32bit 2.8 installed to 2.5in drive on another machine and same for 64bit || <!--Comments-->2019 64bit - 14 or 15.6in 768p on low spec machines to 1080p - 4GB soldered with 1 ddr4 sodimm slot - 2pin cr2032 cmos coin battery - sd card slot - F2 bios F12 boot select -
|-
|<!--Name-->Lenovo IdeaPad L340-15API 81LW001CUS L340-17API - elan trackpad not functioning - internal battery L18M3PF2 || <!--Chipset-->AMD Athlon 300U, Ryzen 3 3200U r5 3500U || <!--IDE-->{{N/A}} || <!--SATA-->1 M.2 nvme and usually 2.5in sata if ribbon cable present - mini sata dvd/cd da-8aesh11b || <!--Gfx-->{{Maybe|VESA 2D for Vega 3 or 8 with up to 2Gb of soldered ram memory taken - hdmi 1.4b}} || <!--Audio-->{{unk|HDAudio add 0x1022, 0x15E3 with Realtek ALC236 0x10ec, 0x0236}} || <!--USB-->{{maybe|USB3 not detected}} || <!--Ethernet-->{{maybe|rtl8169 RTL8111GUS}} || <!--Wireless-->{{no|Realtek or Intel wifi}} || <!--Test Distro-->AROS One 2.8 USB - install on mbr not gpt 2.5in in another compatible machine || <!--Comments-->2019 64bit - 15.6in 768p or 1080p 200nits - 4Gb ddr4 2400MHz soldered with 1 dimm slot max 20Gb - round ac 20V 65W psu 4.0mm x 1.7mm - Return or F1 to enter bios and F12 boot order - no sd card slot -
|-
|<!--Name-->[https://www.laptop-schematics.com/db/78/T%20series%20laptops%20(ThinkPad)/ ThinkPad T295 T495] || <!--Chipset-->Ryzen 3 3300U, R5 Pro 3500U or R7 3700U || <!--IDE-->{{N/A}} || <!--SATA-->1 NVMe up to 2280 || <!--Gfx-->{{Maybe|VESA Vega 6, 8 or 10 up to 2Gb of soldered ram memory taken}} || <!--Audio-->{{unk|HD Audio with Realtek® ALC3287 codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 Realtek RTL8111EPV}} || <!--Wireless-->{{No|Realtek RTL8822BE or Intel AC 9260}} || <!--Test Distro--> || <!--Comments-->2019 64bit - 14in 768p but mostly FHD 1080p 250 nits - internal battery - ram 8gb or 16gb 2400Mhz soldered with 1 ddr4 slot on T495 only - TPM 2.0 - usb-c charging avoid knock whilst in use - keyboard swap problematic -
|-
|<!--Name-->ThinkPad T495s (14in) X395 (13in) || <!--Chipset-->Ryzen 3 3300U, R5 Pro 3500U or R7 3700U || <!--IDE-->{{N/A}} || <!--SATA-->1 NVMe up to 2280 || <!--Gfx-->{{Maybe|VESA Vega 6, 8 or 10 up to 2Gb of soldered ram memory taken}} || <!--Audio-->{{unk|HD Audio with Realtek® ALC3287 codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{unk| needs Lenovo ThinkPad Ethernet Adapter Gen 2 SC10P42352 or SC10P42354}} || <!--Wireless-->{{No|Realtek RTL8822BE or Intel AC 9260 wifi}} || <!--Test Distro--> || <!--Comments-->2019 64bit - 13in or 14in 768p but mostly FHD 1080p 250 nits - internal battery - ram 8gb or 16gb 2400Mhz soldered - TPM 2.0 - usb-c charging avoid knock whilst in use - keyboard swap problematic -
|-
|<!--Name-->ThinkPad E14 Gen2, E15 Gen 2 (AMD) 20T8, - lenovo has a mobile phone PC Diagnostic App for error/beep codes || <!--Chipset-->AMD Ryzen 3 4300U, 5 4500U, 7 4700U || <!--IDE-->{{N/A}} || <!--SATA-->2 m.2 nvme, 1 2242 and 1 2280 || <!--Gfx-->{{Maybe|VESA 2D for AMD Radeon up to 2Gb of soldered ram memory taken}} || <!--Audio-->{{unk|HD Audio with ALC ALC3287 codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 RTL8111GUS}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2020 15.6in 1080p 220 nits - TPM 2.0 - usb-c charging of internal 45Whr battery - 4gb ddr4 3200Mhz soldered and 1 ddr4 sodimm slot max 20Gb - keyboard swap problematic - plastic bendy case -
|-
|<!--Name-->Lenovo ThinkPad T14 Gen 1, ThinkPad P14s Gen 1 (AMD) || <!--Chipset-->AMD Ryzen 3 4300u, 5 4500U, Ryzen 5 Pro 4650U, Ryzen 7 Pro 4750U || <!--IDE-->{{N/A}} || <!--SATA-->1 NVMe || <!--Gfx-->{{Maybe|VESA 2D for AMD Vega }} || <!--Audio-->{{unk|HDAudio with Realtek® ALC3287 0x10EC, 0x0257}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 RTL8111EPV (DASH models) or RTL8111HN}} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2020 64bit - USB-C charging avoid moving whilst in use - 14" or 15" 1080p - keyboard swap problematic - 8gb or 16gb 3200MHz soldered with 1 ddr4 sodimm slot - sd card slot -
|-
|<!--Name-->Thinkpad L14 Gen 1, L15 Gen 1, || <!--Chipset-->AMD Ryzen 3 4300u, 5 4500U, Ryzen 5 Pro 4650U, Ryzen 7 Pro 4750U || <!--IDE-->{{N/A}} || <!--SATA-->1 NVMe || <!--Gfx-->{{Maybe|VESA 2D for AMD Vega }} || <!--Audio-->{{unk|HDAudio with Realtek® ALC3287 0x10EC, 0x0257}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{no|rtl8169 needs dongle RTL8111EPV (DASH models) or RTL8111HN}} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2020 64bit - USB-C charger avoid moving whilst in use - 14" or 15" 1080p - keyboard swap problematic - 8gb or 16gb 3200MHz soldered with 1 ddr4 sodimm slot - sd card slot -
|-
|<!--Name-->Lenovo ThinkPad X13 Gen1 AMD, || <!--Chipset-->AMD RYZEN 3 4450U, 5 4650U or 7 4750U || <!--IDE-->{{N/A}} || <!--SATA-->One drive, up to 512GB M.2 2242 SSD or 1TB M.2 2280 SSD NVMe || <!--Gfx-->{{partial|VESA Radeon up to 2Gb of soldered ram memory taken}} || <!--Audio-->{{unk|HDAudio with Realtek® ALC3287 codec}} || <!--USB-->{{maybe| but USB-C ports can fail}} || <!--Ethernet-->{{no|Realtek RTL8111EPV, mini RJ-45 to RJ-45 via optional ThinkPad Ethernet Extension Adapter Gen 2}} || <!--Wireless-->{{no|Realtek Wi-Fi 6 RTL8852AE}} || <!--Test Distro--> || <!--Comments-->2020 13.3" HD 1366x768 to 1080p - USB-C port care needed as damages easily - Memory soldered to systemboard, no slots, dual-channel DDR4-3200 -
|-
|<!--Name-->Lenovo ThinkBook 14 G2, 15 G2 Are || <!--Chipset-->Ryzen 5 4500u, 7 4700U || <!--IDE-->{{N/A}} || <!--SATA-->14in has 2 m.2 nvme but 15in has 1 nvme and might have 2.5in sata metal caddy if smaller battery version || <!--Gfx-->VESA 2d for AMD Radeon up to 2Gb of soldered ram memory taken || <!--Audio-->{{unk|HDAudio with ALC???? codec 0x10EC, 0x0}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 }} || <!--Wireless-->{{No| wifi}} || <!--Test Distro--> || <!--Comments-->2020 64bit - 14in or 15in 1080p - usb-c charging but high failure rate on the charging port - 4gb or 8gb soldered with 1 ddr4 sodimm slot 3200mhz - hinge(s) issues -
|-
|<!--Name-->IdeaPad 5 14ARE05 (81YM), Ideapad 5 15ARE05 (), IdeaPad 3 17ARE05 (model 81W5) - elan touchpad MSFT0004:00 06CB:CD98 not working || <!--Chipset-->'''tested''' 4500u - '''untested''' AMD 3 4300U (4c4t), 4600U (6c12t), 7 4700u (8c16t) on AMD Promontory Bixby FCH || <!--IDE-->{{N/A}} || <!--SATA-->{{no|1x M.2 2242 slot and 1x M.2 2280 NVMe which will take sata m.2 will boot to grub then laptop reset after choice}} || <!--Gfx-->{{Maybe|VESA 2D for Vega 6 via hdmi output up to 2Gb of soldered ram memory taken}} || <!--Audio-->{{unk|HDAudio 6.36 0x1637 0x15e3 with Realtek ALC3287 aka ALC257 codec 0x10ec 0x0257}} || <!--USB-->{{maybe|USB 3.1 or 3.2 gen 1}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no|Intel ax200 wifi 6}} || <!--Test Distro-->4500u with AROS One 64bit 1.2 usb installed to m.2 sata on another machine || <!--Comments-->2020 64bit 14inch 768p or 1080p - round lenovo ac - 4gb, 8gb, or 16gb ddr4 3200Mhz ram soldered with 1 slot - keyboard swap problematic - integrated battery -
|-
|<!--Name-->Ideapad Flex 5 81X2, Lenovo Yoga 6 13ALC6 || <!--Chipset-->AMD R5 4500u, R7 4800U, R3 5300 R5 5500U || <!--IDE-->{{N/A}} || <!--SATA-->M.2 NVMe ssd || <!--Gfx-->{{Maybe|VESA AMD Vega up to 2Gb of soldered ram memory taken}} || <!--Audio-->{{unk|HD Audio with ALC? codec}} || <!--USB-->{{maybe|USB3.1 gen 1}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no|realtek ac wifi}} || <!--Test Distro--> || <!--Comments-->2020 64bit abs plastic case 14in convertible 1080p touch low nits - 65w usb-c psu ac - possible wacom esr note taking pen supplied - ram soldered DDR4 - keyboard swap problematic -
|-
|<!--Name-->ThinkPad T14 Gen 2, P14s Gen 2 || <!--Chipset-->AMD 5850U || <!--IDE-->{{N/A}} || <!--SATA-->NVme || <!--Gfx-->VESA 2D || <!--Audio-->{{unk|HDaudio with ALC3287-CG codec 0x10EC, 0x0}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{Maybe| }} || <!--Wireless-->{{No| }} || <!--Test Distro--> || <!--Comments-->2021 - usb-c power 90% failure rate on the charging port -
|-
|<!--Name-->Lenovo ThinkBook 14 G3, 15 G3 ACL, || <!--Chipset-->Ryzen 5 5500U || <!--IDE-->{{N/A}} || <!--SATA-->m.2 nvme || <!--Gfx-->VESA 2d for AMD Radeon || <!--Audio-->{{unk|HDAudio with ALC codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 }} || <!--Wireless-->{{No| }} || <!--Test Distro--> || <!--Comments-->2021 64bit - 14in or 15in 1080p - usb-c charging powered -
|-
|<!--Name-->ThinkPad E14 G3, E15 Gen 3 (AMD) || <!--Chipset-->AMD 5300U 5500U 5650U 5700U 5800U || <!--IDE-->{{N/A}} || <!--SATA-->up to 2 m.2 nvme || <!--Gfx-->{{Maybe|VESA }} || <!--Audio-->{{unk|HDaudio with Realtek® ALC3287 codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 RTL8111GUS}} || <!--Wireless-->{{no|realtek or intel }} || <!--Test Distro--> || <!--Comments-->2021 64bit - 15.6in 1080p - - usb-c charging issues - keyboard swap problematic - 4gb or 8gb soldered with 1 ddr4 3200Mhz sodimm slot - plastic bendy case -
|-
|<!--Name-->V14 Gen 2 (82KA, 82KC)
*ALO
*ALC 82KD
|| <!--Chipset-->Ryzen 3 5300U, 5 5500U, 7 5700U || <!--IDE-->{{N/A}} || <!--SATA-->1 nvme 2280 and optional 2.5in sata after sourcing ribbon cable and connector, no dvd || <!--Gfx-->VESA 2D for AMD radeon || <!--Audio-->{{unk|HDAudio with Realtek® ALC3287 codec}} || <!--USB-->{{maybe|USB3 }} || <!--Ethernet-->{{maybe|rtl8169 Realtek RTL8111H-CG}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2022 64bit - 15.6" FHD 1080p - 4gb or 8gb soldered with 1 ddr4 sodimm slot - 65w round ac adaptor -
|-
|<!--Name-->V15 G2 Gen2 (82KB, 82KD)
*ALO
*ALC 82KD
|| <!--Chipset-->Ryzen 3 5300U, 5 5500U, 7 5700U || <!--IDE-->{{N/A}} || <!--SATA-->1 nvme 2280 and optional 2.5in sata after sourcing ribbon cable and connector, no dvd || <!--Gfx-->VESA 2D for AMD radeon || <!--Audio-->{{unk|HDAudio with Realtek® ALC3287 codec}} || <!--USB-->{{maybe|USB3 }} || <!--Ethernet-->{{maybe|rtl8169 Realtek RTL8111H-CG}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2022 64bit - 15.6" FHD 1080p - 4gb or 8gb soldered with 1 ddr4 sodimm slot - 65w round ac adaptor -
|-
|<!--Name-->ThinkPad L15 Gen 2 (15″, AMD) || <!--Chipset-->AMD 5000 series AMD Ryzen 3 5400U (4c8t), 5 5600U, 5 5650U (6c12t), 7 PRO 5850U (8c16t) || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->VESA 2D for AMD Radeon || <!--Audio-->{{unk|HDAudio with Realtek® ALC3287}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{no|rtl8169 needs dongle RTL8111EPV (DASH models) or RTL8111HN}} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2022 64bit - 15.6in 768p or 1080p - usb-c charging - 4gb soldered with 1 ddr4 3200Mhz sodimm slot -
|-
|<!--Name-->ThinkPad E14 Gen 4, E15 Gen 4 (15″, AMD) || <!--Chipset-->AMD 3 5425u, 5 5625U, 7 5825u || <!--IDE-->{{N/A}} || <!--SATA-->1 (14") or 2 (15") nvme || <!--Gfx-->VESA 2D for AMD Radeon || <!--Audio-->{{unk|HDAudio with ALC3287 codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe|rtl8169 }} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2023 64bit - 15.6in 1080p - usb-c charging - 4gb or 8gb soldered with 1 ddr4 3200Mhz sodimm slot - L19M3PDA 45Whr battery - U24 TPS65994 and QB6 QB5 mosfet issues - plastic bendy case -
|-
|<!--Name-->ThinkPad T14 Gen 3 Machine types MT 21AH 21AJ 21CF and 21CG, P14s Gen 3 || <!--Chipset-->AMD 6850U || <!--IDE-->{{n/a}} || <!--SATA-->NVme || <!--Gfx-->VESA 2d || <!--Audio-->{{unk| ALC3287-VA2-CG codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{Maybe|rtl8169 }} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2022 64bit - 14in
|-
|<!--Name-->ThinkPad T14s Gen 3 || <!--Chipset-->AMD 6500U || <!--IDE-->{{n/a}} || <!--SATA-->NVme || <!--Gfx-->VESA 2d || <!--Audio-->{{unk| ALC3287-VA2-CG codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{no|Ethernet support via optional Lenovo® USB-C® to Ethernet Adapter}} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2022 64bit - 14in
|-
|<!--Name-->V14 G3, V15 G3 Gen3 ALC || <!--Chipset-->Ryzen 5 6500U || <!--IDE-->{{N/A}} || <!--SATA-->nvme and optional 2.5in sata if smaller 38Wh battery and after sourcing ribbon cable and connector, no dvd || <!--Gfx-->VESA 2D for AMD Radeon || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 }} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2023 64bit - 15"FHD - battery BYD L20B2PFO -
|-
|<!--Name-->ThinkPad L15 Gen 3 (15″, AMD) || <!--Chipset-->AMD 6000 series || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D for AMD Radeon || <!--Audio-->{{No| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{no|rtl8169 needs dongle}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2023 64bit- 15.6in 1080p -
|-
|<!--Name-->Lenovo Yoga 7 14ARB7 || <!--Chipset-->AMD Ryzen 5, 6600U, 7 6800U || <!--IDE-->{{N/A}} || <!--SATA-->1 nvme || <!--Gfx-->AMD 660M or 680M || <!--Audio-->{{No|HDaudio with ALC3306 aka alc287 codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2022 64bit - 14in 1800p ips 300 nits - usb-c ac charging 71whr integrated battery - sd card slot - digital pen input - 8gb, 6gb or 32gb soldered ddr5 ram -
|-
|<!--Name-->ThinkPad T14 Gen 4, P14s Gen 4 || <!--Chipset-->AMD Ryzen Pro 5 7540U, Ryzen Pro 7 7840U (AI NPU) || <!--IDE-->{{n/a}} || <!--SATA-->NVme || <!--Gfx-->VESA 2D for AMD 740M 780M|| <!--Audio-->{{unk|HDAudio ALC3287 codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 }} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2023 64bit - 14in 1920x1200 - 8gb, 16gb or 32gb lpddr5 soldered - usb-c charging -
|-
|<!--Name-->ThinkPad E14 g5, E15 Gen 5 (15″, AMD) || <!--Chipset-->AMD 7000 series Ryzen 5-7530U, 7-7730U || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D for AMD Radeon || <!--Audio-->{{unk|HDAudio with codec}} || <!--USB-->{{maybe|USB3}} || <!--Ethernet-->{{maybe| }} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2023 64bit- 15.6in 1080p -
|-
|<!--Name-->Thinkbook 14 G6 ABP IRL, ThinkBook 16 G6ABP (21KK001CUK) || <!--Chipset-->AMD Ryzen 7530U 7730U || <!--IDE-->{{N/A}} || <!--SATA-->m.2 nvme || <!--Gfx-->VESA 2d for AMD Radeon || <!--Audio-->{{unk|HDaudio with codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 untested}} || <!--Wireless-->{{No| wifi}} || <!--Test Distro--> || <!--Comments-->2023 64bit - 14in 1200p or 1440p - 100W USB-C AC power adapter -
|-
|<!--Name-->IdeaPad Slim 5 Light 14ABR8 Laptop || <!--Chipset-->AMD Ryzen 3 7330U (4c8t) 5 7530U (6c12t) 7 7730U (8c16t) || <!--IDE-->{{N/A}} || <!--SATA-->2 m.2 nvme slot - 1 2242, 1 2280 || <!--Gfx-->VESA 2d for AMD Radeon || <!--Audio-->{{unk|HDaudio with Realtek® ALC3287 codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{No| wifi}} || <!--Test Distro--> || <!--Comments-->2023 64bit - 14in 1080p - 8Gb or 16Gb soldered ram - usb-c charging only -
|-
|<!--Name-->ThinkPad X13 Gen 4 (13" AMD) || <!--Chipset-->AMD 7480U 7040U || <!--IDE-->{{N/A}} || <!--SATA-->NVMe || <!--Gfx-->{{partial|VESA}} || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2023 - avoid usb-c port damage -
|-
|<!--Name-->ThinkPad L14 (Gen4), L15 Gen 4 (15" AMD) || <!--Chipset-->MD Ryzen 5 PRO 7530U, 7480U 7040U || <!--IDE-->{{N/A}} || <!--SATA-->NVMe || <!--Gfx-->{{partial|VESA}} || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{no|rtl8169 needs dongle}} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2023 64bit - elan trackpad -
|-
|<!--Name-->Lenovo Gen 4 V14 (82YT, 82YV, 83A0, 83A1, 83CC, 83FR, 82YX, 83FG), V15 (82YU, 82YW, 83FS, 82YY, 83CR), V17 (83A2), || <!--Chipset-->AMD AMD Athlon™ Gold 7220U (2c4t), AMD Athlon™ Silver 7120U (2c2t), AMD Ryzen™ 3 7320U (4c8t), AMD Ryzen™ 5 7520U (4c8t) || <!--IDE-->{{N/A}} || <!--SATA-->nvme and 2.5in sata if smaller 38Wh battery, no dvd || <!--Gfx-->{{Maybe|VESA 2d for AMD 610M HDMI® and USB-C}} || <!--Audio-->{{unk|HDaudio with ALC3287 codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{no|Gigabit Ethernet, 1x RJ-45}} || <!--Wireless-->{{no|wifi 6}} || <!--Test Distro--> || <!--Comments-->2023 64bit - 15.6" FHD 1080p - 8 or 16Gb soldered - 65W round tip (3-pin) AC adapter or USB-C -
|-
|<!--Name-->ThinkPad e14 G6, e15 Gen 6 (15″, AMD) || <!--Chipset-->AMD 7000 series AMD Ryzen™ 7 7735HS || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D for AMD Radeon || <!--Audio-->{{unk|HDAudio codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe| }} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2023 64bit- 15.6in 1080p -
|-
|<!--Name-->ThinkPad L16 (16" AMD), || <!--Chipset-->AMD 8000 || <!--IDE-->{{N/A}} || <!--SATA-->nvme || <!--Gfx-->VESA 2D || <!--Audio-->{{unk|HDAudio with codec}} || <!--USB-->{{maybe|USB4}} || <!--Ethernet-->{{no|rtl8169 needs dongle}} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2025 64bit
|-
|<!--Name-->ThinkPad T14 Gen 5, P14s Gen 5 || <!--Chipset-->AMD Ryzen 7 PRO 8840U, AMD Ryzen™ 5 PRO 8540U || <!--IDE-->{{N/A}} || <!--SATA-->NVME || <!--Gfx-->VESA 2d || <!--Audio-->{{unk| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{maybe|rtl8169 }} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2025 64bit - 14inch 1920 x 1200 -
|-
|<!--Name--> Lenovo WinBook 300e SKU: 82GKS00000 || <!--Chipset-->AMD 3015E || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2023 64bit 4GB 64GB SSD 11.6 Inch Touchscreen Windows 10 Pro Laptop
|-
|<!--Name-->ThinkPad || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
|<!--Name-->Lenovo Yoga Slim 7a || <!--Chipset-->AMD Ryzen AI 7350 || <!--IDE-->{{N/A}} || <!--SATA-->1 nvme || <!--Gfx-->AMD 860M || <!--Audio-->{{No|HDaudio with ALC3306 aka alc287 codec}} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no| wifi}} || <!--Test Distro--> || <!--Comments-->2025 64bit - 14in 1800p ips 300 nits - usb-c ac charging 71whr integrated battery - sd card slot - digital pen input - 8gb, 6gb or 32gb soldered ddr5 ram -
|-
|<!--Name-->ThinkPad || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|<!--Name-->ThinkPad || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
====Samsung====
[[#top|...to the top]]
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="2%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->NP-Q1 Q1 || <!--Chipset-->Celeron-M 353 ULV 600Mhz || <!--IDE-->{{Yes|1.8" SFF HDD 20 / 60 GB }} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Yes|GMA 915 2D and 3D opengl1 tunnel 95 gearbox 68}} || <!--Audio-->{{Yes|HD Audio with codec - head phones only}} || <!--USB-->{{Yes}} || <!--Ethernet-->{{No|Marvell}} || <!--Wireless-->{{Yes|Atheros 5006EX}} || <!--Test Distro-->2016 Icaros 2.1 || <!--Comments-->2005 32bit old style tablet UltraMobile PC UMPC - Wacom serial resistive pen or finger no support - 1 sodimm ddr2 max 1Gb - LCD 7" WVGA (800 x 480) - CompactFlash port Type II -
|-
| <!--Name-->NP Q1U Ultra Mobile PC UMPC Q1F NP-Q1-F000 || <!--Chipset-->Intel A100 600 / A110 Stealey 800 MHz CPU || <!--IDE-->{{Yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Maybe|GMA 950 2D and 3D opengl1}} || <!--Audio-->{{No|HD Audio 1986}} || <!--USB--> || <!--Ethernet-->Intel || <!--Wireless-->{{Maybe|Atheros 5006EX}} || <!--Test Distro-->2016 Icaros 2.1 || <!--Comments-->2006 32bit 1024×600 - sd card slot -
|-
| <!--Name-->NP P500 family P500Y || <!--Chipset-->AMD with SB600 || <!--IDE-->{{N/A| }} || <!--SATA-->{{Yes| }} || <!--Gfx-->{{Maybe|use VESA Ati x1250}} || <!--Audio-->{{Yes| Audio with codec }} || <!--USB--> || <!--Ethernet-->{{No|Marvell 88E8039 yukon}} || <!--Wireless-->{{yes|Atheros G}} || <!--Test Distro-->2017 Icaros 2.1.2 || <!--Comments-->64bit possible - 15.4 tft display - cheap plastic okay build - 19v propriety end -
|-
| <!--Name-->R505 R510 || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless-->Atheros G || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->R520 R522 R610H R620 || <!--Chipset-->Intel Mobile Core i3 Intel PM45 82801M ICH9-M|| <!--IDE--> || <!--SATA--> || <!--Gfx-->ATI Mobility Radeon HD 4650 (RV730) || <!--Audio-->Intel HD Audio with Realtek ALC272 || <!--USB--> || <!--Ethernet-->Marvell Yukon 88E8057 || <!--Wireless-->Atheros AR5007EG || <!--Test Distro--> || <!--Comments-->2010 64 bit possible
|-
| NP-R530 || || {{N/A}} || {{partial|IDE mode}} || {{yes|Intel GMA (2D)}} || {{partial|HD Audio playback}} || {{yes|USB 2.0}} || {{no|Marvell}} || {{unk|Atheros AR9285}} || Icaros 1.5.2 || <!--Comments-->
|-
| <!--Name-->Samsung R730 17.3 Essential Notebook NP-R730-JA02UK, NP-R730-JA01SE, R730-JT06 || <!--Chipset-->Intel HM55 Dual Core T4300 i3-370M || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|use VESA for Intel 4500MHD and GeForce G 310M with 1 VGA, 1 HDMI}} || <!--Audio-->{{Yes|HDAudio ALC??? codec Realtek}} || <!--USB-->{{yes|USB2}} || <!--Ethernet-->{{No|Marvell Yukon 88E8059 PCI-E}} || <!--Wireless-->{{unk|Broadcom, Intel or Atheros 9k AR9285}} || <!--Test Distro-->Deadwoods ISO 2023-11 || <!--Comments-->2010 64bit - 17.3in HD 1280 x 720 pixels low contrast or some 1600x900 - 2 DDR3 sodimm slots - 2.84 kg 6.26 lbs -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->[http://www.notebookcheck.net/Review-Samsung-305U1A-A01DE-Subnotebook.68246.0.html Series 3 Samsung 305u1a] || <!--Chipset-->AMD Zacate E350 or E450 || <!--IDE--> || <!--SATA--> || <!--Gfx-->AMD Radeon 6320 || <!--Audio-->ALC ACL 269 || <!--USB--> || <!--Ethernet-->Realtek 8111 8169 || <!--Wireless-->Broadcom 4313 || <!--Comments-->2011 64bit
|-
| <!--Name-->NP-RV415 NP-RV515 || <!--Chipset-->E350 or E450 plus A50M chipset || <!--IDE--> || <!--SATA--> || <!--Gfx-->AMD Radeon HD 6470 || <!--Audio-->HD Audio Realtek || <!--USB--> || <!--Ethernet-->{{unk|RTL8169 Realtek RTL8111 8168B}} || <!--Wireless-->{{unk|Atheros AR9285}} || <!--Test Distro--> || <!--Comments-->2012 64bit slow -
|-
| <!--Name-->Series 5 NP535U3C || <!--Chipset-->A6-4455M || <!--IDE-->{{N/A}} || <!--SATA-->2.5in || <!--Gfx-->radeon || <!--Audio-->HDAudio || <!--USB-->USB2 || <!--Ethernet-->Realtek GbE || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2012 64bit slow - 13.3in 1368 x 768 - plastic build - 65w 19v psu -
|-
| <!--Name-->series 3 NP355V5C || <!--Chipset-->A6-4400M, A8-4500M, A10-4600M || <!--IDE-->{{N/A}} || <!--SATA-->2.5in || <!--Gfx-->7640M || <!--Audio-->HDAudio || <!--USB-->USB2 || <!--Ethernet-->Realtek GbE || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2012 64bit - 15.4in 1368 x 768 - plastic build - 65w 19v psu -
|-
| <!--Name-->Samsung ATIV Book 9 Lite NP905S3G || <!--Chipset-->AMD A6-1450 quad 1GHz Temash atom like || <!--IDE--> || <!--SATA-->128gb || <!--Gfx-->AMD 8250 || <!--Audio-->HD Audio || <!--USB--> || <!--Ethernet-->{{Maybe|Realtek rtl8169 but only with mini LAN AA-AE2N12B Ethernet Adapter RJ45 dongle}} || <!--Wireless-->{{unk|Atheros AR9565}} || <!--Test Distro--> || <!--Comments-->2014 64bit - 13.3 TN glossy 1366 x 768 200nits 60% srgb - plastic case - 26W battery built in with 4hr life - 19V 2.1A 3.0*1.0mm psu - 1 ddr3l slot max 4gb - 720p webcam - mini hdmi out - 1w speakers -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
====Toshiba====
[[#top|...to the top]]
Order of Build Quality (Lowest to highest)
<pre >
Equium
Satellite (Pro)
Libretto
Portege
Tecra
</pre >
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| Tecra 8100 8200 9000 || 440BX || {{yes|IDE}} || {{N/A}} || {{maybe|S3 Savage MX 3D (VESA only)}} || {{no|Yamaha DS-XG ymf744 ymf-754}} || {{yes|USB1.1 only}} || {{N/A}} || {{N/A}} || Icaros 1.5 || little support
|-
| <!--Name-->Tecra 9100 || <!--Chipset-->810 || <!--IDE-->{{Yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{maybe|S3 Savage IX}} || <!--Audio-->{{no|ymf754}} || <!--USB-->USB 1.1 || <!--Ethernet-->eeee pro100 || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->PSU Adapter For Toshiba Tecra 9000 9100 A1 A10 A11 A3 A3X A4 A5 A7 M1 M2 M3 M4 M5 M7 M9 R10 S1 series 75 Watt 15V 5A
|-
| [http://tuxmobil.org/toshiba_sp4600.html Satellite Pro 4600] || i810 || IDE || {{N/A}} || {{maybe|Trident Cyber Blade XP (VESA only)}} || {{no|YAMAHA DS-XG AC97 ymf754}} || {{yes|USB}} || {{yes|Intel e100}} || {{no|Agere (internal PCMCIA)}} || || little support
|-
| Satellite 2805 S603 || Intel 815 || {{yes|IDE}} || {{N/A}} || {{maybe|nVidia GeForce2 Go}} || {{no|Yamaha Corp YMF 754}} || {{yes|USB}} || {{yes|Intel PRO/100}} || {{dunno}} || || little support
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Satellite A10 S167 S1291 - A15 A20 A25 || <!--Chipset-->P4M || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel 852GM or Radeon || <!--Audio--> || <!--USB--> || <!--Ethernet-->RTL 8139 || <!--Wireless-->{{Maybe|Intel 2100, Agere or Atheros PA3399U 1MPC minipci}} || <!--Test Distro--> || <!--Comments-->a few models came with antenna leads
|-
| Satellite [http://eu.computers.toshiba-europe.com/innovation/jsp/SUPPORTSECTION/discontinuedProductPage.do?service=EU&com.broadvision.session.new=Yes&PRODUCT_ID=76230 A30-714] || P4-M / 82845 i845 || {{yes|82801}} || {{N/A}} || {{maybe|VESA}} || {{yes|AC97}} || {{yes}} || {{yes|RTL8139}} || {{N/A}} || Icaros 1.2.4 || nice laptop, drawbacks: heavy, really hot (P4-3.06 GHz!!) - A30 (EU) A33 (Australian) A35 (USA) -
|-
| <!--Name-->Satellite A40 A45 || <!--Chipset-->P4M or Celeron M with Intel 845 865 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel 852GME or Radeon 7000 Mobility || <!--Audio-->AC97 Realtek || <!--USB-->USB2.0 || <!--Ethernet--> || <!--Wireless-->Atheros 5002G 5004G - PA3299U mini pci || <!--Test Distro--> || <!--Comments-->2003 32bit - A40 S161 A40-S1611 A40-2701, A45-S120 A45-S1201 S130 S1301 S1501 -
|-
| <!--Name-->Satellite a50 A55 a60-s156 Equium A60 PSA67E A65 || <!--Chipset-->P4M or Celeron M with Intel 845 865 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel 852GME or Radeon 7000 Mobility || <!--Audio-->AC97 Realtek || <!--USB-->USB2.0 || <!--Ethernet--> || <!--Wireless-->Atheros 5002G 5004G - PA3299U mini-pci || <!--Test Distro--> || <!--Comments-->2003 32bit -
|-
| <!--Name-->Satellite A70 A75-S206 A80 A85-S107 || <!--Chipset-->P4M or Celeron-M with Intel 845 865 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel 852GME or Radeon 7000 Mobility || <!--Audio-->AC97 Realtek || <!--USB-->USB2.0 || <!--Ethernet--> || <!--Wireless-->Atheros 5002G 5004G - PA3299U mini-pci || <!--Test Distro-->Icaros 1.5.1 || <!--Comments-->2003 32bit -
|-
| Toshiba Satellite Pro M30 || intel 855 || {{yes|boots with ATA=nodma option}} || {{N/A}} || {{maybe|VESA}} || {{yes|AC97}} || {{yes|USB2.0}} || {{yes|Intel PRO/100 VE}} || {{dunno}} || Icaros 1.5 || nice laptop with some support
|-
| <!--Name-->Portege M300 - M200 tablet || <!--Chipset-->855GM with 1.2GHz Pentium M 753 || <!--IDE-->{{yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{maybe|VESA 2d only - tablet with nvidia 5200 go}} || <!--Audio-->{{no|AC97 STAC 9750}} || <!--USB-->{{yes}} || <!--Ethernet-->{{yes|Intel PRO 100}} || <!--Wireless-->{{no|Intel PRO Wireless 2200BG}} || <!--Test Distro--> || <!--Comments-->little support
|-
| <!--Name-->Tecra M2 M2-S || <!--Chipset-->Intel 855P Pentium-M || <!--IDE--> || <!--SATA-->{{N/A}} || <!--Gfx-->nvidia fx go5200 32mb or 64mb agp || <!--Audio-->AC97 1981B || <!--USB--> || <!--Ethernet--> || <!--Wireless-->Intel Pro || <!--Test Distro--> || <!--Comments-->2003 32bit - PSU 15V 5A -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Satellite Pro L20 267 (PSL2YE PSL2XE) PSL25E L30 || <!--Chipset-->Celeron M 370 1.4 1.5GHz, 1.73Ghz with RC410M SB400 || <!--IDE-->{{N/A| }} || <!--SATA-->{{yes|IDE mode}} || <!--Gfx-->{{Maybe|use VESA - Ati x200}} || <!--Audio-->{{No|[https://forums.gentoo.org/viewtopic-t-490297-start-0.html ALC861]}} || <!--USB-->{{Maybe|Boots usb sticks}} || <!--Ethernet-->{{yes|rtl8139 Realtek 8139}} || <!--Wireless-->{{No|Atheros mini-pci should work maybe not working with ATi chipset or need to swap??}} || <!--Test Distro-->2016 Icaros 2.1.1 || <!--Comments-->2004 32bit 14" pioneer dvd-rw - 19v
|-
| <!--Name-->Satellite L30 PSL30E L33 PSL33E || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel 800 or ATi RC410 x200 || <!--Audio-->AC97 AD1981B or HD Audio ALC861 || <!--USB--> || <!--Ethernet-->realtek 8139 || <!--Wireless-->Atheros or Intel || <!--Test Distro--> || <!--Comments-->L30 PSL30L 101 PSL33E 113 115 134 00M019 -
|-
| Satellite Pro M40 313 psm44e || AMD with Ati || {{yes|boots with ATA=nodma}} || {{N/A}} || {{maybe|VESA}} || {{yes|AC97}} || {{yes|USB2.0}} || {{yes|}} || {{maybe|atheros askey ar5bmb5 mini pci}} || || 2005 32bit - nice laptop with some support
|-
| <!--Name-->Satellite L40 PSL40E PSL40L, PSL43E || <!--Chipset-->945GM with U7700 1.3GHz ULV || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel 945 || <!--Audio-->{{No|Intel HD with AD1986A codec}} || <!--USB-->2 USB2.0 || <!--Ethernet-->realtek 8139 || <!--Wireless-->Atheros AR24xx Askey || <!--Test Distro-->Icaros 2.0.3 || <!--Comments-->2006 32bit only - - 12X 13G 139 14B 143 15J 19O -
|-
| <!--Name-->Satellite L45 PSL40U S7409 S2416 || <!--Chipset-->945GM with Celeron M 440 1.86 GHz || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel 945 || <!--Audio-->{{No|Intel HD with AD1986A codec}} || <!--USB-->2 USB2.0 || <!--Ethernet-->realtek 8139 || <!--Wireless-->Atheros AR24xx Askey || <!--Test Distro-->Icaros 2.0.3 || <!--Comments-->2006 32bit only -
|-
| <!--Name-->Satellite Pro A100 || <!--Chipset-->940G || <!--IDE--> || <!--SATA--> || <!--Gfx-->Nvidia G72M Quadro NVS 110M GeForce Go 7300 / Ati (PSAA3E)|| <!--Audio-->HD Audio with ALC861 codec || <!--USB--> || <!--Ethernet-->Intel 100 || <!--Wireless-->Intel 3945 swap with atheros || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->Satellite A110 159 (PSAB0), Equium A110 (PSAB2E), Satellite A110 233 (PSAB6), || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio-->ALC861 || <!--USB--> || <!--Ethernet-->Realtek 8136 || <!--Wireless-->Atheros || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->Satellite Pro A120 PSAC0 PSAC1 PSAC1E || <!--Chipset-->Core Solo GMA 950 to T2300 || <!--IDE--> || <!--SATA--> || <!--Gfx-->GMA 945 || <!--Audio-->ALC262 or AC97 AD1981B || <!--USB-->UHCI EHCI || <!--Ethernet--> || <!--Wireless-->Atheros Ar5001 or Intel or Broadcom || <!--Test Distro--> || <!--Comments-->15V 4A charger -
|-
| <!--Name-->Satellite Pro A120 || <!--Chipset-->Core Duo ATi RS480 + SB450 || <!--IDE--> || <!--SATA--> || <!--Gfx-->use VESA - ATI RC410 Radeon Xpress 200M || <!--Audio-->ALC262 || <!--USB-->OCHI UHCI || <!--Ethernet-->RTL 8139 || <!--Wireless-->Intel 3945 or Atheros Ar5001 || <!--Test Distro--> || <!--Comments-->15v 5a proprietary charger needed
|-
| <!--Name-->Satelite A130 PSAD6U || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet-->Realtek 8101E || <!--Wireless-->Atheros or Intel || <!--Test Distro--> || <!--Comments-->ST1311 s1311 ST1312 S2276 S2386 -
|-
| <!--Name-->Satellite A135 S2686 (Compal LA 3391P) || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet-->Realtek 8101E || <!--Wireless-->Atheros or Intel || <!--Test Distro--> || <!--Comments-->S2246 S2346 S2256 S4477 S4666 S4827 -
|-
| <!--Name-->Satellite A200 PSAE1E (Inventec MW10M) || <!--Chipset-->Pentium M with 945GM Express Celeron M 520 1.6Ghz or Pentium® Core Duo T2130 1.86 GHz || <!--IDE--> {{N/A}}|| <!--SATA--> {{Maybe|SATA}}|| <!--Gfx--> {{Yes|Intel GMA 950 (2D and 3D)}}|| <!--Audio--> {{Yes|HD Audio ALC862}}|| <!--USB--> {{Yes| }}|| <!--Ethernet--> {{yes|RTL8101E rtl8139}}|| <!--Wireless--> {{yes|Atheros 5000 - FN,F5 or FN,F8 or switch}} || <!--Test Distro-->2016 AspireOS 1.8 || <!--Comments-->2006 Excellent 32 bit support! - make sure that your WLAN card is enabled, do this using the hardware switch and FN+F8 key combination
|-
| <!--Name--> A210, Satellite A215 AMD (Inventec 10A) S5808 || <!--Chipset--> Ati with SB690 || <!--IDE--> {{N/A}}|| <!--SATA-->{{Maybe|SATA}}|| <!--Gfx-->{{Maybe|use VESA HD2600 Mobility M76}} || <!--Audio-->HD Audio ALC268 || <!--USB--> {{Yes| }}|| <!--Ethernet-->{{yes|RTL8101E}}|| <!--Wireless--> {{yes|Atheros 5000}}|| <!--Test Distro-->2018 AspireOS 1.8 || <!--Comments-->A215-S7422 A215-S7472 A215-S4697 (USA) -
|-
| <!--Name--> [http://www.amiga.org/forums/showthread.php?t=62036 A215 S4757] || <!--Chipset--> Ati X1200 with SB600 || <!--IDE--> {{N/A}}|| <!--SATA-->{{Maybe|SATA}}|| <!--Gfx-->{{Maybe}} || <!--Audio-->HD Audio || <!--USB--> {{Yes| }}|| <!--Ethernet-->{{yes|RTL8101E}}|| <!--Wireless--> {{yes|Atheros 5000}}|| <!--Test Distro-->2017 AspireOS 1.8 || <!--Comments-->
|-
| <!--Name-->Qosmio G30 (PQG31C-HD202E) || <!--Chipset-->945 with Duo T2500 || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->{{yes|Nouveau Nvidia Go 7600 2d and 3d}} || <!--Audio-->{{yes| }} || <!--USB-->{{yes| }} || <!--Ethernet-->{{no| }} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2006 32bit - 17" UXGA 1920x1200,
|-
| <!--Name-->Tecra A10 || <!--Chipset--> || <!--IDE--> {{N/A}} || <!--SATA--> {{Maybe|IDE mode}} || <!--Gfx--> {{Maybe|Intel GMA 4500M (2D)}} || <!--Audio--> {{Yes|HD Audio}} || <!--USB--> {{Yes|USB 2.0}} || <!--Ethernet-->{{No|Intel PRO 1000}} || <!--Wireless-->{{No|Intel WiFi Link 5100}} || <!--Test Distro--> || <!--Comments-->64 bit possible
|-
| <!--Name-->L35 - L40 PSL48E - L45 S7423 || <!--Chipset-->GL960 with Intel Celeron || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Maybe|X3100 some 2D but software 3d tunnel 9 gearbox 4}} || <!--Audio-->{{Yes|HD Audio with ALC660 codec playback}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{Yes|REALTEK 8139}} || <!--Wireless-->{{No|Realtek 8187b replace with Atheros 5k}} || <!--Test Distro-->2017 Icaros 2.1.2 || <!--Comments-->1,73Ghz M 520 or M 540 or Dual T2310 (1.46 GHz) T2330 (1.6 GHz) - 14H 14N 15B 17H 17K 17R 17S 18Z -
|-
| <!--Name-->Satellite a300 - inventec potomac 10s pt10s A300D 21H || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->ATI Mobility Radeon HD 3650 || <!--Audio-->HD Audio - Realtek || <!--USB--> || <!--Ethernet-->Realtek 8102E || <!--Wireless-->Atheros 5005 || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->satellite L300D-224 PSLC8E PSLC9E, l305 (inventec ps10s) || <!--Chipset-->AMD M780 with Turion RM70 or QL-64 || <!--IDE--> {{yes|IDE}} || <!--SATA--> {{yes|SATA}} || <!--Gfx--> {{Maybe|use VESA for Radeon 3100}} || <!--Audio-->{{maybe|HD Audio with Realtek ALC268}} || <!--USB--> {{yes|USB 2.0}} || <!--Ethernet--> {{no|rtl8169 Realtek RTL8101E RTL8102E}} || <!--Wireless-->{{no|Atheros G XB63L or Intel or Realtek}} || <!--Test Distro--> Icaros Desktop Live 2.3 AROS One 2.3 || <!--Comments--> Wireless-handler crashing when using Atheros-Wireless-Card
|-
| <!--Name-->Satellite P300 (PSPC0C-01D01C) || <!--Chipset-->945GM with Intel Core 2 Duo T5750 || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->{{maybe| }} || <!--Audio-->{{No| codec}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{no| }} || <!--Wireless-->{{No| swap with Atheros 5k }} || <!--Test Distro-->AROS One 64bit || <!--Comments-->2007
|-
| <!--Name-->satellite l300-1bw PSLBDE-005005AR, L300-148 PSLB0E, l300-20D PSLB8E-06Q007EN, l300-294 L300-23L PSLB9E || <!--Chipset-->Intel GM45 + PGA478 socket Celeron 900, Pentium T1600, T2390, T3400 (Socket P) to Core2 Duo T6400 T6670 || <!--IDE--> {{unk|IDE}} || <!--SATA--> {{unk|SATA}} || <!--Gfx--> {{Maybe|use VESA for Intel gma 4500M}} || <!--Audio-->{{maybe|HD Audio with Realtek ALC???}} || <!--USB--> {{unk|USB 2.0}} || <!--Ethernet--> {{unk|rtl8169 Realtek 810xE}} || <!--Wireless-->{{no|Intel or Realtek}} || <!--Test Distro--> || <!--Comments-->2009 64-bit - new unfamiliar Bios called insyde H20 -
|-
| <!--Name-->satellite l350d || <!--Chipset-->AMD Athlon (tm) X2 QL-60 + RS780M || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->Radeon HD 3100 || <!--Audio-->HD Audio with Realtek || <!--USB--> || <!--Ethernet-->Realtek || <!--Wireless-->Realtek 8187b || <!--Test Distro--> || <!--Comments-->2009 64bit
|-
| <!--Name-->Satellite L450 12 13 14 || <!--Chipset-->AMD Sempron, 2.1GHz with AMD RS780M || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->Radeon HD 3200 (based on HD 2400) || <!--Audio--> || <!--USB--> || <!--Ethernet-->Realtek RTL8101E RTL8102E || <!--Wireless-->Realtek 8172 || <!--Test Distro--> || <!--Comments-->2009 64bit - 12X 13P 13X 14V PSLY6E00C006EN
|-
| <!--Name-->Satellite Pro L450 (Compal LA-5821P) 179 || <!--Chipset-->intel celeron 900 2.20 Ghz no sse4.1 or avx || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->intel 4500m || <!--Audio-->HD Audio with codec || <!--USB--> || <!--Ethernet-->RTL8101 /2 /6E PCI Express Gigabit || <!--Wireless-->RTL8191 SEvB || <!--Test Distro--> || <!--Comments-->2009 64bit - 39.6cm (15.6”) Toshiba TruBrite® HD TFT 16:9 768p
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Toshiba Satellite P775, P775-S7320 and P775-10K || <!--Chipset-->Intel Core i5 (2nd Gen) 2430M i7-2630QM || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Maybe|Vesa 2D for Intel}} || <!--Audio-->{{maybe| }} || <!--USB-->{{maybe| }} || <!--Ethernet-->{{no| }} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2011 17.3" - 1600 x 900 (HD+) - 2 DDR3 sodimm max 16Gb -
|-
|<!--Name-->Toshiba Satellite C660D-19X || <!--Chipset-->AMD E-300 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{maybe|Vesa 2D for ATi}} || <!--Audio-->{{no|HD Audio with Realtek codec}} || <!--USB-->{{no| }} || <!--Ethernet-->{{Maybe|r8169 rtl8101e}} || <!--Wireless-->{{no|Realtek RTL8188 8192ce rtl8192ce}} || <!--Test Distro--> || <!--Comments-->2011 64bit -
|-
| <!--Name-->L755D (E-350) L750D (E-450) || <!--Chipset-->AMD E350 E450 no sse4.1 or avx || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->Radeon HD 6310 6320 || <!--Audio-->HDAudio conexant codec || <!--USB--> || <!--Ethernet--> || <!--Wireless-->Realtek || <!--Test Distro--> || <!--Comments-->2012 64bit
|-
| <!--Name-->Satellite Pro SP C640 C660D-15X (PSC1YE) C670D- () || <!--Chipset-->AMD E350 no sse4.1 or avx || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->6310G || <!--Audio-->HD Realtek ALC259 || <!--USB-->USB2 || <!--Ethernet-->Realtek || <!--Wireless-->Broadcom || <!--Test Distro--> || <!--Comments-->2012 64bit
|-
| <!--Name-->C70D-A C75D-A || <!--Chipset-->E1-1200 no sse4.1 or avx || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{maybe|AMD HD8330}} || <!--Audio-->{{no|HA Audio CX20751 11Z}} || <!--USB-->{{no| }} || <!--Ethernet-->{{no|Atheros AR8162 alx}} || <!--Wireless-->{{no|Realtek 8188e}} || <!--Test Distro--> || <!--Comments-->2013 64bit -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
|}
====Misc====
[[#top|...to the top]]
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->Time 500 Packard Bell EasyOne 1450 1550 || <!--Chipset-->K6-3 500Mhz + VIA MVP4 vt82c686a || <!--IDE-->{{N/A|Issues}} || <!--SATA-->{{N/A}} || <!--Gfx-->Use VESA || <!--Audio-->{{No|VIA AC97 3058 with wolfson codec WM9703 WM9704 WM9707 WM9708 or WM9717}} || <!--USB-->via 3038 2 ports USB 1.1 untested || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{N/A}} || <!--Test Distro-->NB May 2013 || <!--Comments-->2001 32bit grub runs but stalls around [PCI] Everything OK
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->Sony Vaio PCG FX201/FX202 FX210/FX215 FX401/FX402 FX404/FX405 972M, FX501/FX502 FX504/FX505 || <!--Chipset-->VIA KT133A KM133 Duron 800Mhz Athlon 1.3Ghz || <!--IDE-->{{partial|boot issue with 2013 kernel VIA [rev 06]}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{partial|ATI Rage Mobility Pro (VESA only)}} || <!--Audio-->{{Yes|VIA AC97 686b [rev 50] AD1881A Ear phone and Mic}} || <!--USB-->{{Maybe|issues}} || <!--Ethernet-->{{Yes|RTL 8139}} || <!--Wireless-->{{N/A}} || <!--Comments-->Nightly 1st March 2013 || <!--Comments-->booting usb pendrive from Plop Boot Loader floppy (no bios USB boot). Can freeze coz hardware issue or a ram slot problem - no support for iLink firewire VT8363/8365 pci - vt82c686b
|-
| <!--Name-->Sony Vaio PCG FX601/FX602, FX604/FX605 FXA53(US), FX701/FX702, FX704/FX705, FX801/FX802 FX804/FX805 || <!--Chipset-->VIA KT133A KM133 Duron 800Mhz Athlon 1.3Ghz || <!--IDE-->{{partial|boot issue with 2013 kernel VIA [rev 06]}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{partial|ATI Rage Mobility Pro (VESA only)}} || <!--Audio-->{{Yes|VIA AC97 686b [rev 50] AD1881A Ear phone and Mic}} || <!--USB-->{{Maybe|issues}} || <!--Ethernet-->{{Yes|RTL 8139}} || <!--Wireless-->{{N/A}} || <!--Comments-->Nightly 1st March 2013 || <!--Comments-->booting usb pendrive somes works
|-
| <!--Name-->Sony Vaio PCG FX100 R505LE || <!--Chipset-->Intel i815 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Use VESA Intel 82815 CGC || <!--Audio-->Intel ICH AC97 with ADI AD1881A codec || <!--USB--> || <!--Ethernet-->Intel e100 || <!--Wireless-->{{N/A}} || <!--Test Distro--> || <!--Comments-->PCG-FX105 FX105K PCG-FX108 FX108K PCG-FX109 FX109K FX200 FX203/FX203K FX205 FX205K FX209 FX209K FX220 [http://juljas.net/linux/vaiofx240/ FX240] FX250 FX270 FX290 FX301 FX302 FX340 FX370 FX390 FX403 FX503 FX950
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| Sony VAIO VGN X505VP || Pentium M ULV and Intel 855GM || {{yes}} || {{N/A}} || {{maybe|Intel 855 (VESA only)}} || {{yes|AC97}} || {{yes|USB}} || {{yes|Intel PRO 100 VE}} || {{N/A}} || || 2004 32bit - 0.38 inches at its thinnest point - first laptop to feature a "chiclet" keyboard resemble Chiclets gum -
|-
| <!--Name-->Sony Z505LE Z505JE || <!--Chipset-->P3 || <!--IDE--> || <!--SATA-->n/a || <!--Gfx-->Rage Mobility M1 AGP mach64 || <!--Audio-->no Yamaha DS-XG PCI YMF744 || <!--USB--> || <!--Ethernet-->Intel 8255x based PCI e100 || <!--Wireless-->n/a || <!--Test Distro--> || <!--Comments-->2004 32bit -
|-
| <!--Name-->Panasonic Toughbook CF-18 || <!--Chipset-->Core || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{yes|gma for i915}} || <!--Audio-->{{yes|AC97 SigmaTel}} || <!--USB-->{{yes|usb2 }} || <!--Ethernet-->{{yes|RTL 8139C}} || <!--Wireless-->{{no|Intel swap for atheros 5k}} || <!--Test Distro-->Deadwoods' D02 test || <!--Comments-->2003 32bit
|-
| <!--Name-->Panasonic Toughbook CF-29 CF-30 || <!--Chipset-->Core || <!--IDE--> || <!--SATA--> || <!--Gfx-->use VESA || <!--Audio-->AC97 SigmaTel || <!--USB--> || <!--Ethernet-->RTL 8139C || <!--Wireless-->Intel || <!--Test Distro--> || <!--Comments-->2003 32bit
|-
| <!--Name-->MSI Microstar PR210 || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Maybe|use VESA ATi RS690M}} || <!--Audio-->{{Yes|HD Audio through speaker / head phones but not hdmi}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{yes|Realtek 8111 8169}} || <!--Wireless-->Atheros AR242x AR542x aw-ge780 mini pci-e || <!--Test Distro-->2017 Icaros 2.1.2 || <!--Comments-->2004 32bit - ENE PCI based SD card with no bios boot option
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Advent 7106 EAA-88 || <!--Chipset-->Pentium M 1.7GHz with 915GM || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{Yes|2D and 3D tunnel 187 gearbox 67}} || <!--Audio-->{{Yes|AC97 Intel ICH6 with Conexant Cx20468 31 codec playback head phones only}} || <!--USB--> || <!--Ethernet-->{{Yes|Realtek 8169}} || <!--Wireless-->{{No|Intel 2200BG Fn/F2 replaced with atheros mini pci in small base panel - startup errors in wireless manager}} || <!--Test Distro-->2017 Icaros 2.1.1 || <!--Comments-->2005 32bit 14" cheap rubbish sadly - fan noise through audio channel -
|-
| <!--Name-->Motion Computing LE1600 PC Slate || <!--Chipset-->915 || <!--IDE--> || <!--SATA--> || <!--Gfx-->915 || <!--Audio-->Intel AC97 SigmaTel STAC9758 9759 || <!--USB--> || <!--Ethernet-->Realtek 8169 || <!--Wireless-->Intel PRO Wireless 2200BG || <!--Test Distro--> || <!--Comments-->2005 serial Wacom digitiser not usb
|-
| <!--Name-->Panasonic Toughbook CF-51 CF-P1 CF-T5 CF-Y2 || <!--Chipset-->945GMS || <!--IDE--> || <!--SATA--> || <!--Gfx-->GMA 950 || <!--Audio-->HD Audio || <!--USB--> || <!--Ethernet-->Broadcom || <!--Wireless-->Intel || <!--Test Distro--> || <!--Comments-->2006 32bit
|-
| <!--Name-->Sony Vaio VGN-AR11S || <!--Chipset-->ntel Core Duo T2500 || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{yes| Nvidia Go 7600}} || <!--Audio-->{{yes| }} || <!--USB-->{{yes| }} || <!--Ethernet-->{{no| }} || <!--Wireless-->{{No| }} || <!--Test Distro-->Aros One 32bit || <!--Comments-->2006 32bit - 17" 1920x1200 - blu-ray -
|-
| Sony Vaio VGN SR29VN || Intel ICH9 || {{N/A}} || {{maybe|IDE legacy}} || {{partial|ATI HD 3400 (VESA only)}} || {{partial|HD Audio (too quiet)}} || {{yes|USB1.1 and USB2.0}} || {{no|Marvell 8040}} || {{no|Intel 5100}} || Icaros 1.5 || 2007 32bit -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Wyse XM Class DELL WYSE Xn0m LAPTOP || <!--Chipset-->AMD T-G56N 1.6 1.65Ghz || <!--IDE-->{{N/A| }} || <!--SATA-->decased 2.5in ssd || <!--Gfx-->{{Maybe|Vesa 2d only AMD 6320}} || <!--Audio-->{{Maybe| }} || <!--USB-->{{Maybe|EHCI 2.0 with NEC uPD720200 USB 3.0}} || <!--Ethernet-->{{Yes|Realtek rtl8169 8111E}} || <!--Wireless-->{{No|Atheros 93xx}} || <!--Test Distro--> || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 - 1366 x 768 14" - 2 ddr3l slots max 16gb - 19v coax barrel plug psu -
|-
| <!--Name-->Panasonic Toughpad FZ-G1 MK2 || <!--Chipset-->Core i5-3437U, 1.9GHz || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet-->{{N/A}} || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2014 64bit -
|-
| <!--Name-->ToughPad FZ-G1 Mk3 || <!--Chipset-->Intel Core i5-4310U || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->Intel HD 4400 || <!--Audio-->HDaudio Codec ALC255 || <!--USB--> || <!--Ethernet-->{{N/A}} || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->2015 64bit -
|-
| <!--Name-->[https://wiki.recessim.com/view/Panasonic_Toughpad_FZ-G1_MK4 Panasonic Toughpad FZ-G1 MK4] || <!--Chipset-->intel 6300U || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->Intel 520 || <!--Audio-->HDaudio with ALC256 codec - o/c or s/c fails early || <!--USB-->{{maybe|USB3 but options on the right hand side of screen case}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no|intel ac 8260}} || <!--Test Distro--> || <!--Comments-->2016 64bit - 10.1in 1600x1200 - 4gb ddr3l soldered - waterproof pen left hand side base - optional slot-in 4g lte and sdhc - 16v 4.06A 64.96W panasonic barrel -
|-
| <!--Name-->Panasonic Toughpad FZ-G1 MK5 || <!--Chipset-->intel i5-7300U || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->Intel 620 || <!--Audio-->HDaudio ALC295 codec - o/c or s/c fails early || <!--USB-->{{maybe|USB3 but optional usb2 plugin r.h.s. of screen casing}} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no|Intel}} || <!--Test Distro--> || <!--Comments-->2018 64bit - 8gb ddr3l soldered - 10.1" WUXGA 1920 x 1200 with LED backlighting screen 2-800 nit - 10-point capacitive multi touch + Waterproof Digitizer pen l.h.s -
|-
| <!--Name-->ToughPad FZ-M1 || <!--Chipset-->Intel® Core TM m5-6Y57 vPro TM || <!--IDE-->{{N/A}} || <!--SATA-->sata || <!--Gfx-->Intel HD 4200 || <!--Audio-->HDaudio with ALC codec || <!--USB-->{{maybe| }} || <!--Ethernet-->{{N/A}} || <!--Wireless-->{{no| }} || <!--Test Distro--> || <!--Comments-->2016 64bit - 7in 800p - 8gb ddr3l soldered -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || IDE || SATA || Gfx || Audio || USB || Ethernet || Wireless || Test Distro || Comments
|-
| <!--Name-->Any Razor Razer laptops || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->AVOID unable to remove secure boot
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
===Netbook===
[[#top|...to the top]]
* PC to write Aros image onto an USB pendrive with Raspberry PI writer, USB writer or Rufus for boot purposes on a netbook
* SD card sometimes can boot like Dell 2100, EeePC 1001P, ASUS EeePC 900, acer aspire one d150, MSI Wind U100,
====Acer Packard Bell Netbooks====
[[#top|...to the top]]
{| class="wikitable sortable" width=100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| Aspire One AOA110 (A110) (ZG5) || Intel 945GSE || {{N/A}} || {{Maybe|IDE legacy mode}} || {{Yes|Intel GMA (2D and 3D) tunnel 99 and gearbox 84 score}} || {{Yes|HD Audio ALC6628}} || {{Yes|USB1.1 and USB2.0}} || {{Yes|rtl8169 RTL8101E}} || {{Yes|AR5006}} atheros 5k || 2016 AspireOS 1.8, 2025 Aros One 2.6 32bit USB || 2007 32bit 1 core - 19v barrel A13-045N2A 19V2.37A 45W 5.5x1.7mm -
|-
| Aspire One AOA150 (A150) (ZG5) || Intel 945GSE || {{N/A}} || {{Maybe|ide mode}} || {{Yes|Intel GMA 2D and accelerated 3D with tunnel 99 and gearbox 84.1 result}} || {{Yes|HD Audio ALC6628}} || {{Yes|uhci and ehci}} || {{Yes|rtl8169 RTL8101E}} || {{Yes|AR5006}} atheros 5k || 2016 AspireOS 1.8, 2025 aros one 2.6 32bit USB || 2007 32bit 1 core - 19v barrel -
|-
| Aspire One AOD150 D150 (Compal LA-4781P), AOD110 D110 (ssd) || Intel 945GME || {{N/A}} || {{Maybe|ide legacy}} || {{Yes|Intel GMA 950 (2D)}} || {{Yes|HDAudio with alc272}} || {{Yes|USB}} || {{No|Atheros AR8121 AR8113 AR8114 l1e}} || {{Maybe|AR5007EG AR5BXB63 works but Broadcom BCM4312 has no support}} || 2010 Icaros Desktop 1.3, 2024 Aros one 32bit USB || 2008 32bit 1 core - 19v barrel -
|-
| Aspire One (ZG8) || Intel 945G and N270 || {{N/A}} || {{Maybe|ide mode}} || {{Yes|Intel GMA 2D and accelerated 3D}} || {{maybe|HD Audio }} || {{Yes|uhci and ehci}} || {{No|Broadcom }} || {{no|Intel}} || 2014 AspireOS 1.8 || 2009 32bit -
|-
| Aspire One AOD250 D250 emachines em250 || 945GME || {{N/A}} || {{Maybe|ide legacy}} || {{Yes|Intel GMA (2D)}} || {{Yes|alc272 HD Audio}} || {{Yes}} || {{No|AR8132 (L1c)}} || {{No|BCM4312 or Atheros AR5B95}} || 2010 Icaros 1.3 || 2009 32bit 1 core - 19v barrel -
|-
| <!--Name-->Aspire AO532H (Compal LA-5651p) 533H Pineview || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio-->{{Yes|HD Audio playback}} || <!--USB--> || <!--Ethernet-->{{No|AR8132 (L1c)}} || <!--Wireless-->{{No|Atheros 9k}} || [http://www.amigaworld.net/modules/news/article.php?mode=flat&order=0&item_id=5968 Tested AspireOS June 2011] || <!--Comments-->
|-
| <!--Name-->emachines eM350 NAV51 || <!--Chipset--> with N450 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Intel 3150 || <!--Audio-->HD Audio with codec || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro-->Icaros 2.2 || <!--Comments-->Single core 64bit - 160GB HDD 1GB RAM 10.1" LED backlit screen and Webcam - 3 cell li-ion battery for 3 hours usage -
|-
| <!--Name-->emachines eM355 || <!--Chipset--> with N455 || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->64bit support possible -
|-
| <!--Name-->Aspire One 533 || <!--Chipset-->N455 with NM10 || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes}} || <!--Gfx-->{{Yes|2D 0x8086 0xa011}} || <!--Audio-->{{Yes| ALC272 codec ich7}} || <!--USB-->{{Yes}} || <!--Ethernet-->{{No|Atheros AR8152 v1.1 1c}} || <!--Wireless-->{{No|Broadcom 4313}} || <!--Test Distro-->2016 Icaros 2.1 and AROS One 2.3 || <!--Comments-->2011 64bit - f2 setup - 10.1inch 1024 x 768 -
|-
| Aspire One AOD255 AOD255e AOD260 AOHAPPY (Compal LA-6221P) || N570 and Nm10 || {{N/A}} || {{Maybe|SATA}} || {{Maybe|Intel GMA 3150}} || Audio || USB || {{No|Atheros AR8152 V1.1 (1lc)}} || {{No|Broadcom BCM4313}} || || a little support
|-
| Aspire One 522 AO522 (Compal LA-7072p) || 1GHz dual C-50 C50 or C-60 C60 + Hudson M1 || {{N/A}} || SATA || AMD 6250 (ATI 9804) or 6290 || ATI SB CX20584 HD Audio || USB || Atheros 8152 v2.0 l1c || {{No|Broadcom BCM4313 or Atheros ath9k}} || ||
|-
| <!--Name-->AAOD270 Aspire One D270 || <!--Chipset-->N2600 Cedarview || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes| }} || <!--Gfx-->{{Yes|2D on Intel GMA 3650}} || <!--Audio-->{{Yes| }} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{Yes|RTL 8169 RTL8101E}} || <!--Wireless-->{{No|Broadcom BCM4313 but swap for Atheros 5k}} || <!--Test Distro--> || <!--Opinion-->2011 64bit atom - ddr2 so-dimm 2gb max -
|-
| <!--Name-->Aspire One AO532G (Compal LA-6091p) || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->Aspire One D257 (Quanta ZE6) || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->Acer Aspire One 722 AO722 P1VE6 || <!--Chipset-->AMD C-60 C60 with SB900 || <!--IDE-->{{N/A| }} || <!--SATA--> || <!--Gfx-->{{Maybe| use VESA Ati 6290}} || <!--Audio-->{{Yes|HD Audio with codec but no Wrestler HDMI output}} || <!--USB--> || <!--Ethernet-->{{No|Qualcomm Atheros AR8152 v2.0}} || <!--Wireless-->{{unk|Atheros AR9485}} || <!--Test Distro-->2017 Icaros 2.1.2 || <!--Comments-->
|-
| <!--Name-->Aspire One AO721 (Wistron SJV10-NL) || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->AO751 AO751H (Quanta ZA3) || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->Packard Bell Dot .S || <!--Chipset-->N280 + || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|legacy}} || <!--Gfx-->{{yes|Intel GMA950 (2D)}}|| <!--Audio-->HD Audio ALC272X || <!--USB--> USB2.0 || <!--Ethernet--> {{no|Atheros l1e}} || <!--Wireless-->{{no|Atheros 9k}} || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->Packard Bell Dot .SE || <!--Chipset-->N450 + || <!--IDE-->{{N/A}} || <!--SATA-->legacy || <!--Gfx-->Intel GMA950 (2D) || <!--Audio-->HD Audio ALC|| <!--USB-->USB2.0 || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->Packard Bell Dot .S2 NAV50 || <!--Chipset-->N455 NM10 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->Intel X3150 || <!--Audio-->HD Audio ALC269 || <!--USB--> || <!--Ethernet-->Atheros || <!--Wireless-->Atheros || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name-->Packard Bell Dot M/A || <!--Chipset-->1.2GHz Athlon L110 + RS690E || <!--IDE-->{{N/A}} || <!--SATA-->legacy mode? || <!--Gfx-->AMD ATI Radeon Xpress X1270 (VESA only) || <!--Audio-->HD Audio ATI SBx00 || <!--USB--> || <!--Ethernet-->Realtek RTL8101E RTL8102E rtl8169 || <!--Wireless-->{{unk|Atheros AR9285}} || <!--Test Distro--> || <!--Opinion-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
====Asus Netbooks====
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| [http://wiki.debian.org/DebianEeePC/Models eeePC] 700 701 2G 4G 8G Surf || Intel 910GML + ICH7 || {{N/A}} || {{Maybe|IDE legacy mode}} || {{Yes|Intel GMA 900 2D and 3D tunnel 68 gearbox 43 on 701 800x480}} || {{Yes|ALC662 HD Audio}} || {{Yes|UHCI and EHCI}} || {{No|Atheros L2}} || {{Yes|Atheros 5k AR5007EG (AR2425 works}} || 2016 Icaros 2.1.1, 2.1.2, Aros One 2.5 32bit USB, || 2007 32bit - power supplies fail due to bad caps issue 9.5V 2.5A 24W Charger AD59930 4.8*1.7MM -
|-
| [http://wiki.debian.org/DebianEeePC/Models eeePC] 701SD || Intel 910GML + ICH7 || {{N/A}} || {{Maybe|IDE legacy mode}} || {{Maybe|Intel GMA 900 (2D)}} || {{Yes|ALC662 HD Audio}} || {{Yes|UHCI and EHCI}} || {{No|Atheros L2}} || {{No|RTL8187SE swap with Atheros 5k}} || 2014 AspireOS 1.7, || 2007 32bit - boot issues but does boot with ATA=32bit,nopoll or ATA=nodma,nopoll
|-
| [http://wiki.debian.org/DebianEeePC/Models eeePC] 900 || Intel 910GML + ICH7 || {{N/A}} || {{Maybe|IDE legacy mode}} || {{Maybe|Intel GMA 900 (2D, 3D in some models)}} || {{Yes|ALC662 HD Audio}} || {{Yes|UHCI and EHCI}} || {{No|Atheros L2}} || {{Maybe|depends on chipset AR5007EG (AR2425) works but not RaLink}} || 2014 AspireOS 1.7, || 2008 32bit - boot issues but does boot with ATA=32bit,nopoll or ATA=nodma,nopoll. 900's may need BIOS upgrade to boot usb optical drives. 3D available in some model revisions - AD59230 9.5v 2.31a psu -
|-
| eeePC 900A || 945GSE || {{N/A}} || {{Maybe|IDE legacy mode}} || {{Yes|Intel GMA 950 (3D)}} || {{Yes|HD Audio ALC269}} || {{Yes|USB2.0}} || {{No|Atheros L1e [1969 1026]}} || {{Yes|Atheros 5k AR242x}} || Nightly Build 2012, 2023 Aros One 32bit 2.4 || 2009 32bit
|-
| eeePC 901 1000 || 945GM || {{N/A}} || {{Maybe|IDE legacy mode}} || {{yes|Intel GMA 950 (2D)}} || {{Yes|ALC269 HD Audio}} || {{Yes|USB}} || {{No|Atheros L1E (AR8121 AR8113 AR8114)}} || {{No|RaLink Device 2860 swap with Atheros 5k}} || 2011 Icaros 1.4, || 2009 32bit - 12v 3a psu -
|-
| eeePC Seashell 1000HA 1000HE 1008 1005HA || N280 + Intel GMA950 || {{N/A}} || SATA || {{Yes|Intel GMA (2D)}} || {{Yes|HD Audio ALC269}} || {{Yes|USB}} || {{Maybe|Realtek but not Atheros AR8132 (L1c)}} || {{unk|Atheros AR9285}} || 2014 Aspire OS 1.6, || 2010 32bit - 12v 3a psu -
|-
| <!--Name-->eeePC 1001ha || <!--Chipset-->GMA945 || <!--IDE-->{{N/A}} || <!--SATA-->legacy || <!--Gfx-->Intel GMA 950 (2D) || <!--Audio-->ALC269 HD Audio || <!--USB--> || <!--Ethernet-->{{No|Attansic Atheros AR8132 l1c}} || <!--Wireless-->{{No|RaLink RT3090 swap with Atheros 5k}} || <!--Test Distro-->untested || <!--Opinion-->2010 32bit
|-
| eeePC 1001P T101MT 1005PX 1005PE 1015PE Pineview 1001PXD || NM10 and N450 N455 CPU || {{N/A}} || {{Maybe|IDE mode}} || {{Yes|Intel GMA 3150 (2D)}} || {{Yes|HD Audio}} || {{Yes|USB 2.0}} || {{No|Atheros AR8132 (l1c)}} || {{unk|Atheros AR928x 802.11n}} || 2010 Icaros 1.3.3, || 2011 64bit - 19V 2.1A 2.3x0.7 -
|-
| EeePC 1015B 1215B || single C-30 C30 or dual C-50 C50 + Hudson M1 || {{N/A}} || SATA || {{partial|AMD 6250 (VESA only)}} || ATI SBx00 HD Audio || USB || {{No|AR8152 v2.0 atl1c}} || {{No|Broadcom BCM4313 [14e4 4727]}} || untested recently || 2011 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name-->Flare X101CH Cedarview || <!--Chipset-->N2600 + N10 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->Intel GMA 6300 || <!--Audio--> || <!--USB--> || <!--Ethernet-->{{No|Atheros l1c 2.0}} || <!--Wireless-->{{unk|Atheros 9k AR9285}} || <!--Test Distro--> || <!--Comments-->2012 64bit
|-
| <!--Name-->Flare 1025CE 1225CE || <!--Chipset-->N2800 + N10 || <!--IDE--> || <!--SATA--> || <!--Gfx-->{{dunno|Intel GMA 3600}} || <!--Audio--> || <!--USB--> || <!--Ethernet-->{{No|Atheros l1c 2.0}} || <!--Wireless-->{{unk|Atheros 9k AR9285}} || <!--Test Distro--> || <!--Comments-->2012 64bit
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
====Dell Netbooks====
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| Inspiron 910 Mini 9 PP39S Vostro A90 || GMA945 || {{Maybe|STEC 8G 16G 32G IDE PATA Parallel ATA miniPCIE SSD 50MM / 70MM very slow}} || {{N/A| }} || {{yes|Intel GMA 2D and 3D opengl1}} || {{yes|ALC268 HD Audio}} || {{yes|USB2 boots and works}} || {{yes|rtl8169 Realtek RTL8102E}} || {{no|Broadcom BCM4310 and 4312 swap with atheros 5k bx32}} || ICAROS 1.3 but Icaros 2.3 (pci issues), AROS One 2.6 and Tiny AROS (digiclock startup) mouse cursor vanishes || 2008 32bit - 9inch 1024x600 screen - 1 ddr2 sodimm slot max 2gig - 19v 1.58a - 0 boot disk select - cr2032 battery under laptop base cover, while mem 2GB max under base flap -
|-
| <!--Name-->Inspiron Mini 10 1010 PP19S || <!--Chipset-->Atom Z520 Z530 Intel US15W Poulsbo || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{maybe|Intel GMA 500 (VESA only)}} || <!--Audio-->{{Maybe|HD Audio ALC269 codec}} || <!--USB--> || <!--Ethernet-->{{yes|rtl8169 RTL8102E}} || <!--Wireless-->{{no|Intel or BCM4312}} || <!--Test Distro-->untested || <!--Comments-->2008 32bit - 10.10 inch 16:9, 1366 x 768 glossy - 28whr or 56wHr battery options -
|-
| [https://wiki.ubuntu.com/HardwareSupport/Machines/Netbooks#Dell%20Mini%2010v%20(Inspiron%201011) Mini 10v 1011] [http://wiki.debian.org/InstallingDebianOn/Dell/InspironMini10v ] || Intel 950 || {{N/A}} || {{maybe|ide legacy mode}} || {{yes|Intel GMA (2D)}} || {{maybe|HDAudio}} || {{yes|USB}} || {{yes|RTL8102E 8103E}} || {{no|Dell 1397 Wireless}} || untested || 2008 32bit -
|-
| <!--Name-->Inspiron Mini 1018 || <!--Chipset-->Intel Atom N455 || <!--IDE-->{{N/A}} || <!--SATA-->{{partial|IDE mode }} || <!--Gfx-->{{yes|Intel GMA 3150 (2D, no VGA output)}} || <!--Audio-->{{partial|HD Audio head phones only - speaker and micro phone do not work}} || <!--USB-->{{yes|USB 2.0}} || <!--Ethernet-->{{yes|RTL8169}} || <!--Wireless-->{{unk|RTL8188CE or AR928X}} || <!--Test Distro-->2011 Icaros 1.5.1, || <!--Comments-->2009 64bit - 1 DDR3 max 2gb -
|-
| Latitude 2100 || Intel Atom N270 N280 1.60Ghz GMA 945GME || {{N/A}} || {{Yes|set to IDE in bios as ahci not working || {{yes|Intel GMA 950 (2D and 3D with tunnel 98 and gearbox 84)}} || {{yes|HD Audio with ALC272 codec}} || {{yes|USB2.0}} || {{No|Broadcom BCM5764M}} || {{No|Intel 5100 or BCM4322 DW 1510 half height mini pcie use small Atheros 5k}} || <!--Test Distro-->2016 AspireOS 1.8, Icaros 2.1.1 and AROS One USB 2.4 || 2009 32bit ddr2 sodimm max 2G - [https://sites.google.com/site/arosaspireone/about-aspire-one Webcam and card reader not working] lcd cable over hinge an issue - f12 bios and boot -
|-
| <!--Name-->Latitude 2110 2120 || <!--Chipset-->N470 1.83Ghz, N455 1.6Ghz, N550 1.5Ghz || <!--IDE-->{{N/A}} || <!--SATA-->{{Yes|ATA mode in bios not ahci}} || <!--Gfx-->{{Yes|Intel 3150 2D only}} || <!--Audio-->{{Maybe|HD Audio with ALC269 codec}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No| }} || <!--Wireless-->{{No| swap for Atheros}} || <!--Test Distro-->2014 Icaros 2.3, || <!--Comments-->2011 64bit does not support AVX or SSE 4.1 - ddr2 sodimm
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
====HP Compaq Netbooks====
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| HP Mini 2133 || VIA C7-M P4M900 / 8237 VX700 || {{N/A}} || {{maybe|SATA}} || {{maybe|VIA Chrome 9 HC (VESA only)}} || {{no|VT1708/A HD Audio}} || USB || {{no|Broadcom Corp NetXtreme BCM5788}} || {{no|Broadcom Corp BCM4312}} || untested || 2008 32bit -
|-
| HP mini 1000 Mi 2140 ks145ut || N270 + 945GM || {{N/A}} || SATA || <!--Gfx-->{{Yes|Intel GMA 950 (2D and opengl1 3d)}} || <!--Audio-->{{Yes|HD Audio (playback tested)}} || <!--USB-->{{Yes| }} || {{no|Marvell 88E8040}} || {{no|Broadcom Corp BCM4312 hard blocked}} || untested || 2009 32Bit - unable to change wifi card
|-
| <!--Name-->HP Mini 700 702 || <!--Chipset-->N270 + 945GSE || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{Yes|Intel GMA 950 (2D)}} || <!--Audio-->{{Yes|HD Audio IDT 92HD75B (111d:7608, only playback tested)}} || <!--USB-->{{Yes| }} || <!--Ethernet--> || <!--Wireless-->{{No|Broadcom hard locked}} || <!--Test Distro-->untested || <!--Comments-->2009 32bit -
|-
| Compaq HP Mini 110 110-3112sa || 945GM Express || {{N/A}} || {{maybe|IDE mode}} || {{yes|Intel GMA 950 (2D)}} || {{yes|HD Audio IDT STAC 92xx}} || {{yes|USB 2.0}} || {{no|Atheros}} || {{no|Broadcom hard blocked Fn+F12}} || untested || 2009 32bit - unable to change wifi
|-
| HP Mini 200 210 || 945GM NM10 Express || {{N/A}} || SATA || Intel GMA 950 || {{Maybe|HDAudio with }} || USB || RTL8101E RTL8102E || {{no|Broadcom BCM4312 hard locked}} || untested || 2009 32bit -
|-
| HP Mini 311 DM1 (Quanta FP7) || N280 + ION LE || {{N/A}} || SATA || nVidia Geforce ION || {{maybe|HDAudio with }} || USB || eth || {{No|hard locked}} || untested || 2009 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|}
====Lenovo Netbooks====
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| IdeaPad S9 S9e(3G) S10 S10e(3G) || 945GME || {{N/A}} || {{maybe|SATA}} || {{yes|Intel GMA (2D)}} || {{maybe|ALC269 or SigmaTel HD Audio}} || {{yes|USB}} || {{no|Broadcom NetLink BCM5906M}} || {{no|Broadcom BCM4312 hard blocked}} || untested || 2009 32bit -
|-
| IdeaPad S12 || Intel Atom N270 + Nvidia ION LE MCP79 || {{N/A}} || SATA || nVidia C79 ION [Quadro FX 470M] || {{maybe|ALC269 HD Audio}} || USB || {{no|Broadcom}} || {{no|Intel locked down}} || 2012 Icaros 2.0, || 2009 32bit - does not boot - cause unknown
|-
| S10-2 || 945GME and N280 CPU || {{N/A}} || SATA || {{yes|Intel GMA (2D)}} || {{maybe|ALC269 HD Audio}} || {{yes}} || {{yes|rtl8169}} || {{no|Broadcom BCM4312 hard blocked}} || 2011 Icaros 1.3, || 2009 32bit -
|-
| S10-3 || NM410 and N450 CPU || {{N/A}} || SATA || {{yes|Intel GMA 3150 (2D)}} || {{maybe|HD Audio ALC269}} || {{yes|USB}} || {{yes|rtl8169}} || {{no|Atheros 9285 or Broadcom BCM4312 hard blocked}} || 2011 Icaros 1.3, || 2009 32bit -
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
====Samsung Netbooks====
[[#top|...to the top]]
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| [http://www.amigaworld.net/modules/newbb/viewtopic.php?post_id=616910&topic_id=33755&forum=28#616910 NC10] || 945GME || {{N/A}} || {{maybe|SATA}} || {{yes|Intel GMA 950 (2D)}} || {{partial|SigmaTel HD Audio (playback only)}} || {{yes|USB}} || {{maybe|rtl8169 works but not Marvell 88E8040 sky2}} || {{yes|AR5007EG}} || 2011 Icaros 1.4, || 2009 32bit - Nano silver on keyboard and lcd ribbon cable over hinge issues
|-
| [http://www.sammywiki.com/wiki/Samsung_NC20 NC20] || VIA VX800 || {{N/A}} || SATA || {{maybe|VIA Chrome9 (VESA only)}} || ALC272 GR (VT1708A) HD Audio || {{yes|USB}} || {{no|Marvell 88E8040}} || {{yes|Atheros AR5001}} || untested || 2009 32bit -
|-
| NP-N110 NP-N120 || 945GSE || {{N/A}} || SATA || {{yes|Intel GMA 950 (2D)}} || {{yes|ALC272 HD Audio or ALC6628}} || {{yes|USB}} || {{no|Marvell 88E8040}} || {{no|Realtek rtl8187}} || untested || 2009 32bit - Namuga 1.3M Webcam none
|-
| NP-N130 || 945GSE || {{N/A}} || {{yes|SATA in IDE mode}} || {{yes|Intel GMA 2D and opengl 1.x 99.5 tunnel 99 gearbox}} || {{yes|Intel HD with ALC272 ALC269 codec playback}} || {{yes|USB}} || {{yes|RTL 8169.device - 8101e 8102e}} || {{no|rtl 8192se rtl8187 too small an area to swap for atheros 5k}} || untested || 2009 32bit - 10.x inch 1024 x 600 - Namuga 1.3M Webcam - front slide power on and f2 setup bios - keyboard 17.7mm Pitch is made with Silver Nano (Anti-Bacterial) tech - small touchpad - 1 ddr2 2rx16 sodimm slot 2G max - 44Wh
|-
| <!--Name-->Go NP-N310 || <!--Chipset-->N270 + 945GME || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|IDE legacy mode}} || <!--Gfx-->{{yes|Intel GMA 950 (2D)}} || <!--Audio-->{{yes|HD Audio ALC6628}} || <!--USB-->{{yes}} || <!--Ethernet-->{{yes|rtl8169}} || <!--Wireless-->{{yes|Atheros5k}} || <!--Test Distro-->untested || <!--Opinion-->2010 32bit - N280 version changed specs
|-
| NP-N510 || N270 euro N280 uk + ION MCP79 || {{N/A}} || SATA || nVidia C79 ION [Quadro FX 470M] || HD Audio || USB || Marvell 88E8040 || Realtek 8192E || untested || 2010 32bit - does not boot - cause unknown
|-
| NP-N145 Plus || n450 + NM10 || {{N/A}} || {{maybe|IDE legacy mode}} || {{yes|Intel GMA 3150 (2D, no VGA output)}} || {{yes|Realtek HD Audio}} || {{yes|USB2.0}} || {{no|Marvell 88E8040}} || {{unk|Atheros AR9285}} || untested || 2010 some support but often the trackpad does not work
|-
| <!--Name-->NC110 Axx || <!--Chipset-->NM10 || <!--IDE-->{{N/A}} || <!--SATA-->Sata || <!--Gfx--> || <!--Audio-->HDAudio with ALC269 codec A9M22Q2 || <!--USB--> || <!--Ethernet-->{{Maybe|Rtl8169}} || <!--Wireless-->{{No|Broadcom BCM4313 or Atheros}} || <!--Test Distro-->untested || <!--Comments-->2011 64bit -
|-
| NF210 Pineview || n455 or n550 + N10 || {{N/A}} || {{maybe|SATA}} || {{maybe|Intel GMA 3150 (needs retesting, VESA works)}} || {{yes|HD Audio}} || {{yes|USB}} || {{no|Marvell 88E8040}} || Wireless || untested || 2011 64bit - some support
|-
| <!--Name-->NS310 NP-NS310-A03UK || <!--Chipset-->N570 with NM10 || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->{{Maybe|use Vesa 2d }} || <!--Audio-->{{yes| ich7}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{yes|rtl8169 realtek 810xe }} || <!--Wireless-->{{no|bcm4313 }} || <!--Test Distro-->2022 AROS One 2.3, || <!--Comments-->2011 64bit Atom N570 or 1.5 GHz Intel Atom N550 dual core processor, 1 DDR3 sodimm slot memory, a 250GB hard drive, and a 10.1 inch, 1024 x 600 pixel 10.1" W7St - 2300mAh short life -
|-
| <!--Name-->[https://wiki.archlinux.org/index.php/Samsung_N150 N150] NB30 || <!--Chipset-->MN10 || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Yes|Intel GMA 3150 (2D)}} || <!--Audio-->{{No| }} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No|Marvell 88E8040}} || <!--Wireless-->{{unk|Atheros AR9285 or Realtek 8192E}} || <!--Test Distro-->untested || <!--Comments-->2011 a little support
|-
| <!--Name-->[http://www.kruedewagen.de/wiki/index.php/Samsung_N220 N210 N220] N230 || <!--Chipset-->N450 + NM10 || <!--IDE-->{{N/A}} || <!--SATA-->{{Maybe| }} || <!--Gfx-->{{Yes|Intel GMA 3150 (2D)}} || <!--Audio-->HD Audio ALC269 || <!--USB-->{{Yes| }} || <!--Ethernet-->{{No|Marvell}} || <!--Wireless-->{{unk|Atheros AR9285}} || <!--Test Distro-->untested || <!--Comments-->2011 64bit no sse4.1 or avx -
|-
| <!--Name-->NC110 Pxx Cedarview || <!--Chipset--> || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{dunno|Intel GMA 3600}} || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless-->{{No|Intel 6000g}} || <!--Test Distro-->untested || <!--Comments-->2012 64bit
|-
|}
====Toshiba Netbooks====
[[#top|...to the top]]
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->NB100 || <!--Chipset-->945GM || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|legacy}} || <!--Gfx-->{{yes|Intel GMA (2D)}} || <!--Audio-->{{yes|ALC262 HD Audio}} || <!--USB--> || <!--Ethernet-->{{yes|rtl8169}} || <!--Wireless-->{{yes|AR5001}} || <!--Test Distro-->untested || <!--Comments-->2009 32bit -
|-
| <!--Name-->Mini NB200 series NB205 || <!--Chipset-->N280 + GSE945 || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|IDE legacy mode}}|| <!--Gfx-->{{yes|Intel GMA (2D)}} || <!--Audio-->ALC272 HD Audio || <!--USB-->{{yes}} || <!--Ethernet-->{{yes|RTL8169}} || <!--Wireless-->{{maybe|AR9285}} || <!--Test Distro-->untested || <!--Opinion-->2009 32bit -
|-
| <!--Name-->Mini 300 series NB305 || <!--Chipset-->N455 with NM10 || <!--IDE-->{{N/A}} || <!--SATA-->legacy || <!--Gfx-->Intel GMA 3150 (2D) || <!--Audio-->ALC272 HD Audio || <!--USB--> || <!--Ethernet-->{{maybe|RTL8101E RTL8102E}} || <!--Wireless-->{{maybe|AR9285}} || <!--Test Distro-->untested || <!--Opinion-->2010 64bit -
|-
| <!--Name-->Mini 500 series NB505 NB520 NB550-10v || <!--Chipset--> || <!--IDE-->{{N/A}} || <!--SATA-->legacy || <!--Gfx-->Intel GMA 3150 (2D) || <!--Audio-->HD Audio || <!--USB--> || <!--Ethernet-->{{maybe|RTL8101E RTL8102E}} || <!--Wireless-->{{no|Realtek 8176 RTL 8188CE}} || <!--Test Distro-->untested || <!--Opinion-->2011 64bit -
|-
| [http://www.notebookcheck.net/Review-Toshiba-NB550D-AMD-Fusion-Netbook.46551.0.html Mini NB550D 10G] 108 (c30) 109 (c50) || C-50 + M1 || {{N/A}} || SATA || AMD 6250 (VESA only) || HD Audio || USB || {{maybe|rtl8169 Realtek 8111e}} || {{maybe|Atheros 9k}} || untested || 2011 64bit Realtek SD card reader
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
====Misc Netbooks====
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="5%" |Ethernet
! width="10%" |Wireless
! width="5%" |Test Distro
! width="30%" |Comments
|-
| Cammy's A1600 || GME945 || {{N/A}} || {{maybe}} || {{yes|Intel GMA950 (2D)}} || {{yes|HD Audio playback}} || {{yes}} || {{no|JMC 250/260}} || Wireless || 2010 Icaros 1.2.4, || 2009 32bit -
|-
| <!--Name-->Fujitsu Siemens Amilo Mini Ui 3520 || <!--Chipset-->Intel 945 || <!--ACPI--> || <!--SATA-->{{yes}} || <!--Gfx-->{{yes|Intel GMA (2D)}} || <!--Audio-->ALC269 HD Audio || <!--USB-->{{yes}} || <!--Ethernet-->{{yes|rtl8169}} || <!--Wireless-->{{yes|AR5001}} || <!--Test Distro-->untested || <!--Comments-->2009 32bit -
|-
| Guillemot Hercules eCafe EC-900 H60G-IA], Mitac MiStation and Pioneer Computers Dreambook Light U11 IL1 || Intel 945GME || {{N/A}} || {{maybe}} || {{yes|Intel GMA950 (2D)}} || {{Yes|HD Audio (playback only)}} || {{yes|uhci and ehci}} || {{yes|rtl8169}} || {{no|RAlink RT2860}} || untested || 2009 32bit -
|-
| <!--Name-->Hannspree Hannsnote SN10E2 24 48 || <!--Chipset-->N450 + NM10 || <!--IDE-->{{N/A}} || <!--SATA-->IDE legacy mode || <!--Gfx-->Pineview Intel (2D) || <!--Audio-->ALC HD Audio || <!--USB-->USB2.0 || <!--Ethernet-->Atheros l1c || <!--Wireless-->{{unk|Atheros AR9285}} || <!--Test Distro-->untested || <!--Opinion-->2009 32bit -
|-
| MSI Wind U90/U100 || GME945 || {{N/A}} || {{maybe}} || {{yes|Intel GMA 950 (2D)}} || {{partial|HD Audio ALC888s (playback only?)}} || {{yes|uhci 1.1 and ehci 2.0}} || {{yes|rtl8169}} || {{no|RaLink RT2860 RT2700E or rtl8187se (u100x)}} || 2011 Icaros 1.3, || 2009 32bit -
|-
| Advent 4211 || 945GSE || {{N/A}} || {{maybe|IDE legacy mode}} || Intel GMA950 (2D) || ALC HD Audio || USB || rtl8169 || {{no|Intel 3945 ABG}} || untested || 2009 32bit - MSI U100 clone
|-
| <!--Name-->Hannspree Hannsnote SN10E1 || <!--Chipset-->N270 + GMA945 || <!--IDE-->{{N/A}} || <!--SATA-->{{maybe|IDE legacy mode}} || <!--Gfx-->{{yes|Intel GMA 950 (2D)}} || <!--Audio-->ALC HD Audio || <!--USB-->USB2.0 || <!--Ethernet-->{{yes|Realtek RTL8101E RTL8102E RTL8169}} || <!--Wireless-->{{no|RaLink RT2860}} || <!--Test Distro-->untested || <!--Comments-->2009 32bit MSI U100 clone
|-
| <!--Name--> Vaio VGN-P11Z
| <!--Chipset-->
| <!--IDE--> {{dunno}}
| <!--SATA--> {{N/A}}
| <!--Gfx--> {{Partial|Intel (VESA only)}}
| <!--Audio--> {{no|HD Audio}}
| <!--USB--> {{yes|USB 2.0}}
| <!--Ethernet--> {{no|Marvell}}
| <!--Wireless--> {{unk|Atheros AR928X}}
| <!--Test Distro-->2012 Icaros 2.0.3
| <!--Comments-->2008 32bit Rarely boots!
|-
| <!--Name-->Sony VPC-W11S1E
| <!--Chipset-->N280 with 945GSE
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Yes| }}
| <!--Gfx-->{{yes|Intel GMA950 - hdmi}}
| <!--Audio-->HD Audio with realtek codec
| <!--USB-->3 USB2
| <!--Ethernet-->{{No|Atheros AR8132}}
| <!--Wireless-->{{unk|Atheros AR9285}}
| <!--Test Distro-->untested
| <!--Comments-->2009 32bit - 10.1" 1366 x 768 glossy - 3hr battery life -
|-
| <!--Name-->Archos 10 Netbook || <!--Chipset-->Atom with ICH7 NM10 945GSE || <!--IDE-->{{No }} || <!--SATA--> || <!--Gfx-->GMA 950 || <!--Audio-->HD Audio with ALC662 codec || <!--USB--> || <!--Ethernet-->Realtek 8139 || <!--Wireless--> || <!--Test Distro-->untested || <!--Comments-->2008 32bit -
|-
| <!--Name-->MSI Wind U135 DX MS-N014 || <!--Chipset-->Intel N455 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{Yes|2D only accelerated}} || <!--Audio-->{{No|ALC662 rev 1}} || <!--USB-->{{Yes| }} || <!--Ethernet-->{{Maybe|RTL}} || <!--Wireless-->{{No|Atheros AR 9K}} || <!--Test Distro-->2015 Icaros 2.1, || <!--Comments-->2009 32bit - needs noacpi notls added to grub boot line to start up
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--Chipset--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Wireless--> || <!--Test Distro--> || <!--Comments-->
|-
|}
===Desktop Systems===
[[#top|...to the top]]
{| class="wikitable sortable" width="100%"
| <!--OK-->{{Yes|'''Works well'''}} || <!--May work-->{{Maybe|'''Works a little'''}} || <!--Not working-->{{No|'''Does not work'''}} || <!--Not applicable-->{{N/A|'''N/A not applicable'''}}
|-
|}
====Acer====
{| class="wikitable sortable" width="100%"
! width="15%" |Name
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Integrated Gfx
! width="10%" |Audio
! width="10%" |USB
! width="10%" |Ethernet
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->[https://www.acer.com/ac/en/ID/content/support-product/486;-; Veriton X270 VTX270] Intel Core 2 Duo ED7400C or Pentium dual-core UD7600C with 630i
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->{{Maybe|Vesa 2d Nvidia 7100 VGA and HDMI connections}}
| <!--Audio-->{{Maybe| with realtek codec}}
| <!--USB-->{{Maybe|4 rear and 5 front}}
| <!--Ethernet-->{{Maybe| nForce}}
| <!--Test Distro-->Icaros 2.3 dvd
| <!--Comments-->2009 64bit capable but would not fully boot, DHCP address timeout too short and failed often. Put in a third party NIC, worked - 1 PCI Express x16 slot and a free PCI x1 slot - internal thin long psu with 12pin -
|-
| <!--Name--> Imedia S1710 with Intel Dual Core E5200
| <!--IDE--> {{Yes|SATA/AHCI}}
| <!--SATA--> {{Maybe|Native IDE}}
| <!--Gfx--> {{Yes|Nvidia nForce 7100}}
| <!--Audio--> {{Yes|Nvidia MCP73}}
| <!--USB--> {{Yes|USB 2.0}}
| <!--Ethernet--> {{No|NVIDIA MCP73 Ethernet}}
| <!--Test Distro--> Nightly Build 14-09-2023, AROS One 2.3
| <!--Comments--> 2009 64-bit - Boot over USB not working on front - 2 DDR2 dual channel max 8GB - DEL for entering Bios - F12 for boot menu - Bus weird, could be reason for Ethernet issue
|-
| <!--Name-->Acer Revo AR1600, R1600 AR3600, R3600 Packard Bell iMax Mini, ACER Veriton N260G N270G slim nettop subcompact
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Maybe|Native IDE mode, '''when it works''' boots}}
| <!--Gfx-->{{Maybe|Nvidia ION GeForce 9300M - nouveau 3d - '''when it boots''' 400 fps in shell'ed gearbox, 278 in tunnel, 42 in teapot}}
| <!--Audio-->{{Maybe|HD Audio with alc662 codec but nothing from HDMI audio}}
| <!--USB-->{{Maybe|Nvidia USB boot usb2 stick issues and slower with usb3 drives}}
| <!--Ethernet-->{{No|MCP79 nForce}}
| <!--Test Distro-->
| <!--Comments-->2009 64bit does not support AVX or SSE 4.1 Intel Atom 230 N280 - 20cm/8" high 1 ltr noisy fan - very often boot stuck around ehciInit - DEL setup F12 boot options - 2 ddr2 sodimm slots max 4GB - 19v special barrel size 5.5mm/1.7mm psu - 2 ddr2 sodimm slots max 4GB - atheros 5k AR5BXB63 wifi -
|-
| <!--Name-->Revo AR3610 R3610 3610 Atom 330 nettop subcompact dual core
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Maybe|Native IDE mode, '''when it works''' boots}}
| <!--Gfx-->{{Maybe|Nvidia ION GeForce 9400M LE MCP79MX - nouveau 3d - '''when it boots''' 400 fps in shell'ed gearbox, 278 in tunnel, 42 in teapot}}
| <!--Audio-->{{Yes|HD Audio with Realtek alc662 rev1 alc662-hd later ALC885 codec but nothing from HDMI audio}}
| <!--USB-->{{Maybe|Nvidia USB with 1% chance boot with usb2 sticks, more issues with usb3 drives}}
| <!--Ethernet-->{{No|RTL 8211CL MCP79 nForce}}
| <!--Test Distro-->{{no|AROS One 32bit 1.5, 1.6 and 2.4 usb and 64bit 1.2 USB}}
| <!--Comments-->2010 64bit does not support AVX or SSE 4.1 20cm/8" high 1 ltr noisy fan - boot often stuck at Kernel or around ehciInit, SATA, etc try ATA=off, non usb hub keyboard, - DEL bios setup, F12 BBS POPUP/drive boot - 2 ddr2 sodimm slots max 4GB - 19v barrel psu with smaller inner pin size 5.5mm/1.7mm - replace wifi RT3090 ver c (linux) with atheros 5k -
|-
| <!--Name-->Revo N281G
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Maybe| }}
| <!--Gfx-->{{maybe|GMA 2d for GMA 3100}}
| <!--Audio-->HD audio codec
| <!--USB-->USB2
| <!--Ethernet-->Realtek
| <!--Test Distro-->
| <!--Comments-->2011 64bit does not support AVX and SSE 4.1 Atom D425 - 19v 65w barrel psu thinner inner pin - 2 DDR3L single channel max 4GB - replace wifi RT3090 ver d with atheros 5k mini pci-e - 1lr or 1.5 ltr dvdrw case 209.89 mm, (D) 209.89 mm, (H) 35.35 mm - del enter bios -
|-
| <!--Name-->REVO AR3700 R3700 3700 Atom D525 dual core - ACER Veriton N282G
*one long beep followed by two short, bios damaged
*looping one long two short, a video card fault
*two short beeps... CMOS damaged
*got one long and one short beep... board error?
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Yes|IDE ready in Bios}}
| <!--Gfx-->{{Yes|Nvidia ION2 GT218 ION vga fine '''but''' hdmi fussy over display used - nouveau 2d & 3d gearbox 404 tunnel 292 teapot 48}}
| <!--Audio-->{{Yes|HDA Intel with Realtek ALC662 rev1 codec, head phones only but nothing from NVidia HDMI}}
| <!--USB-->{{Yes|Intel® NM10 Express (NM10 is basically an ICH7 with a die shrink and IDE removed) USB boots usb, installs usb, accesses ok}}
| <!--Ethernet-->{{Yes|Realtek 8169 8111g}}
| <!--Test Distro-->AROS one 32bit USB 1.5 and 1.6 and ArosOne 64bit usb 1.2
| <!--Comments-->2011 64bit does not support AVX or SSE 4.1 20cm/8" high 1 ltr noisy fan - early 2 ddr2 sodimm slots but later 2 ddr3 sodimm slots 1Rx8 max 4GB - 19v barrel psu thinner pin - replace wifi RT3090 ver d with atheros 5k mini pci-e - ACPI Suspend Mode = S1, S3 (STR), S4 - Power on PCIe
* Known Acer issue, Boot into bios, set bios to UEFI and reboot, set bios back to defaults and reboot, blank display, repair with reflash of 8 pin Winbond W25Q socketed bios chip with ch341a using 2011/09/19 P01.B0L, 2011/05/09 P01.A4, 2011/05/03 P01.A3L, 2010/12/27 P01.A2L, 2010/12/27 P01.A2 amiboot.rom -
|-
| <!--Name-->Revo 70 (RL70) with or without dvdrw
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->6320 or 6310
| <!--Audio-->HD audio ALC662-VCO-GR codec
| <!--USB-->USB2, 1.1 Hudson D1
| <!--Ethernet-->Realtek 8111E
| <!--Test Distro-->
| <!--Comments-->2012 64bit does not support AVX or SSE 4.1 AMD E450 1.65GHz - 19v 65w barrel psu thinner inner pin - 2 DDR3L single channel max 4GB - replace wifi RT3090 ver d with atheros 5k mini pci-e - 1lr or 1.5 ltr dvdrw case 209.89 mm, (D) 209.89 mm, (H) 35.35 mm - del enter bios -
|-
|}
====Asus====
{| class="wikitable sortable" width="100%"
! width="15%" |Name
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Integrated Gfx
! width="10%" |Audio
! width="10%" |USB
! width="10%" |Ethernet
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->EEEbox B202
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Intel GMA950
| <!--Audio-->Intel Azalia HDaudio with Realtek ALC662 or ALC888-GR CODEC
| <!--USB-->
| <!--Ethernet-->Realtek 8111 or JM250
| <!--Test Distro-->Icaros
| <!--Comments-->internal 3 types of wifi chipset not supported
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
|}
====Dell====
{| class="wikitable sortable" width="100%"
! width="10%" |Name
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Integrated Gfx
! width="10%" |Audio
! width="10%" |USB
! width="10%" |Ethernet
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name--> Precision 340
| <!--IDE--> {{yes}}
| <!--SATA--> {{n/a}}
| <!--Gfx--> {{n/a}}
| <!--Audio--> {{yes|Intel AC97}}
| <!--USB--> {{yes|USB 1.1 (UHCI)}}
| <!--Ethernet--> {{yes|3Com}}
| <!--Test Distro--> Nightly Build 2014 09-27
| <!--Comments-->
|-
| <!--Name-->Dimension 2400
| <!--IDE-->{{Yes}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->{{Yes|Intel 82845GL Brookdale G/GE (VESA 640x480 by 16)}}
| <!--Audio-->{{Unk|AC97 with ADI codec}}
| <!--USB-->{{Yes|UHCI EHCI}}
| <!--Ethernet-->{{Maybe|Broadcom 440x 4401}}
| <!--Test Distro-->[http://eab.abime.net/showthread.php?p=832495 Icaros 1.4]
| <!--Comments-->Graphics chipset is capable of higher resolution.
|-
| <!--Name-->Dimension 4600
| <!--IDE-->{{yes}}
| <!--SATA-->{{dunno}}
| <!--Gfx-->{{partial|Intel Extreme (VESA only)}}
| <!--Audio-->{{yes|Intel AC97 (use rear black port)}}
| <!--USB-->{{Yes|UHCI/EHCI}}
| <!--Ethernet-->{{yes|Intel PRO/100}}
| <!--Test Distro-->Icaros 1.5.2
| <!--Comments-->
|-
| <!--Name--> Optiplex 170L
| <!--IDE--> {{yes|IDE}}
| <!--SATA--> {{partial|IDE mode}}
| <!--Gfx--> {{partial|Intel Extreme (VESA only)}}
| <!--Audio--> {{no|Intel AC97}}
| <!--USB--> {{yes|USB 2.0}}
| <!--Ethernet--> {{yes|Intel PRO/100}}
| <!--Test Distro--> {{dunno}}
| <!--Comments-->
|-
| <!--Name--> Optiplex GX260
| <!--IDE--> {{yes|IDE}}
| <!--SATA--> {{N/A}}
| <!--Gfx--> {{partial|Intel Extreme (VESA only)}}
| <!--Audio--> {{yes|Intel AC97}}
| <!--USB--> {{yes|USB 2.0}}
| <!--Ethernet--> {{no|Intel PRO/1000}}
| <!--Test Distro--> Nightly Build 2014 09-27
| <!--Comments-->
|-
| Optiplex GX270
| {{yes|Working}}
| {{partial|IDE mode}}
| {{partial|Intel Extreme (VESA only)}}
| {{yes|Intel AC97}}
| {{yes|USB 2.0}}
| {{no|Intel PRO/1000}}
| Icaros 1.5.2
| <!--Comments-->
|-
| Optiplex GX280
| {{yes|Working}}
| {{partial|IDE mode}}
| {{maybe|Intel GMA (only VESA tested)}}
| {{yes|Intel AC97}}
| {{yes|USB 2.0}}
| {{no|Broadcom}}
| Nightly Build 2014 09-27
| <!--Comments-->
|-
| <!--Name--> Optiplex GX520
| <!--IDE--> {{yes|IDE}}
| <!--SATA--> {{partial|IDE mode}}
| <!--Gfx--> {{yes|Intel GMA}}
| <!--Audio--> {{partial|Intel AC97 (no line-out)}}
| <!--USB--> {{yes|USB 2.0}}
| <!--Ethernet--> {{no|Broadcom}}
| <!--Test Distro--> {{dunno}}
| <!--Comments-->
|-
| <!--Name--> Optiplex 745
| <!--IDE--> {{N/A}}
| <!--SATA--> {{partial|IDE mode}}
| <!--Gfx--> {{partial|Intel GMA (VESA only)}}
| <!--Audio--> {{partial|HD Audio (no volume control)}}
| <!--USB--> {{partial|Only keyboard mouse (legacy mode)}}
| <!--Ethernet--> {{no|Broadcom}}
| <!--Test Distro--> {{dunno}}
| <!--Comments-->
|-
| <!--Name--> Optiplex 755
| <!--IDE--> {{N/A}}
| <!--SATA--> {{partial|IDE mode}}
| <!--Gfx--> {{partial|Intel GMA (VESA only)}}
| <!--Audio--> {{no|HD Audio}}
| <!--USB--> {{yes|USB 2.0}}
| <!--Ethernet--> {{no|Intel Gigabit}}
| <!--Test Distro--> Icaros 1.5.1
| <!--Comments--> Around 25 second delay in booting from USB
|-
| <!--Name--> Optiplex 990
| <!--IDE--> {{N/A}}
| <!--SATA--> {{partial|non-RAID mode}}
| <!--Gfx--> {{partial|Intel HD (VESA only)}}
| <!--Audio-->{{no|HD Audio}}
| <!--USB--> {{yes|USB 2.0}}
| <!--Ethernet--> {{no|Intel Gigabit}}
| <!--Test Distro--> Nightly Build 2014 09-27
| <!--Comments-->
|-
| <!--Name-->Optiplex 360
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->{{maybe|ordinary boot gives VGA mode only - VESA}}
| <!--Audio-->{{no|HD Audio (Analog Devices ID 194a)}}
| <!--USB-->
| <!--Ethernet-->{{no|Broadcom}}
| <!--Test Distro-->Aspire Xenon
| <!--Comments-->poor support
|-
| <!--Name-->Dell Wyse Vx0 (V90 V30), Vx0L (V10L V90L), Vx0LE (V30LE V90LE) from VIA C7 800GHz to Eden 1.2GHz
| <!--IDE-->{{Maybe| }}
| <!--SATA-->{{N/A| }}
| <!--Gfx-->{{Maybe|Vesa 2d for S3 UniChrome Pro}}
| <!--Audio-->{{No|AC97 VIA VT8233A with ?? codec}}
| <!--USB-->{{yes|2 back and 1 front USB2}}
| <!--Ethernet-->{{Maybe|early models work but later VT6102-3 do not}}
| <!--Test Distro-->AROS One 2.2
| <!--Comments-->2006 to 2009 32bit - 12V 4A Coax 5.5mm/2.1mm - 1 sodimm DDR 333MHz SO-DIMM later DDR2 - early V90s do seem to have a reliability problem -
|-
| <!--Name-->[https://www.poppedinmyhead.com/2021/01/wyse-cx0-thin-client-notes-experiences.html Dell Wyse Cx0] C00LE, C10LE, C30LE, C50LE, C90LE, C90LE7, C90LEW VIA C7 Eden 1GHz
| <!--IDE-->{{Maybe| }}
| <!--SATA-->{{N/A| }}
| <!--Gfx-->{{Maybe|Vesa 2d VX855 VX875 Chrome 9}}
| <!--Audio-->{{Maybe|some VIA VT8237A VT8251 HDA with ?? codec work}}
| <!--USB-->{{yes|4 outside 2 inside USB2}}
| <!--Ethernet-->{{No|VT6120 VT6121 VT6122 Gigabit}}
| <!--Test Distro-->Icaros 2.3
| <!--Comments-->2010 to 2013 32bit - [https://ae.amigalife.org/index.php?topic=815.0 boots and works] - 12V 2.5A Coax 5.5mm/2.1mm - 1 sodimm ddr2 -
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->Dell RxxL Rx0L Wyse thin client
*R00L Cloud PC of Wyse WSM
*R10L Wyse Thin OS
*R50L Suse Linux Enterprise
*R90L Win XP Embedded
*R90LW Win Embedded Standard 2009
*R90L7 Win Embedded Standard 7
| <!--IDE-->128Mb IDE or 1GB
| <!--SATA-->{{Maybe|SATA Hyperdisk}}
| <!--Gfx-->AMD 690E RS690M Radeon Xpress 1200 1250 1270
| <!--Audio-->
| <!--USB-->4 usb2
| <!--Ethernet-->Realtek
| <!--Test Distro-->
| <!--Comments-->2009 64bit AMD Sempron™ 210U SMG210UOAX3DVE 1.5GHz SB600, up to 4GB single slot 240-pin DDR2 DIMM, 19v barrel psu, DEL key bios - Late 2012 2 data sockets added but only CN18 be used with two white sockets (CN13 & CN15) can used to power the SATA device "4-pin Micro JST 1.25mm
|-
| <!--Name-->Optiplex 390 sff small form factor - mt mini tower desktop - dt full desktop
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->{{maybe|1 pci-e}}
| <!--Audio-->{{maybe|HD Audio}}
| <!--USB-->
| <!--Ethernet-->{{maybe|realtek}}
| <!--Test Distro-->aros one 1.6 usb
| <!--Comments-->2011 64bit dual i3 2xxx - kettle iec plug psu cable - add nvidia gf218 gfx - error code 3 mobo or cpu -
|-
| <!--Name-->Optiplex 3010 sff small form factor
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->{{maybe|1 pci-e}}
| <!--Audio-->{{maybe|HD Audio}}
| <!--USB-->{{maybe| }}
| <!--Ethernet-->{{no|Broadcom 57XX}}
| <!--Test Distro-->
| <!--Comments-->2012 64bit dual i3 3xxx - kettle iec plug psu cable -
|-
| <!--Name-->Optiplex 7010 sff small form factor
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->{{maybe|1 pci-e}}
| <!--Audio-->{{maybe|HD Audio}}
| <!--USB-->
| <!--Ethernet-->{{no|Broadcom or Intel 825xx}}
| <!--Test Distro-->
| <!--Comments-->2012 64bit dual i3 3xxx Q77 - kettle iec plug psu cable - add pci-e ethernet and nvidia gf218 gfx -
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->Dell Wyse 5010 thin client ThinOS D class (D10D D00D D00DX, Dx0D), PCoIP (D10DP) or D90D7, 5040
*username: Administrator, admin, [blank]
*password: Fireport, DellCCCvdi, rappot, Wyse#123, Administrator, administrator, r@p8p0r+
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Yes|IDE mode may need 30cm ext cable as small area for half-slim sata ssd - decased new ssd??}}
| <!--Gfx-->{{Maybe|Vesa 2d 1400x1050 HD6250E IGP by using DVI to hdmi cable and 1 display port, no hdmi port}}
| <!--Audio-->{{Maybe|HD 6.34 audio chipset detected but codec alc269 working from one case speaker - none if v6.29 used}}
| <!--USB-->{{Yes|most 5010 have 4 USB 2.0 but D90Q7 has 2 USB3 instead}}
| <!--Ethernet-->{{Yes|rtl8169 Realtek 8168 8169 - rev 1.?? 8111? - rev 1.91 8111E}}
| <!--Test Distro-->Icaros 2.3
| <!--Comments-->2011 64bit no SSE4.1 or AVX slow AMD G-T44R 1.2Ghz later G-T48E 1.4Ghz Dual Bobcat Brazos BGA413 - Del for BIOS - p key to select boot with noacpi - single DDR3 sodimm slot max 4Gb, (8Gb hynix 2rx8 ddr3l)? (remove small board to upgrade) - passive no fan - 15cm/6" small 1ltr case and lack of expansion options - PA16 19v barrel psu Coax 5.5mm/2.5mm
|-
| <!--Name-->Dell Wyse 7010 DTS thin client (Z class Zx0D)
*2011 Zx0 Z90D7 2GF/2GR
*2013 Z10D
*2014 Z50D 2GF/2GR
*2012 Cisco VXC 6000 CVXC-6215-K9 white
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Yes|Bios set Sata mode to IDE mode and grub boot add 'noacpi' for half slim sata2 ssd or/with 50cm sata ext cable}}
| <!--Gfx-->{{Maybe|VESA 2d HD6310 HD6320 Terascale 2 through DVI and sometimes DP 1.1a - no hdmi port}}
| <!--Audio-->{{Maybe|HD Audio 6.34 detected but ALC269VB codec works on the one case speaker only}}
| <!--USB-->{{Yes|2.0 works but NEC 720200 3.0 not working}}
| <!--Ethernet-->{{Yes|rtl8169 Realtek 8169 8111e 8111F}}
| <!--Test Distro-->Icaros 2.3 and Aros One 32bit 1.5, 1.9 and 2.3 usb and 64bit 1.2
| <!--Comments-->2011 64bit does not support AVX or SSE 4.1 slow AMD G-t52R 1.5GHz later G-T56N 1.65 GHz Dual with A50M FCH - 20cm/8" high 1.5ltr larger fanless black plastic case with metal ventilated box inside - 2 desktop DDR3L DIMM slots max 16GB - PA-16 19v external psu Coax 5.5mm/2.5mm - 2 40cm SMA female WiFi Antenna to IPEX IPX u.fl Ufl Cable pigtail needed - does not like uefi boot devices -
|-
| <!--Name-->Wyse 7020 Thin Client
* 2013 Quad-core AMD GX-420CA 2.0 GHz (25W) -
* 2018 Zx0Q Quad-core AMD GX-415GA 1.5 GHz (15W) with Quad display 3dp and 1dvi
| <!--IDE-->{{N/A}}
| <!--SATA-->1 sata port
| <!--Gfx-->{{Maybe|Vesa 2d only for AMD Radeon HD8400E radeonsi (dual display) or AMD Radeon HD 8330E IGP with AMD Radeon E6240 Seymour E6460 (quad display), no hdmi ports}}
| <!--Audio-->
| <!--USB-->4 x USB2.0 works but 2 USB3.0
| <!--Ethernet-->rtl8169 Realtek 8169 8111
| <!--Test Distro-->
| <!--Comments-->2013 64bit does support AVX or SSE 4.1 quad eKabini Jaguar cores - two SODIMM sockets layered in centre of mobo DDR3L RAM - Coax 5.5mm/2.5mm ac psu 9mm plug is too short but 14mm length is fine - 15cm/6" high smaller 1ltr case and lack of expansion options -
|-
| <!--Name-->Dell Wyse Dx0Q (5020) D90Q8 NJXG4 AMD G-Series
| <!--IDE-->{{N/A}}
| <!--SATA-->1 sata port
| <!--Gfx-->HD 8330E
| <!--Audio--> with Realtek codec
| <!--USB-->4 x USB2.0 works but 2 USB3.0
| <!--Ethernet-->rtl8169 Realtek 8169 8111
| <!--Test Distro-->
| <!--Comments-->2014 64bit does support AVX or SSE 4.1 Quad-core AMD GX-415GA 1.5 GHz - 2 layered near edge of mobo 204-pin DDR3L SODIMM (bottom one tricky to insert) - 19v Coax 5.5mm/2.5mm - passive no fan - 15cm/6" high smaller 1ltr case and lack of expansion options
|-
| <!--Name-->Dell Wyse 5060 N07D thin client
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Yes|IDE bios mode for sata2 port}}
| <!--Gfx-->{{maybe|Vesa 2d - AMD R5E GCN2 IGP Sea Islands thru dp1 with an hdmi adapter no output thru dp2 - no hdmi dvi ports}}
| <!--Audio-->{{maybe|HD Audio with Realtek ALC231 codec head phones only}}
| <!--USB-->{{Maybe|4 x USB2.0 works but 2 USB3.0}}
| <!--Ethernet-->{{yes|rtl8169 realtek 8169 8111h}}
| <!--Test Distro-->AROS One 1.6 usb
| <!--Comments-->2017 64bit does support AVX or SSE 4.1 quad GX-424CC 19.5v external psu - CN-0Y62H1 mobo with 2 layered ddr3l 16Gb max sodimm slots at edge of mobo, bottom 0 one blocking - passive no fan so quiet - 15cm/6" high smaller 1ltr case and lack of expansion options -
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
|}
====Fujitsu Siemens====
{| class="wikitable sortable" width="100%"
! width="15%" |Name
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Integrated Gfx
! width="10%" |Audio
! width="10%" |USB
! width="10%" |Ethernet
! width="15%" |Test Distro
! width="20%" |Comments
|-
| Scenic [http://uk.ts.fujitsu.com/rl/servicesupport/techsupport/ProfessionalPC/Scenic/ScenicE/ScenicE.htm E600] (compact desktop)
|
|
| {{partial|VESA only}}
| {{yes|AC97}}
|
| {{no|Intel PRO/1000}}
| {{dunno}}
| Nice small, silent PC with good AROS support.
|-
| Scenic T i845
| {{dunno}}
| {{n/a}}
| {{n/a}}
| {{dunno|Intel AC97}}
| {{dunno|UHCI}}
| {{dunno|Intel PRO/100}}
| Icaros 1.5.2
| AROS does not boot
|-
| <!--Name-->Futro S200 S210 S220 and later S300
| <!--IDE-->{{yes| compactflash CF card max ??}}
| <!--SATA-->
| <!--Gfx-->{{maybe|VESA Silicon Integrated Systems [SiS] 315PRO PCI/AGP }}
| <!--Audio-->{{unk|AC97 via }}
| <!--USB-->{{unk|via uhci and ehci}}
| <!--Ethernet-->{{unk|via VT6102 [Rhine-II] (rev 74) }}
| <!--Test Distro-->
| <!--Comments-->2008 32bit - TR5670 Rev 1.4 mother with Transmeta TM5800 cpu - pci socket - single SODIMM socket for DDR memory PC2700S max 512MB -
|-
| <!--Name-->Futro S400
| <!--IDE-->{{yes| but swap with compactflash CF card already with AROS installed}}
| <!--SATA-->
| <!--Gfx-->{{maybe|VESA Silicon Integrated Systems [SiS] SiS741CX }}
| <!--Audio-->{{unk|AC97 SiS7018}}
| <!--USB-->{{unk|sis uhci and ehci}}
| <!--Ethernet-->{{unk|rtl8169 }}
| <!--Test Distro-->
| <!--Comments-->2008 32bit - AMD Geode NX1500 1GHz gets hot - SiS 963L / SiS 741CX chipset - 12V 4.2A 4-pin (DP-003-R) psu - single SODIMM socket for DDR PC2700S max 1G - large case 246 x 48 x 177cms torx screws - pci socket -
|-
| <!--Name-->FUJITSU Futro S700 and S900 Thin Client (based on mini-ITX motherboard D3003-A12, D3003-C1 lesser variant of [https://www.parkytowers.me.uk/thin/Futro/s900/TechNotes_V3.1_Mini-ITX_D3003-S.pdf D3003-S])
*G-T56N 1.65GHz
*G-T40N 1.00GHz
*G-T44R 1.20GHz
| <!--IDE-->{{N/A}}
| <!--SATA-->1 sata data socket but mSata 18+8pins 1GB-16GB
| <!--Gfx-->Radeon HD 6320, HD 6250, HD 6290 dvi or displayport (DP runs higher)
| <!--Audio-->HDAudio
| <!--USB-->{{yes|two USB2 front sockets and four on the rear}}
| <!--Ethernet-->{{Maybe|Realtek}}
| <!--Test Distro-->
| <!--Comments-->2011 64bit AMD slow atom-like and fanless - 20V 2A psu 5.5mm/2.1mm coax (S900) - 2 DDR3L SODIMM sockets max 8GB tricky to run 1333 MHz on the Futro S900 - proprietary X2 PCI-e - 1 PCI socket but need a right-angle adaptor -
|-
| <!--Name-->esprimo p420 e85 desktop case
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Maybe|IDE mode}}
| <!--Gfx-->Intel 4600 or old Geforce in pci-e slot
| <!--Audio-->HDAudio realtek alc671 codec
| <!--USB-->USB3
| <!--Ethernet-->rtl8169 8111
| <!--Test Distro-->
| <!--Comments-->2013 64bit - 2 ddr3 dimm slots - 16 pin special psu -
|-
| <!--Name-->esprimo E420 e85+ SFF case
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Maybe|IDE mode}}
| <!--Gfx-->Intel 4600 or low profile pci-e card
| <!--Audio-->HDAudio realtek alc671 codec
| <!--USB-->USB3
| <!--Ethernet-->rtl8169 8111G
| <!--Test Distro-->
| <!--Comments-->2013 64bit - 2 ddr3 dimm slots - 16ish pin special psu - hd under front metal bracket, take front cover off first with 3 tabs - 3 slim pci-e slots -
|-
| <!--Name-->Futro S520 AMD dual 1.0Ghz codenamed "Steppe Eagle"
* GX-210HA @ 1.0GHz
* GX-212ZC @ 1.2GHz
| <!--IDE-->{{N/A}}
| <!--SATA-->no sata - 4Gb or 16Gb flash memory soldered to the board
| <!--Gfx-->AMD Radeon HD 8210E (GX210HA) or AMD Radeon R1E (GX212ZC)
| <!--Audio-->HDAudio
| <!--USB-->
| <!--Ethernet-->rtl8169 rtl8111e
| <!--Test Distro-->
| <!--Comments-->2016 64bit does support AVX or SSE 4.1 - smaller than ITX 160mm x 160mm Fujitsu D3314-A11 - 19V 3.4A PSU standard 5.5mm/2.1mm coax plug - 1 ddr3 sodimm slot -
|-
| <!--Name-->Fujitsu Futro S720 ThinClient D3313-B13 D3313-F
*2014 64bit AMD GX-217GA 1.65GHz VFY:S0720P8009FR VFY:S0720P8008DE VFY:S0720P4009GB
*2015 64bit AMD GX-222GC 2.20GHz VFY:S0720P702BDE VFY:S0720P702BFR
all begin VFY:S0720P and end two digit country code
| <!--IDE--> {{N/A|}}
| <!--SATA--> {{Yes|up to 2 Sata-cable-connector with space in casing so normal SSD/HDD over Sata was running very well on AHCI and IDE-Mode and 2242 mSata}}
| <!--Gfx--> {{Maybe|use VESA 2D for AMD Radeon HD 8280E IGP ( islands) or later R5E IGP ( islands)}}
| <!--Audio--> {{yes|HDAudio ALC671 codec partially working, external audio speaker}}
| <!--USB--> {{yes|4 rear USB 2.0 but not front 2 USB 3.1}}
| <!--Ethernet-->{{yes|rtl8169 Realtek 8169}}
| <!--Test Distro-->AROS One USB 2.0
| <!--Comments-->2014 64bit supports AVX and SSE 4.1 - 1 ddr3 Sodimm slot max 8Gb - 19V-20V 2A 5.5mm/2.5mm coax - D3313-B13 stripped down Mini-ITX mobo D3313-S1/-S2/-S3 (eKabini) D3313-S4/-S5/-S6 - SATA data socket can be located under the fins of the cpu heatsink is fanless - mPCIe socket for wireless card -
|-
| <!--Name-->Fujitsu FUTRO S920 D3313-E D3313-G
*2016 AMD GX-222GC SOC 2.20GHz Dual
*2017 AMD G-Series GX-415GA (1.50 GHz, Quad Core, 2 MB, AMD Radeon™ HD 8330E)
*2017 AMD G-Series GX-424CC 2.40 GHz Quad
| <!--IDE--> {{N/A}}
| <!--SATA--> {{yes|2242 mSata and 1 Sata-cable-connector with space in casing so normal SSD/HDD over Sata possible}}
| <!--Gfx--> {{yes|use VESA 2D for Radeon R5E GCN2/3 IGP}}
| <!--Audio--> {{yes|HDAudio ALC671 codec partially working}}
| <!--USB--> {{yes|4 rear USB 2.0, front 2 USB 3.1 downgradable to 2.0 in BIOS setting}}
| <!--Ethernet--> {{yes|rtl8169 Realtek 8169}}
| <!--Test Distro--> AROS One USB 2.4
| <!--Comments-->2016 64bit does support AVX or SSE 4.1 - 2 so dimm slot with max of 8 GB - 19v barrel psu 5.5mm 2.5mm - SATA data socket can be located under the fins of the heatsink - mPCIe a e keyed socket for wireless card - propetary X2 connector with official raizer to X1 connector - almost silent background noise, not affecting sound quality in any way
|-
| <!--Name-->Fujitsu Thin Client Futro S5011 S7011
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->{{maybe|Vesa 2D for AMD Vega 3 on 2 dp 1.4}}
| <!--Audio-->{{No|HDAudio with ALC623 codec}}
| <!--USB-->{{maybe|USB3 USB 3.2 Gen 2 front and 3 usb2 rear }}
| <!--Ethernet-->rtl8169 Realtek RTL8111H
| <!--Test Distro-->
| <!--Comments-->2019 64bit - AMD Ryzen Dual Core R1305G or R1505G 1ltr case - 2 ddr4 sodimm slots - TPM 2.0 - 19v 3.42amp round coax or usb-c 20c 3.25a external psu -
|-
| <!--Name-->Fujitsu FUTRO S9011 Thin Client VFY:S9011THU1EIN || <!--IDE-->{{N/A}} || <!--SATA-->NVMe || <!--Gfx-->{{maybe|Vesa 2D for AMD Vega 3 on 2 dp 1.4}} || <!--Audio-->{{No|HDAudio with ALC623 codec}} || <!--USB-->{{maybe|USB3 USB 3.2 Gen 2 front and 3 usb2 rear }} || <!--Ethernet-->rtl8169 Realtek RTL8111H || <!--Test Distro--> || <!--Comments-->2020 64bit Ryzen Embedded R1606G - 2 ddr4 sodimm slots - TPM 2.0 -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
|}
====HP Compaq====
{| class="wikitable sortable" width="100%"
! width="15%" |Name
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Integrated Gfx
! width="10%" |Audio
! width="10%" |USB
! width="10%" |Ethernet
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->Compaq presario 7360
| <!--IDE-->{{yes|Working}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->{{Maybe|VESA}}
| <!--Audio-->{{Maybe|AC97 via}}
| <!--USB-->{{Maybe|issues}}
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->Compaq EP Series 6400/10
| <!--IDE--> {{yes|IDE}}
| <!--SATA--> {{N/A}}
| <!--Gfx--> {{N/A}}
| <!--Audio--> {{no|ISA}}
| <!--USB--> {{yes|USB 1.1}}
| <!--Ethernet--> {{N/A}}
| <!--Test Distro--> {{dunno}}
| <!--Comments-->
|-
| <!--Name-->Compaq Evo D510
| {{yes|Working}}
| {{N/A}}
| {{partial|Intel Extreme (VESA only)}}
| {{yes|AC97}}
| {{yes|Working}}
| {{yes|Intel PRO/100}}
| Icaros 1.5
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->Compaq DX2000 MT
| <!--IDE-->{{yes}}
| <!--SATA-->{{maybe}}
| <!--Gfx-->{{maybe|Intel Extreme 2 (VESA only)}}
| <!--Audio-->{{no|detects AC97 but no support for ADI AD1888 codec}}
| <!--USB-->{{yes|OHCI/EHCI }}
| <!--Ethernet-->{{no|Intel 82526EZ e1000}}
| <!--Test Distro--> Icaros 1.51
| <!--Comments-->boots ok but no audio
|-
| <!--Name-->Compaq DX 2200
| <!--IDE-->{{yes}}
| <!--SATA-->{{maybe}}
| <!--Gfx-->{{maybe|RC410 [Radeon Xpress 200] (VESA only)}}
| <!--Audio-->{{dunno|HD Audio}}
| <!--USB-->{{maybe|OHCI/EHCI issues }}
| <!--Ethernet-->{{N/A}}
| <!--Test Distro--> {{dunno}}
| <!--Comments-->issues
|-
| <!--Name--> d230
| <!--IDE--> {{yes|UDMA}}
| <!--SATA--> {{N/A}}
| <!--Gfx--> {{partial|Intel Extreme (VESA only)}}
| <!--Audio--> {{partial|Intel AC97 (speaker and headphones only, no line-out)}}
| <!--USB--> {{yes|USB}}
| <!--Ethernet--> {{Maybe|Broadcom BCM4401}}
| <!--Test Distro--> Icaros 1.4.5
| <!--Comments-->
|-
| <!--Name-->HP Pavilion a220n || <!--IDE-->{{Yes}} || <!--SATA-->{{N/A}} || <!--Gfx-->{{Yes|VESA 1024x768 on nVidia GF4 MX with 64MB shared video ram}} || <!--Audio-->{{Yes|Realtek ALC650 AC'97 comp.}} || <!--USB-->{{Yes|USB 2.0}} || <!--Ethernet-->{{Yes|Realtek 8201BL 10/100 LAN}} || <!--Test Distro-->AROS One 2.5|| <!--Comments-->2004 32bit athlon xp 2600+ Socket 462 / Socket A - 2 dimm ddr pc2700 -
|-
| <!--Name-->t500
| <!--IDE-->{{Yes}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->{{Yes|FX5200 (2D; 3D with older driver)}}
| <!--Audio-->{{Yes|AC97 ICH4 ALC658D}}
| <!--USB-->{{Yes|UHCI/EHCI}}
| <!--Ethernet-->{{Yes|RTL 8101L 8139}}
| <!--Test Distro-->Nightly Build 2012-09-22
| <!--Comments-->2004
|-
| <!--Name-->DC7700
| <!--IDE-->{{Yes}}
| <!--SATA-->{{Yes}}
| <!--Gfx-->{{Yes|GMA 2D}}
| <!--Audio-->{{Yes| ICH8}}
| <!--USB-->{{Yes}}
| <!--Ethernet-->{{No|82566DM e1000e}}
| <!--Test Distro-->Nightly Build 2013-??-??
| <!--Comments-->2006 Some support at low cost
|-
| <!--Name-->HP dc 7600 CMT
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->{{Yes|Intel Graphics Media Accelerator 950}}
| <!--Audio-->{{Yes|Realtek ACL 260}}
| <!--USB-->{{Yes|USB 2.0}}
| <!--Ethernet-->{{No|Intel PRO/1000 GT}}
| <!--Test Distro-->
| <!--Comments-->2007
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->HP t5000 thin client series t5500 t5510 t5515 PC538A or PC542A t5700 t5710 Transmeta Crusoe Code Morphing TM 5400 5600 800Mhz
| <!--IDE-->128mb to 512MB
| <!--SATA-->{{N/A}}
| <!--Gfx-->Ati Radeon 7000M
| <!--Audio-->VIA with codec
| <!--USB-->{{No|Issues}}
| <!--Ethernet-->VIA Rhine 2
| <!--Test Distro-->
| <!--Comments-->2006 32bit - ddr max 1GB - F10 setup - all t51xx and some t55xx units will not include a SODIMM slot -
|-
| <!--Name-->HP t5000 thin client series CN700
*HSTNC-002L-TC t5135, t5530
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Vesa 2d 128Mb Via S3 32-bit colour
| <!--Audio-->AC97
| <!--USB-->
| <!--Ethernet-->VIA VT6102 VT6103 [Rhine-II] (rev 78)
| <!--Test Distro-->
| <!--Comments-->2007 32bit t5135 appears identical to the t5530 except the CPU VIA Esther 400 MHz - RAM 64Mb (? max) - 8 x USB2.0 - 12V 3.33A Coax 5.5mm/2.1mm
|-
| <!--Name-->HP t5720, t5725 HSTNC-001L-TC
| <!--IDE-->{{unk| }}
| <!--SATA-->{{N/A}}
| <!--Gfx-->VESA 2d SiS741GX 2048 x 1536 32-bit colour
| <!--Audio-->AC97 SiS SiS7012 AC'97
| <!--USB-->6 x USB2.0
| <!--Ethernet-->VIA VT6102 VT6103 [Rhine-II] (rev 8d)
| <!--Test Distro-->
| <!--Comments-->2007 32bit AMD Geode NX1500 1GHz socketed - RAM 512MB or 1GB, 256MB, 512MB or 1GB - 12V psu - sis DDMA support - custom 1.13 BIOS - pci low profile -
|-
| <!--Name-->t5000 series VX800 HSTNC-004-TC t5145, t5540, t5545, t5630
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Vesa 2d VIA Chrome9
| <!--Audio-->HD Audio VIA
| <!--USB-->
| <!--Ethernet-->{{No|VT6120 VT6121 VT6122 Gigabit (rev 82)}}
| <!--Test Distro-->
| <!--Comments-->2010 32bit - RAM 64Mb (? max) - 8 x USB2.0 - 12V 4.16A Coax: 5.5mm/2.1mm -
|-
| <!--Name-->t5730w HSTNC-003-TC t5730
| <!--IDE-->{{n/a|ATA 44pin DOM Flash}}
| <!--SATA-->
| <!--Gfx-->Vesa 2d ATI Radeon X1250 2048 x 1536 no 3D
| <!--Audio-->HD audio with codec
| <!--USB-->{{Yes|6 x USB2.0}}
| <!--Ethernet-->{{No|Broadcom 5707M tg3 10/100/1000}}
| <!--Test Distro-->
| <!--Comments-->2008 64bit AMD Sempron 2100+ 1GHz - 1 slot of ddr2 sodimm (Max 2GB) - 12V 4.16A Coax 5.5mm/2.1mm - F10 enter bios F12 boot devices -
|-
| <!--Name-->HSTNC-005-TC gt7720, gt7725
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Vesa 2d AMD RS780G HD 3200 - 2560 x 1600 DVI-D & DVI-H
| <!--Audio-->
| <!--USB-->8 x USB2.0
| <!--Ethernet-->{{No|Broadcom BCM5787M}}
| <!--Test Distro-->
| <!--Comments-->2009 64bit AMD Turion Dual Core CPU 2.3GHz - 1 DDR2 200-pin SODIMM - 19V 4.16A Coax 7.4mm/5.0mm (gt7725) -
|-
| <!--Name-->HP t5740 Thin Client HSTNC-006-TC t5740, t5745, st5742
| <!--IDE-->1 port
| <!--SATA-->1 port
| <!--Gfx-->{{Maybe|VESA for Intel CL40 VGA and DisplayPort connectors}}
| <!--Audio-->{{Yes|HD audio with IDT codec}}
| <!--USB-->{{Maybe| }}
| <!--Ethernet-->{{No|Broadcom BCM57780 Gigabit}}
| <!--Test Distro-->Nightly build and Icaros
| <!--Comments-->2009 32bit Atom N280 - F10 on power up to get into the BIOS screens. F12 brings up the boot options - hp 19V one with a coax connector, outer diameter 4.8mm with inner to be 1.7mm to 1.4mm - 2 ddr3 sodimm slots max 3gb due to 32bit - 1 pci-e slot completely non standard -
|-
| <!--Name-->t5000 series HSTNC-012-TC VIA Nano u3500 VX900
*t5550 512MB/1GB Windows CE6 R3
*t5565 1GB/1GB HP ThinPro
*t5570 2GB/1GB WES 2009
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Vesa 2d VIA ChromotionHD 2.0 GPU Chrome9
| <!--Audio-->VIA 9170 VT1708S codec
| <!--USB-->
| <!--Ethernet-->{{No|Broadcom BCM57780 Gigabit}}
| <!--Test Distro-->
| <!--Comments-->32bit - 1 sodimm - 19V 3.42A supply connector standard yellow-tip coax plug 4.8mm/1.8mm "Standard HP Compaq DC Power Plug 4.8mm x 1.5mm / 1.7mm Yellow Tip Connector -
|-
| <!--Name-->HP t510 Via Eden X2 U4200 HSTNC-012-TC shares features with t5570e, t5565z
| <!--IDE-->2G ATA Flash DOM
| <!--SATA-->one
| <!--Gfx-->{{Maybe|Vesa 2d for Chrome9 VIA ChromotionHD 2.0 gfx}}
| <!--Audio-->{{Maybe|VIA VT8237A VT8251 HDA with codec}}
| <!--USB-->{{Maybe|6 USB2 }}
| <!--Ethernet-->{{No|Broadcom Corporation NetLink BCM57780 Gigabit Ethernet PCIe}}
| <!--Test Distro-->
| <!--Comments-->2010 32bit - one slot ddr3 sodimm max 4GB - 19V 3.42A Coax 4.8mm/1.8mm -
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->HP T610 Thin Client and thicker PLUS version AMD G-T56N A55E
| <!--IDE-->{{Maybe|}}
| <!--SATA-->2 sata
| <!--Gfx-->Radeon 6320 1 dp port 1 dvi
| <!--Audio-->HDAudio with ALC codec
| <!--USB-->two USB2 on the front, two USB2 and two USB 3 ports on the rear
| <!--Ethernet-->{{No|Broadcom BCM57780}}
| <!--Test Distro-->
| <!--Comments-->2010 64bit does not support AVX SSE 4.1 - 2 204-pin DDR3 1600MHz SODIMMs PC3-12800 under motherboard via removable panel - 19.5V 3A Coax male 7.4mm/5.0mm + centre pin -
|-
| <!--Name-->HP T420 Thin Client
*AMD Embedded G-Series GX-209JA SOC (1 GHz, 2 cores)
| <!--IDE-->{{N/A}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->Radeon 8180 dvi vga
| <!--Audio-->HDAudio with ALC codec
| <!--USB-->2 front 2 rear USB2
| <!--Ethernet-->{{Yes|Realtek}}
| <!--Test Distro-->
| <!--Comments-->2015 64bit supports AVX SSE 4.1 - soldered in place 2GB DDR3 - smaller than usual 19.5V 2.31A Coax male 4.5mm/3.0mm + centre pin - usb stick internal for storage - E15 BBR -
|-
| <!--Name-->HP t520 TPC-W016
*AMD GX-212JC 1.2Ghz (2 core)
| <!--IDE-->{{N/A}}
| <!--SATA-->1 m.2 mounting holes for 2242 and 2260 SSDs SATA (not NVME)
| <!--Gfx-->Radeon R2E GCN2 IGP Sea Islands
| <!--Audio-->HDAudio with ALC codec
| <!--USB-->2 USB3 front, 4 USB2 back
| <!--Ethernet-->{{Yes|Realtek}}
| <!--Test Distro-->
| <!--Comments-->2014 2017 64 bit supports AVX SSE 4.1 - 1 204-pin DDR3 SODIMM - 19.5V 3.33A 7.4mm Coax with central pin
|-
| <!--Name-->HP t620 TPC-I004-TC
*AMD G-Series GX-217GA 2 core APU 1.65GHz (65W)
*AMD GX-415GA (65W)
and t620 PLUS (PRO wider version) TPC-I020-TC
*AMD GX-420CA SOC (Plus 85W)
| <!--IDE-->{{N/A}}
| <!--SATA-->{{yes|single M.2 2280 socket sata3, mSATA socket removed end of 2014}}
| <!--Gfx-->{{maybe|Vesa 2d for Radeon HD 8280E graphics 8330E Islands GCN2 IGP - 2 dp ports no dvi}}
| <!--Audio-->{{yes|HDAudio with Realtek ALC221 codec 0x10EC 0x0221}}
| <!--USB-->{{unk|4 front, 2 back, 1 inside limited space}}
| <!--Ethernet-->{{Yes|Realtek 8169}}
| <!--Test Distro-->Aros One 32bit
| <!--Comments-->2014 64bit supports AVX SSE 4.1 - 2 DDR3L SODIMMs side by side - mSATA ssd and M.2 SSD are M1.6 screws, M2.0 screws used on most SSDs - 19.5V 3.33A Coax male 7.4mm 5mm with centre pin - changed the network card to a Atheros 5000 compatible -
|-
| <!--Name-->HP T530
*AMD GX-215JJ (2 core) 1.5GHz
| <!--IDE-->{{N/A}}
| <!--SATA-->1 m.2 sata ssd up to 2280
| <!--Gfx-->Radeon R2E
| <!--Audio-->HDAudio with ALC codec
| <!--USB-->1 USB3.1, 1 usb-c front, 4 USB2 back
| <!--Ethernet-->{{Yes|Realtek}}
| <!--Test Distro-->
| <!--Comments-->2015 64 bit does support AVX SSE 4.1 - 1 204-pin DDR4 SODIMM - 19.5V 2.31A Coax male 4.5mm/3.0mm with centre pin -
|-
| <!--Name-->HP T730 Wider "Thin" Client TPC-I018-TC Pixar RX-427BB (2c4t) - no display and fans blowing full speed caused by '''disabling internal gpu in bios''' flash L43_0116.bin onto smc MX25L6473F (3.3V 8-PIN SOP (200mil) SPI 25xx) ([https://www.badcaps.net/forum/troubleshooting-hardware-devices-and-electronics-theory/troubleshooting-desktop-motherboards-graphics-cards-and-pc-peripherals/bios-schematic-requests/96303-hp-t730-password-locked-bios in the rom rcvry socket under a delicate thin narrow surface flap]) with ch341a alike switchable from 5v, 3.3v to 1.8v
| <!--IDE-->{{N/A}}
| <!--SATA-->{{partial|Storage bios option to IDE and not AHCI to prevent constant install error messages to DH0: - add noacpi to end of grub boot line - 1 M.2 SATA slot (Key B+M) up to 2280 with T8 torx secure stub}}
| <!--Gfx-->{{maybe|use VESA for non-vulkan Radeon R7 GCN 2 UVD4.2 Sea Islands with 4 dp outs '''but too easy bricking''' if swapping with 1 PCIe 3.0 x8 slot 30W slim factor low profile 8400gs gt210 nvs295 nvs310 gt1030}}
| <!--Audio-->{{yes|HDaudio 6.34 realtek alc221 codec thru case speaker only}}
| <!--USB-->{{yes|'''Works''' for 4 USB2 in the back with 2 in the front, 2 USB3.0 ports on front and 1 more internal (not bootable)}}
| <!--Ethernet-->{{yes|rtl8169 Realtek RTL8111HSH-CG set up first in Prefs/Network}}
| <!--Test Distro-->boots with AROS One 32bit and 64bit USB with added noacpi added to grub boot line - press e - Latest distros can select grub boot options with Aros One 64bit USB and Aros One USB 2.8 but system seems to freeze after choice
| <!--Comments-->2016 64bit supports AVX SSE 4.1 - 2 DDR3L sodimm stacked slots max 32GB - '''Larger''' 20cm/8" high 3.5ltr case noisy fan - TPM2 - esc/F9 boot selector F10 enter bios - 2 serial and 1 parallel old ports - Key E Wireless - PCIe slot (x16 physical, x8 electrical) - 19.5V 4.36A 85w TPC-LA561 HP 7.4mm black-ring-tip power plug, red flashing power button, wrong psu or bad MotherBoard MB -
|-
| <!--Name-->HP t630 Thin Client TPC-I020-TC
*AMD Embedded G-Series SoC GX-420GI quad core 2Ghz
| <!--IDE-->{{N/A}}
| <!--SATA-->{{yes|ahci.device mbr msdos partiton table for 2 Sata M.2, sata0 up to 2280 (1tb max), sata1 2242 (64gb max), both T8 torx secure stubs}}
| <!--Gfx-->{{maybe|use VESA for Radeon AMD Wani R7E with 2 displayport 1.2 sockets, use one nearest to power jack - no dvi / hdmi}}
| <!--Audio-->{{Yes|HDAudio 6.36 0x1022, 0x157a and ALC255 aka ALC3234 codec 0x10ec, 0x0255, pins 0x17 as LFE and 0x1b as int speaker but not ahi 6.34}}
| <!--USB-->{{yes|USB2 2 front and 2 rear, 2 front USB3 and 1 inside}}
| <!--Ethernet-->{{Yes|Realtek 8169 8111H}}
| <!--Test Distro-->AROS One USB 2.2, 2.8 and 64bit USB 1.0, 1.2 with noacpi added to the end of the grub bootline (press e)
| <!--Comments-->2016 64bit supports AVX SSE 4.1 - 2 DDR4 SODIMMs side by side speed 1866Mhz limit - 19.5V 3.33A 65W TPC-BA54 Coax male 7.4mm with centre pin - can be easily bricked, might reflash bios with M40 SP149736 - 20cm/8" high 1.5ltr larger fanless case - esc f1 f9 f10 -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->HP Compaq Elite 7200 7300 8200 8300 SFF with kettle IEC psu cable
| <!--IDE-->
| <!--SATA-->{{yes|IDE ata legacy only in BIOS}}
| <!--Gfx-->i pci-e
| <!--Audio-->{{Maybe|8200 works}}
| <!--USB-->{{yes| }}
| <!--Ethernet-->{{no|Intel or Broadcom}}
| <!--Test Distro-->icaros 2.3
| <!--Comments-->2013 64bit dual core - add pci-e rtl8169 ethernet card and pci-e gf210 nvidia low height -
|-
| <!--Name-->HP Compaq Pro 6305 Small Form Factor SFF AMD A75 chipset (FCH 6 SATA 6 Gb/s, 4 USB 3.0)
*AMD Quad A10-5800B
*AMD A8-5500B
*AMD Dual A6-5400B
*AMD A4-5300B
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Radeon 7000 Terascale iGPU series Radeon HD 7660D, Radeon HD 7560D, Radeon HD 7540D, Radeon HD 7480D
| <!--Audio-->HD ALC221
| <!--USB-->
| <!--Ethernet-->{{No|Broadcom 5761}}
| <!--Test Distro-->
| <!--Comments-->2012 64bit
|-
| <!--Name-->Elitedesk 705 G1 - SFF
*AMD A10-8850B, Quad-Core A10 PRO-7850B, A10-8750B
*AMD A10-7800B, A10 PRO-6800B, A8-7600B
*AMD A8-8650B, A6-8550B
*AMD A6-8350B, Dual A6 PRO 7400B, A4-7300B
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Maybe| }}
| <!--Gfx-->{{Maybe|VESA 2D with Radeon R7 or 8000}}
| <!--Audio-->{{Maybe|HD audio with Realtek ALC221 codec}}
| <!--USB-->{{Maybe| }}
| <!--Ethernet-->{{No|Broadcom or Intel}}
| <!--Test Distro-->
| <!--Comments-->2014 64bit - T15 security torx psu with 6pin PWR 200W connector -
|-
| <!--Name-->HP EliteDesk 705 G2, 705 G3 Mini PC USFF thin client
| <!--IDE-->{{N/A}}
| <!--SATA-->2.5in and m.2
| <!--Gfx-->Radeon R7
| <!--Audio-->HDAudio
| <!--USB-->USB3
| <!--Ethernet-->{{No|Broadcom BCM5762 GbE}}
| <!--Test Distro-->
| <!--Comments-->2014 64bit AM4 socket with 35W TDP A10-8770E (4c), AMD PRO A6-8570E (2c), AMD Pro A6-9500E, or AMD PRO A10-9700E on AMD B300 FCH - ddr4 sodimm slots - 77 x 175 x 34mm (6.97 x 6.89 x 1.34in) 1L and about 3lbs -
|-
| <!--Name-->HP EliteDesk 705 G4 Mini 1ltr USFF AMD Ryzen 3 2200G (4c t) or 5 2400G (4c t)
| <!--IDE-->{{N/A|}}
| <!--SATA-->{{Maybe|Nvme 2280 and 2.5in sata}}
| <!--Gfx-->Vega 8 thru DP1.2 port
| <!--Audio-->{{No|HD Audio Conexant codec}}
| <!--USB-->USB2 usb3
| <!--Ethernet-->rtl8169 realtek
| <!--Test Distro-->
| <!--Comments-->2016 64bit Am4 socket - 2 sodimm 16GB max - 19.5v hp socket ext psu -
|-
| <!--Name-->Elitedesk 705 G4 35w, HP Prodesk 405 G4 35W USFF - baseboard 83e9 35W - AMD Athlon PRO 200GE (2c 4t), 2200GE (4c t) or 2400GE (4c t) on AMD B350 FCH
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Maybe|Nvme 2280 and older models 2.5in sata}}
| <!--Gfx-->Vega 3, 8 or 11 with 2 dp1.2 ports
| <!--Audio-->{{no|HDAudio with Conexant CX20632 codec}}
| <!--USB-->USB3
| <!--Ethernet-->rtl8169 Realtek 8169 8111EPH 1Gbe or Realtek RTL8111F
| <!--Test Distro-->
| <!--Comments-->2017 64bit - realtek wifi 8821 or 8822 - up to 1 ddr4 dimm slots - hp barrel external ac -
|-
| <!--Name-->Elitedesk 705 G5, HP Elitedesk 806 G6, Prodesk 405 G6 || <!--IDE-->{{N/A}} || <!--SATA-->2x NVMe or 1x SATA + 1x NVMe, but not all three drives at the same time without serious modding of hd caddie || <!--Gfx-->Vega with DP1.4 port || <!--Audio-->{{no|HDAudio with Realtek ALC3205 codec}} || <!--USB-->USB3 || <!--Ethernet-->{{maybe|Realtek}} || <!--Test Distro--> || <!--Comments-->2018 64bit - 2 ddr4 sodimm slots - 3400GE Ryzen 5 PRO 3350GE (4c 8t), Ryzen 3 PRO 3200GE 3150GE (4c 4t), AMD Athlon Silver PRO 3125GE (2c 4t) on AMD PRO 565
|-
| <!--Name-->HP t540 1ddr4 slot, t640 2 DDR4 SDRAM sodimm SO-DIMM 260-pin non-ECC max 32gb thin client USFF
| <!--IDE-->{{N/A}}
| <!--SATA-->1 NVM Express (NVMe) 2230 or 2280
| <!--Gfx-->Vega 3 VGA, DisplayPort
| <!--Audio-->HD Audio with codec
| <!--USB-->2 USB3 gen1
| <!--Ethernet-->rtl8169 Realtek Realtek RTL8111HSH or RTL8111E PH-CG
| <!--Test Distro-->
| <!--Comments-->2019 64bit ryzen r1000 series Ryzen Embedded R1305G 1.5 GHz, R1505G dual (2c 4t) 2.0Ghz or R1606G ?.?Ghz (2c4t) - Realtek RTL8852AE wifi - 45W psu Coax male 4.5mm/3.0mm + centre pin -
|-
| <!--Name-->HP t740 SFF Thin Client
| <!--IDE-->{{N/A}}
| <!--SATA-->2 M.2, one is sata and other nvme
| <!--Gfx-->Vega 8 DisplayPort or + optional pci-e 30W Radeon E9173
| <!--Audio-->HD Audio with codec
| <!--USB-->USB3
| <!--Ethernet-->Realtek RTL8111E PH-CG 1Gbe
| <!--Test Distro-->
| <!--Comments-->2019 64bit - Ryzen Embedded V1756B 3.25Ghz quad - 90W 19.5V 4.62A psu Coax male 4.5mm/3.0mm + centre pin - sodimm DDR4 max 64Gb - slightly noisy fan -
|-
| <!--Name-->HP EliteDesk 805 G6 Mini 4750GE (8t 16t), Prodesk 405 G6 Ryzen 5 PRO 4650GE (6c 12t) or Ryzen 3 PRO 4350GE (4c 8t) on AMD PRO 565
| <!--IDE-->{{N/A}}
| <!--SATA-->2.5in carrier and 2 slots m.2 nvme
| <!--Gfx-->Vega 8 with DP1.4 and HDMI flex io2 output options
| <!--Audio-->HDAudio with Realtek ALC3205 codec
| <!--USB-->4 usb a - gen 2 10gig and gen 1 5gig ports
| <!--Ethernet-->{{N/A}}
| <!--Test Distro-->
| <!--Comments-->2021 64bit AMD Ryzen 4000 SBC unlocked - 2 sodimm ddr4 slots - wifi6 - 90W ac -
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|-
|}
====Lenovo====
{| class="wikitable sortable" width="100%"
! width="15%" |Name
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Integrated Gfx
! width="10%" |Audio
! width="10%" |USB
! width="10%" |Ethernet
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->Lenovo Nettop IdeaCentre Q150 (40812HU)
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->ION2
| <!--Audio--> realtek codec
| <!--USB-->USB2
| <!--Ethernet-->intel 10/100
| <!--Test Distro-->
| <!--Comments-->2011 64bit D510
|-
| <!--Name-->M625q Tiny (1L)
| <!--IDE-->{{N/A}}
| <!--SATA-->M.2 Sata
| <!--Gfx-->Stoney Radeon R2, R3 or R4 and later R5 with 2 dp ports
| <!--Audio-->HD audio with ALC233-VB2-CG codec 0x10EC 0x0233
| <!--USB-->{{No|3 usb3.1 Gen 1 and 3 usb2}}
| <!--Ethernet-->rtl8169 RTL8111
| <!--Test Distro-->
| <!--Comments-->2016 64bit all dual cores - e2-9000e or a4-9120e later A9-9420e - heatsink covers 70% area covers wifi - 65w or 135w lenovo rectangle ac - 1 ddr4 2666MHz slot max 8gb - tpm 2.0 -
|-
| <!--Name-->M715q Gen 1 AMD A6 A8 A10-9700E 9770E (2c2t)
| <!--IDE-->{{N/A}}
| <!--SATA-->m.2
| <!--Gfx-->R4
| <!--Audio-->HDAudio
| <!--USB-->USB3
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->2016 64bit -
|-
| <!--Name-->M715q Gen 2 Ryzen 5 PRO 2400GE 4C 8T
| <!--IDE-->{{N/A}}
| <!--SATA-->m.2
| <!--Gfx-->Vega 11
| <!--Audio-->HD Audio with codec
| <!--USB-->USB3
| <!--Ethernet-->1GbE
| <!--Test Distro-->
| <!--Comments-->2018 64bit - f1 enter setup, esc device boot - fixed 1.8v ch341a needed to reflash 1.8v bios if no boot SOP8 DIP8 Winbond W25Q64, MXIC MX25U1635, MX25U6435 -
|-
| <!--Name-->ThinkCenter M75n nano Ryzen3 3300U
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->ThinkCentre M75q M75q-1 Tiny 1ltr TMM
*AMD Ryzen 5 PRO Quad 3500 Pro 3400GE (4c 8t) 11a5 soe400
*AMD 3200GE (2c 4t) zen1+ 11a4
| <!--IDE-->{{N/A|}}
| <!--SATA-->{{Maybe|NVMe 2280 1Tb max - untested 2.5inch}}
| <!--Gfx-->Vega 11
| <!--Audio-->HD Audio Realtek ALC222-CG codec ALC3287
| <!--USB-->3 USB3 Gen 1
| <!--Ethernet-->rtl8169 Realtek 8169 8111
| <!--Test Distro-->
| <!--Comments-->2019 64bit - 65w 20v 3.25A to 135W rectangle psu - 2 sodimm ddr4 sodimm max 32GB locked 2666MHz -
|-
| <!--Name-->ThinkCentre Ryzen 7 PRO Tiny 1ltr Gen 2 AMD 4000 series
*AMD 4650GE (6c12t) 4750GE (8c16t) 4350G (4c8t) Zen2 -
| <!--IDE-->{{N/A|}}
| <!--SATA-->{{Maybe|NVme}}
| <!--Gfx-->Vega 8
| <!--Audio-->HD Audio codec
| <!--USB-->
| <!--Ethernet-->Realtek 8169 8111
| <!--Test Distro-->
| <!--Comments-->2021 64bit vendor locked - 20v psu - 2 sodimm -
|-
| <!--Name-->Thinkcenter M75q-2 Gen2 refresh
| <!--IDE-->{{N/A}}
| <!--SATA-->m.2 nvme
| <!--Gfx-->Radeon Vega
| <!--Audio-->HDAudio
| <!--USB-->USB3
| <!--Ethernet-->1GigE
| <!--Test Distro-->
| <!--Comments-->2022 64bit 5650GE (6c12t) 5750GE (8c16t) - vendor/PSB can lock your AMD CPU - f12 boot devices
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->Thinkcentre M75q Tiny Gen5
| <!--IDE-->{{N/A| }}
| <!--SATA-->2 NVMe
| <!--Gfx-->Radeon 780M dp1.4a or hdmi
| <!--Audio-->HDAudio with codec
| <!--USB-->USB3 usb-c
| <!--Ethernet-->1GBe port
| <!--Test Distro-->
| <!--Comments-->2024 Ryzen PRO 7 8700GE - 90W yellow rectangle connector psu - 2 DDR5 sodimm slots max 128Gb -
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|}
====Misc====
{| class="wikitable sortable" width="100%"
! width="15%" |Name
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Integrated Gfx
! width="10%" |Audio
! width="10%" |USB
! width="10%" |Ethernet
! width="5%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->Impart impact Media Group IQ Box mini Digital Signage with MB896 mini itx
| <!--IDE-->{{Yes| }}
| <!--SATA-->{{N/A}}
| <!--Gfx-->GMA 915 gme
| <!--Audio--> via audio
| <!--USB-->{{yes| }}
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->2007 32bit - 1 ddr2 slot - pentium m 1.73GHz -
|-
| <!--Name-->[https://everymac.com/systems/apple/mac_mini/specs/mac_mini_cd_1.83-specs.html Apple A1176 Intel MacMini1,1]
| <!--IDE-->{{N/A}}
| <!--SATA-->{{unk|gpt/efi }}
| <!--Gfx-->{{Yes|gma950 2d and 3d}}
| <!--Audio-->{{No|HDAudio with ICH7 [https://answers.launchpad.net/ubuntu/+source/alsa-driver/+question/186749 Sigmatel Stac 9221] [https://android.googlesource.com/kernel/msm/+/android-wear-5.1.1_r0.6/sound/pci/hda/patch_sigmatel.c codec][https://alsa-devel.alsa-project.narkive.com/Yt20W6cE/sigmatel-stac9221-mux-amp-out-0x02-microphone-not-working mic]}}
| <!--USB-->{{Yes|USB2}}
| <!--Ethernet-->{{No|Marvell}}
| <!--Test Distro-->
| <!--Comments-->2006 32bit possible 1.83 GHz Intel “Core Duo” (T2400) - swap pci-e wifi for atheros 5k AR5007EG - maybe hack with a 2,1 firmware - max 4GB Ram ddr2 sodimms - external apple psu - dvd boot only with c key -
|-
| <!--Name-->[https://everymac.com/systems/apple/mac_mini/specs/mac-mini-core-2-duo-1.83-specs.html Apple A1176 Intel Mac Mini2,1]
| <!--IDE-->{{N/A}}
| <!--SATA-->{{unk|gpt/efi }}
| <!--Gfx-->{{Yes|gma950 2d and 3d}}
| <!--Audio-->{{No|HDAudio with ICH7 Sigmatel Stac 9221 codec}}
| <!--USB-->{{Yes|USB2}}
| <!--Ethernet-->{{No|Marvell}}
| <!--Test Distro-->Aros One 2.0/ Icaros
| <!--Comments-->2007 64bit - swap pci-e wifi for atheros 5k AR5007EG - hacked with a 2,1 firmware and replaced the cpu for T7600 2.33 Ghz C2D and max 4GB Ram ddr2 sodimms - external apple psu - dvd boot only via c key
|-
| <!--Name-->Apple iMac 5,1 "Core 2 Duo" 1.83GHz 17" T5600 MA710LL || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->GMA 950 with 64Mb || <!--Audio-->HDAudio idt codec || <!--USB-->3 USB2 || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->2006 64bit - 2 ddr2 667MHz sodimm slots - 17.0" TFT widescreen 1440x900 - polycarbonate
|-
| <!--Name-->Apple iMac 6,1 "Core 2 Duo" 2.16 2.33 24" only T7400 T7600 aka MA456LL/A A1200 (EMC 2111) || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->Nvidia 7300GT with 128 MB of GDDR3 SDRAM PCI Express or GeForce 7600GT with 256Mb mini dvi, vga || <!--Audio-->HDAudio || <!--USB-->3 USB2 || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->2006 64bit - 2 ddr2 667MHz sodimm slots - 24.0" TFT widescreen 1920 x 1200 - polycarbonate plastic case iMacs of this generation are the most difficult iMacs to service due to their front bezel design
|-
| <!--Name-->Neoware CA2
| <!--IDE-->flash DOM
| <!--SATA-->{{N/A}}
| <!--Gfx-->S3 Inc ProSavage PM133 (rev 02) vga
| <!--Audio-->VIA VT82C686 AC97 Audio
| <!--USB-->USB
| <!--Ethernet-->rtl8139
| <!--Test Distro-->
| <!--Comments-->2003 32bit - VIA Ezra 800MHz - 2 PC100 sodimm slots - riser board carries an ISA slot and a PCI slot - external 12V power supply.with 4 pins -
|-
| <!--Name-->Neoware CA5 Capio One
| <!--IDE-->44pin Disk On Module DOM
| <!--SATA-->{{N/A}}
| <!--Gfx-->SiS550 vga
| <!--Audio-->AC97 with SiS7019 codec
| <!--USB-->USB1.1
| <!--Ethernet-->rtl8139
| <!--Test Distro-->
| <!--Comments-->2004 32bit - internal power supply with mains lead has a "clover leaf" style - 2 144-pin PC100 or PC133 SODIMM might have 24MB of RAM soldered -
|-
| <!--Name-->Neoware CA10
*E140 model BL-XX-XX (800MHz CPU) later
*E100 model BK-XX-XX (1GHz CPU)
| <!--IDE-->
| <!--SATA-->{{N/A}}
| <!--Gfx-->VIA VT8623 (Apollo CLE266) vga
| <!--Audio-->AC97 with
| <!--USB-->4 USB2
| <!--Ethernet-->VIA VT6102/VT6103 [Rhine-II] (rev 74)
| <!--Test Distro-->
| <!--Comments-->2004/5 32bit - 12v 5.5mm/2.1mm - 2 184-pin DDR DIMM -
|-
| <!--Name-->VXL Itona thin client
*TC3200,
*TC3x41 (P3VB-VXL) TC3541 TC3641 TC3841,
*TC3xx1 (6VLE-VXL0) TC3931,
*TC43xx (Gigabyte C7V7VX) TC4321
| <!--IDE-->
| <!--SATA-->{{N/A}}
| <!--Gfx-->VIA vga
| <!--Audio-->AC'97 Audio with VIA VT
| <!--USB-->VIA USB
| <!--Ethernet-->Realtek 8100B
| <!--Test Distro-->
| <!--Comments-->2005 2006 32bit VIA Samuel 2, VIA C3 Nehamiah CPU, 1 DIMM slot, internal psu,
|-
| <!--Name-->Neoware Capio C50, model CA15 Thin Clients]
*Login Administrator Password Administrator
*Login User Password User
| <!--IDE-->1 flash Disk On Module
| <!--SATA-->{{N/A}}
| <!--Gfx-->VIA VT8623 (Apollo CLE266) vga
| <!--Audio-->AC97 with via codec
| <!--USB-->USB
| <!--Ethernet-->VIA
| <!--Test Distro-->
| <!--Comments-->2006 32bit VIA Eden (Samuel II core) CPU - 1 ddr sodimm slot max 512mb - slot - internal psu clover leaf -
|-
| <!--Name-->[http://etoy.spritesmind.net/neowareca21.html Neoware CA21 Thin Clients] Igel 3210 (and maybe the Clientron G270)
*Login Administrator Password Administrator
*Login User Password User
| <!--IDE-->1 flash Disk On Module DOM
| <!--SATA-->{{N/A}}
| <!--Gfx-->VIA CN700 vga
| <!--Audio-->AC97 with via codec
| <!--USB-->USB2
| <!--Ethernet-->VIA
| <!--Test Distro-->
| <!--Comments-->2007 32bit VIA C3 Nehemiah instead of Ezra-T - made 2 version of the CA 21, one with an Award bios and one with a Phoenix bios - 1 ddr2 sodimm slot max 1gb - VT6656 wireless - slot - internal psu iec -
|-
| <!--Name-->Neoware CA22 (e140), part number DD-L2-GE with BCOM WinNET P680 (V4) as the Igel 4210LX (Igel 5/4)
| <!--IDE-->1 VIA VT82C586A/B VT82C686/A/B VT823x/A/C PIPC Bus Master IDE (rev 06)
| <!--SATA-->{{N/A}}
| <!--Gfx-->VIA CN700 P4M800 Pro CE VN800 Graphics [S3 UniChrome Pro] (rev 01) vga
| <!--Audio-->AC97 with codec
| <!--USB-->USB2 VIA VT8237R Plus
| <!--Ethernet-->VIA VT6102/VT6103 [Rhine-II] (rev 78)
| <!--Test Distro-->
| <!--Comments-->2007 32bit - VIA Esther to later C7 1GHz - 1 ddr2 sodimm slots max 512mb - +12V DC/4.16A/50W 5.5mm/2.1mm coaxial -
|-
| <!--Name-->10Zig RBT402, Clientron U700,
| <!--IDE-->{{Yes|44 pin header very little room}}
| <!--SATA-->{{N/A|}}
| <!--Gfx-->{{Partial|VESA dvi}}
| <!--Audio-->{{unk|AC97 with codec}}
| <!--USB-->{{unk|VIA }}
| <!--Ethernet-->{{unk|}}
| <!--Test Distro-->
| <!--Comments-->2008 32bit - very small cases with very limited expansion - 1 sodimm 2GB max - 12v 3a psu - Password Fireport
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->Dell Optiplex FX170 D05U thin client, 10Zig 56xx range 5602, 5616v, 5617v, 5672v, Clientron U800, Devon IT TC5,
| <!--IDE-->{{Yes|44 pin header very little room}}
| <!--SATA-->{{N/A|}}
| <!--Gfx-->{{partial|GMA 950 dvi}}
| <!--Audio-->{{Yes|HD Audio with codec}}
| <!--USB-->{{Yes| }}
| <!--Ethernet-->{{No|Broadcom}}
| <!--Test Distro-->Icaros 2.3
| <!--Comments-->2009 32bit - very small cases with very limited expansion - 1 ddr2 sodimm 2GB max - 12v 3a psu - Password Fireport - ps2 keyboard socket -
|-
| <!--Name-->10Zig RBT-616V or Chip PC Technologies EX-PC (model number XPD4741)
| <!--IDE-->{{unk|44 pin header very little room}}
| <!--SATA-->{{N/A|}}
| <!--Gfx-->{{Yes|GMA 950}}
| <!--Audio-->{{unk|HD Audio with codec}}
| <!--USB-->{{unk| }}
| <!--Ethernet-->{{unk|rtl8169}}
| <!--Test Distro-->
| <!--Comments-->2010 32bit N270 on NM10 with ICH7 - very small cases with very limited expansion - 1 sodimm 2GB max - 12v 4a psu - Password Fireport
|-
| <!--Name-->Gigabyte Brix GS-A21S-RH (rev. 1.0) SFF
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->{{maybe|X3100}}
| <!--Audio-->{{No|HD Audio with ALC883-GR codec}}
| <!--USB-->Intel USB
| <!--Ethernet-->{{no|Intel 82566DC}}
| <!--Test Distro-->ICAROS 2.3
| <!--Comments-->2009 64bit Intel GME965 chipset with Intel ICH8M - 2 DDR2 Dimm slots - GA-6KIEH2-RH Rev.1.x mini ITX Case 213mm(D) x 64mm(W) x 234mm(H) - custom psu -
|-
| <!--Name-->VXL Itona MD+24 MD27 MD54 MD64 MD76 thin client
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->VIA Chrome 9
| <!--Audio-->HD Audio with VIA VT
| <!--USB-->VIA
| <!--Ethernet-->VIA
| <!--Test Distro-->
| <!--Comments-->2009 32bit VIA X2 U4200 - 12v-19v barrel psu -
|-
| <!--Name-->Acer Revo 100 RL100 AMD Athlon II X2 K325 || <!--IDE--> || <!--SATA--> || <!--Gfx-->NVIDIA® ION™ 9300m || <!--Audio-->HDAudio with ALC662 codec || <!--USB-->USB2 1 front 2 back || <!--Ethernet-->NVIDIA nForce 10/100/1000 || <!--Test Distro--> || <!--Comments-->2010 64bit but no AVX - 4Gb DDR3 sodimm - 500 GB - 19v 3.42a 65W - dvd but later BD drive -
|-
| <!--Name-->Asrock ION 330 330Pro HT-BD, Foxconn NT-330i, Zotac ION F (IONITX mini itx),
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->{{Maybe|ION geforce 9400}}
| <!--Audio-->{{Maybe| }}
| <!--USB-->{{Maybe|Nvidia USB}}
| <!--Ethernet-->{{No|Nvidia }}
| <!--Test Distro-->
| <!--Comments-->2010 32bit slow atom cpu - 2.5L 8" by 8" plastic case - 2 ddr2 sodimm max 4G - external 19v 65W 3.42A Plug 5.5mm X 2.5mm - little whiny fan -
|-
| <!--Name-->Zotac ZBOXHD-ND01
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->ION1
| <!--Audio-->HDaudio
| <!--USB-->USB2
| <!--Ethernet-->NVidia
| <!--Test Distro-->
| <!--Comments-->2009 32bit
|-
| <!--Name-->Zotac ZBOX HD-ID11
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->ION2
| <!--Audio-->HDaudio with ALC888 codec
| <!--USB-->USB2
| <!--Ethernet-->rtl8169 rtl8111D
| <!--Test Distro-->
| <!--Comments-->2010
|-
| <!--Name-->ZOTAC ZBOX Blu-ray 3D ID36 Plus
| <!--IDE-->{{N/A}}
| <!--SATA-->sata
| <!--Gfx-->ION2
| <!--Audio-->HDaudio
| <!--USB-->2 USB3
| <!--Ethernet-->GbE
| <!--Opinion-->2011 64bit -
|-
| <!--Name-->Shuttle XS35GT || <!--IDE--> || <!--SATA--> || <!--Gfx-->ION || <!--Audio-->HD audio IDT92HD81 || <!--USB--> || <!--Ethernet-->{{No|JMC261}} || <!--Test Distro--> || <!--Comments-->2011 64bit - Atom™ D510 NM10 - DDR2
|-
| <!--Name-->Shuttle XS35GT V2 || <!--IDE--> || <!--SATA--> || <!--Gfx-->ION2 || <!--Audio-->HD audio IDT92HD81 || <!--USB-->Intel || <!--Ethernet-->{{No|JMC251}} || <!--Test Distro--> || <!--Comments-->2011 64bit Atom™ D525 NM10 chipset - DDR3
|-
| <!--Name-->Sapphire Edge-HD || <!--IDE--> || <!--SATA--> || <!--Gfx-->ION2 GT218 with vga and hdmi || <!--Audio-->HDAudio realtek codec || <!--USB--> || <!--Ethernet-->{{Unk|Realtek}} || <!--Test Distro--> || <!--Comments-->2011 64bit - Atom™ D510 NM10 - DDR2 65 W AC, DC 19V~3.42A, 19.3L x 14.8w x 2.2H cm (1l), weight 530g,
|-
| <!--Name-->Sapphire Edge-HD2 || <!--IDE-->{{N/A}} || <!--SATA-->{{yes|IDE mode}} || <!--Gfx-->{{Yes|nouveau ION2 GT218 with vga and hdmi 2d and 3d}} || <!--Audio-->{{Yes|HDAudio}} || <!--USB-->{{Yes|Intel USB2}} || <!--Ethernet-->{{Yes|}} || <!--Test Distro--> || <!--Comments-->2011 64bit Atom™ D525 NM10 chipset - DDR3
|-
| <!--Name-->AOPEN Digital Engine DE67-HA(I)
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Maybe| }}
| <!--Gfx-->{{Maybe| Vesa 2d for Intel HD}}
| <!--Audio-->{{maybe|HDAudio for ALC662 codec}}
| <!--USB-->{{maybe|usb3}}
| <!--Ethernet-->{{no|Intel WG82579LM}}
| <!--Test Distro-->
| <!--Comments-->2011
|-
| <!--Name-->[https://www.jetwaycomputer.com/JBC600C99352W.html Jetway JBC600C99352W]
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->ION2
| <!--Audio-->{{No|C-Media CM108AH}}
| <!--USB-->USB2
| <!--Ethernet-->Realtek 8111DL
| <!--Test Distro-->
| <!--Comments-->2011 64bit D525 - DDR3 - 12v psu
|-
| <!--Name-->Foxconn nT-A3550 A3500 AMD A45 Chipset DDR3 Nettop Barebones - White
| <!--IDE-->{{N/A}}
| <!--SATA-->1 slot
| <!--Gfx-->AMD Radeon HD6310
| <!--Audio-->
| <!--USB-->4 USB2 back and 2 USB3 front
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->2012 64bit does not support AVX or SSE 4.1 AMD Dual-core E350 1.6GHz CPU - 1 ddr3 sodimm -
|-
| <!--Name-->Asus EeeBox PC EB1021 || <!--IDE--> || <!--SATA--> || <!--Gfx-->Radeon HD6320M || <!--Audio-->HDAudio with ALC codec || <!--USB-->USB2 || <!--Ethernet-->Realtek GbE1 || <!--Test Distro--> || <!--Comments-->2012 64bit - AMD® Brazos E-350 SFF or E-450 with A50M - 2 ddr3l so-dimm - 40W ac -
|-
| <!--Name-->Xi3 Piston PC Athlon64 X2 3400e (X5A), AMD R-464L quad (X7A) Z3RO NUC
| <!--IDE-->{{N/A}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->AMD mobility HD3650 to radeon HD 7660G
| <!--Audio--> codec
| <!--USB-->4 USB2 3 USB3
| <!--Ethernet-->{{no|Atheros AR8161}}
| <!--Test Distro-->
| <!--Comments-->2012 - 2 sodimm 8GB max - 19v 3.3a round - Titan105 bios update -
|-
| <!--Name-->Sapphire Edge-HD3 || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->Radeon HD6320M with vga and hdmi || <!--Audio-->HDAudio with Realtek ALC662 codec || <!--USB-->USB2 || <!--Ethernet-->Realtek GbE1 || <!--Test Distro--> || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 AMD® Brazos E-450 with A45M - ddr3l so-dimm - 65W ac - Wireless is Realtek 8191SU WiFi (802.11n) or AzureWave (802.11bgn) -
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->Samsung Syncmaster Thin Client Display TC-W Series 24" LF24 TOWHBFM/EN TC220W LED LF22TOW HBDN/EN || <!--IDE-->{{N/A}} || <!--SATA-->8gb SSD || <!--Gfx-->{{Maybe| VESA mode only Radeon HD 6290}} || <!--Audio--> || <!--USB-->2 USB 2.0 || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->2012 64bit does not support AVX or SSE 4.1 thin Client C-50 C50 AMD® 1000 MHz and no wireless
|-
| <!--Name-->Advantech TPC-2140 thin client
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->{{Maybe|VESA }}
| <!--Audio-->
| <!--USB-->USB2
| <!--Ethernet-->{{Yes|Realtek}}
| <!--Test Distro-->
| <!--Comments-->2012 64bit does not support AVX or SSE 4.1 atom-like G-T56E 1.65Ghz up to SSE3, BGA413 soldered -
|-
| <!--Name-->CompuLab FIT-PC3 fitPC3 USFF PC AMD G-T56N || <!--IDE-->{{N/A}} || <!--SATA-->{{yes| }} || <!--Gfx-->RADEON HD 6320 || <!--Audio-->{{yes|HDAudio ALC888 codec}} || <!--USB-->{{yes| }} || <!--Ethernet-->{{yes|rtl8169 8111}} || <!--Test Distro--> || <!--Comments-->2012 64 bit does not support AVX or SSE 4.1 - 12v 3a - 2x sodimm DDR3 max 4GB - wifi rtl8188ce
|-
| <!--Name-->10Zig 6872 thin client
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->{{Maybe|VESA }}
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->{{Yes|Realtek}}
| <!--Test Distro-->
| <!--Comments-->2012 64bit does not support AVX or SSE 4.1 atom-like G-T56N up to SSE3 BGA413 (FT1) soldered - DDR3l single channel -
|-
| <!--Name-->10ZiG Technology 9972 1.6 GHz Linux 1.47 kg Black RX-216GD thin client
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->AMD Radeon 5E 3840 x 2160 @ 30Hz to 2560 x 1600 @ 60Hz 2 x Display Port
| <!--Audio-->
| <!--USB-->6 x USB2.0 2 x USB3.0
| <!--Ethernet-->{{Maybe|Realtek}}
| <!--Test Distro-->
| <!--Comments-->2016 64bit does support AVX or SSE 4.1 AMD RX-216TD - 1 ddr3 sodimm - 12V 4A Coax 5.5mm/2.1mm
|-
| <!--Name-->10ZiG 7800q thin client
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->AMD Radeon 5E 3840 x 2160 @ 30Hz to 2560 x 1600 @ 60Hz 2 x Display Port
| <!--Audio-->
| <!--USB-->6 x USB2.0 2 x USB3.0
| <!--Ethernet-->{{Maybe|Realtek}}
| <!--Test Distro-->
| <!--Comments-->2016 64bit does support AVX or SSE 4.1 AMD GX-424CC (Quad Core) 2.4GHz BGA769 (FT3b) - 1 ddr3 sodimm - 12V 4A Coax 5.5mm/2.1mm
|-
| <!--Name-->
*Itona VXL MZE12 AMD a4-5000 thin client
*VXL Itona LQ27 LQ+27 LQ44 LQ+44 LQ49 LQ+49 LQ50 LQ+50 LQ64 LQ+64 thin client
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->Ati 8330 vga hdmi dp
| <!--Audio-->
| <!--USB-->4 usb2 2 usb3
| <!--Ethernet-->Realtek
| <!--Test Distro-->
| <!--Comments-->2014 64bit quad BGA769 (FT3) soldered - 2 stacked sodimm ddr3 middle of mobo - 2 m.2 sata slots - 1 sata short cable half size space - limited 1ltr 8in case no fan - 19v hp style psu connector -
|-
| <!--Name-->Dell Wyse 5212 21.5" AIO Thin Client W11B
| <!--IDE-->{{N/A}}
| <!--SATA-->Sata
| <!--Gfx-->R3 out from DP or vga
| <!--Audio-->HDAudio
| <!--USB-->USB2
| <!--Ethernet-->Realtek
| <!--Test Distro-->
| <!--Comments-->2015 64bit slow atom like dual core AMD G-T48E 1.4 GHz - dell type round ac needed 90W 19.5V 4.62A - 21 inch 1080p screen -
|-
| <!--Name-->LG 24CK560N-3A 24' All-in-One Thin Client Monitor, 27CN650N-6N 27CN650W-AC 27', 34CN650W-AC 34',
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->2018 64bit AMD Prairie Falcon GX-212JJ
|-
| <!--Name-->CompuLab fit-PC4 fitPC4 4x 2Ghz AMD || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet-->{{no|Intel}} || <!--Test Distro--> || <!--Comments-->2018 64 - 2x DDR4 sodimm -
|-
| <!--Name-->IGEL Hedgehog M340C UD3 thin client
*2016 V1.0 AMD GX-412HC 1.2GHz-1.6GHz Radeon R3E, normal bios DEL for Bios or F12 boot selector
*2018 AMD GX-424CC 2.4GHz, Radeon R5E, UEFI hit DEL and choose boot or SCU icon
| <!--IDE-->{{N/A|}}
| <!--SATA-->SATA half slim version '''limited space''' with msata 8+18pins slot on earlier 2016 models
| <!--Gfx-->{{Maybe|VESA for Radeon R3E later R5E sea islands vulkan 1.2 with dvi dp output}}
| <!--Audio-->{{Yes|HD Audio with codec ?? (412) and Realtek ALC662-VD0-GR (424), both case speaker}}
| <!--USB-->amd usb3 boot usb2 with bios "disable usb" entry
| <!--Ethernet-->{{Yes|Realtek 8169 8111 (412) and (424)}}
| <!--Test Distro-->Aros One x86 USB 1.5, 1.8 and 2.2 but ArosOne 64bit 1.2 boot loop in usb2 port
| <!--Comments-->2016 64bit - 20cm/8" high case - 1 DDR3L sodimm slot max 8Gb 1600MHz - external '''12V 3A''' supply with 5.5mm/2.1mm coaxial - IDE like interface under base stand is for legacy addon ports RS232 parallel etc - capacitive touch power on - case opening 3 stages, remove stand and narrow black plastic strip from the back, top cover slides off to the back and lifts off -
|-
| <!--Name--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Test Distro--> || <!--Comments-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->10ZiG 6148v 6048qv (6100 series)
| <!--IDE-->{{N/A}}
| <!--SATA-->{{maybe| }}
| <!--Gfx-->
| <!--Audio-->{{maybe| }}
| <!--USB-->{{No| }}
| <!--Ethernet-->{{maybe| }}
| <!--Test Distro-->
| <!--Comments-->2018 64bit AMD Ryzen V1202B
|-
| <!--Name-->10ZiG 7111q
| <!--IDE-->{{N/A}}
| <!--SATA-->{{maybe| }}
| <!--Gfx-->
| <!--Audio-->{{maybe| }}
| <!--USB-->{{maybe| }}
| <!--Ethernet-->{{maybe| }}
| <!--Test Distro-->
| <!--Comments-->2019 64bit AMD Ryzen R2514 2.1 GHz -
|-
| <!--Name-->Shuttle DA320
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->R3 R5
| <!--Audio-->HD Audio with ALC662 codec
| <!--USB-->{{maybe| }}
| <!--Ethernet-->dual realtek 1GbE 8111H
| <!--Test Distro-->
| <!--Opinion-->2017 64bit AMD 2200G 2400G - Robust metal 1.3-liter case - A320 chipset DDR4 - 19V 6.32A DC PSU -
|-
| <!--Name-->IGEL UD7 H850C around december 2019 '''AMD Secure Processor''' is a built-in dedicated security system that checks if the BIOS has a valid signature and thus secures the next step in the boot process. This ensures that only devices with a signed BIOS will boot
| <!--IDE-->{{N/A}}
| <!--SATA-->None but 8gb emmc
| <!--Gfx-->Vega 3
| <!--Audio-->HD Audio with Realtek ALC897 or ALC888S codec
| <!--USB-->USB 3.2 and 2.0
| <!--Ethernet-->1GbE
| <!--Test Distro-->
| <!--Comments-->2018 64bit - AMD Ryzen™ Dual-Core 10W TDP - 2 DDR4 sodimms slots max 16Gb - 12V 4A psu - 2x DisplayPort 1.2 no dvi or hdmi - Intel® 9260 or SparkLAN WNFT-238AX wifi - 1x rear serial Prolific PL2303 chipset - locked down components and very limited expansion options
|-
| <!--Name-->IGEL UD7 H860C - '''AMD Secure Processor''' is a built-in dedicated security system that checks if the BIOS has a valid signature and thus secures the next step in the boot process. This ensures that only devices with a signed BIOS will boot
| <!--IDE-->{{N/A}}
| <!--SATA-->None but 8gb emmc
| <!--Gfx-->Vega 3
| <!--Audio-->HD Audio with Realtek ALC897 or ALC888S codec
| <!--USB-->USB 3.2 and 2.0
| <!--Ethernet-->1GbE
| <!--Test Distro-->
| <!--Comments-->2018 64bit - AMD Ryzen™ Dual-Core 10W TDP - 2 DDR4 sodimms slots max 16Gb - 12V 4A psu - 2x DisplayPort 1.2 no dvi or hdmi - Intel® 9260 or SparkLAN WNFT-238AX wifi - 1x rear serial Prolific PL2303 chipset - locked down components and very limited expansion options
|-
| <!--Name-->IGEL UD3 M350C (UEFI issues)
| <!--IDE-->{{N/A}}
| <!--SATA-->None but 8gb emmc
| <!--Gfx-->Vega 3
| <!--Audio-->HD Audio with Realtek ALC897 or ALC888S codec
| <!--USB-->USB 3.2 and 2.0
| <!--Ethernet-->1GbE
| <!--Test Distro-->
| <!--Comments-->2018 64bit - AMD Ryzen™ R R1505G Dual-Core 10W TDP - 2 DDR4 sodimms slots max 16Gb - 12V 4A psu - 2x DisplayPort 1.2 no dvi or hdmi - Intel® 9260 or SparkLAN WNFT-238AX wifi - 1x rear serial Prolific PL2303 chipset - locked down components and very limited expansion options
|-
| <!--Name-->IGEL UD7 H860C AMD Ryzen V1605B Thin Client - '''AMD Secure Processor''' is a built-in dedicated security system that checks if the BIOS has a valid signature and thus secures the next step in the boot process. This ensures that only devices with a signed BIOS will boot
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->HDAudio
| <!--USB-->{{maybe| }}
| <!--Ethernet-->1GbE
| <!--Test Distro-->
| <!--Comments-->2020 AMD Ryzen™ Embedded V1605B 2 – 3.6 GHz (Quad-Core) - 12v 5A psu - up to 16GB RAM DDR4 - locked down components and very limited expansion options
|-
| <!--Name-->Gigabyte Brix Barebone Mini PC BSRE-1605
| <!--IDE-->{{N/A}}
| <!--SATA-->2 M.2
| <!--Gfx-->Vega 8
| <!--Audio-->HD Audio ALC269 codec
| <!--USB-->USB3
| <!--Ethernet-->2 GbE
| <!--Test Distro-->
| <!--Comments-->2020 64bit AMD Ryzen V1605B - 2 DDR4 sodimm slots
|-
| <!--Name-->MINISFORUM Deskmini UM250 Mini PC
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->{{maybe| }}
| <!--Ethernet-->{{maybe| }}
| <!--Test Distro-->
| <!--Comments-->2020 64bit AMD Ryzen V1605B -
|-
| <!--Name-->T-Bao MN25 Mini PC 2500U
| <!--IDE-->{{N/A| }}
| <!--SATA-->{{Unk|Intel NVMe}}
| <!--Gfx-->{{No|VESA Radeon Vega 8}}
| <!--Audio-->{{Unk| }}
| <!--USB-->{{maybe|USB 3}}
| <!--Ethernet-->{{Yes|Realtek PCIe 1GbE}}
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->Atari VCS || <!--IDE-->{{N/A}} || <!--SATA--> || <!--Gfx-->{{maybe|Vesa 2D for AMD Vega 3}} || <!--Audio-->{{unk|HDAudio with ALC codec}} || <!--USB-->{{maybe|USB3 USB 3.2 Gen 2 front and 3 usb2 rear }} || <!--Ethernet-->rtl8169 Realtek RTL8111H || <!--Test Distro--> || <!--Comments-->2021 64bit Ryzen Embedded R1606G - 2 ddr4 sodimm slots - TPM 2.0 -
|-
| <!--Name-->Minis Forum M200 Silver Athlon M300 3300U
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->Vega 8
| <!--Audio-->
| <!--USB-->{{maybe|USB 3.1 gen 1 and 2}}
| <!--Ethernet-->{{No|Realtek PCIe 2.5G}}
| <!--Test Distro-->
| <!--Comments-->2021 64bit
|-
| <!--Name-->Minis Forum DeskMini UM300 3300U, UM350 DMAF5 3550H, UM370 and UM700 with 3750H
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->Vega 8
| <!--Audio-->
| <!--USB-->{{maybe|USB 3.1 gen 1 and 2}}
| <!--Ethernet-->{{No|Realtek PCIe 2.5G}}
| <!--Test Distro-->
| <!--Comments-->2021 64bit
|-
| <!--Name-->MinisForum X300 with AMD 3400G
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->Vega 8
| <!--Audio-->
| <!--USB-->{{maybe|USB 3.1 gen 1 and 2}}
| <!--Ethernet-->{{No|Realtek PCIe 2.5G}}
| <!--Test Distro-->
| <!--Comments-->2021 64bit
|-
| <!--Name-->Beelink SER3 GTR4
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->AMD Vega 3 or 10
| <!--Audio-->HD Audio with codec
| <!--USB-->{{maybe|USB3}}
| <!--Ethernet-->Realtek RJ45 1GbE
| <!--Test Distro-->
| <!--Comments-->2020 64bit 3200u or 3750h
|-
| <!--Name-->AsRock DeskMini X300
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->2020 Ryzen 7 Pro 4750G 5600G
|-
| <!--Name-->MinisForum Besstar Tech X400 with AMD 4650G
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->AMD
| <!--Audio-->
| <!--USB-->{{maybe|USB 3.1 gen 1 and 2}}
| <!--Ethernet-->{{No|Realtek PCIe 2.5G}}
| <!--Test Distro-->
| <!--Comments-->2021 64bit - MP1584 - kill NB679 NB679GD-Z=ALTM=AL** QFN-12 IC-REG-DL buck/linear synchronous chip IC with bad usb cables -
|-
| <!--Name-->Beelink SER4 GTR5
| <!--IDE-->{{N/A}}
| <!--SATA-->cant boot from installed SSDs unless its an M.2
| <!--Gfx-->AMD Vega
| <!--Audio-->
| <!--USB-->{{maybe|USB3}}
| <!--Ethernet-->1 or 2 Realtek
| <!--Test Distro-->
| <!--Comments-->2021 64bit 4700U or 5900HX
|-
| <!--Name-->MSI PRO DP20Z 5M Mini PC - AMD Ryzen 5 5300G
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->{{No|Realtek 2.5G LAN RTL8125}}
| <!--Test Distro-->
| <!--Comments-->2018-2021 R3 3200G Vega 8 - R5 3400G Vega 11 - Ryzen 5 5600G Vega 7 - Athlon 3000G
|-
| <!--Name-->Minisforum UM450
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->Vega
| <!--Audio-->HDaudio
| <!--USB-->USB3
| <!--Ethernet-->{{No|Realtek 2.5G LAN RTL8125}}
| <!--Test Distro-->
| <!--Comments-->2022 64bit - Ryzen 4500U -
|-
| <!--Name-->Gigabyte Brix
GB-BRR7-4800 (rev. 1.0)
GB-BRR7-4700 (rev. 1.0)
GB-BRR5-4500 (rev. 1.0)
GB-BRR3-4300 (rev. 1.0)
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->{{maybe|}}
| <!--Ethernet-->Realtek 2.5G LAN RTL8125
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->ASUS PN50 mini PC AMD Ryzen 7 4700U
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Vega
| <!--Audio-->HD audio with codec
| <!--USB-->{{maybe|3.1 gen1}}
| <!--Ethernet-->{{No|realtek 2.5GbE}}
| <!--Test Distro-->
| <!--Comments-->2022 64bit -
|-
| <!--Name-->ASUS PN51-S1 mini PC AMD Ryzen 7 5700U
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->Vega thru dp or hdmi
| <!--Audio-->HD audio with codec
| <!--USB-->{{maybe|3.1 gen1}}
| <!--Ethernet-->{{No|realtek 2.5GbE}}
| <!--Test Distro-->
| <!--Comments-->2022 64bit - 19v or 19.5v 90w psu round barrel - 32gb ddr4 sodimm -
|-
| <!--Name-->Minis Forum Bessstar Tech EliteMini B550
| <!--IDE-->{{N/A}}
| <!--SATA-->1 x 2.5in and 2 nvme
| <!--Gfx-->Vega 8
| <!--Audio-->
| <!--USB-->{{maybe|4 usb3.1}}
| <!--Ethernet-->{{No|realtek 8125 2.5GbE}}
| <!--Test Distro-->
| <!--Comments-->2022 64bit AMD 4700G 5700G desktop cpu - 19v 120w round barrel -
|-
| <!--Name-->ASRock A300 and later X300 Mini itx with Desktop AM4 socket
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->Vega
| <!--Audio-->HDAudio
| <!--USB-->USB3
| <!--Ethernet-->1GbE
| <!--Test Distro-->
| <!--Comments-->2022 64bit - choose your own AMD APU GE 35w based - DDR4 -
|-
| <!--Name-->ASRock 4x4 BOX-5800U Zen 3-based AMD Ryzen 7 5800U 15W -
| <!--IDE-->{{N/A}}
| <!--SATA-->m.2 slot gen 3 and sata
| <!--Gfx-->vega
| <!--Audio-->HD audio with codec
| <!--USB-->{{maybe|}}
| <!--Ethernet-->{{Maybe|1 GbE and 1 2.5GbE}}
| <!--Test Distro-->
| <!--Comments-->2022 64bit - WiFi 6E -
|-
| <!--Name-->Topton S500+ Gaming Mini PC - Morefine S500+ 5900HX Mini PC - Minisforum UM590 Ryzen AMD Zen3 Ryzen 9 5900HX 7 5800H 45W -
| <!--IDE-->{{N/A}}
| <!--SATA-->2 nvme 1 sata
| <!--Gfx-->Vega 8 thru HDMI 2.0, DP 1.4, and USB type-C
| <!--Audio-->
| <!--USB-->{{maybe|usb3.1}}
| <!--Ethernet-->{{Maybe|1 realtek rtl 8111h and 1 8125 2.5GbE bg-cg}}
| <!--Test Distro-->
| <!--Comments-->2022 64bit - 2 sodimm ddr4 3200MHz -
|-
| <!--Name-->Chuwi RzBox later Ubox
| <!--IDE-->{{N/A}}
| <!--SATA-->2 nvme
| <!--Gfx-->Vega 8 later to 660m vga, dp, hdmi
| <!--Audio-->HDaudio
| <!--USB-->{{maybe|usb-c usb2}}
| <!--Ethernet-->dual gigabit
| <!--Test Distro-->
| <!--Comments-->2022 2025 64bit amd 5800h 4800h 6600H - 90w psu -
|-
| <!--Name-->Beelink Mini PC SER5, Trigkey AZW S5, Asus PN52, ZHI BEN MX-JB560,
| <!--IDE-->{{N/A}}
| <!--SATA-->PCIe3 M.2 2280 nvme
| <!--Gfx-->AMD Vega 6 with 1 or 2 hdmi
| <!--Audio-->HDAudio
| <!--USB-->{{maybe|USB3.0}}
| <!--Ethernet-->{{Maybe|Realtek 1GbE}}
| <!--Test Distro-->
| <!--Comments-->2022 64bit 5500U 5560u 5600U to PRO 5600H 5800H - 19v 3.42W 65W psu -
|-
| <!--Name-->NIPOGI Kamrui ACEMAGICIAN AM06PRO Dual LAN Mini PC AMD Ryzen 7 5800U, 5 5500U or 5600U/5625U
| <!--IDE-->{{N/A}}
| <!--SATA-->M.2 and 2.5in sata
| <!--Gfx-->Vega 7
| <!--Audio-->HDAudio
| <!--USB-->USB3
| <!--Ethernet-->2 GbE ports
| <!--Test Distro-->
| <!--Comments-->2022 64bit - plastic build - 90w usb-c power - loud at 25W setting -
|-
| <!--Name-->Topton FU02 Fanless Mini PC AMD Ryzen 7 4700U 5600U 5800U 8 Core 16 Threads
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe and 2.5in sata
| <!--Gfx-->Vega
| <!--Audio-->HDAudio
| <!--USB-->4 3.0 with 2 2.0
| <!--Ethernet-->2 x 1G
| <!--Test Distro-->
| <!--Comments-->2022 64 - 2 ddr4 sodimm slots - fanless with copper cube from cpu to metal sheet which gets warm
|-
| <!--Name-->Xuu XR1 Lite (5300u 4c 8t) PRO 5400U MAX 5600U
| <!--IDE-->{{N/A}}
| <!--SATA-->1 NVMe 2242 slot
| <!--Gfx-->Vega 6
| <!--Audio-->HDAudio
| <!--USB-->2 3.0
| <!--Ethernet-->1G
| <!--Test Distro-->
| <!--Comments-->2022 64 quiet fan - very small case no expansions -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->MINISFORUM UM690 Venus Series
| <!--IDE-->{{N/A}}
| <!--SATA-->pcie4 nvme 2280 and 1 sata3 2.5in
| <!--Gfx-->680m RNDA2 12CU with 2 hdmi
| <!--Audio-->HD Audio with codec
| <!--USB-->{{maybe|1 USB4 and 2 USB3.2}}
| <!--Ethernet-->{{No|2.5G LAN}}
| <!--Test Distro-->
| <!--Comments-->2022 64bit 6900hx 8C16T - 2 ddr5 sodimmm - 19v ???W -
|-
| <!--Name-->Beelink Mini PC GTR6
| <!--IDE-->{{N/A}}
| <!--SATA-->PCIe4
| <!--Gfx-->AMD 680M RDNA2
| <!--Audio-->
| <!--USB-->USB3.2
| <!--Ethernet-->{{No|Realtek 2.5GbE or intel i225}}
| <!--Test Distro-->
| <!--Comments-->2022 64bit Ryzen 9 6900HX Zen3+ and a 2gb Radeon 680m 12CU ddr5 sodimm - 19v 120w psu -
|-
| <!--Name-->Asus PN53, Geekom AS 6,
| <!--IDE-->{{N/A}}
| <!--SATA-->pcie gen4 nvme and ata 2.5in
| <!--Gfx-->680m RNDA2 12CU with 2 hdmi and 1 dp
| <!--Audio-->HD Audio with codec
| <!--USB-->{{maybe|2 usb-c, 2 USB2.1 and 3 USB3.2}}
| <!--Ethernet-->{{No|1G LAN}}
| <!--Test Distro-->
| <!--Comments-->2022 64bit 6900hx 8C 16T - 2 slots ddr5 sodimmm (64Gb max) - 19v 120W - 4 retained base screws beware ribbon cable -
|-
| <!--Name-->Micro Computer (HK) Tech Ltd MinisForum UM773 Lite later UM750L slim, GMKtec K2 Mini PC
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe PCIe4.0
| <!--Gfx-->RDNA
| <!--Audio-->HD Audio
| <!--USB-->USB4
| <!--Ethernet-->2.5GbE
| <!--Test Distro-->
| <!--Comments-->2023 2025 64bit - AMD Zen 3+ (8c 16t) Ryzen 7 7735HS, 7840HS and AMD Ryzen 9 7845HX AMD Ryzen™5 7545U (6c12t) - 19v up to 120w ac adapter - ddr5 sodimm 4800Mhz -
|-
| <!--Name-->[https://www.asrockind.com/en-gb/4x4 ASrock 4x4 SBC]
| <!--IDE-->{{N/A}}
| <!--SATA-->sata or nvme
| <!--Gfx-->Vega or 680M
| <!--Audio-->HDAudio
| <!--USB-->USB3 or USB4
| <!--Ethernet-->Realtek 1GbE or intel 2.5GbE
| <!--Test Distro-->
| <!--Comments-->2022 64bit -
|-
| <!--Name-->Beelink Mini PC GTR7 SER7
| <!--IDE-->{{N/A}}
| <!--SATA-->PCIe4 nvme 2280 up to 2Tb
| <!--Gfx-->AMD 780M RDNA3 GPU output on hdmi and dp
| <!--Audio-->HDAudio
| <!--USB-->USB3.2
| <!--Ethernet-->{{No|1 or 2 2.5GbE}}
| <!--Test Distro-->
| <!--Comments-->2023 64bit AMD Phoenix APUs Zen 4 CPU Ryzen 7 7840HS or 9 7940HS (8c 16t) - 19v 5.26A 120w psu - del dios setup f7 choose boot - 2 usb-c on back - up to 64gb via 2 ddr5 sodimm slots -
|-
| <!--Name-->MINISFORUM BD770i Ryzen 7 7745HX (8c16t) or BD795i SE 790i 9 7945HX (16c32t) or F1FXM_MB_V1.1 795M LGA1700 mATX
| <!--IDE-->{{N/A}}
| <!--SATA-->2 NVMe
| <!--Gfx-->Radeon 610m over usb-c, dp or hdmi
| <!--Audio-->HDAudio with codec
| <!--USB-->USB3 with 2 rear USB2
| <!--Ethernet-->Realtek 2.5G
| <!--Test Distro-->
| <!--Opinion-->2024 mini-ITX M/B is the first MoDT (Mobile on Desktop) with soldered AMD CPU - 2 dual PCIe4.0 M.2 slots - 2 ddr5 sodimm slots max 5200Mhz - 8pin cpu power - battery not easily replaceable underneath -
|-
| <!--Name-->Minisforum ms-a1 MS-a2
* 5700G to 8700G apu
* 9955HX
| <!--IDE-->{{N/A}}
| <!--SATA-->2 nvme
| <!--Gfx-->AMD 610M
| <!--Audio-->HDAudio
| <!--USB-->USB3
| <!--Ethernet-->dual 2.5GbE
| <!--Test Distro-->
| <!--Comments-->2024 64bit - 19v ?A round barrel jack - 2 ddr5 so-dimm slots -
|-
| <!--Name-->AOOSTAR GT68
| <!--IDE-->{{N/A}}
| <!--SATA-->Nvme
| <!--Gfx-->680m
| <!--Audio-->HDaudio
| <!--USB-->USB3
| <!--Ethernet-->2 2.5Gb
| <!--Test Distro-->
| <!--Comments-->2025 Ryzen7 Pro 6850H,
|-
| <!--Name-->NextSBC 7840HS
| <!--IDE-->{{N/A}}
| <!--SATA-->Nvme
| <!--Gfx-->AMD 780M 12CU
| <!--Audio-->HDAudio with codec
| <!--USB-->USB4 and USB 3.2
| <!--Ethernet-->2 GbE
| <!--Test Distro-->
| <!--Comments-->2025 64bit - 32Gb soldered -
|-
| <!--Name-->Firebat A6 R7 6800H
| <!--IDE-->{{N/A}}
| <!--SATA-->nvme
| <!--Gfx-->AMD 680M
| <!--Audio-->HDaudio
| <!--USB-->USB3
| <!--Ethernet-->rtl8169
| <!--Test Distro-->
| <!--Comments-->2025 64bit -
|-
| <!--Name-->Minisforum UM760 7640HS
| <!--IDE-->{{N/A}}
| <!--SATA-->nvme
| <!--Gfx-->AMD 760
| <!--Audio-->HDaudio
| <!--USB-->USB4
| <!--Ethernet-->rtl8169 and 2.5Gb
| <!--Test Distro-->
| <!--Comments-->2025 64bit -
|-
| <!--Name-->Peladn WO4 Mini PC
| <!--IDE-->{{N/A}}
| <!--SATA-->nvme
| <!--Gfx-->AMD 760
| <!--Audio-->HDaudio
| <!--USB-->USB3
| <!--Ethernet-->rtl8169
| <!--Test Distro-->
| <!--Comments-->2025 64bit 7640HS - 19v 5.26A 120W -
|-
| <!--Name-->BossGame M4 Neo 7840HS
| <!--IDE-->{{N/A}}
| <!--SATA-->nvme
| <!--Gfx-->AMD 780
| <!--Audio-->HDaudio
| <!--USB-->USB3
| <!--Ethernet-->rtl8169
| <!--Test Distro-->
| <!--Comments-->2025 64bit -
|-
| <!--Name-->Minisforum UM870 || <!--IDE-->{{N/A}} || <!--SATA-->NVme || <!--Gfx-->AMD 780M || <!--Audio-->HDaudio || <!--USB-->USB3 || <!--Ethernet-->2.5GbE || <!--Test Distro--> || <!--Comments-->2025 64bit -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || IDE || SATA || Gfx || Audio || USB || Ethernet || Test Distro || Comments
|-
| <!--Name-->GEEKOM A8 Max AI Mini PC AMD Ryzen™ 9 8945HS, Ryzen™ 7 8845HS or 8745HS
| <!--IDE-->{{N/A}}
| <!--SATA-->NVme
| <!--Gfx-->AMD 780M
| <!--Audio-->HDAudio with codec
| <!--USB-->{{maybe| USB4}}
| <!--Ethernet-->{{No|Dual 2.5 G Ethernet ports}}
| <!--Test Distro-->
| <!--Comments-->2025 64bit -
|-
| <!--Name-->Beelink SER 9
| <!--IDE-->{{N/A}}
| <!--SATA-->NVme
| <!--Gfx-->Radeon 890M
| <!--Audio-->HDaudio
| <!--USB-->USB4
| <!--Ethernet-->{{No| }}
| <!--Test Distro-->
| <!--Comments-->2025 64bit - Ryzen AI HX 370 strix point -
|-
| <!--Name-->GMKtec EVO-X2 mini pc
| <!--IDE-->{{n/a}}
| <!--SATA-->nvme
| <!--Gfx-->AMD 8060S iGPU RDNA3.5 RADV GFX1151
| <!--Audio-->HDaudio
| <!--USB-->USB4
| <!--Ethernet-->{{No| }}
| <!--Test Distro-->
| <!--Comments-->2025 64bit - amd ryzen AI Max+ 395 (16c32t) strix halo -
|-
| <!--Name-->BosGame M5
| <!--IDE-->{{n/a}}
| <!--SATA-->nvme
| <!--Gfx-->AMD 8060S iGPU RDNA3.5 RADV GFX1151
| <!--Audio-->HDaudio
| <!--USB-->USB4
| <!--Ethernet-->{{No| }}
| <!--Test Distro-->
| <!--Comments-->2025 64bit - amd ryzen AI Max+ 395 (16c32t) -
|-
| <!--Name-->Steam Machine GabeCube
| <!--IDE-->{{N/A}}
| <!--SATA-->nvme
| <!--Gfx-->semi-custom 1080p amd 7600m like with 28cu 8gb ddr6 gddr 10GFlops
| <!--Audio-->hdaudio with codec
| <!--USB-->usb3
| <!--Ethernet-->{{maybe|rtl8169}}
| <!--Test Distro-->
| <!--Comments-->2026 64bit amd 1772 hawk point2 6c12t zen4 avx512 FP7 socket with FCH51 - 16gb ddr5 -
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|}
===Server Systems===
[[#top|...to the top]]
====IBM====
{| class="wikitable sortable" width="100%"
! width="15%" |Name
! width="5%" |IDE
! width="5%" |SATA
! width="10%" |Integrated Gfx
! width="10%" |Audio
! width="10%" |USB
! width="10%" |Ethernet
! width="15%" |Test Distro
! width="20%" |Comments
|-
| <!--Name-->xSeries 206m
| <!--IDE-->{{yes}}
| <!--SATA-->{{yes}}
| <!--Gfx-->{{Maybe|ATI RN50b (VESA only)}}
| <!--Audio-->{{n/a}}
| <!--USB-->{{yes|USB 2.0 (UHCI/EHCI)}}
| <!--Ethernet-->{{no|Broadcom}}
| <!--Test Distro-->Nightly Build 2014-09-27
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
|}
===Motherboard===
[[#top|...to the top]]
* Late 2002, USB2.0 added and slightly better AROS sound support (AC97) appeared
* 2002-2005 and still, to a limited extent, ongoing [http://en.wikipedia.org/wiki/Capacitor_plague bad capacitors]
* Late 2003, ATX PSUs moved from 5V to 12v rails (extra 4pin on motherboard for CPU)
* Late 2005, PCI Express replaced AGP and HDAudio replaced AC97
* Late 2007, ATX PSUs added extra 12V PCI-E connectors and 4+4pin for CPUs
* Late 2010, USB3.0 appears on motherboards or needing a PCI-E motherboard slot
* Late 2014 Hardware USB2 removed from USB3 chipsets
====AMD Sockets====
[[#top|...to the top]]
=====Socket 7 (1997/1999)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->1997 VT82C586B (QFP-208) is the first from VIA with DDMA
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2000 VT82C686 has close to excellent DDMA support
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->SiS 5581/5582
SiS 5591/5595
SiS 530 /5595
SiS 600/5595
SiS 620/5595
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|}
=====Socket A 462 (2001/4)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->[http://www.sharkyextreme.com/hardware/motherboards/article.php/2217921/ABIT-NF7-S-nForce2-Motherboard-Review.htm Abit NF7-S]
| <!--Chipset-->nForce 2
| <!--ACPI-->
| <!--IDE-->2 ports
| <!--SATA-->SIL 3112A
| <!--Gfx-->
| <!--Audio-->{{yes|ALC650 AC97 (Nvidia APU)}}
| <!--USB-->{{yes}}
| <!--Ethernet-->Realtek RTL 8201LB
| <!--Opinion-->Firewire Realtek RTL8801B
|-
| <!--Name-->ASRock K7NF2
| <!--Chipset-->nforce2 ultra 400
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->{{yes|AGP 8x}}
| <!--Audio-->CMedia CMI 9761A AC'97
| <!--USB-->{{yes}}
| <!--Ethernet-->Realtek 8201
| <!--Opinion-->
|-
| <!--Name-->ASRock K7S8X
| <!--Chipset-->SIS 746FX
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->
| <!--Gfx-->{{yes|AGP 8x}}
| <!--Audio-->{{yes|AC'97 cmedia}}
| <!--USB-->{{maybe|USB2.0 works but does not boot}}
| <!--Ethernet-->{{yes|SiS900}}
| <!--Opinion-->
|-
| <!--Name-->ASRock K7S41GX
| <!--Chipset-->SIS 741GX + DDR 333
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->
| <!--Gfx-->{{maybe|onboard sis does not work with vga or vesa but AGP 8x works}}
| <!--Audio-->{{yes|AC97 SIS 7012}}
| <!--USB-->{{maybe|USB2.0 works but does not boot}}
| <!--Ethernet-->{{yes|SiS 900}}
| <!--Opinion-->works ok
|-
| <!--Name-->[http://www.asus.com ASUS A7N8X]
| <!--Chipset-->nForce2
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->Silicon Image Sil 3112A
| <!--Gfx-->1 AGP slot
| <!--Audio-->{{yes|ac97 ALC650}}
| <!--USB-->{{yes|ehci USB2.0}}
| <!--Ethernet-->{{yes|rtl8201BL - nforce}}
| <!--Opinion-->first total support for AROS in 2004/5 - damocles and M Schulz
|-
| <!--Name-->Biostar M7NCD
| <!--Chipset-->nForce2 Ultra 400
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->{{yes|ALC650 AC97}}
| <!--USB-->
| <!--Ethernet-->{{yes|RTL8201BL}}
| <!--Opinion-->
|-
| <!--Name-->Chaintech 7NJS Ultra Zenith
| <!--Chipset-->nForce2 Ultra 400
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->Promise PDC 20376
| <!--Gfx-->
| <!--Audio-->{{yes|CMI8738}}
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->DFI Lanparty NF2 Ultra
| <!--Chipset-->nForce2 Ultra 400
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->{{no|via ac97 VT1616}}
| <!--USB-->
| <!--Ethernet-->RTL8139C
| <!--Opinion-->
|-
| <!--Name-->ECS N2U400-A
| <!--Chipset-->nForce2 Ultra 400
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->{{no|Cmedia 9379A AC97}}
| <!--USB-->{{yes|usb2.0}}
| <!--Ethernet-->{{no|VIA VT6103L}}
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA7N400L
| <!--Chipset-->nForce2 Ultra 400
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->1 AGP 8x slot
| <!--Audio-->{{yes|AC97 ALC650}}
| <!--USB-->2 USB2.0
| <!--Ethernet-->RTL8100C
| <!--Opinion-->
|-
| <!--Name-->[http://www.gigabyte.lv/products/page/mb/ga-8siml Gigabyte 8SIML]
| <!--Chipset-->SIS 650
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->
| <!--Gfx-->{{maybe|VESA}}
| <!--Audio-->{{yes|AC'97}}
| <!--USB-->{{maybe|working}}
| <!--Ethernet-->{{no|Realtek RTL8100L LAN}}
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Matsonic [http://www.elhvb.com/mobokive/archive/matsonic/manual/index.html Manuals] MS83708E
| <!--Chipset-->SIS730
| <!--ACPI-->
| <!--IDE-->{{yes|SiS 5513}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->{{maybe|sis 305 no support use VESA}}
| <!--Audio-->{{no|sis7018}}
| <!--USB-->{{no|SiS 7001 USB 1.1 only}}
| <!--Ethernet-->{{yes|SIS900}}
| <!--Opinion-->little support
|-
| <!--Name-->[http://h10025.www1.hp.com/ewfrf/wc/document?docname=bph07585&lc=en&dlc=en&cc=us&dest_page=softwareCategory&os=228&tool=softwareCategory&query=Pavilion%20742n&product=89232 MSI MS-6367 HP 722n 742n (Mambo) (2001/2)]
| <!--Chipset-->Nvidia nforce 220D (2001/2)
| <!--ACPI-->
| <!--IDE-->{{Yes}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->GeForce2 AGP works 2D nouveau only
| <!--Audio-->{{Maybe|AC97 ADI 1885 no volume control on Units 0-3}}
| <!--USB-->{{Yes|4 USB1.1 ports AMD based - front 2 ports iffy}}
| <!--Ethernet-->{{No|nForce}}
| <!--Opinion-->Tested 20th Aug 2012 NB
|-
| <!--Name-->MSI K7N2 [http://us.msi.com/index.php?func=proddesc&maincat_no=1&prod_no=546/ Delta ILSR] Delta-L
| <!--Chipset-->nForce2 (2002/3)
| <!--ACPI-->
| <!--IDE-->{{yes|Primary & Secondary ports}} IDE Tertiary port (RAID)
| <!--SATA-->2 ports (RAID)
| <!--Gfx-->{{yes|when fitted with an agp video card}}
| <!--Audio-->{{yes|ac97 ALC650}}
| <!--USB-->{{yes}}
| <!--Ethernet-->{{yes|rtl8201BL - nforce}}
| <!--Opinion-->runs AROS well. Tested with Icaros 1.2.3
|-
| <!--Name-->MSI K7N2 Delta2-LSR Platinum
| <!--Chipset-->nForce2 (2002/3)
| <!--ACPI-->
| <!--IDE-->{{yes|Primary & Secondary ports}} IDE Tertiary port (RAID)
| <!--SATA-->2 ports (RAID)
| <!--Gfx-->{{yes|when fitted with an agp video card}}
| <!--Audio-->{{No|ac97 ALC655}}
| <!--USB-->{{yes}}
| <!--Ethernet-->{{yes|rtl8201BL - nforce}}
| <!--Opinion-->runs AROS well. Tested with Icaros 1.2.3
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->[http://www.sharkyextreme.com/hardware/motherboards/article.php/2204281/Soltek-SL-75MRN-L-nForce2-Motherboard-Review.htm Soltek 75FRN-L]
| <!--Chipset-->nForce2
| <!--ACPI-->
| <!--IDE-->{{yes|2 ports}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->AGP slot
| <!--Audio-->{{yes|ALC650}}
| <!--USB-->{{yes|2 usb2.0}}
| <!--Ethernet-->{{yes|Realtek RTL8201BL}}
| <!--Opinion-->good support
|-
| <!--Name-->[http://www.3dvelocity.com/reviews/mach4nf2ultra/mach4.htm XFX Pine Mach4 nForce2 Ultra 400]
| <!--Chipset-->nForce2
| <!--ACPI-->
| <!--IDE-->{{yes|3 ports}}
| <!--SATA-->{{maybe|2 ports VIA VT6240}}
| <!--Gfx-->1 AGP 8x slot
| <!--Audio-->{{yes|ALC650}}
| <!--USB-->{{yes|2 USB2.0}}
| <!--Ethernet-->{{yes|RTL8201BL}}
| <!--Opinion-->some support
|-
| <!--Name-->ASUS A7V266
| <!--Chipset-->via KT266A + 8233
| <!--ACPI-->
| <!--IDE-->{{no|issues}}
| <!--SATA-->
| <!--Gfx-->1 AGP slot
| <!--Audio-->AC97 with AD1980 codec
| <!--USB-->via 8233
| <!--Ethernet-->VIA VT6103
| <!--Opinion-->2002 issues with booting
|-
| <!--Name-->Asus A7V8X-X
| <!--Chipset-->VIA KT400
| <!--ACPI-->
| <!--IDE-->{{unk| }}
| <!--SATA-->{{N/A}}
| <!--Gfx-->{{yes|agp}}
| <!--Audio-->{{unk|AC97 with ADI AD1980 codec}}
| <!--USB-->{{unk|VIA 8235}}
| <!--Ethernet-->{{unk|Realtek 10/100}}
| <!--Opinion-->2003 not booting for Socket A for AMD Barton/Thoroughbred/Athlon XP/Athlon/Duron 2.25+ GHz CPU - 3 x DDR DIMM Sockets Max. 3 GB -
|-
|}
=====Socket 754 (2004/5)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->Abit NF8-V2
| <!--Chipset-->nForce3 250GB (2004/5)
| <!--ACPI-->
| <!--IDE-->{{yes|2 ports}}
| <!--SATA-->{{maybe|2 ports}}
| <!--Gfx-->1 AGP slot x8
| <!--Audio-->ALC658 ac97
| <!--USB-->{{yes|2 USB2.0}}
| <!--Ethernet-->{{no|RTL8201C}}
| <!--Opinion-->a little support but no Firewire VIA VT6306
|-
| <!--Name-->Biostar CK8 K8HNA Pro
| <!--Chipset-->nforce3 150
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->VT6420 thru ide legacy only
| <!--Gfx-->
| <!--Audio-->{{no|AC97 ALC655}}
| <!--USB-->
| <!--Ethernet-->Realtek RTL8110S
| <!--Opinion-->Firewire VT6307 no
|-
| <!--Name-->[http://www.extremeoverclocking.com/reviews/motherboards/Chaintech_ZNF3-150_3.html Chaintech ZNF3-150 Zenith]
| <!--Chipset-->nforce3 150
| <!--ACPI-->
| <!--IDE-->2 ports
| <!--SATA-->{{maybe|Sli3114 SATA via IDE emul}}
| <!--Gfx-->1 AGP slot
| <!--Audio-->{{no|VIA Envy24PT (VT1720) + VT1616}}
| <!--USB-->{{Maybe|2 USB2.0}}
| <!--Ethernet-->{{no|Broadcom GbE 5788}}
| <!--Opinion-->very little support needs PCI cards but no Firewire VIA VT6306
|-
| <!--Name-->DFI Lanparty UT nF3 250GB
| <!--Chipset-->nForce3 250gb
| <!--ACPI-->
| <!--IDE-->2 ports
| <!--SATA-->{{maybe|2 ports nForce3 and 2 Marvell SATA PHY}}
| <!--Gfx-->
| <!--Audio-->{{yes|AC97 ALC850}}
| <!--USB-->{{Maybe|2 USB2.0}}
| <!--Ethernet-->CK8S - Winfast NF3 250K8AA works and Marvell 88E1111 does not work
| <!--Opinion-->2005 some support but no Firewire VIA VT6307
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Gigabyte GA-K8N
| <!--Chipset-->NVIDIA nForce3 150
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->Realtek ALC658 AC97
| <!--USB-->
| <!--Ethernet-->Realtek RTL8100C
| <!--Opinion-->Firewire TI43AB23 no
|-
| <!--Name-->Gigabyte K8NNXP
| <!--Chipset-->nForce3 150
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->Sata sil3512
| <!--Gfx-->
| <!--Audio-->ALC658 AC97
| <!--USB-->
| <!--Ethernet-->RTl8110S
| <!--Opinion-->Firewire TI STB82AA2 no
|-
| <!--Name-->Gigabyte GA-K8NSNXP
| <!--Chipset-->nForce3 250GB
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->SiI 3512 CT128 Sata Sil3515
| <!--Gfx-->
| <!--Audio-->ALC850 AC97
| <!--USB-->
| <!--Ethernet-->{{No|Marvel 88E8001}}
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->MSI K8N Neo-FIS2R
| <!--Chipset-->nVIDIA NF3-250Gb
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->Realtek 7.1 AC'97 ALC850
| <!--USB-->
| <!--Ethernet-->{{No|Marvell 88E1111}}
| <!--Opinion-->
|-
| <!--Name-->[http://techreport.com/articles.x/5748/1 Shuttle AN50R]
| <!--Chipset-->nF3-150
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->Sil 3112
| <!--Gfx-->
| <!--Audio-->ALC650 AC97
| <!--USB-->
| <!--Ethernet-->Nvidia nF3 (10/100) Intel 82540EM Gigabit
| <!--Opinion-->Firewire VT6307 no
|-
| <!--Name--> Foxconn WinFast K8S755A
| <!--Chipset-->SiS755 + SiS964 (DDR333)
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio--> {{yes|AC97}}
| <!--USB-->
| <!--Ethernet--> {{yes|RTL8169}}
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket 939 (2005)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->Asus A8N-LA GeForce 6150 LE
| <!--Chipset-->Geforce 6150 (MCP51) + nForce 430 (PC-3200)
| <!--ACPI-->
| <!--IDE-->{{yes|two ATA 133}}
| <!--SATA-->{{maybe|four 3.0GB/s SATAII ports}}
| <!--Gfx-->built in or PCI-E x16
| <!--Audio-->Realtek ALC883 HD Audio
| <!--USB-->6 USB2.0
| <!--Ethernet-->Realtek RTL 8201CL
| <!--Opinion-->
|-
| <!--Name-->Asus A8N-SLI Premium
| <!--Chipset-->NVidia
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->{{Yes|PCIe slot}}
| <!--Audio-->{{Yes|AC97}}
| <!--USB-->{{Maybe}}
| <!--Ethernet-->{{Yes|nForce LAN but not Marvell}}
| <!--Opinion-->Works well
|-
| <!--Name-->DFI nF4 Ultra-D LanParty - Diamond Flower International sold to BenQ group 2010
| <!--Chipset-->nF4
| <!--ACPI-->
| <!--IDE-->2 ports
| <!--SATA-->4 ports SATA 2
| <!--Gfx-->2 PCIe x16 slots
| <!--Audio-->AC97 with ALC850 codec
| <!--USB-->
| <!--Ethernet-->Dual Gigabit Ethernet, PCIe by Vitesse VSC8201 PHY nee Cicada 8201, PCI by Marvel 88E8001
| <!--Opinion-->2006 64bit - Four 184-pin DDR Dual-Channel Slots - 1 pci on Ultra, 2 pci on sli,
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus A8V E SE
| <!--Chipset-->VIA K8T890 +VT8237R CHIPSET ATX AMD Motherboard with Athlon 64 X2 / Athlon 64 FX / Athlon 64
| <!--ACPI-->{{N/A}}
| <!--IDE-->{{Yes}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->{{N/A}}
| <!--Audio-->{{Maybe}} AC97 driver using Realtek ALC850 codec
| <!--USB-->{{Yes}} USB 2.0 only
| <!--Ethernet-->{{No}} Marvell 88E8053
| <!--Opinion-->Good base but needs additional PCI cards added for better support
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->ASUS A8V Deluxe (2004)
| <!--Chipset-->VIA K8T800 Pro (DDR400)
| <!--ACPI-->
| <!--IDE-->Promise 20378 2 ports
| <!--SATA-->2 SATA2
| <!--Gfx-->
| <!--Audio-->{{no|VIA VT8233A 8235 8237 AC97}}
| <!--USB-->
| <!--Ethernet-->{{no|Marvell 88E8001 Gigabit}}
| <!--Opinion-->needs extra PCI cards
|-
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Test Distro-->
| <!--Comments-->
|-
| <!--Name-->AsRock 939Dual-SATA2
| <!--Chipset-->Ali Uli M1695 PCIe with M1567 AGP
| <!--ACPI-->
| <!--IDE-->2 ports
| <!--SATA-->1 Sata with JMicron JMB360 chip
| <!--Gfx-->1 pci-e and 1 agp
| <!--Audio-->AC97 with ALC850 codec
| <!--USB-->
| <!--Ethernet-->Realtek RTL8201CL PHY ULi 10/100
| <!--Opinion-->64bit pci-e and agp combo on board - 4 ddr slots -
|}
=====Socket AM2 (2006/8) and AM2+ (2007-2010) =====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-M61PME-S2 (rev. 2.x)
| <!--Chipset-->NVIDIA® GeForce 6100 / nForce 430 chipset
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->{{maybe|VESA 2d for vga}}
| <!--Audio-->{{yes|HDAudio Realtek ALC662 Audio Codec}}
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus M2N61-AR mini itx
| <!--Chipset-->NVIDIA nForce 430
| <!--ACPI-->
| <!--IDE-->1
| <!--SATA-->2
| <!--Gfx-->GeForce 6150SE via vga or 1 pci-e slot
| <!--Audio-->HD Audio with codec
| <!--USB-->Nvidia
| <!--Ethernet-->Nvidia
| <!--Opinion-->2006 32bit - 1 pci - 2 ddr2 dimm slots non-eec -
|-
| <!--Name-->asus m2n68-am se2
| <!--Chipset-->nvidia 630a 630/a MCP68SE
| <!--ACPI-->
| <!--IDE-->1 ports
| <!--SATA-->2 ports MCP61 chipset is SATA over IDE, not SATA over AHCI and reports subsystem as 0x1 IDE, not 0x6 SATA
| <!--Gfx-->{{Yes|nvidia 7025 2d and 3d thru vga}}
| <!--Audio-->{{Yes|hd audio with realtek alc662 codec}}
| <!--USB-->{{Yes| }}
| <!--Ethernet-->{{Yes|nForce chipset RTL 8201CP}}
| <!--Opinion-->2007 64bit Phenom IIX2, Athlon 64 LE X2, Sempron, and Phenom FX processors - ddr2 667Mhz ram max 4Gb -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-MA770-UD3 (rev. 1.0)
| <!--Chipset-->AMD 770 with SB700
| <!--ACPI-->
| <!--IDE-->{{yes| }}
| <!--SATA-->{{yes| }}
| <!--Gfx-->pci-e
| <!--Audio-->{{yes|ALC888 codec }}
| <!--USB-->{{yes|USB2}}
| <!--Ethernet-->{{yes|rtl8169 8111C later 8111D}}
| <!--Opinion-->Good support for AM2+ / AM2 with 4 ddr2 ram - 4 x PCI Express x1, 2 x PCI slots - firewire T.I. TSB43AB23 chip no support -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus M3A32-MVP Deluxe
| <!--Chipset-->AMD 790FX RD790 + SB600
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->{{No|Marvell 88SE6121 SATA II}}
| <!--Gfx-->pci-e 1.1 support
| <!--Audio-->{{No|HD Audio ADI® AD1988}}
| <!--USB-->
| <!--Ethernet-->{{No|Marvell 88E8056}}
| <!--Opinion-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->ASROCK N68-S N68C-S
| <!--Chipset-->AMD based nForce 630a
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->{{yes|slimline DVD drive works}}
| <!--Gfx-->{{maybe|GF 7025 use vesa}}
| <!--Audio-->{{yes|HDAudio for VIA 1708S VT1705}}
| <!--USB-->{{Maybe|echi usb 2.0}}
| <!--Ethernet-->{{no|RTL8201EL / 8201CL - nforce}}
| <!--Opinion-->2008 unbuffered 1066Mhz ddr2 ram - N68C-S may need noacpi added to grub boot line to disable pci temporarily to run as it cannot get to [PCI] Everything OK -
|-
| <!--Name-->Asus M2N68-AM Plus
| <!--Chipset-->Athlon 64, Sempron, Athlon 64 X2, Athlon 64 FX with nvidia 630a
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->no vga, pci-e slot only
| <!--Audio-->{{yes|HD Audio with ALC662 codec}}
| <!--USB-->
| <!--Ethernet-->{{no|RTL8211CL Gigabit LAN}}
| <!--Opinion-->adding "noacpi noapic noioapic" to the GRUB options - Dual channel DDR2 1066, 800, 667 MHz -
|-
| <!--Name-->Gigabyte GA-M68M-S2 (1.0) S2P (2.3) S2L GA-M68SM-S2 (1.x)
| <!--Chipset-->nForce 630a chipset
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->NVIDIA® GeForce 7025, vga (s2 and s2p), dvi (s2l)
| <!--Audio-->ALC883 (S2), ALC888B (S2P), ALC662 (S2L),
| <!--USB-->
| <!--Ethernet-->RTL 8201CL (S2), 8211CL (S2P), 8211BL (S2L),
| <!--Opinion-->2008 64bit possible with AMD AM2+ CPU on AM2 motherboard, the system bus speed will downgrade from HT3.0(5200MHz) to HT1.0(2000 MT/s) spec
|-
| <!--Name-->ASUS M2N68-VM
| <!--Chipset-->nForce 630a (MCP68PVNT)
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Nvidia GeForce ® 7050PV hdmi, dvi and vga
| <!--Audio-->HD audio VIA 1708B codec
| <!--USB-->
| <!--Ethernet-->RTL 8211C
| <!--Opinion-->2008 64bit - ddr2 800Mhz
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket AM3 White socket (2010/11)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->Gigabyte GA-MA74GM-S2 GA-MA74GM-S2H
| <!--Chipset-->740g with sb710
| <!--ACPI-->
| <!--IDE-->{{yes| }}
| <!--SATA-->{{yes|bios IDE}}
| <!--Gfx-->Radeon 2100 and pci-e slot
| <!--Audio-->ALC888 (r1.x),ALC888b (r2.0), ALC888B (rev4.x)
| <!--USB-->USB2
| <!--Ethernet-->rtl8169 Realtek 8111C later 8111D
| <!--Opinion-->2010 64bit - 2 x 1.8V DDR2 DIMM sockets max 8 GB - Micro ATX Form Factor 24.4cm x 23.4cm -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->[http://www.vesalia.de/e_aresone2011.htm Aresone 2011]
| <!--Chipset-->760g
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Yes}}
| <!--Gfx-->{{Maybe|no Radeon HD3000 driver yet<br>vesa driver works<br>and add PCIe card}}
| <!--Audio-->{{Yes|HD Audio}}
| <!--USB-->{{Yes|USB2.0}}
| <!--Ethernet-->{{yes}}
| <!--Opinion-->Good support - 4 DDR3 memory sockets -
|-
| <!--Name-->Foxconn A76ML-K 3.0
| <!--Chipset-->AMD 760g rev3.0
| <!--ACPI-->
| <!--IDE-->{{Yes|1 }}
| <!--SATA-->{{Yes|4 in IDE mode }}
| <!--Gfx-->HD3000 with pci-e slot
| <!--Audio-->HDAudio with ALC662-GR codec
| <!--USB-->USB2
| <!--Ethernet-->rtl8169 rtl8111E
| <!--Opinion-->2011 64bit - 2 ddr3 slots - 2 pci slots -
|-
| <!--Name-->GA-MA770T-UD3P (rev. 1.0 to 1.4)
| <!--Chipset-->amd 770 with sb710
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->{{yes|4 sata}}
| <!--Gfx-->pci-e
| <!--Audio-->{{yes|HDAudio with Realtek ALC888 codec}}
| <!--USB-->{{yes| }}
| <!--Ethernet-->{{yes|rtl8168 rtl8111c/d}}
| <!--Opinion-->2011 64 - 4 ddr3 dimm slots -
|-
| <!--Name-->Gigabyte GA-MA770-UD3 (rev. 2.0 2.1)
| <!--Chipset-->AMD 770 with SB700
| <!--ACPI-->
| <!--IDE-->{{yes| }}
| <!--SATA-->{{yes| }}
| <!--Gfx-->pci-e
| <!--Audio-->{{yes|ALC888 codec }}
| <!--USB-->{{yes|USB2}}
| <!--Ethernet-->{{yes|rtl8169 8111C later 8111D}}
| <!--Opinion-->Good support for AM3 with 4 ddr2 ram - 4 x PCI Express x1, 2 x PCI slots - firewire T.I. TSB43AB23 chip no support -
|-
| <!--Name-->Asus M4A785TD-M PRO
| <!--Chipset-->785G and SB710
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Maybe|ide legacy}}
| <!--Gfx-->{{Maybe|ATI Radeon HD 4200 - use vesa}} or pci-e 2.0 slot
| <!--Audio-->{{Yes|HD Audio}}
| <!--USB-->{{Yes| }}
| <!--Ethernet-->{{Yes| }}
| <!--Opinion-->Good support with 1366 ddr3 ram -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->ASUS M4A88T-I Deluxe ITX
| <!--Chipset-->AMD 880G with AMD SB710
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->Three SATA 3Gbps
| <!--Gfx-->Radeon HD 4350 GPU with HDMI and DVI or One 16x PCI-Express 2.0
| <!--Audio-->HDAudio with Realtek ALC889
| <!--USB-->6 x USB 2, 2 x USB 3
| <!--Ethernet-->{{No|Realtek RTL8112L}}
| <!--Opinion-->2014 64bit - 2 SODIMM DDR3 slots max 8GB
|-
| <!--Name-->Asus M4A88T-M Version E5907 E5826
| <!--Chipset-->AMD 880G SB710
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Radeon 4250
| <!--Audio-->HD Audio with VIA VT 1708S codec
| <!--USB-->
| <!--Ethernet-->Realtek rtl8169 8111E
| <!--Opinion-->2010 64bit -
|-
| <!--Name-->GigaByte 890GPA-UD3H
| <!--Chipset-->AMD 890GX together with SB850
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->Yes
| <!--Gfx-->use pci-e nvidia
| <!--Audio-->Maybe - ALC892 rev. 1.0, ALC892 rev 2.1, ALC889 rev. 3.1
| <!--USB-->Yes
| <!--Ethernet-->Yes
| <!--Opinion-->works well overall
|-
| <!--Name-->Gigabyte GA-890FXA-UD7
| <!--Chipset-->AMD 890FX with SB850
| <!--ACPI-->
| <!--IDE-->{{yes| }}
| <!--SATA-->{{yes|IDE }}
| <!--Gfx-->
| <!--Audio-->ALC889 (rev 2.x)
| <!--USB-->{{Yes|AMD USB2 but limited with NEC D720200F1 USB3}}
| <!--Ethernet-->2 x Realtek 8111D
| <!--Opinion-->2012 64bit - XL-ATX Form Factor 32.5cm x 24.4cm - 4 ddr3 slots -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->MSI 890GXM-G65
| <!--Chipset-->890GX + SB750
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->{{Maybe|legacy}}
| <!--Gfx-->{{Maybe|ATI 4290 built-in (vesa)}}
| <!--Audio-->{{Maybe|ALC889 DD GR}} HD Audio crackles
| <!--USB-->{{Yes}}
| <!--Ethernet-->{{Yes|RTL 8169}}
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->ASRock N68-VS3 FX
| <!--Chipset-->NVIDIA® GeForce 7025 / nForce 630a
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4 Sata2
| <!--Gfx-->Integrated NVIDIA® GeForce 7025
| <!--Audio-->HD Audio with VIA® VT1705 Codec
| <!--USB-->USB2
| <!--Ethernet-->Realtek PHY RTL8201EL
| <!--Opinion-->2010 64bit - 2 x DDR3 DIMM slots -
|-
| <!--Name-->MSI GF615M-P35 MS-7597
| <!--Chipset-->NVIDIA® nForce 430
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->GeForce 6150SE
| <!--Audio-->{{Maybe|HD Audio with Realtek® ALC888S}}
| <!--USB-->{{No|freezes}}
| <!--Ethernet-->{{No|Realtek 8211CL}}
| <!--Opinion-->2010 64bit
|-
| <!--Name-->Gigabyte GA-M68MT-S2
| <!--Chipset--> nForce 630a
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->NVIDIA® GeForce 7025 vga
| <!--Audio-->ALC888B (1.3), ACL887 (3.1),
| <!--USB-->
| <!--Ethernet-->RTL8211CL (all)
| <!--Opinion-->2010 64bit possible, AMD AM3 CPU on this motherboard, the system bus speed will downgrade from HT3.0 (5200MT/s) to HT1.0 (2000 MT/s) spec
|-
| <!--Name-->Gigabyte GA-M68MT-S2P
| <!--Chipset--> nForce 630a
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->NVIDIA® GeForce 7025 vga
| <!--Audio-->ALC888B (1.x 2.x), ALC889 (3.0), ALC888B/889 (3.1),
| <!--USB-->
| <!--Ethernet-->RTL8211CL (all)
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus M4N78 PRO
| <!--Chipset-->NVIDIA GeForce 8300
| <!--ACPI-->
| <!--IDE-->1 xUltraDMA 133/100
| <!--SATA-->6 xSATA 3 Gbit/s ports
| <!--Gfx-->Integrated NVIDIA® GeForce® 8 series GPU with 1 PCIe 2.0 slot
| <!--Audio-->HD Audio with VIA1708S 8 -Channel codec
| <!--USB-->12 USB 2.0 ports (8 ports at mid-board, 4 ports at back panel)
| <!--Ethernet-->NVIDIA Gigabit
| <!--Opinion-->4 x DIMM, Max. 16 GB, DDR2 1200(O.C.)/1066*/800/667 ECC,Non-ECC,Un-buffered Memory - ATX Form Factor 12 inch x 9.6 inch ( 30.5 cm x 24.4 cm ) -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|}
=====Socket AM3+ Black socket (2012/15)=====
*095W FX-6300 FD6300WMHKBOX (bulldozer SSE4.1 AVX) 970 mobos with FX-8320E 8core Black Editions FD832EWMHKBOX FX-8370E (Vishera/Piledriver)
*125W FX-6310 (bulldozer) 970 mobos with FX-8320 FX-8350 FX-8370 (Vishera/Piledriver)
*220W 990FX mobos with FX-9000 FX-9370 FX-9590
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->ASUS M5A78L-M LX3
| <!--Chipset-->AMD 760G with SB710
| <!--ACPI-->
| <!--IDE-->{{yes| }}
| <!--SATA-->{{Yes|bios IDE mode}}
| <!--Gfx-->HD3000 with pci-e slot
| <!--Audio-->HDAudio with ALC887, V? ALC892 codecs
| <!--USB-->USB2
| <!--Ethernet-->{{No|Qualcomm Atheros 8161/8171 add realtek 8111? pci-e card}}
| <!--Opinion-->2012 64bit - uATX Form Factor 9.6 inch x 7.4 inch ( 24.4 cm x 18.8 cm ) - 2 x DIMM, Max. 16GB, DDR3 -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-78LMT-S2P
| <!--Chipset-->AMD 760G and SB710
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->{{yes|6 SATA2 ports}}
| <!--Gfx-->GT240 and a nv7900gs, both pci-e
| <!--Audio-->{{Maybe|ALC889 (r3.1), ALC??? (rev. 4.0), ALC887 (r5.x)}}
| <!--USB-->4 USB2
| <!--Ethernet-->{{Maybe|Realtek 8111E (r3.1), Atheros (rev4.0), Atheros (r5.x) }}
| <!--Opinion-->2012 offers very poor control over its EFI vs. BIOS booting partition features
|-
| <!--Name-->Gigabyte GA-78LMT-USB3 (r3.0), (r4.1 Blue board), (r5.0 dark board), (rev6 dark mobo)
| <!--Chipset-->AMD 760G and SB710
| <!--ACPI-->
| <!--IDE-->{{yes| }}
| <!--SATA-->{{yes|Bios IDE mode for SATA2 on early ones}}
| <!--Gfx-->AMD HD3000, pci-e GT240 and a nv7900gs
| <!--Audio-->{{Maybe|ALC??? (r3.0), ALC887 (r4.1), VIA VT2021 (r5.0), Realtek® ALC892 codec (rev6) }}
| <!--USB-->{{yes|AMD USB2 but not VIA® VL805 USB3}}
| <!--Ethernet-->Realtek GbE
| <!--Opinion-->2013 64bit - Micro ATX Form Factor 24.4cm x 24.4cm - 4 x DDR3 DIMM sockets -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->MSI 760GM
| <!--Chipset-->ATI 760G plus SB710
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->{{yes| }}
| <!--Gfx-->HD3000 Use Vesa
| <!--Audio-->{{Maybe|P33 VT1705; P34, P21 and P23 (FX) MS7641 v3.0 ALC887, E51 ALC892}}
| <!--USB-->{{yes| }}
| <!--Ethernet-->{{Yes|Realtek}}
| <!--Opinion-->P23 issues with audio ALC887 crackles thru earphones -
|-
| <!--Name-->Gigayte GA-MA770T-UD3P (rev. 3.1)
| <!--Chipset-->amd 770 with sb710
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sata
| <!--Gfx-->pci-e slot
| <!--Audio-->HDaudio with Realtek ALC888/892 codec
| <!--USB-->
| <!--Ethernet-->rtl8169 rtl8111d/e
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->ASRock 890FX Deluxe5 Extreme3
| <!--Chipset-->AMD 890FX + AMD SB850 or SB950 (Extreme3)
| <!--ACPI-->
| <!--IDE-->{{Yes}}
| <!--SATA-->{{Yes}}
| <!--Gfx-->{{N/A}}
| <!--Audio-->{{Maybe|ALC892}}
| <!--USB-->{{Yes}}
| <!--Ethernet-->{{Yes|RTL8111E rtl8169}}
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus M5A97 R2.0 EVO
| <!--Chipset-->AMD 970 and SB950
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->Asmedia SATA Controller
| <!--Gfx-->n/a
| <!--Audio-->HDAudio with Realtek ALC887 (LE), ALC887 (Regular), ALC892 (EVO) codec
| <!--USB-->4 USB 2.0 and 2 Asmedia USB3.0 Controller
| <!--Ethernet-->Realtek 8111F
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-970A-D3
| <!--Chipset-->AMD 970 with SB950
| <!--ACPI-->
| <!--IDE-->{{Yes| }}
| <!--SATA-->{{Yes|IDE mode}}
| <!--Gfx-->pci-e
| <!--Audio--> ALC??? (rev. 1.0/1.1), ALC887 (rev1.2), VIA VT2021 codec (rev 1.3 1.4 and rev3.0)
| <!--USB-->{{yes|AMD USB2 but not Etron EJ168 chip (USB3)}}
| <!--Ethernet-->Realtek GbE 8111E (all revisions),
| <!--Opinion-->2015 64bit - ATX Form Factor 30.5cm x 22.4cm - 4 x 1.5V DDR3 DIMM sockets -
|-
| <!--Name-->MSI 970 Gaming
| <!--Chipset-->970FX SB950
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->Realtek® ALC1150 Codec
| <!--USB-->6 usb2 with 2 USB3 VIA VL806 Chipset
| <!--Ethernet-->Killer E2205 Gigabit LAN
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus M5A99X EVO
| <!--Chipset-->990X - RD980 with SB920
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->2 pci-e gen ?
| <!--Audio-->HDAudio with ALC892 codec
| <!--USB-->
| <!--Ethernet-->rtl8169 realtek 8111e
| <!--Opinion-->2012 64bit -
|-
| <!--Name-->Gigabyte GA-990XA-UD3
| <!--Chipset-->AMD 990 with SB950
| <!--ACPI-->
| <!--IDE-->{{yes| }}
| <!--SATA-->{{yes| }}
| <!--Gfx-->
| <!--Audio-->ALC889 (rev 1.x, 3.0, 3.1),
| <!--USB-->{{yes|AMD USB2 not 2 x Etron EJ168 chips for USB3}}
| <!--Ethernet-->realtek rtl8169 8111e
| <!--Opinion-->2012 64bit - ATX Form Factor; 30.5cm x 24.4cm - 4 ddr3 slots -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====AMD Fusion (2011/14)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->
| 1.2GHz single Bobcat Fusion C30 + Hudson M1
| ACPI
| IDE
| SATA
| AMD 6250
| Audio
| USB
| Ethernet
| <!--Opinion-->2011 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2011 64bit does not support AVX or SSE 4.1 -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| Asus E35M1-M PRO uATX
| 1.6GHz 18W AMD Fusion E-350 dual core + Hudson M1
| ACPI
| {{N/A}}
| SATA
| AMD 6310 - no HD driver yet
| ALC887 VD2
| USB
| RTL8111E
| 2011 64bit does not support AVX or SSE 4.1 - EFI bios - pci slot -
|-
| Asus E35M1-I Deluxe miniITX
| 1.6GHz dual AMD Fusion E350 + Hudson M1 + DDR3
| ACPI
| {{N/A}}
| SATA
| AMD 6310 - no HD driver yet
| ALC892
| USB
| Realtek 8111E
| 2011 64bit does not support AVX or SSE 4.1 - no support for Atheros AR5008 on a Mini PCI-E - 1 pci slot -
|-
| ASRock E350M1 / USB3 (also version with USB3.0 added)
| 1.6GHz dual AMD Fusion E350 + Hudson M1
| ACPI
| {{N/A}}
| SATA - 4 SATA3
| {{Maybe|AMD 6310 - use vesa with hdmi and dvi}}
| {{Yes|Audio ALC892 playback but no HDMI output}}
| USB - 4 USB2.0 and 2 USB3.0
| {{Yes|rtl8169 for Realtek rtl8111E}}
| 2011 64bit does not support AVX or SSE 4.1 - 1 pci-e 2.0 x4 slot -
|-
| <!--Name-->Gigabyte GA-E350N-USB3 mini-ITX
| <!--Chipset--> Hudson M1 FCH
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 SATA3
| <!--Gfx--> plus HDMI, DVI
| <!--Audio-->ALC892
| <!--USB-->2 NEC USB3.0 with 4 USB2.0
| <!--Ethernet-->rtl8169 for Realtek rtl8111E
| <!--Opinion-->2011 64bit does not support AVX or SSE 4.1 - 1 pci slot -
|-
| <!--Name-->Gigabyte GA-E350N Win8 V1.0
| <!--Chipset-->Hudson M1 FCH A45
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 SATA3
| <!--Gfx-->{{maybe|Use VESA - AMD 6310 plus HDMI, DVI}}
| <!--Audio-->{{yes|ALC887 playback through headphones but not thru hdmi}}
| <!--USB-->{{maybe|4 USB2.0 needs more testing}}
| <!--Ethernet-->{{yes|rtl8169 for Realtek 8111e}}
| <!--Opinion-->2011 64bit does not support AVX or SSE 4.1 - works well but need to test with sata hard disk
|-
| <!--Name-->MSI E350IA-E45
| <!--Chipset-->e-350 + Hudson M1 + DDR3
| <!--ACPI-->no support
| <!--IDE-->{{N/A}}
| <!--SATA-->4 Sata3 ports
| <!--Gfx-->AMD 6310 gpu
| <!--Audio-->ALC HDA
| <!--USB-->6 USB2.0 and 2 USB3.0 through NEC 720200 chipset
| <!--Ethernet-->Realtek RTL8111E
| <!--Opinion-->2011 64bit does not support AVX or SSE 4.1 -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->ASUS E45M1-M PRO
| <!--Chipset-->E450 APU with Hudson M1
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->ALC887
| <!--USB-->
| <!--Ethernet-->Realtek
| <!--Opinion-->2011 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name-->ASUS E45M1-I Deluxe
| <!--Chipset-->E-450 together
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->ALC892
| <!--USB-->
| <!--Ethernet-->Realtek 8111E
| <!--Opinion-->2011 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket FM1 (2011/13)=====
On board Graphic on CPU - HD6410D, HD6530D, HD6550D,
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->ASUS F1A55-M LE
| <!--Chipset--> with AMD A55 FCH (Hudson D2)
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->6 x SATA 3Gbit/s port(s), blue Support Raid 0, 1, 10, JBOD
| <!--Gfx-->PCI-e 2.0 slot or Integrated AMD Radeon™ HD 6000 in Llano APU
| <!--Audio-->Realtek® ALC887 Audio CODEC
| <!--USB-->6 USB2.0 ports
| <!--Ethernet-->Realtek 8111E rtl8169
| <!--Opinion-->2012 2011 64bit does not support AVX or SSE 4.1 - A-Series/E2- Series APUs up to 4 cores - 2 x DIMM, Max. 32GB, DDR3 2250(O.C.)/1866/1600/1333/1066 MHz Non-ECC, Un-buffered Memory Dual Channel Memory Architecture -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket FM2 White Socket (2012/13)=====
Onboard Gfx on CPU - HD6570, HD7480D, HD7540D,
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->
| <!--Chipset-->A75 A85X
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2012 64bit does not support AVX or SSE 4.1 -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket FM2 Plus Black socket (2013/15)=====
Onboard Gfx on CPU - HD6570, HD7480D, HD7540D,
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->
| <!--Chipset-->A88X
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket AM1 FS1b socket (2014/1x)=====
5350 4 core Jaguar cores 2GHz with Integrated AMD Radeon R Series Graphics in the APU Kabini [Radeon HD 8400]
Later Beema APU with 2/4 core Puma (slightly updated Jaguar) cores, GCN graphics and a compute capable Radeon core, along with a brand new AMD security processor and FT3 BGA packaging (probably best avoided for long term survival).
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->ASUS AM1I-A
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->HD Audio Realtek® ALC887-VD
| <!--USB-->
| <!--Ethernet-->Realtek 8111GR 8168
| <!--Opinion-->2011 64bit may support AVX or SSE 4.1 -
|-
| <!--Name-->MSI AM1I
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->HD Audio ALC887
| <!--USB-->
| <!--Ethernet-->Realtek 8111G
| <!--Opinion-->
|-
| <!--Name-->MSI AM1M
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->HD Audio ALC887
| <!--USB-->
| <!--Ethernet-->Realtek 8111G
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->BGA FT3 AM1x
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket AM4 FM3 Summit Ridge Zen Zen+ (2016/22)=====
Jim Keller’s group designed x86 Zen CPU - new and covering the same AM4 platform/socket for desktop
Zen will also shift from Bulldozer’s Clustered Multithreading (CMT) to Simultaneous Multithreading (SMT, aka Intel’s Hyperthreading). CMT is the basis for Bulldozer’s unusual combination of multiple integer cores sharing a single FPU within a module, so the move to SMT is a more “traditional” design for improving resource usage
Trusted Platform Module, or fTPM, that Windows 11 requires. Ryzen processors using a firmware TPM are causing stutters, even when doing mundane tasks. To enable TPM 2.0 on your AMD system please follow the steps below.
<pre>
Power on system and press DEL or F2 to get into the BIOS.
Navigate to Advanced\CPU Configuration.
Enable AMD fTPM switch.
Press F10 to save changes.
</pre>
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->Asus ROG Crosshair VI Hero
| <!--Chipset-->X370
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->pci-e 3.0 (1x16 or 2x8)
| <!--Audio-->SupremeFX audio features an S1220 codec
| <!--USB-->
| <!--Ethernet-->Intel I211
| <!--Opinion-->Ryzen 7 1800X 1700X
|-
| <!--Name-->Biostar X370gtn Itx Am4
| <!--Chipset-->AMD X370
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->PCIe 3.0
| <!--Audio-->HDAudio with ALC892
| <!--USB-->
| <!--Ethernet-->Realtek Dragon LAN RTL8118AS
| <!--Opinion--> 2 ddr4 slots
|-
| <!--Name-->Gigabyte GA-AX370 K7
| <!--Chipset--> X370
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->PCIe 3.0
| <!--Audio-->HDAudio with 2 x Realtek® ALC1220 codec 0x10EC, 0x0295
| <!--USB-->
| <!--Ethernet-->1 intel and 1 E2500
| <!--Opinion--> 4 ddr4 slots
|-
| <!--Name-->MSI Xpower Gaming Titanium
| <!--Chipset--> X370
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->PCIe 3.0
| <!--Audio-->8-channel Realtek 1220 Codec 0x10EC, 0x0295
| <!--USB-->ASMedia® ASM2142 and amd cpu
| <!--Ethernet-->1 x Intel® I211AT Gigabit LAN
| <!--Opinion--> 2 ddr4 slots
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus Prime B350 Plus ATX
| <!--Chipset-->B350
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx--> x PCIe 3.0/2.0 x16 (x16 mode)
| <!--Audio-->Realtek® ALC887 8-Channel
| <!--USB-->
| <!--Ethernet-->Realtek® RTL8111H
| <!--Opinion-->Ryzen 5 1600x 1600 1500X 1400 - 4 x DIMM Max 64GB, DDR4 up to 2666MHz ECC and non-ECC Memory - ATX 12 inch x 9.35 inch ( 30.5 cm x 23.7 cm ) - 2 pci
|-
| <!--Name-->Asus PRIME B350M-A/CSM Micro ATX
| <!--Chipset-->AMD B350
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->PCIe 3.0
| <!--Audio-->HDaudio with
| <!--USB-->
| <!--Ethernet-->Realtek LAN
| <!--Opinion-->Ryzen 3 1300x 1200 1100
|-
| <!--Name-->AsRock Pro4 AB350
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->2 PCIe 3.0 x16, 4 PCIe 2.0 x1
| <!--Audio-->Realtek ALC892
| <!--USB-->
| <!--Ethernet-->Realtek
| <!--Opinion-->2017 64bit -
|-
| <!--Name-->ASRock AB350 Gaming-ITX/ac
| <!--Chipset--> B350
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->PCIe 3.0
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->Intel LAN
| <!--Opinion-->
|-
| <!--Name-->MSI B350 Tomahawk Arctic Mortar
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->1 x PCIe 3.0 x16 (x16 mode)
| <!--Audio-->Realtek ALC892
| <!--USB-->
| <!--Ethernet-->Realtek RTL8111H
| <!--Opinion-->white and grey colours - 2 pci-e and 2 pci slots - m.2 in middle - atx 12 in by 9.6 in and matx versions -
|-
| <!--Name-->Jginyue M-ATX B350M-TI
| <!--Chipset-->B350
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Jginyue B350I-Plus ITX
| <!--Chipset-->B350
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->ASRock A320M-ITX MINI ITX Rev1.0 Rev2 Rev2.1
| <!--Chipset-->A320
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->pci-e
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2018
|-
| <!--Name-->Asus PRIME A320M-C R2.0 rev1.1 A320M-K
| <!--Chipset-->A320 A/B300 SFF
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->PCIe 3.0
| <!--Audio-->HD audio with Realtek ALC887 alc897 CODEC
| <!--USB-->2 usb 3.1 gen 1
| <!--Ethernet-->Realtek 8111E
| <!--Opinion-->2019 64bit - 3rd/2nd/1st Gen AMD Ryzen™ / 2nd and 1st Gen AMD Ryzen™ with Radeon™ Vega
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->MSI A320M-A PRO MicroATX
| <!--Chipset-->AMD A320
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->pci-e 3.0
| <!--Audio-->HDAudio Realtek® ALC892
| <!--USB-->USB3
| <!--Ethernet-->Realtek® 8111H
| <!--Opinion-->2019 64bit -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus ROG X399 Zenith Extreme
| <!--Chipset-->AMD X399
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->PCIe 3.0
| <!--Audio--> supremefx s1220
| <!--USB-->
| <!--Ethernet-->intel
| <!--Opinion-->Threadripper 1950X 1920X 1900X TR4 skt
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->PCIe 3.0
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->AsRock Fatality X470 Gaming K4 mATX
| <!--Chipset-->X470
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->nvme
| <!--Gfx-->pci-e rebar possible
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->intel
| <!--Opinion-->
|-
| <!--Name-->Asrock Fatal1ty X470 Gaming-ITXac AMD AM4
| <!--Chipset-->AMD X470
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->intel
| <!--Comments-->
|-
| <!--Name-->ASUS ROG STRIX X470-I GAMING AM4 ITX Motherboard
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus B450-I Gaming
| <!--Chipset-->AMD B450
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->PCIe 3.0
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->high VRM temps - raven ridge 14nm+ like 2200G 2400G
|-
| <!--Name-->AsRock B450 Gaming K4
| <!--Chipset-->B450
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio--> alc892
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion--> 4 ddr4 slots - low VRM thermals 3900x 3950x
|-
| <!--Name-->Gigabyte B450 I Aorus Pro Wifi
| <!--Chipset-->AMD B450
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->1 nvme pcie3 with 4 sata
| <!--Gfx-->pcie
| <!--Audio-->HDAudio with Realtek® ALC1220-VB codec
| <!--USB-->
| <!--Ethernet-->Intel LAN
| <!--Opinion-->very high vrm temps
|-
| <!--Name-->Jginyue B450i Gaming ITX
| <!--Chipset-->B450
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sata3 - none nvme
| <!--Gfx-->pcie3
| <!--Audio-->HDAudio
| <!--USB-->
| <!--Ethernet-->1G
| <!--Opinion-->2021 64 2nd 3rd AMD - 2 ddr4 dimm slots
|-
| <!--Name-->MSI b450 tomahawk max
| <!--Chipset--> b450
| <!--ACPI-->
| <!--IDE-->{{n/A}}
| <!--SATA-->
| <!--Gfx-->PCIe 3.0
| <!--Audio-->HD audio with Realtek® ALC892 Codec
| <!--USB-->
| <!--Ethernet-->Realtek 8111H
| <!--Opinion-->
|-
| <!--Name-->MSI B450 Pro Carbon
| <!--Chipset-->B450
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio--> ALC codec
| <!--USB-->
| <!--Ethernet-->Intel LAN
| <!--Opinion-->
|-
| <!--Name-->MSI B450-A PRO
| <!--Chipset-->B450
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->ALC892
| <!--USB-->
| <!--Ethernet-->rtl8169 8111h
| <!--Opinion-->
|-
| <!--Name-->MSI B450I GAMING Plus AC ITX
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2019 - 2nd and 3rd gen AMD - 2 ddr4 slots -
|-
| <!--Name-->MSI B450 GAMING PLUS MAX
| <!--Chipset-->B450
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->HDAudio with Realtek® ALC892/ALC897 Codec
| <!--USB-->USB3
| <!--Ethernet-->rtl8169 8111H
| <!--Opinion-->
|-
| <!--Name-->MAXSUN AMD Challenger B450M M-ATX (aka Soyo)
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->ASRock X570 PHANTOM GAMING-ITX/TB3 Mini ITX AM4
| <!--Chipset-->X570
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->nvme
| <!--Gfx-->PCIe 4.0
| <!--Audio--> ALC1200
| <!--USB-->
| <!--Ethernet-->Intel LAN
| <!--Comments-->
|-
| <!--Name-->Asus ROG Crosshair VIII Dark Hero
| <!--Chipset-->AMD X570
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio--> SupremeFX7.1 codec
| <!--USB-->
| <!--Ethernet-->Intel® I211-AT and Realtek® RTL8125-CG 2.5G LAN
| <!--Opinion-->
|-
| <!--Name-->Asus ROG Strix X570-I Gaming Mini ITX AM4 Motherboard
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->MSI MPG X570 Gaming Plus
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio--> alc1220 codec
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus ROG Strix B550-i AM4 ITX Motherboard
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2022 -
|-
| <!--Name-->Jginyue Jingyue B550i Gaming itx
| <!--Chipset-->B550
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->3 with 1 nvme
| <!--Gfx-->1 pci-e 4
| <!--Audio-->HDAudio alc
| <!--USB-->
| <!--Ethernet-->1G
| <!--Comments-->2022 64bit max of Ryzen 5500 (c t), 5600, 5600g (6c12t) - 2 ddr4
|-
| <!--Name-->Asrock B550 PHANTOM GAMING ITX/AX
| <!--Chipset-->AMD B550
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio--> alc1220
| <!--USB-->
| <!--Ethernet-->intel 2.5G
| <!--Comments-->
|-
| <!--Name-->AsRock B550M-ITX/ac
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio--> Realtek ALC887/897 Audio Codec
| <!--USB-->
| <!--Ethernet-->Realtek Gigabit LAN
| <!--Opinion-->2022 - 2 ddr4 slots
|-
| <!--Name-->Asus ROG STRIX B550-A GAMING
| <!--Chipset-->B550
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->PCIe Gen4 x4 & SATA3
| <!--Gfx-->pci-e 4
| <!--Audio--> supremefx S1220A
| <!--USB-->
| <!--Ethernet-->Intel® I225-V 2.5Gb
| <!--Opinion-->
|-
| <!--Name-->Gigabyte AMD B550I AORUS PRO AX Mini-ITX rev 1.0
| <!--Chipset-->AMD B550
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->2 nvme pci-e3 with 4 sata3
| <!--Gfx-->pci-e
| <!--Audio-->Realtek® ALC1220-VB codec
| <!--USB-->
| <!--Ethernet-->Realtek® 2.5GbE LAN
| <!--Opinion-->2021 2 x DDR4 DIMM sockets 1Rx8/2Rx8/1Rx16 -
|-
| <!--Name-->Gigabyte B550 AORUS ELITE AX V2 ATX
| <!--Chipset-->B550
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->PCI-e 4.0 DP and hdmi
| <!--Audio-->HDAudio ALC1200
| <!--USB-->USB3 USB 3.2 Gen1 Type-C
| <!--Ethernet-->2.5GbE LAN
| <!--Opinion-->2022 64bit- finer tuning than A520's - AMD Ryzen 5000 Series/ 3rd Gen Ryzen and 3rd Gen Ryzen with Radeon Graphics CPU - Dual Channel ECC/ Non-ECC Unbuffered DDR4, 4 DIMMs -
|-
| <!--Name-->Gigabyte B550M DS3H mATX
| <!--Chipset--> B550
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->2 NVMe
| <!--Gfx-->PCI-e 4.0
| <!--Audio-->HDaudio ALC887
| <!--USB-->USB3
| <!--Ethernet-->realtek rtl8118
| <!--Opinion-->2021 64bit - 4 ddr4 dimms -
|-
| <!--Name-->MSI MPG B550 GAMING PLUS ATX
| <!--Chipset--> B550
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->PCI-e 4.0
| <!--Audio-->HDAudio ALC892
| <!--USB-->USB 3
| <!--Ethernet-->rtl8169 Realtek 8111H
| <!--Opinion-->2022 64bit - 3rd Gen AMD Ryzen Processors - 4 dimm ddr4 -
|-
| <!--Name-->MSI MAG B550 TOMAHAWK ATX
| <!--Chipset--> B550
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe 1 x M.2, Socket 3, M Key (up to Type 22110) and 1 x M.2, Socket 3, M Key (Type 2242/2260/2280)
| <!--Gfx-->PCI-e 4.0 with dp and hdmi
| <!--Audio-->HDaudio ALC1200
| <!--USB-->USB3 1 x USB 3.1 Type-C and 1 x USB 3.1 Type-A
| <!--Ethernet-->Realtek RTL8125B and Realtek RTL8111H
| <!--Opinion-->2022 64bit - 4 Dimm slots -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Jginyue A520M-H mATX
| <!--Chipset-->A520
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion--> old bios with random issues with APU ryzens -
|-
| <!--Name-->Gigabyte A520M S2H mATX
| <!--Chipset-->AMD A520
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->HDAudio
| <!--USB-->
| <!--Ethernet-->Realtek 1GbE
| <!--Opinion-->2022 64bit Zen3 65W and up - 2 ddr4 -
|-
| <!--Name-->Gigabyte A520I AC mITX mini-itx
| <!--Chipset-->AMD A520
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->HDAudio
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2022 64bit Zen3 65W and up 5600G (6c12t) or 5700G (8c16t) - 2 ddr4 dimm slots -
|-
| <!--Name-->MSI A520M-A PRO mATX
| <!--Chipset-->A520
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe 1 x M.2, Socket 3, M Key (Type 2242/2260/2280)
| <!--Gfx-->PCI-e 3.0
| <!--Audio-->HDAudio ALC892
| <!--USB-->USB3
| <!--Ethernet-->rtl8169 rtl8111H
| <!--Opinion-->2022 64bit - 2 ddr4 dimm slots - 3rd Gen AMD Ryzen Desktop and AMD Ryzen 4000 G-Series CPU
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|}
===== (Socket AM5 LGA1718 Zen4 Zen5 Zen6 2022/27)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->Asrock Steel Legend
| <!--Chipset-->x670e
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->PCI-e rnda2
| <!--Audio-->HD audio
| <!--USB-->USB3
| <!--Ethernet-->
| <!--Opinion-->2022 64bit - ddr5 ecc (10 chip) and non-ecc (8 chips) 64Gb @ 6000Mhz or 128GB @ 4800Mhz -
|-
| <!--Name-->Asrock TaiChi
| <!--Chipset-->x670e
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->PCI-e rnda2
| <!--Audio-->HD Audio
| <!--USB-->USB4 with Thunderbolt 4 equivalent
| <!--Ethernet-->{{No|Realtek killer E3000 2.5GbE}}
| <!--Opinion-->2022 64bit - ddr5 ecc (10 chip) and non-ecc (8 chips)
|-
| <!--Name-->Asus ROG Crosshair Hero
| <!--Chipset-->x670e
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->PCIe rnda2
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2022 64bit
|-
| <!--Name-->
| <!--Chipset-->x670e
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->rnda3
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2022 64bit 7950x3d 120W, 7900 7800 7600 90W
|-
| <!--Name-->
| <!--Chipset-->x670e
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->rnda3
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2022 64bit
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus B650E-I
| <!--Chipset-->B650
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->pci-e 5
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2023 - better sound with an actual AMP, PCIe 5, USB-C display outs -
|-
| <!--Name-->
| <!--Chipset-->x650 B650
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->x650 B650
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->x650 B650
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->MAXSUN AMD Challenger B650M WIFI M-ATX (aka Soyo)
| <!--Chipset-->B650
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->MSI b650i mini itx
| <!--Chipset-->B650
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->NVMe
| <!--Gfx-->pci-e 4
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->Realtek
| <!--Opinion-->2023 - front panel connectors at the back of the board - dead rear nvme slot and a drained CMOS battery as the CMOS button being pressed during shipping -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->A620M Zen4
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->A620M
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->A620M
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->A620M
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset--> Zen5
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset--> Zen6
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name--> || <!--Chipset--> || <!--ACPI--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Opinion-->2026 FP8 Zen 6 Medusa Point 4bigC, 4 econC, 2lpC, 8coreGPU -
|-
| <!--Name--> || <!--Chipset--> || <!--ACPI--> || <!--IDE--> || <!--SATA--> || <!--Gfx--> || <!--Audio--> || <!--USB--> || <!--Ethernet--> || <!--Opinion-->2026 FP10 Zen 6 Medusa Point 4bigC, 4 econC, 2lpC, 8coreGPU -
|-
|}
===== (Zen7 AM6 2027/3x)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
===== (Zen AM 203x/3x)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
====Intel Sockets====
[[#top|...to the top]]
=====Socket 370 (2000/2)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->Intel D815EEA
| <!--Chipset-->866Mhz P3 and i815 chipset
| <!--ACPI-->
| <!--IDE-->{{Yes}}
| <!--SATA-->{{N/A}}
| <!--Gfx-->{{Yes|Nvidia AGPx8 6200LE added}}
| <!--Audio-->{{N/A}}
| <!--USB-->{{Yes|2 USB1.1}}
| <!--Ethernet-->{{N/A}}
| <!--Opinion-->Tested AspireOS 1.7, simple basic board with useful 5 PCI slots
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|}
=====Socket 478 (2002/4)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->[http://translate.google.co.uk/translate?hl=en&sl=zh-CN&u=http://detail.zol.com.cn/motherboard/index46381.shtml&prev=/search%3Fq%3Dc.865pe.l%2Bmotherboard%26client%3Dfirefox-a%26hs%3DsZB%26rls%3Dorg.mozilla:en-US:official Colorful Technology C.865PE-L Silver Fighter Warrior V2.3]
| <!--Chipset-->865PE
| <!--ACPI-->{{dunno| }}
| <!--IDE-->{{Yes|tested with CDROM}}
| <!--SATA-->{{dunno| }}
| <!--Gfx-->{{Maybe|AGP slot}}
| <!--Audio-->{{Yes|ALC650 AC97}}
| <!--USB-->{{Yes|USB 1.1 and 2.0}}
| <!--Ethernet-->{{Yes|RTL 8100 8139}}
| <!--Opinion-->Still testing with NB (Nightly Build) May 2013
|-
| <!--Name-->Intel 845
| <!--Chipset-->865P
| <!--ACPI-->
| <!--IDE-->{{Yes}}
| <!--SATA-->
| <!--Gfx-->{{No|intel 800}}
| <!--Audio-->{{No|AC97 AD1985}}
| <!--USB-->{{Yes|USB1.1 and USB2.0}}
| <!--Ethernet-->{{No|e1000}}
| <!--Opinion-->Tested ICAROS 1.3
|-
| <!--Name-->Intel 845
| <!--Chipset-->865GC
| <!--ACPI-->
| <!--IDE-->{{Yes}}
| <!--SATA-->
| <!--Gfx-->{{No|intel 865 Extreme Graphics 2}}
| <!--Audio-->{{No|AC97 AD1985}}
| <!--USB-->{{Yes|USB1.1 and USB2.0}}
| <!--Ethernet-->{{No|e1000}}
| <!--Opinion-->Tested ICAROS 1.3
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket LGA775 s775 (2005/8)=====
an industry standard DDR2 module could in theory contain fallback JEDEC, intel XMP and AMD EPP configuration data
Intel PC CL5 ram modules but an "AMD" CL5 ram module the BIOS cannot read the AMD EPP info on the SPD (Serial Presence Detect) but can recognize the CL5 timing info in the JEDEC data table. PC BIOS auto configures for the AMD ram module and boots normally.
an AMD PC CL6 ram modules but an "INTEL" CL6 ram module the BIOS cannot read the INTEL XMP info on the SPD but can recognize the CL6 timing info in JEDEC data table. PC BIOS auto configures for the AMD ram module and boots normally.
an INTEL PC needs CL6 ram modules but have an "AMD" CL4 ram module. INTEL BIOS cannot read the AMD EPP info on the SPD but can recognize the CL4 timing info in JEDEC data table. PC BIOS recognizes module timings as incompatible an refuses to boot.
entirely separate issue if the RAM module timing specs are incompatible.(i.e. CL4 RAM in a "CL6 only" PC)
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->Abit AG8
| <!--Chipset-->P915 + ICH6R
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4 ports SATA1
| <!--Gfx-->1 PCIe x16 Slot
| <!--Audio-->Realtek ALC658 AC97
| <!--USB-->4 USB2.0
| <!--Ethernet-->Realtek 8110S-32
| <!--Opinion-->2004 32bit - Firewire TI 4200R7T no
|-
| <!--Name-->MSI 915 Neo2
| <!--Chipset-->P915 + ICH6R
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4 ports SATA1
| <!--Gfx-->1 PCIe x16 Slot
| <!--Audio-->CMI 9880L HD Audio
| <!--USB-->4 USB2.0
| <!--Ethernet-->{{no|Broadcomm BCM5751 PCIe}}
| <!--Opinion-->Firewire VIA VT6306 no
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus P5GC P5GC-MX
| <!--Chipset-->P945GC Lakeport-GC + ICH7R northbridge
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4 SATA1 3.0 Gbit/s ports
| <!--Gfx-->1 PCIe 1.1 slot
| <!--Audio-->HD Audio with ALC662 codec
| <!--USB-->{{yes|2 usb2.0}}
| <!--Ethernet-->{{no|atheros L2}}
| <!--Opinion-->2005 32bit - 3 pci slots - 4 x 240-pin DIMM Sockets max. 4GB DDR2 667/533 non-ECC -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Foxconn PC45CM-SA 45CM-S
| <!--Chipset-->945GC with ICH7
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4 sata2 ports
| <!--Gfx-->{{Yes|pcie 1.0 slot with gma950 integrated}}
| <!--Audio-->{{Yes|HD audio with aLC883 codec playback}}
| <!--USB-->{{Yes|}}
| <!--Ethernet-->{{Yes|realtek 8139 8100sc}}
| <!--Opinion-->2 dimm slots 667mhz max 4gb - can be found in Advent desktops - 2 pci-e and 2 pci - core 2 duo only e6xxx - Micro ATX (9.6” x 8.8”) -
|-
| <!--Name-->Gigabyte GA-81945GM MFY-RH
| <!--Chipset-->Intel® 945GM Express with ICH7M-DH
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->{{Yes|GMA950 VGA15 and PCI-e 1.0 slot}}
| <!--Audio-->{{Yes|HD Audio with ALC880 codec playback only rear port}}
| <!--USB-->{{Yes|4 usb 2.0}}
| <!--Ethernet-->{{No|Intel PRO1000PL 82573L Gigabit Ethernet}}
| <!--Opinion-->2006 MoDT term “Mobile on DeskTop.”, low TDP CPUs to work on desktop form-factor motherboards. mATX Micro ATX 24.4cm x 24.4cm - 2 DDR2 dimm 1.8v slots with 4Gb max - will not boot if PCI2 slot occupied -
|-
| <!--Name-->Gigabyte GA-945 GCM S2C
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->{{yes|ALC662 (1.x)}}
| <!--USB-->
| <!--Ethernet-->{{yes|8101E Rtl 8169 (1.x)}}
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA945-GCM S2L
| <!--Chipset-->945GC with ICH7
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4 SATA1 ports
| <!--Gfx-->PCi-E slot
| <!--Audio-->{{Maybe|Intel HD Audio with ALC662 codec 2/4/5.1-channel (1.x)}}
| <!--USB-->{{Yes|4 USB2.0}}
| <!--Ethernet-->{{Yes|Realtek 8111c 8169 (1.x)}}
| <!--Opinion-->2 x 1.8V DDR2 DIMM 4GB DDR2 memory max - 2 PCI-e and 2 PCI - Micro ATX form factor; 24.4cm x 19.3cm -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->MSI 945P Neo-F rev 1.0
| <!--Chipset-->P945 + ICH7
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4 SATA1 ports
| <!--Gfx-->PCie 1.0 slot
| <!--Audio-->ALC662 HDA
| <!--USB-->4 USB2.0
| <!--Ethernet-->8110SC (rtl8169)
| <!--Opinion-->
|-
| <!--Name-->MSI 945P Neo2-F rev 1.2
| <!--Chipset-->P945 + ICH7
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4 SATA1 ports
| <!--Gfx-->PCie 1.0 slot
| <!--Audio-->ALC850 AC97
| <!--USB-->4 USB2.0
| <!--Ethernet-->8110SC (rtl8169)
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-P31-DS3L
| <!--Chipset-->P31 with ICH7
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->PCI Express x16
| <!--Audio-->HD Audio with ALC888 codec
| <!--USB-->4 USB 2.0
| <!--Ethernet-->Realtek 8111B
| <!--Opinion-->DDR2 800Mhz up to 4Gb 4 x 240 pin - 3 PCI - ATX 12.0" x 8.3" -
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus P5KPL-AM /PS
| <!--Chipset-->G31 with ICH7
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->4 xSATA 3 Gbit/s ports
| <!--Gfx-->PCIe 1.1 with integrated Intel® GMA 3100
| <!--Audio-->HD Audio with VIA VT1708B with ALC662 codec
| <!--USB-->
| <!--Ethernet-->Realtek RTL8102EL 100/10 LAN with Realtek RTL8111C Gigabit LAN
| <!--Opinion-->2 x 2 GB DDR2 Non-ECC,Un-buffered DIMMs with 2 PCI - Intel Graphics Media Accelerator -
|-
| <!--Name-->Asus P5KPL/EPU
| <!--Chipset-->G31 with ICH7
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Pci-e 1.0 slot
| <!--Audio-->{{Yes|HD audio with ALC887 codec}}
| <!--USB-->
| <!--Ethernet-->{{Yes|RTL8169 Realtek 8111C}}
| <!--Opinion-->Tested - 4 240-pin DIMM, Max. 4 GB - 4 pci-e and 3 pci - ATX Form Factor 12 inch x 8.2 inch ( 30.5 cm x 20.8 cm ) -
|-
| <!--Name-->Gigabyte GA-G31M ES2L
| <!--Chipset-->G31 plus ICH7
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->{{Yes|Intel GMA 3100 2d}}
| <!--Audio-->{{Maybe|ALC883 (1.x), ALC883/888B (2.x)}}
| <!--USB-->
| <!--Ethernet-->{{Maybe|RTL8111C (1.x), Atheros 8131 (2.x)}}
| <!--Opinion-->reduces DRAM capacity to 4GB
|-
| <!--Name-->ASRock G31M-S r1.0 G31M-GS
| <!--Chipset-->G31 + ICH7
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->{{maybe|4 sata2}}
| <!--Gfx-->{{maybe|GMA 3100 2d not 3d}}
| <!--Audio-->{{yes|ALC662}}
| <!--USB-->{{yes|4 USB2.0}}
| <!--Ethernet-->{{partial|rtl8169 RTL8111DL 8169 (for -GS) RTL8102EL (for -S)}}
| <!--Opinion-->2007 64bit Core2 - 2 DDR2 800 max 8Gig AMI bios MicroATX -
|-
| <!--Name-->ASRock G31M-S r2.0
| <!--Chipset-->G31 + ICH7
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->{{maybe|4 sata2}}
| <!--Gfx-->{{maybe|GMA 3100 2d not 3d}}
| <!--Audio-->{{yes|ALC662}}
| <!--USB-->{{yes|4 USB2.0}}
| <!--Ethernet-->{{yes|RTL 8111DL 8169}}
| <!--Opinion-->2008 64bit core2 - 2 DDR2 800 max 8Gig MicroATX
|-
| <!--Name-->[http://www.intel.com/cd/channel/reseller/apac/eng/products/desktop/bdb/dg31pr/feature/index.htm Intel DG31PR]
| <!--Chipset-->iG31
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->{{maybe|3100 but can use PCIe 1.1 slot}}
| <!--Audio-->{{yes|ALC888 playback}}
| <!--USB-->
| <!--Ethernet-->{{yes|RTL8111B Rtl 8169}}
| <!--Opinion-->good support
|-
| <!--Name-->
| <!--Chipset-->Intel G33 Express Chipset with ich9 southbridge
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->Intel 3100 powervr tile based
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2008 64bit - embedded on Core 2 Quad, Core 2 Duo, Pentium Dual-Core CPUS with Integrated GPU Intel GMA 3100 -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->ASUS P5G41T-M LX
| <!--Chipset-->G41 + ICH8 + DDR3
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->{{maybe}}
| <!--Gfx-->{{yes|X4500 some 2d only)}}
| <!--Audio-->ALC887
| <!--USB-->3 USB2.0
| <!--Ethernet-->{{no|Atheros L1c AR8131}}
| <!--Opinion-->reduces maximum supported memory ddr3 from 16 to 8GB 2 dimm slots non-EEC - demotes the PCIe controller mode from revision 2.0 (5.0GT/s) to revision 1.1 (2.5GT/s
|-
| <!--Name-->Gigabyte GA-G41MT S2
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->VT1708S (1.3), ALC887-VD2 (1.4), ALC887 (2.1),
| <!--USB-->
| <!--Ethernet-->Atheros AR8151 l1c (1.x 2.x),
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-G41MT S2PT
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->ALC887 (1.0), VIA (2.0), ALC887 (2.1)
| <!--USB-->
| <!--Ethernet-->RTL8111E (1.x), Atheros AR8151 l1c (2.1),
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-G41MT D3
| <!--Chipset-->G41 + ICH7
| <!--ACPI-->
| <!--IDE-->1 Port
| <!--SATA-->4 Ports
| <!--Gfx-->{{yes|GMA X4500 2d only and pci-e 1.1 slot}}
| <!--Audio-->{{yes|ALC888B}}
| <!--USB-->4 ports + headers
| <!--Ethernet-->{{yes|RTL8111 D/E}}
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-P41T D3P
| <!--Chipset-->G41 + ICH7 with Intel Core 2 Duo (E6xxx) CPU
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4ports
| <!--Gfx-->GMA X4500 2d
| <!--Audio-->ALC888 889/892
| <!--USB-->4 ports
| <!--Ethernet-->RTL 8111C or D/E
| <!--Opinion-->
|-
| <!--Name-->Intel DG41AN Classic
| <!--Chipset-->iG41 +
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4 ports
| <!--Gfx-->X4500 2d
| <!--Audio-->ALC888S ALC888VC
| <!--USB-->4 ports
| <!--Ethernet-->8111E
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->AsRock P5B-DE
| <!--Chipset-->P965 + ICH8
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->{{Maybe|works ide legacy}}
|<!--Gfx-->{{Yes|with PCI-E 1.1 slot}}
| <!--Audio-->{{Yes|HD Audio via VT1708S}}
| <!--USB-->{{Yes}}
| <!--Ethernet-->{{Yes|RTL8169}}
| <!--Opinion-->2006 works well
|-
| <!--Name-->Asus P5B SE
| <!--Chipset-->965 intel
| <!--ACPI-->
| <!--IDE-->{{Yes| }}
| <!--SATA-->{{Yes| }}
| <!--Gfx-->{{N/A}}
| <!--Audio-->{{Yes|HD Audio ALC662 codec}}
| <!--USB-->{{Yes}}
| <!--Ethernet-->{{No| }}
| <!--Opinion-->works well except ethernet
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus P5W DH Deluxe P5WDG2 WS PRO
| <!--Chipset-->975X
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->2 ports
| <!--Gfx-->2 PCIe x16 slots
| <!--Audio-->ALC882 AND LATER ADI 1988B
| <!--USB-->2 USB2.0
| <!--Ethernet-->{{No|Marvell 88E8052 88E8053}}
| <!--Opinion-->Firewire TI TSB43AB22A no
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Abit IP35
| <!--Chipset-->P35 Express + ICH9R
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->6 ports
| <!--Gfx-->
| <!--Audio-->ALC888 HDA
| <!--USB-->4 USB2.0
| <!--Ethernet-->two RTL8110SC
| <!--Opinion-->Firewire Texas TSB43 AB22A no
|-
| <!--Name-->MSI P35 Neo F FL MS-7630 rev 1
| <!--Chipset-->Intel P35
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->pci-e 1.1 support
| <!--Audio-->HD Audio ALC888
| <!--USB-->
| <!--Ethernet-->Realtek
| <!--Opinion-->Base model of this range of P35 mobos
|-
| <!--Name-->GA-P35-DS3
| <!--Chipset-->P35 and ICH9
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->4 ports
| <!--Gfx-->
| <!--Audio-->HDAudio with Realtek ALC889A codec
| <!--USB-->
| <!--Ethernet-->rtl8169 Realtek 8111B
| <!--Opinion-->2008 - 4 x 1.8V DDR2 DIMM sockets max 8 GB -
|-
| <!--Name-->GA-EP35-DS3 (rev. 2.1)
| <!--Chipset-->Intel® P35 + ICH9 Chipset
| <!--ACPI-->
| <!--IDE-->{{unk|}}
| <!--SATA-->{{unk|4 }}
| <!--Gfx-->pci-e
| <!--Audio-->{{unk|Realtek ALC889A codec }}
| <!--USB-->{{yes | }}
| <!--Ethernet-->{{yes|rtl8169 Realtek 8111B}}
| <!--Opinion-->good
|-
| <!--Name-->Abit IX38 Quad GT
| <!--Chipset-->X38 / ICH9R Chipset
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->6 ports
| <!--Gfx-->PCI-E 2.0 slot
| <!--Audio--> HD Audio ALC888
| <!--USB-->4 USB2.0
| <!--Ethernet-->Realtek RTL 8110SC 8169SC
| <!--Opinion-->Firewire Texas TSB 43AB22A no
|-
| <!--Name-->Gigabyte X38-DQ6
| <!--Chipset-->X38 / ICH9R Chipset
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->6 ports
| <!--Gfx-->PCI-E 2.0 slot
| <!--Audio-->ALC889A HDA
| <!--USB-->4 USB2.0
| <!--Ethernet-->twin 8111B 8169
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Gigabyte GA-EP45 DS3 (2008)
| <!--Chipset-->P45 + ICH9 or ICH10
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->6 x SATA 3Gbit/s (SATAII0, SATAII1, SATAII2, SATAII3, SATAII4, SATAII5)
| <!--Gfx-->two PCI-E v2.0 x16 slots support splitting its 16 PCIe 2.0 lanes across two cards at x8 transfers
| <!--Audio-->HD Audio with ALC888 or ALC889A codec
| <!--USB-->6 USB2.0
| <!--Ethernet-->2 x Realtek 8111C chips (10/100 /1000 Mbit)
| <!--Opinion-->4 x 1.8V DDR2 DIMM sockets non-EEC
|-
| <!--Name-->MSI P45 Platinum (2008)
| <!--Chipset-->P45 + ICH9
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->6 sata2 ports
| <!--Gfx-->two PCI-E x16 v2.0 slots
| <!--Audio-->ALC888 HD Audio
| <!--USB-->6 USB2.0
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->G45 +
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->adds Intel’s GMA X4500HD graphics engine to P45 Express features
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->G43 +
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->GMA X4500 2d
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->removes HD video acceleration from the G45’s features
|-
| <!--Name-->Asus P5E Deluxe
| <!--Chipset--> X48 with ICH9
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->HD Audio with ADI 1988B codec
| <!--USB-->
| <!--Ethernet-->Marvell 88E8001
| <!--Opinion-->
|-
| <!--Name-->GigaByte GA-X48 DQ6
| <!--Chipset-->X48 plus ICH9R
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->8 ports
| <!--Gfx-->two PCI-E x16 v2.0 slots
| <!--Audio-->ALC889A
| <!--USB-->8 USB2.0
| <!--Ethernet-->RTL 8111B 8169
| <!--Opinion-->Firewire TSB43AB23 no - ICH9 pairs with Intel’s 3-series (X38, P35, etc.) chipsets, in addition to the X48 Express, but excluding the G35 Express
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Gigabyte EP43-DS3L and Gigabyte GA-EP43-UD3L
| <!--Chipset-->P43 with ICH10
| <!--ACPI-->
| <!--IDE-->1 port
| <!--SATA-->6 x SATA 3Gbit/s connectors
| <!--Gfx-->1 x PCI Express x16 slot PCI Express 2.0 standard
| <!--Audio-->HD Audio with ALC888 codec
| <!--USB-->
| <!--Ethernet-->realtek 8111C
| <!--Opinion-->4 x 1.8V DDR2 DIMM sockets - 4 pcie x1 - 2 pci - ATX Form Factor; 30.5cm x 21.0cm
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Gigabyte 73-pvm-s2h rev.1.0
| <!--Chipset-->NVIDIA GeForce 7100 nForce 630i
| <!--ACPI-->
| <!--IDE-->{{Yes|1 port}}
| <!--SATA-->{{yes|3 ports SATA2}}
| <!--Gfx-->{{Maybe|Vesa 2d GeForce 7100 (vga /hdmi/dvi), 1 PCIe x16 Slot }}
| <!--Audio-->{{Yes|Realtek ALC889A MCP73}}
| <!--USB-->{{Yes|7 USB2.0}}
| <!--Ethernet-->{{no|RTL 8211B MCP73}}
| <!--Opinion-->Firewire Not, tested with Icaros Desktop 2.0.3 MCP73 is a single chip solution in three different versions
|-
| <!--Name-->Nvidia 7150 630i
| <!--Chipset-->intel based nForce 630i (MCP73)
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->{{maybe|ide legacy}}
| <!--GFX-->GF 7150
| <!--Audio-->{{yes|HD AUDIO ALC883}}
| <!--USB-->{{yes|ohci echi}}
| <!--Ethernet-->{{no|RTL8201C}}
| <!--Opinion-->being tested
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->pci-e 2.0 x16
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion--> the MCP73PV or the GeForce 7050/nForce 630i
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->the MCP73S or the GeForce7025/nForce 630i
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->the MCP73V or the GeForce 7025/nForce 610i
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Atom SOC (2008/2x)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->D945CLF
| <!--Chipset-->N230 single core
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->
| <!--Gfx-->{{yes|GMA945}}
| <!--Audio-->{{yes|ALC662}} Skt 441
| <!--USB-->{{yes|uhci and ehci}}
| <!--Ethernet-->{{yes|rtl8169}}
| <!--Opinion-->works very well
|-
| <!--Name-->[http://www.clusteruk.com iMica D945GCKF2 mobo]
| <!--Chipset-->Intel Atom N330 Dual Core
| <!--ACPI-->wip
| <!--IDE-->{{yes|IDE}}
| <!--SATA-->{{maybe}}
| <!--Gfx-->{{yes|gma}}
| <!--Audio-->{{yes|HD AUDIO}}
| <!--USB-->{{yes|uhci ehci}}
| <!--Ethernet-->{{yes|rtl8169}}
| <!--Opinion-->
|-
| <!--Name-->D945GSEJT + Morex T1610
| <!--Chipset-->Atom 230 with 945GSE
| <!--ACPI-->
| <!--IDE-->{{yes}}
| <!--SATA-->{{maybe}}
| <!--Gfx-->{{yes|GMA900 vga but issues with DVI output}}
| <!--Audio-->{{yes|HDAudio with ALC662 codec}}
| <!--USB-->{{yes| }}
| <!--Ethernet-->{{yes|RTL8169 8111DL}}
| <!--Opinion-->small size, runs off 12V
|-
| <!--Name-->ASUS AT3N7A-I
| <!--Chipset-->Atom N330 Nvidia ION
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->{{maybe|3 ports legacy IDE}}
| <!--Gfx-->{{yes|nouveau cube cube 2 45 quake 3 }}
| <!--Audio-->{{yes|HD Audio with VIA 1708S codec playback}}
| <!--USB-->{{yes}}
| <!--Ethernet-->{{yes|RTL8169 device}}
| <!--Opinion--><ref>http://www.youtube.com/watch?v=EAiJpvu73iw</ref> good but can freeze randomly at times
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->D410PT 45nm pinetrail
| <!--Chipset-->D410 and NM10
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->{{maybe|ide legacy}}
| <!--Gfx-->{{maybe|GMA3150}}
| <!--Audio-->{{yes|ALC262 or ALC66x odd clicks}}
| <!--USB-->{{yes}}
| <!--Ethernet-->{{yes|RTL8111DL}}
| <!--Opinion-->some support
|-
| <!--Name-->45nm pinetrail
| <!--Chipset-->D510 and NM10 + GMA3150
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->GMA3150
| <!--Audio-->ALC888B or ALC66x
| <!--USB-->{{yes}}
| <!--Ethernet-->RTL8111DL
| <!--Opinion-->some support
|-
| <!--Name-->Gigabyte GA-D525TUD (rev. 1.0 1.2 1.5)
| <!--Chipset-->D525 NM10
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->gma 3150
| <!--Audio-->HDAudio ALC887
| <!--USB-->
| <!--Ethernet-->rtl8169 rtl8111f
| <!--Opinion-->2012 64 - 2 ddr3 dimm slots max 8g - Mini-ITX Form Factor; 17.0cm x 17.0cm -
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
|}
=====Socket 1366 (2009/10)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->Asus P6T DELUXE
| <!--Chipset-->x58 + ICH10 and Intel 1st gen. (Nehalem/Lynnfield) Core i7 (8xx) CPU
| <!--ACPI-->
| <!--IDE-->{{yes|1 port}}
| <!--SATA-->4 ports
| <!--Gfx-->2 PCIe x16 (r2.0) slots
| <!--Audio-->ADI AD2000B HD Audio
| <!--USB-->{{yes|4 USB2.0}}
| <!--Ethernet-->{{no|Marvell 88E8056 Gigabit}}
| <!--Opinion-->Firewire VIA VT6308 no
|-
| <!--Name-->gigabyte ex58 ds
| <!--Chipset--> x58 + ICH10
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->Realtek 8111D rtl8169
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket 1156 (2010)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->Acer Aspire M3910
| <!--Chipset-->i3
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->{{unk| }}
| <!--Gfx-->{{maybe|VESA intel HD}}
| <!--Audio-->{{unk|HDAudio with Realtek ALC}}
| <!--USB-->{{yes| }}
| <!--Ethernet-->{{unk| Realtek}}
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-H55M-S2H
| <!--Chipset-->H55
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->PCIe slot
| <!--Audio-->{{Yes|ALCxxx playback}} ALC888B (Rev1.x)
| <!--USB-->{{Yes| }}
| <!--Ethernet-->{{Yes|RTL8111D}} (Rev 1.x)
| <!--Opinion-->Tested but no support for WLAN Realtek 8188su
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->MSI H55M-E33 v1.0
| <!--Chipset-->E7636 M7636 H55 chipset so older i3/i5/i7 system
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->{{yes|HD Audio ALC889}}
| <!--USB-->
| <!--Ethernet-->{{Yes|PCI-E Realtek 8111DL}}
| <!--Opinion-->Works well
|-
| <!--Name-->Asus P7P55D
| <!--Chipset-->P55
| <!--ACPI-->
| <!--IDE-->{{unk| }}
| <!--SATA-->{{unk| }}
| <!--Gfx-->pci-e
| <!--Audio-->{{maybe | via codec}}
| <!--USB-->{{unk| }}
| <!--Ethernet-->{{maybe |rtl8169 Realtek RTL8111B/C RTL8112L }}
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket LGA 1155 H2 (2010/13)=====
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->ASUS P8H61-I LX R2.0
| <!--Chipset-->H61
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sata
| <!--Gfx-->1 pci-e slot
| <!--Audio-->{{unk|HDAudio via7018s codec}}
| <!--USB-->USB3
| <!--Ethernet-->{{yes|rtl8169 8111f}}
| <!--Opinion-->2013 64bit up to intel ivybridge cpus - 2 ddr3 dimm slots -
|-
| <!--Name-->Asus P8H61-I/RM/SI mini-itx
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->2 sata
| <!--Gfx-->pci-e 2
| <!--Audio-->{{unk|HDAudio via7018s codec}}
| <!--USB-->
| <!--Ethernet-->{{yes|rtl8169 8111f}}
| <!--Opinion-->2013 64bit up to i3-2010 - OEM board from an RM machine but not ivybridge as the Asus BIOS isn't compatible with these, 0909 hacked one might work -
|-
| <!--Name-->asus p8h61-i lx r2.0/rm/si mini itx
| <!--Chipset-->h61
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->pci-e 2.0
| <!--Audio-->HDaudio with VIA codec
| <!--USB-->
| <!--Ethernet-->rtl8169 rtl8111e
| <!--Opinion-->2012 sandy and ivy - oem from rm machine 2 x 240-Pin DDR3 DIMM sockets max DDR3 1333MHz -
|-
| <!--Name-->Bewinner 63q9c7omvs V301 ITX
| <!--Chipset-->H61
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sata with nvme
| <!--Gfx-->pci-e 4
| <!--Audio-->HDAudio
| <!--USB-->
| <!--Ethernet-->Realtek 8106E 100M Network Card
| <!--Opinion-->2022 64
|-
| <!--Name-->Biostar H61 H61MHV2 H61MHV3 Ver. 7.0
| <!--Chipset-->H61 with Intel Pentium G 2xxx series CPU
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->pci-e
| <!--Audio-->Realtek ALC662 later ALC897
| <!--USB-->4 usb2
| <!--Ethernet-->rtl8169 Realtek RTL8111H
| <!--Opinion-->2014 - 2 ddr3 dimm slots -
|-
| <!--Name-->Gigabyte GA-H61M-D2-B3
| <!--Chipset-->H61 + Sandybridge
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 ports sata2
| <!--Gfx-->
| <!--Audio-->ALC889
| <!--USB-->2 ports
| <!--Ethernet-->Realtek RTL8111E
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-H61MA-D3V
| <!--Chipset-->H61 +
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 ports sata2
| <!--Gfx-->
| <!--Audio-->Maybe No Realtek ALC887 (Rev 2.0) ALC887 (Rev2.1)
| <!--USB-->2 ports
| <!--Ethernet-->Realtek RTL8111E
| <!--Opinion-->
|-
| <!--Name-->GA-H61M-S2PV
| <!--Chipset-->H61 with 2400k 2500k 2600k 2700k
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->pci-e 2.0 slot
| <!--Audio-->ALC887 (rev 1.0 2.0 2.1 2.2 2.3)
| <!--USB-->4 USB 2.0
| <!--Ethernet-->Rtl811E (1.0) 8151 (2.0) Rtl8111F (2.1 2.2 2.3)
| <!--Opinion-->Micro ATX Form Factor; 24.4cm x 20cm with 2 pci-e and 2 pci -
|-
| <!--Name-->Intel Classic Series DH61CR Desktop
| <!--Chipset-->H61 +
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 ports
| <!--Gfx-->
| <!--Audio-->Intel HD with ALC892
| <!--USB-->4 ports
| <!--Ethernet-->{{no|Intel 82579V}}
| <!--Opinion-->
|-
| <!--Name-->MSI H61M-P20 (G3) MS-7788
*retail MSI board
*OEM Advent, etc
| <!--Chipset-->H61
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->{{yes|four SATAII ports}}
| <!--Gfx-->1 PCI Express gen3 (retail) gen2 (oem) x16 slot
| <!--Audio-->{{yes|HDAudio ALC887 codec}}
| <!--USB-->{{yes|}}
| <!--Ethernet-->{{yes|Realtek 8105E 100M Network Card}}
| <!--Opinion-->2012 64bit - 2 ddr3 slots - 22.6cm(L) x 17.3cm(W) M-ATX Form Factor - BIOS - [https://www.arosworld.org/infusions/forum/viewthread.php?thread_id=1149&rowstart=140&pid=6009#post_6007 works well],
|-
| <!--Name-->MSI H61I-E35 (B3) MS-7677 Ver.1.2
| <!--Chipset-->H61
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sata2 3gbps
| <!--Gfx-->{{maybe|VESA 2d for hdmi and 1 pcie 2.0 x1 slot}}
| <!--Audio-->{{yes|https://www.arosworld.org/infusions/forum/viewthread.php?thread_id=1149&rowstart=140&pid=5861#post_5861 works}}
| <!--USB-->USB3 and USB2
| <!--Ethernet-->{{yes|rtl8169 rtl8111e}}
| <!--Opinion-->2012 64bit - 2 ddr3 slots -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus P8H67-M
| <!--Chipset-->H67 +
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->2 sata3 - 4 sata2
| <!--Gfx-->
| <!--Audio-->Intel HD with ALC887
| <!--USB-->6 USB2.0
| <!--Ethernet-->Realtek® 8111E
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus P8Z68-V LX
| <!--Chipset-->Z68 + Intel 2nd generation (Sandy Bridge) Core i7 (2xxx) CPU and possibly ivybridgev
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->{{yes|2 sata3 - 4 sata2}}
| <!--Gfx-->pci-e slot
| <!--Audio-->{{yes|HDAudio Intel HD with ALC887 codec}}
| <!--USB-->{{yes|2 USB3.0 - 4 USB2.0}}
| <!--Ethernet-->{{yes|rtl8169 Realtek® 8111E}}
| <!--Opinion-->2011 64bit SSE 4.1 and AVX - EFI bios - 4 ddr3 dimm slots -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte Z68AP-D3 (B3)
| <!--Chipset-->Z68 + Ivybridge
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->2 sata3 - 4 sata2
| <!--Gfx-->
| <!--Audio-->Intel HD with ALC889
| <!--USB-->2 USB3.0 - 4 USB2.0
| <!--Ethernet-->Realtek® 8111E
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus B75M-A
| <!--Chipset-->B75
| <!--ACPI-->
| <!--IDE-->{{yes| }}
| <!--SATA-->{{yes| }}
| <!--Gfx-->pci-e
| <!--Audio-->{{maybe|HDAudio with Realtek ® ALC887-VD codec}}
| <!--USB-->{{maybe| }}
| <!--Ethernet-->{{yes|rtl8169 Realtek ® 8111F-VB-CG }}
| <!--Opinion-->2013 64bit - 2 ddr3 slots -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->H77
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-H77-D3H 1.0 1.1
| <!--Chipset-->H77
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sata 3.0
| <!--Gfx-->pci-e
| <!--Audio-->{{No|HDAudio VIA VT2021 codec}}
| <!--USB-->
| <!--Ethernet-->{{No|Atheros GbE LAN chip}}
| <!--Opinion-->2013 64bit i5 3550 7 3770 - 4 DDR3 slots - 2 full pci-e 2 pci slots -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Gigabyte GA Z77 D3H with i3 3225 dual
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->pci-e
| <!--Audio-->{{No|HDAudio VIA VT2021 codec}}
| <!--USB-->
| <!--Ethernet-->{{No|Atheros GbE LAN chip}}
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket LGA 1150 H3 (2013/2016)=====
[[#top|...to the top]]
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->[https://theretroweb.com/motherboards/s/asus-b85m-e-rev-1-02 Asus B85M-E]
| <!--Chipset-->B85
| <!--ACPI-->
| <!--IDE-->{{yes| }}
| <!--SATA-->{{yes| }}
| <!--Gfx-->pci-e
| <!--Audio-->{{maybe|HDAudio with Realtek ® ALC887-VD2 codec}}
| <!--USB-->{{no| }}
| <!--Ethernet-->{{yes|rtl8169 Realtek 8111F}}
| <!--Opinion-->2014 64bit - 4 ddr3 slots -
|-
| <!--Name-->Gigabyte GA-H87N-WIFI mITX
| <!--Chipset-->H87 and Intel 4th generation (Haswell) Core i5 (4xxx) CPU
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->Intel HD with ALC892
| <!--USB-->
| <!--Ethernet-->Intel Atheros
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->ASUS H81I-PLUS Mini ITX
| <!--Chipset-->H81
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sata3 6gbps
| <!--Gfx-->pci-e 3.0 x4 slot
| <!--Audio-->{{unk|HDAudio with ALC8878 codec}}
| <!--USB-->USB3 USB2
| <!--Ethernet-->{{yes|rtl8169 rtl8111g}}
| <!--Opinion-->2014 64bit -
|-
| <!--Name-->Asus H81M-C H81M-P-SI
| <!--Chipset-->H81 with 4th generation (Haswell) Core i7 (4xxx) CPU
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->2x3g 2x6g
| <!--Gfx-->pci-e slot
| <!--Audio-->hdaudio alc887 vd
| <!--USB-->
| <!--Ethernet-->realtek 8111gr
| <!--Opinion-->2013 skt 1150 - 2 ddr3 max 16g - mini atx -
|-
| <!--Name-->Asus H81T
| <!--Chipset-->H81
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->2 sata
| <!--Gfx-->HD4000 igpu only
| <!--Audio-->HDAudio ALC887-VD
| <!--USB-->Intel USB3
| <!--Ethernet-->rtl8169 realtek 8111G
| <!--Opinion-->2013 64bit intel 4th gen mini itx - external dc brick with 19v rare barrel pin 7.4MM x 5.0MM - 2 ddr3 laptop sodimm slots -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-H81M-S2V
| <!--Chipset-->H81
| <!--ACPI-->
| <!--IDE-->{{N/A|}}
| <!--SATA-->
| <!--Gfx-->pci-e
| <!--Audio-->HDAudio ALC887
| <!--USB-->USB3
| <!--Ethernet-->Realtek® GbE LAN chip
| <!--Opinion-->2014 64bit up to i7 4790K - 2 DDR3 slots -
|-
| <!--Name-->Gigabyte GA-H81M-D3V (rev. 1.0)
| <!--Chipset-->H81
| <!--ACPI-->
| <!--IDE-->{{N/A| }}
| <!--SATA-->{{yes|2 sata2 2 sata3 }}
| <!--Gfx-->pci-e
| <!--Audio-->{{unk| HDAudio Realtek® ALC887 codec}}
| <!--USB-->{{unk|intel and VIA® VL805}}
| <!--Ethernet-->{{unk|rtl8169 Realtek }}
| <!--Opinion-->
|-
| <!--Name-->MSI H81M-E34 (MS-7817)
| <!--Chipset-->H81
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->{{yes| }}
| <!--Gfx-->PCIe 2.0 x16
| <!--Audio-->HDAudio with ALC887 codec
| <!--USB-->USB3
| <!--Ethernet-->{{yes|rtl8169 RTL8111G}}
| <!--Opinion-->2013 64bit -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus Z87-K
| <!--Chipset-->Z87 with 4th generation (Haswell) Core i7 4c8t i5 4c4t CPU
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->pci-e
| <!--Audio-->Intel HD with ALC
| <!--USB-->
| <!--Ethernet-->Realtek lan
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-Z87X-UD3H
| <!--Chipset-->Z87 Express
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->pci-e
| <!--Audio-->Intel HD with Realtek® ALC898 codec
| <!--USB-->
| <!--Ethernet-->intel
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA H97M D3H r1.0 r1.1 with i3 4360 or 4370 dual
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->pci-e
| <!--Audio-->Intel HD with ALC892
| <!--USB-->
| <!--Ethernet-->Realtek lan
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus Z97 A with i7 4790K
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->750, 960, 970 and 980 nvidia GTX cards
| <!--Audio-->Intel HD with ALC
| <!--USB-->
| <!--Ethernet-->intel lan ethernet
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA Z97X UD3H rev1.0 1.1 1.2
| <!--Chipset-->Z97 with i5 4690K
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->HDaudio with ALC1150
| <!--USB-->
| <!--Ethernet-->intel lan
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->MSI GAMING 5 Z97
| <!--Chipset-->Z97 with 4th generation (Haswell) Core i7 4c8t CPU
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->ASUS Q87M-E
| <!--Chipset-->Q87
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2014 64bit - 4 DDR3 slots -
|-
| <!--Name-->
| <!--Chipset-->H99
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket LGA2011V2 s2011-2 (2012/15)=====
[[#top|...to the top]]
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->
| <!--Chipset-->x79
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2013 Xeon e5-???? W TDP, e5-2667V2 W TDP, e5-????V2 W TDP, Sandybridge and Ivybridge V2
|-
| <!--Name-->Asus
| <!--Chipset-->X79
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket LGA2011V3 s2011-3 (2015/18)=====
[[#top|...to the top]]
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->
| <!--Chipset-->x99
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2016 Xeon e5-1620v3 130W TDP, e5-1650V3 (i7-5930K) 140W TDP, e5-2640V3 90W TDP, Haswell-EP
|-
| <!--Name-->Asus
| <!--Chipset-->X99
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->most cheap Ryzens are better nowadays
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Huananzhi X99-CD4
| <!--Chipset-->Intel C612 and X99
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sata 3 connectors and 1 m.2 nvme slot
| <!--Gfx-->pcie slot
| <!--Audio-->HDaudio with ALC897 codec
| <!--USB-->{{No|USB3}}
| <!--Ethernet-->{{maybe|rtl8169}}
| <!--Opinion-->2024 quality might not be great outside of a simple setup - 2 ddr4 dimms -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Keyiyou X99 XD4
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Machinist MR9A Pro
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2023
|-
| <!--Name-->Machinist MR9A Pro
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2023
|-
| <!--Name-->Mogul
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Qiyida X99 H9S
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2023
|-
| <!--Name-->Soyo
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket LGA 1151 Socket H4 (2015/2018)=====
[[#top|...to the top]]
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->Skylake CPUs have TPM 2.0 imbedded
|-
| <!--Name-->Asus H110 Plus H110M-A/DP
| <!--Chipset--> with 6th Gen Core and 7th with bios update
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->Sunrise Point-H SATA [AHCI mode] [8086 a102]
| <!--Gfx-->{{No|Skylake Integrated HD Graphics use PIC-E slot}}
| <!--Audio-->Intel HD Audio with Realtek ALC887 Audio CODEC
| <!--USB-->Sunrise Point-H USB 3.0 xHCI [8086: a12f] no usb2.0 fallback
| <!--Ethernet-->{{Yes|Realtek 8111GR or 8111H RTL8111 8168 8411}}
| <!--Opinion-->ATX with 3 pci-e and 2 DDR4 slots - uatx version smaller - turn off TLSF as it was causing AHI driver to corrupt. Turned off ACPI for errors but works fine once booted -
|-
| <!--Name-->ASUS H110M-R M-ATX
| <!--Chipset-->H110 6th Gen Skylake Core™ i7/Core™ 6950X i7-6970HQ i7-6700K 4c8t hyperthreading, i5/Core™ i5-6600K 4c4t i3/Pentium® / Celeron®
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 x SATA 6Gb/s
| <!--Gfx-->pci-e
| <!--Audio-->HDAudio Realtek® ALC887 codec
| <!--USB-->Intel USB3
| <!--Ethernet-->Realtek® RTL8111H
| <!--Opinion-->2016 64bit - 2 DDR4 DIMMS Max 32GB 2133MHz - 1 full pci-e and 2 pci-e 1 -
|-
| <!--Name-->Asus H110T
| <!--Chipset-->H110
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->2 sata
| <!--Gfx-->intel igpu only
| <!--Audio-->HDaudio
| <!--USB-->
| <!--Ethernet-->Dual Intel/Realtek GbE languard
| <!--Opinion-->2016 - mini itx 12v / 19v laptop type rare barrel pin 7.4MM x 5.0MM - 2 sodimm ddr4 slots - no pci-e slot -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte GA-H110M-S2H MATX Rev1.0
| <!--Chipset-->H110
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sata
| <!--Gfx-->pci-e 3.0
| <!--Audio-->Realtek® ALC887 codec
| <!--USB-->2 (USB 3.1 Gen 1) ports with 4 us2
| <!--Ethernet-->Realtek® GbE LAN
| <!--Opinion--> 2 ddr4 slots
|-
| <!--Name-->Gigabyte ga-h110n
| <!--Chipset-->H110
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->{{Yes| sata}}
| <!--Gfx-->{{maybe|Vesa 2d for Intel or PCI-e slot}}
| <!--Audio-->{{Maybe|HDaudio for ALC887 codec}}
| <!--USB-->{{Maybe| }}
| <!--Ethernet-->{{maybe|RTL8169}}
| <!--Opinion-->2016 mini-itx 6th gen
|-
| <!--Name-->Msi H110M-PRO-VH
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 x SATA 6Gb/s
| <!--Gfx-->pci-e 3.0
| <!--Audio--> Realtek® ALC887 Codec
| <!--USB-->
| <!--Ethernet-->rtl8169 rtl8111h
| <!--Opinion--> 6th gen intel - 2 ddr4 slots
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus H170 Pro Gaming
| <!--Chipset-->H170
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sata
| <!--Gfx-->pci-e
| <!--Audio-->HDAudio
| <!--USB-->Asmedia USB3.1/3.0
| <!--Ethernet-->intel lan
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->MSI Z170A TOMAHAWK
| <!--Chipset-->Z170
| <!--ACPI-->
| <!--IDE-->{{N/A}}
| <!--SATA-->4 sara, 1 x 2280 Key M(PCIe Gen3 x4/SATA), 1 x 2230 Key E(Wi-Fi)
| <!--Gfx-->pci-e
| <!--Audio-->HDAudio
| <!--USB-->
| <!--Ethernet-->intel lan
| <!--Opinion-->2016 64bit up to i7 7700k - 2 DDR4 -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->GIGABYTE GA-B250M-DS3H HD3P D3H D2V
| <!--Chipset-->B250
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2018 coffee lake intel 8th gen
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus
| <!--Chipset--> with Kaby Lake X Intel 7th Gen
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion--> up to 16 pcie lanes
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus
| <!--Chipset--> Z390 with Kaby Lake X
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion--> up to 16 pcie lanes
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset--> Q370M
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset--> H370M
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset--> B360M
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Asus Rampage
| <!--Chipset-->x299 with i9
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion--> - up to 24 to 44 pcie lanes
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->Gigabyte
| <!--Chipset--X299 >
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|}
=====Socket LGA 1200 (2020/2022)=====
[[#top|...to the top]]
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->MSI H510M-A PRO (MS-7D22)
| <!--Chipset--> with 10th gen Comet Lake X
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2021 64bit - up to 16 pcie lanes rebar possible
|-
| <!--Name-->Asus PRIME H410M-E
Asrock H470M-HDV/M.2
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus
| <!--Chipset--> with 11th gen Rocket Lake X
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion--> up to 16 pcie lanes
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|}
=====Socket LGA 1700 (2023/ )=====
[[#top|...to the top]]
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->Alder Lake / 14th gen Raptor Lake
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2021 2022 64bit - QoS work to 2 level cpus, P down to E cores -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->Meteor Lake ultra 5 7 1xxH series 1
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2023 2024 64bit 10nm - 3 level cpus, Low Power Island (SOC tile) to E onto P cores -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset--> 15th gen Arrow Lake
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->Lunar lake ultra 5 7 2xxV series 2
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2025 64bit 7nm -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->Nova Lake
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2026 64bit -
|-
| <!--Name-->
| <!--Chipset-->Panther Lake
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2026 64bit - either 44, 484, or 448 tiled cores 18A process - core ultra x9 288h, x7 358H, -
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
|}
=====Socket LGA 1954 (2027/ )=====
[[#top|...to the top]]
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->
| <!--Chipset-->Nova Lake-S
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->Serpent Lake, Titan Lake, and Razer Lake
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->2027
|-
|}
=====Socket LGA (203x/203x)=====
[[#top|...to the top]]
{| class="wikitable sortable" width="90%"
! width="10%" |Name
! width="5%" |Chipset
! width="5%" |ACPI
! width="5%" |IDE
! width="5%" |SATA
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |USB
! width="10%" |Ethernet
! width="30%" |Opinion
|-
| <!--Name-->MSI
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|- style="background:lightgrey; text-align:center; font-weight:bold;"
| Name || Chipset || ACPI || IDE || SATA || Gfx || Audio || USB || Ethernet || Opinion
|-
| <!--Name-->Asus
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|-
| <!--Name-->
| <!--Chipset-->
| <!--ACPI-->
| <!--IDE-->
| <!--SATA-->
| <!--Gfx-->
| <!--Audio-->
| <!--USB-->
| <!--Ethernet-->
| <!--Opinion-->
|}
===Chromebooks===
For most (EOL) cromebooks, the recommended UEFI path forward is to:
*put the device into Developer Mode
*disable firmware write protection
*flash MrChromebox's UEFI Full ROM firmware
*install ChromeOS Flex, Linux, etc
See [https://mrchromebox.tech/#home MrChrome], [https://mrchromebox.tech MrChrome] and the [https://www.reddit.com/r/chrultrabook/ chrultrabook subreddit] for more info
ChromeOS has several different boot modes, which are important to understand in the context of modifying your device to run an alternate OS:
*Normal/Verified Boot Mode
Can only boot Google-signed ChromeOS images
Full verification of firmware and OS kernel
No root access to the system, no ability to run Linux or boot other OSes
Automatically enters Recovery Mode if any step of Verified Boot fails
Default / out-of-the-box setting for all ChromeOS devices
*Recovery Mode
User presented with Recovery Mode boot screen (white screen with 'ChromeOS is missing or damaged')
Boots only USB/SD with signed Google recovery image
Automatically entered when Verified Boot Mode fails
Can be manually invoked:
On Chromebooks, via keystroke: [ESC+Refresh+Power]
On Chromeboxes, by pressing a physical recovery button at power-on
On Convertibles/Tablets, by holding the Power, Vol+, and Vol- buttons for 10s and then release
Allows for transition from Verified Boot Mode to Developer Mode
On Chromebooks/Chromeboxes, via keystroke: [CTRL+D]
On Convertibles/Tablets, via button press: Vol+/Vol- simultaneously
Booting recovery media on USB/SD will repartition/reformat internal storage and reload ChromeOS
Note: The ChromeOS recovery process does not reset the firmware boot flags (GBB Flags), so if those are changed from the default, they will still need to be reset for factory default post-recovery.
*Developer Mode
"Jailbreak" mode built-in to every ChromeOS device
Loosened security restrictions, allows root/shell access, ability to run Linux via crouton
Verified Boot (signature checking) disabled by default, but can be re-enabled
Enabled via [CTRL+D] on the Recovery Mode boot screen
Boots to the developer mode boot screen (white screen with 'OS verification is off' text),
The user can select via keystroke
<pre>
ChromeOS (in developer mode) on internal storage ( [CTRL+D] )
ChromeOS/ChromiumOS on USB ( [CTRL+U] )
Legacy Boot Mode ( [CTRL+L] )
</pre>
Boot screen displays the ChromeOS device/board name in the hardware ID string (eg, PANTHER F5U-C92, which is useful to know in the context of device recovery, firmware support, or in determining what steps are required to install a given alternate OS on the device.
*Legacy Boot Mode
Unsupported method for booting alternate OSes (Linux, Windows) via the SeaBIOS RW_LEGACY firmware
Accessed via [CTRL+L] on the developer mode boot screen
Requires explicit enabling in Developer Mode via command line: sudo crossystem dev_boot_legacy=1
Most ChromeOS devices require a RW_LEGACY firmware update first
Boots to the (black) SeaBIOS splash screen; if multiple boot devices are available, prompt shows the boot menu
Note: If you hear two beeps after pressing [CTRL+L], then either your device doesn't have a valid Legacy Boot Mode / RW_LEGACY firmware installed, or legacy boot capability has not been been enabled via crossystem.
https://www.howtogeek.com/278953/how-to-install-windows-on-a-chromebook/
Chromebooks don’t officially support other OSs. You normally can’t even install as Chromebooks ship with a special type of BIOS designed for Chrome OS. But there are ways to install, if you’re willing to get your hands dirty and potentially ruin everything
[https://mrchromebox.tech/#devices Firmware Compatibility]
[https://wiki.galliumos.org/Hardware_Compatibility Here is the list of hardware that the GalliumOS supports and information on getting Gallium OS on to those devices]
Development on GalliumOS has been discontinued, and for most users, GalliumOS is not the best option for running Linux due to lack of hardware support or a kernel that's out of date and lacking important security fixes.
Meet Eupnea and Depthboot, the successors to Galliumos and Breath [https://eupnea-linux.github.io This is the bleeding edge]
Most older Chromebooks need the write-protect screw removed in order to install MrChromebox's firmware that allows you to install other operating systems. Most newer Chromebooks don't work in the same way as there is no write-protect screw on them.
Very rough guide to '''total''' (i.e. all cores / threads) processor performance (AROS usually uses only the [https://gmplib.org/gmpbench one core])
[[#top|...to the top]]
<pre>
060000 AMD Ryzen 9 7900X (AM5 170W),
056000 AMD Ryzen 9 5950X,
055000 AMD Ryzen 9 5900X3D,
053000 AMD Ryzen 9 5900X (AM4 105W), AMD Ryzen 9 3950X (105W),
044000 AMD Ryzen 7 5800X3D,
042000 AMD Ryzen 9 6900HX, AMD Ryzen 5 5600X3D (AM4 95W), AMD Ryzen 7 PRO 5750GE (AM4 35W),
039000 AMD Ryzen 9 5900HS, Intel Core i7-12700T, AMD Ryzen 7 7735HS (8c16t 45W), AMD 8840U,
038000 AMD Ryzen 7 5800H (FP6 45W), AMD Ryzen 7 6800U, Intel Core i5-12490F, Intel Core i5-12500E,
037000 AMD Ryzen 7 5800HS (FP6 35W), AMD Ryzen 5 8500G 8600GE (AM5 6c12t 35W), AMD Ryzen Z2 (8c16t),
036500 AMD Ryzen 7 5700G (AM4 8c16t 65W), AMD Ryzen 9 6900HS, Intel Core i7-12800H,
036200 AMD Ryzen 7 5700GE (AM4 8c16t 35W), AMD Ryzen Z1 Extreme (top TDP), AMD Ryzen 5 8600G (AM5 65W),
036000 AMD Ryzen 5 3600X (Am4 95W), AMD Ryzen 5 5500 (AM4 65W), AMD Ryzen 5 5600 (65W),
035000 AMD Ryzen 5 6600H, Intel Core i5-12400F,
031000 AMD Ryzen™ 9 8945HS, Ryzen™ 7 8845HS, AMD Ryzen 7 7840U,
030000 AMD Ryzen 7 4800U, AMD Ryzen 4800H, Intel Core i5-11400F, Intel Zeon E5-2697A V4,
029500 AMD Ryzen 5 4500 (AM4 65W), AMD Ryzen 5 3600 (65W), Apple M3 Pro 12c,
029000 AMD Ryzen 5 4600G (AM4 65W), AMD Ryzen 5 PRO 4650GE (AM4 35W), AMD Ryzen 7 PRO 1700X (AM4 95W),
028500 AMD Ryzen 5 PRO 5675U, AMD Ryzen 7 1700 (AM4 65W), AMD Ryzen 7 2700 (65W), Ryzen 3 7540U,
028000 AMD Ryzen 5 PRO 5650U, 5 5560U (FP6 25W 6c12t Zen3), Intel Core i5-13500H, AMD Ryzen 7 4800HS,
027700 AMD Ryzen 9 PRO 7940HS (FP8 65W), AMD 8745HS, AMD Ryzen H255 AI, AMD Ryzen 3 7545U,
027500 AMD Ryzen 3 7736U, AMD Ryzen 5 7640U,
027400 AMD Ryzen 5 8540U, AMD Ryzen 5 PRO 5650GE (AM4 6c12t 35W), AMD Ryzen 5 PRO 4650G (AM4 45W),
027300 AMD Ryzen 7 PRO 4750GE, AMD Ryzen 5 5600H, AMD Ryzen 7 5825U (FP6 8c16t 15W),
027200 AMD Ryzen 5 6600U, AMD Ryzen 7 2700X, AMD Ryzen 5 5600GE (AM4 35W), AMD Ryzen Z1,
027100 AMD Ryzen 7 7730U (FP6 15W 8c16t), AMD Ryzen 7 5800U (FP6 25W 8c16t), Ryzen 9 4900H,
027000 AMD Ryzen 7 PRO 4750U (8c16t), Ryzen 5 7430U (FP6 6c12t), Ryzen 5 PRO 6650U, Intel 10500H,
026500 AMD Ryzen 7 PRO 7840HS (FP7 65W), AMD Ryzen 7 8840HS, AMD Ryzen Z2 Extreme,
025000 AMD Ryzen 5 5600U (FP6 25W hot 6c12t Zen3), AMD Ryzen 5 2600 (65W), Ryzen 5 7530U,
024500 AMD Ryzen 5 4600HS (FP6 35W 6c12t), Apple M1 Pro, AMD Ryzen 5 5625U (FP6 15W 6c12t),
023700 AMD Ryzen 3 PRO 5350GE (AM4 35W), AMD Ryzen 5 3500X (AM4 95W), Intel Core i7-9700,
023500 AMD Ryzen 5 1600X (95W), AMD Ryzen 3 5300GE (AM4 4c8t 35W), AMD Ryzen 7 5700U (FP6 25W 8c16t Zen2),
023200 AMD Ryzen 3 7330U (FP6 15W 4c8t), AMD Ryzen 7 4700U (FP6 25W 8c8t), AMD Ryzen 5 4400G,
023000 Intel Core i7-1255U, Intel Core i7 13700H, Ryzen 7640HS,
022000 AMD Ryzen Z2 Go (4c8t), AMD Ryzen 5 5500U (FP6 25W 6c12t Zen2), Snapdragon 8 Elite,
020500 AMD Ryzen 3 4300G (AM4 65W), AMD Ryzen 3 5450U 5425U, AMD Ryzen 5 PRO 4650U (6c12t),
019500 Intel Core i5-1135G7, AMD Ryzen 5 5500H, AMD Ryzen 5 4600U (FP6 25W 6c), AMD Ryzen 5 2600 (65W),
019250 Intel Core i5-1145G7,
019000 AMD Ryzen 5 3400G (AM4 65W), AMD Ryzen 5 2500X, AMD Ryzen 5 7520U, AMD Ryzen V3C18I (? 15W),
017750 AMD Ryzen 5 3400GE (AM4 35W), Intel Core i5-8400, AMD Ryzen 5 1500X (AM4 65W), Xbox One Series X,
017500 Intel Core i7-6700K, Intel i5-10400, AMD Ryzen 5 4500U (FP6 25W 6c6t), AMD Ryzen 3 5400U,
017000 AMD Ryzen 3 PRO 4350GE (AM4 35W), AMD Ryzen 3 5300U (FP6 25W 4c8t), Intel Core i5-11300H,
016500 AMD Ryzen 7 3750H, AMD Ryzen Embedded V1756B (FP5 45W), AMD Ryzen 3 PRO 4200GE, SD G3 Gen3,
016250 Intel Core i5-1035G7, intel core i5 7600 (4c4t 65W),
016000 AMD Ryzen 5 2400G (AM4 65W), AMD Ryzen 5 3550H, Ryzen 5 PRO 3350GE (4c 8t), Intel Core i5-8500T,
015500 AMD Ryzen Embedded R2544,
015000 AMD Ryzen 3 7320U, Ryzen 7 3700U, Ryzen 3200G (AM4 65W), Intel Core i7-8550U, Intel Core i5-1035G1,
014000 AMD Ryzen 5 2400GE (AM4 35W), Intel Core i7-6700T, AMD Ryzen 5 3550U,
013500 AMD Ryzen 5 3500U (FP5 15W 4c8t), AMD Ryzen 3 4300U, AMD Athlon Gold 4150GE, AMD Ryzen 5 3450U,
013250 AMD Ryzen 3 3200GE (AM4 45W), AMD Ryzen 3 1300X (65W), AMD Ryzen 3 2200G, Xbox One Series S,
013000 AMD Ryzen Embedded V1605B (FP5 25W), AMD Ryzen 2700U, AMD Ryzen R2514,
012500 AMD Ryzen 5 2500U (FP5 25W 4c8t), Intel Core i3-8300T, Intel Xeon X5680, Intel i3-1115G4 (2c4t),
012300 Intel Core i7-8565U, Intel Core i5-8350U, Intel Core i7-8700, Allwinner A733 (2 A76, 6 A55),
012200 ARM Cortex-X3 Prime Snapdragon SD8G2 Gen2 4nm 64-bit Kryo CPU, i5-8250U (4c8t),
012000 AMD Ryzen 3 2200GE, AMD Ryzen 3 1200 (65W), AMD Ryzen 5 3500C,
011500 AMD Ryzen 3 3300U, Intel Core i3-8100T, Intel Core i5-8265U, Intel i5-10210U, CORE i5-10310U,
010500 AMD Ryzen 3 2300U (FP5 25W 4c4t), Allwinner A527 (8 A55), Intel i5 4690K,
010300 Intel Core i7-3630QM, Intel Core i5-6600T, Intel Core i5-4670K,
010200 Intel Core i5-6440HQ, Intel Core i7-3610QM, Snapdragon SD865,
010000 AMD FX-8320E (AM3+ 125W 8c8t), Intel Core i5-7500T, Intel Core i5-4690, Intel i5 4690T,
009000 Spectrum Unisoc Tiger T7280 (T620), Cortex-X2, MediaTek Dimensity 1300 (4 A78, 4 A55),
008700 AMD FX-6130 (AM3+ 90W 6c6t), Intel Core i5-7400T, Intel Core i5-4590T,
008500 Intel Core i5-6500T, AMD Athlon 300GE (AM4, 35W), AMD Athlon Gold 7220U,
008000 AMD Ryzen R1606G (FP5 15W), AMD FX-6300 (AM3 65W 6c6t), Intel Core i5-2500K,
007500 AMD Ryzen 3 3200U, AMD Ryzen 3 3250U, Intel Alderlake ULX N100 / N95,
007200 AMD Ryzen 3 2200U (FP5 25W 2c4t), Intel Core i3-7100T, Intel Twinlakes N150 N200, Xbox(TM) One S,
007100 AMD Ryzen R1505G (FP5, 15W), RK3576 4 A72, 4 A53, Snapdragon XR2 Gen 1, Intel i7-6600U and 7600U,
006600 Qualcomm Snapdragon 888 5G, AMD Athlon 300U (FP5 2c4t 15W), Intel Core i7-7500U, AMD V1202B,
006500 Intel Core i7-6500U, AMD Athlon Gold 3150U, Intel Celeron N5105 (FCBGA1338 15W), SD 685,
006300 Intel Core i3-8130U (15W), Intel Celeron N5095 (FCBGA1338 15W), Intel Core i3-6100T,
006100 Intel Core i5-6300U, Intel Core i5-7200U (2c4t), Intel i7-5500U, Intel Core i7-6600U (2c4t),
006000 Intel Core i5-6200U (2c4t), Intel Core i3-7130U, Intel i7-4500U, Qualcomm Snapdragon 888 4G,
005950 Intel Core i5-4570T, Intel Core i5-5257U, Rockchip RK3588 (4 A76, 4 A55), Snapdragon 7325,
005900 Intel Xeon X5550, Intel Core i5-4300M, MediaTek Dimensity 1200 (4 A78, 4 A55), Unisoc 7255 (T616),
005800 Intel Celeron J4125 J4105 (FCBGA1090 15W), Intel Core i5-3470T, AMD A8-6600K APU, AMD 3015E (2c4t),
005600 Intel Core i5-3360M, Intel Core i7-3520M, Intel Core i5-4210M, Intel Pentium G4600T,
005400 MediaTek Dimensity 900 (2 A78, 6 A55), AMD Athlon Silver 7120U, Snapdragon 860,
005300 AMD PRO A12-9800B 7th Gen APU (FP4 15W), AMD FX-4300 4c4t, AMD Ryzen R1305G,
005250 Intel Core i5-3230M, AMD FX-7600P, Intel Pentium G4400, Unisoc T7200 (Unisoc T606 2 A76, 6 A55),
005200 AMD PRO A10-8770E, AMD A10-9700E, AMD PRO A10-9700B (FP4 15W), Intel Core i3-4130T,
005100 AMD RX-427BB (FP3 15W), AMD A10-9620P, AMD A12-9720P, Intel Core i3-8145U, AMD A12-9830B,
005050 AMD A8-5500 (FM2 65W), AMD A10 PRO-7800B APU, Intel Pentium Silver N5000, Intel Core i7-5500U,
005000 Intel Core i5-5300U, Intel Core i5-3320M (2c4t), Intel Core i5-5350U, Unisoc T618 (2 A73 6 A53),
004900 Intel Core i5-4300U, Intel Core i5-5200U, Intel Core i3-4100M, Snapdragon 662 (SM6115),
004860 Intel Core i7-2620M, Intel Core i7-2640M, AMD Athlon Silver 3050U 3050e, Intel i3-7020U,
004650 Intel Core i5-2520M (2c4t), Intel Core i5-3210M, AMD A10-9600P (FP4 4c 15W), Pentium 4415U,
004625 Intel Core i3-7100U (FCBGA1356 15W), ARM A76 RK3588S, AMD A10-6800B APU,
004600 AMD PRO A8-9600B, AMD PRO A12-8830B, AMD PRO A10-8730B, AMD A12-9700P, Intel Core i3-6100U,
004200 AMD A10-8700P A8-8600P, Intel Core i5-4200U, Intel Core i5-2540M, Intel i3-6006U, Intel i3-4150T,
004000 Intel Core i5-2430M, AMD PRO A8-8600B, AMD 3020e, Intel Core i3-5005U, Mediatek MT6797 Helio X20,
003850 Intel Core i5-2410M (2c4t), Intel Core i3-2120 (LGA1155 65W), Mediatek MT8786,
003800 AMD A10-4600M APU, AMD A10 PRO-7350B APU, AMD A10-5750M APU, Rockchip RK3399,
003600 AMD A8-6500T APU, AMD A8-7410 APU, AMD PRO A6-8550B, AMD A8-5550M (4c4t),
003500 AMD GX-424CC SOC (FT3b 25W 4c4t), ARM A75 Unisoc Tiger T610 (Spreadtrum) (8c 5W),
003400 AMD A10-7300 APU, AMD A6-7310 APU, AMD A8-6410, AMD A10-5745M APU, Intel Core i3-4000M,
003350 Intel Pentium G2020, Intel Core i3-3120M (G2 2c4t), AMD R-464L APU, Intel® Core m5-6Y57 (2c4t),
003300 AMD GX-420CA SOC (FT3 BGA769 25W), AMD A6-9500E, Intel Celeron N4200, AMD A6-5200 ( 25W 2c2t),
003200 AMD A6-6310 APU, AMD A6-6400B APU, AMD A6-8570E, AMD A8-4500M APU, AMD A6-7400K APU
003000 AMD A8-7150B, AMD A9-9410, A9-9420, A9-9425, AMD A6-8500B (FP4 15W), AMD A8-7100,
002900 AMD PRO A6-8530B, AMD A6-8500P, AMD A8-3500M APU, Intel Core i3-2120T,
002700 AMD Embedded GX-420GI (FP4 15W), AMD PRO A6-9500B, AMD GX-415GA, AMD A4-6210 APU,
002600 AMD A6-9225, AMD A8-4555M APU, AMD A4-5000 APU (FT3 15W), AMD A6-9220, AMD A6-3420M APU,
002450 Intel Celeron 2950M, Intel Pentium N3700, Intel Core i3-2350M, Allwinner A523 (8 A55),
002400 Intel Celeron N3150, Intel Core i3-2330M, Intel Xeon W3505, AMD A6-9210, Allwinner H618 (4 A53),
002300 Intel Celeron N3350, AMD A4-9120, AMD A4-9125, Intel Core i3-2310M, Intel Celeron 3865U,
002200 AMD A9-9420e, AMD A6-5350M APU, AMD E2-6110 APU, AMD E2-9000e, Celeron N4500, Intel N3710,
002000 AMD GX-412HC, AMD A4-4300M APU, AMD A6 PRO-7050B APU, AMD A6-4400M APU, AMD A6-7000,
001925 Intel Core2 Duo E6700, Intel Pentium Extreme Edition 965, Intel Core i3-370M, Celeron N4020,
001750 Intel Core i3-2365M 2375M, AMD A4-9120C, Intel Core2 Duo T8300, Qualcomm MSM8939,
001600 AMD GX-222GC (BGA769 FT3b 15W), AMD A4-9120e, AMD Embedded GX-215JJ, AMD A4-4355M APU,
001550 Intel Core2 Duo SL9400 T7600 T6600, AMD E2-3200, AMD A6-9220e, Mediatek MT8783, AMD E2-3800,
001500 AMD GX-218GL SOC, AMD A6-4455M, AMD A4-5150M APU, ARM A55 RK3566 (4c 3W), Intel Core2 Duo T8100,
001400 AMD GX-217GA SOC, ARM Cortex-A53 4c4t H700, AMD A4-3300M APU, Allwinner A133P A64 (4 A53),
001300 AMD Turion 64 X2 Mobile TL-64 TL-62, Intel Core2 Duo T7300, Intel Core2 Duo T5600, AMD RX-216TD,
001250 AMD GX-412TC SOC, AMD A4-3320M APU, AMD Athlon 64 X2 QL-66, Intel Core2 Duo T7200
001200 AMD Athlon 64 X2 2c TK-57, AMD Turion 64 X2 Mobile TL-60 RM-74, AMD E1-2500, AMD E2-7015,
001150 Intel Core2 Duo T5550, Intel Core2 Duo L7500, AMD E2-3000M APU, ARM A35 RK3266, AMD E2-7110,
001100 Intel Core2 Duo T5300, AMD Athlon 64 X2 3800, Intel Core2 Duo E4300, Mediatek MT8127,
001050 AMD E1-6010 APU, Intel Pentium T4300, Intel Celeron N2840,
001050 AMD Athlon 64 FX-57, AMD Athlon 64 X2 Dual-Core TK-55, AMD Turion 64 X2 Mobile TL-52
001000 Intel Core2 Duo T5500, Intel Core2 Duo L7300, Intel Core2 Duo SU9400,
000950 AMD G-T56N, AMD Athlon 64 3100+, AMD E2-2000 APU,
000950 AMD Turion 64 X2 Mobile TL-50, AMD E1-2200 APU, Intel Celeron U3400,
000925 AMD TurionX2 Dual Core Mobile RM-72, AMD Sempron 140
000920 Intel Celeron SU2300, Intel Core2 Duo T5200, AMD Turion 64 X2 Mobile TL-56
000890 AMD E2-1800 APU, AMD Turion 64 X2 Mobile TL-58
000880 AMD G-T56E, AMD G-T48E,
000860 AMD E-450 APU, AMD E-350 APU, AMD Athlon LE-1620
000820 AMD A4-1250 APU, AMD Athlon LE-1600,
000810 AMD E1-2100 APU, Intel Core Duo T2500,
000810 Intel Atom D510, Intel Core2 Duo U7500,
000800 AMD Geode NX 2400+, AMD Turion 64 Mobile ML-42, AMD Athlon II Neo K325,
000760 AMD V140, AMD E1-1200 APU, AMD Athlon 64 3300+,
000730 Intel Core Duo T2400, AMD Turion 64 Mobile MK-38, AMD Sempron 3600+,
000700 Intel Core2 Duo U7600 U7700, AMD Sempron LE-1200, AMD V120
000680 AMD GX-212JC SOC, AMD E-300 APU, AMD A4-1200 APU,
000670 AMD Turion 64 Mobile MK-36 ML-37 ML-40, Mobile AMD Sempron 3800+
000640 Intel Atom N2600, Intel Atom N570, Mobile AMD Athlon 64 3200+
000640 Intel Core Duo T2300, Intel Core Duo T2050,
000630 VIA Eden X2 U4200, AMD Sempron LE-1100, AMD Sempron 3100+ 3600+,
000620 AMD C-70 C70 APU, Intel Atom 330, AMD G-T40N, AMD Athlon Neo MV-40,
000610 Intel Core2 Duo U7300, AMD Athlon II Neo K125 K145,
000600 Intel Atom N550, Intel Pentium 4, AMD Athlon 64 2800+,
000580 AMD C-60 C60, AMD G-T40E, AMD Sempron LE-1250
000530 AMD C-50 C50, Intel Celeron M 723, AMD Sempron 210U,
000490 AMD GX-210JA SOC, PowerPC 970 G5 IBM's 970 server CPU (2c),
000470 Mobile AMD Sempron 3500+, Mobile AMD Athlon XP-M 2200+,
000460 AMD Athlon XP 2500+, AMD Sempron 3500+, Mobile Intel Pentium 4,
000440 Intel Atom D425, Intel Atom N470, POWER 4 PPC,
000410 Intel Pentium M, Intel Celeron M, AMD Sempron 2300+
000400 Intel Atom N450, AMD Sempron 2400+,
000340 Intel Atom D410, AMD G-T52R, AMD C-30, AMD Sempron 2200+
000330 Intel Atom N455, Intel Atom N280, Intel Atom N270 (1c1t 2W), Intel P3,
000320 Freescale NXP QorIQ P1022
000310 PowerPC G4 7447 1Ghz (1c1t 15W), PPC440 core,
000230 PowerPC PPC G3/PPC 750,
000160 Pentium II, Motorola 68060
000080 Intel 80486, Motorola 68030,
000040 Intel 80386,
000030 Motorola 68020
000008 Motorola 68000
</pre>
=== Recommended hardware (32-bit) ===
[[#top|...to the top]]
Recommended hardware is hardware that has been tested with latest release of AROS and is relatively easy to purchase second hand (ie. ebay). This hardware also comes with commitment that compatibility will be maintained with each future release.
If in future decision will be made to drop any of the recommended hardware from the list (for example due to it no longer being available for purchase), such hardware will move to list of legacy supported systems and will have an indicated end of life date so that users have time to switch to other hardware.
{| class="wikitable sortable" width="100%"
| <!--OK-->{{Yes|'''Works well'''}} || <!--Not working-->{{No|'''Does not work'''}} || <!--Not applicable-->{{N/A|'''N/A not applicable'''}}
|-
|}
==== Virtual Hardware ====
{| class="wikitable" width="100%"
! width="20%" |Name
! width="5%" |Storage
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |Ethernet
! width="5%" |Wireless
! width="10%" |Additional hardware
! width="45%" |Comments
|-
| VirtualBox 7.x (Other/Unknown template) || {{Yes|IDE<br/>SATA(AHCI)}} || {{Yes|VMWARESVGA}} || {{Yes|HDAudio}} || {{Yes|PCNET32<br/>E1000}} || NOT APPLICABLE || NOT APPLICABLE || <!--Comments-->
|-
| VMware 16+ (Other32 template) || {{Yes|IDE<br/>SATA(AHCI)}} || {{Yes|VMWARESVGA}} || {{Yes|SB128}} || {{Yes|PCNET32}} || NOT APPLICABLE || NOT APPLICABLE || <!--Comments-->
|-
| QEMU 8.x ("pc" and "q35" machines) || {{Yes|IDE<br/>SATA(AHCI)}} || {{Yes|VESA}} || {{Yes|SB128}} || {{Yes|PCNET32}} || NOT APPLICABLE || NOT APPLICABLE || <!--Comments-->
|-
|}
==== Laptops ====
{| class="wikitable" width="100%"
! width="20%" |Name
! width="5%" |Storage
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |Ethernet
! width="5%" |Wireless
! width="10%" |Additional hardware
! width="45%" |Comments
|-
| ACER Aspire One ZG5 || {{Yes|IDE<br/>SATA(IDE)}} || {{Yes|GMA}} || {{Yes|HDAudio}} || {{Yes|RTL8169}} || {{Yes|ATHEROS}} || NOT APPLICABLE || <!--Comments-->
|-
| Dell Latitude D520 || {{Yes|IDE}} || {{Yes|GMA}} || {{Yes|HDAudio}} || {{Yes|BCM4400}} || {{No|}} || {{Yes|Atheros AR5BXB63}} || * select Intel Core 2 64-bit version, not Celeron 32-bit version <br/> * replace WiFi card to get wireless working
|-
|}
==== Desktop Systems ====
{| class="wikitable" width="100%"
! width="20%" |Name
! width="5%" |Storage
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |Ethernet
! width="5%" |Wireless
! width="10%" |Additional hardware
! width="45%" |Comments
|-
| Fujitsu Futro S720 || {{Yes|SATA(AHCI)}} || {{Yes|VESA}} || {{Yes|HDAudio}} || {{Yes|RTL8169}} || NOT APPLICABLE || NOT APPLICABLE || * no 2D/3D acceleration<br/> * use USB ports at back
|-
|}
==== Motherboards ====
{| class="wikitable" width="100%"
! width="20%" |Name
! width="5%" |Storage
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |Ethernet
! width="5%" |Wireless
! width="10%" |Additional hardware
! width="45%" |Comments
|-
| ASUS P8Z68V LX || {{Yes|SATA(AHCI)}} || {{Yes|VESA}} || {{Yes|HDAudio}}|| {{Yes|RTL8169}} || NOT APPLICABLE || {{Yes|GeForce 8xxx/9xxx}} || * add external PCIe video card for better performance
|-
| Gigabyte GA-MA770T UD3/UD3P || {{Yes|IDE<br/>SATA(AHCI)}} || NOT APPLICABLE || {{Yes|HDAudio}}|| {{Yes|RTL8169}} || NOT APPLICABLE || {{Yes|GeForce 8xxx/9xxx}} || * requires external PCIe video card
|-
| ASUS M2N68-AM SE2 || {{Yes|IDE}} || {{Yes|NVIDIA}} || {{Yes|HDAudio}}|| {{Yes|NVNET}} || NOT APPLICABLE || {{Yes|GeForce 8xxx/9xxx}} || * connecting a disk via SATA connector is not supported at this time <br/> * add external PCIe video card for better performance
|-
| Gigabyte GA-H55M-S2H || {{Yes|IDE<br/>SATA(AHCI)}} || {{Yes|VESA}} || {{Yes|HDAudio}}|| {{Yes|RTL8169}} || NOT APPLICABLE || {{Yes|GeForce 8xxx/9xxx}} || * add external PCIe video card for better performance
|-
|}
==== Legacy supported hardware ====
{| class="wikitable" width="100%"
! width="20%" |Name
! width="5%" |Storage
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |Ethernet
! width="5%" |Wireless
! width="10%" |Additional hardware
! width="10%" |EOL
! width="35%" |Comments
|-
| iMica || {{Yes|IDE}} || {{Yes|GMA}} || {{Yes|HDAudio}}|| {{Yes|RTL8169}} || NOT APPLICABLE || NOT APPLICABLE || 2026-12-31 ||
|-
| Gigabyte GA-MA770 UD3 || {{Yes|IDE<br/>SATA(IDE)}} || NOT APPLICABLE || {{Yes|HDAudio}}|| {{Yes|RTL8169}} || NOT APPLICABLE || {{Yes|GeForce 8xxx/9xxx}} || 2026-12-31 || * requires external PCIe video card
|-
|}
=== Recommended hardware (64-bit) ===
[[#top|...to the top]]
Recommended hardware is hardware that has been tested with latest release of AROS and is relatively easy to purchase second hand (ie. ebay). This hardware also comes with commitment that compatibility will be maintained with each future release.
==== Virtual Hardware ====
{| class="wikitable" width="100%"
! width="20%" |Name
! width="5%" |Storage
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |Ethernet
! width="5%" |Wireless
! width="10%" |Additional hardware
! width="45%" |Comments
|-
| VirtualBox 7.x (Other/Unknown (64-bit) template) || {{Yes|IDE<br/>SATA(AHCI)}} || {{Yes|VMWARESVGA}} || {{Yes|HDAudio}} || {{Yes|PCNET32<br/>E1000}} || NOT APPLICABLE || NOT APPLICABLE || * No accelerated 3D support
|-
| VMware 16+ (Other64 template) || {{Yes|IDE<br/>SATA(AHCI)}} || {{Yes|VMWARESVGA}} || {{Yes|SB128}} || {{Yes|E1000}} || NOT APPLICABLE || NOT APPLICABLE || * No accelerated 3D support
|-
| QEMU 8.x ("pc" and "q35" machines) || {{Yes|IDE<br/>SATA(AHCI)}} || {{Yes|VESA}} || {{Yes|SB128}} || {{Yes|PCNET32}} || NOT APPLICABLE || NOT APPLICABLE || * No accelerated 3D support
|-
|}
==== Motherboards ====
{| class="wikitable" width="100%"
! width="20%" |Name
! width="5%" |Storage
! width="5%" |Gfx
! width="5%" |Audio
! width="5%" |Ethernet
! width="5%" |Wireless
! width="10%" |Additional hardware
! width="45%" |Comments
|-
| ASUS P8Z68V LX || {{Yes|SATA(AHCI)}} || {{Yes|VESA}} || {{Yes|HDAudio}}|| {{Yes|RTL8169}} || NOT APPLICABLE || NOT APPLICABLE || * No accelerated 3D support
|-
|}
==References==
[[#top|...to the top]]
{{reflist}}
{{BookCat}}
dnif2viqyfuq4izw4e7vup7eajhmg17
Wu Chinese
0
240327
4641184
4460314
2026-06-25T21:48:11Z
Noeiel17
3495772
fixed inaccurate language categorization
4641184
wikitext
text/x-wiki
Welcome to the '''Wu''' wikibook, a free textbook on the Wu language. To use this book, your web browser must first be configured to [[Chinese (Mandarin)/Displaying Chinese Characters|display Chinese characters]]. If the characters in the box below appear as blank boxes or garbage such as �?�?, your browser is not properly configured.
{| border="1" cellspacing="0" cellpadding="6" align="center"
| style="background-color:#eeeeee;" |{{lang|zh-hans|如果倷会讲吴语,请帮帮忙!}}
|}
== Introduction / 序 ==
{{Book search}}
{{Print version}}
*[[/About Wu|About Wu<br/> {{lang|zh-hans|关于吴语}}]] {{stage short|50%|}}
*[[/Pronunciation|Pronunciation<br/> {{lang|zh-hans|吴语发音}}]] {{stage short|50%|}}
== Lessons / 课程 ==
*[[/Lesson 1|Lesson 1: Hello!<br/> {{lang|zh-hans|第一课:倷好!}}]] {{stage short|0%|}}
{{shelves|chinese language}}
{{status|0%}}
{{alphabetical|W}}
{{Category 4 Language}}
3qf7pa6gqnr4trbsy5pgggho6kb67h1
Blender 3D: Noob to Pro/Properties Window
0
243730
4641177
4230654
2026-06-25T20:30:17Z
~2026-36706-13
3609887
/* Output Properties */ spellcheck
4641177
wikitext
text/x-wiki
<noinclude>
{{displaytitle|title=Blender 3D: Noob to Pro/Properties Window}}
</noinclude>
{{B3D:N2P/NAV
|next=3D View Windows
|previous=User Preferences Windows
|subcat=Background
}}
{{B3D:N2P/ForVersion|3.3}}
The properties window lets you change many settings and properties relating to the current scene and selected objects. You can edit many options, including customizing materials and textures, controlling how your scene is rendered and at what quality, among many other things.
The properties window is divided into categories, which themselves group individual tabs. Each tab, in turn, groups a selection of properties and settings. For example, the ''World Properties'' tab, under the ''Scene'' category, lets you control the color and texture of the background of the scene (i.e. the sky), and allows you to add volumetric effects to the scene (i.e. fog or mist). Each tab has their own, unique, icon. Some tabs will even change depending on the type of object selected!
== Active Tool and Workspace settings ==
=== Active Tool and Workspace settings ===
As the name suggests, this simply configures the active tool (for example, the move tool) and various workspace settings (such as switching to object mode when a workspace is opened).
== Scene ==
=== Render Properties ===
This tab lists settings that control the how the resulting render of a scene is displayed, such as performance-related settings, color management settings, and effects like motion blur. These settings will change depending on the render engine used, which can also be edited from this tab.
=== Output Properties ===
This tab controls various settings that determing the output of a render. This includes resolution, frame rate, file format, among other.
=== Scene Properties ===
This tab lets you choose which camera to use for rendering, change the units and edit the gravity settings for the current scene.
You can also select another scene to be a “background” for this scene. That is, all renders of this (foreground) scene will also include the contents of the background scene, as though they had been copied into this scene. While the background appears in the 3D viewport when editing this scene, none of its contents are editable, or even selectable; that has to be done in the background scene itself.
=== World Properties ===
This lets you change the environment of the scene. In this tab, you can edit the background color and texture (i.e. the sky color), and add volumetric effects such as fog or mist.
== Collection ==
=== Collection Properties ===
This tab lets you control various collection settings, such as whether its contents are selectable, or whether it can be seen in render.
== Object ==
=== Object Properties ===
This tab lets you control general object properties, such as transformations (i.e. location, rotation, scale), parent-children obejct relationships, collections, and other. Note that even if you have multiple objects selected, these properties only control the active object, which is usually the last object selected.
=== Modifier Properties ===
This tab lets you add, edit, and remove modifiers. Object modifiers are operations that affect your object in a non-destructive way (i.e. it can always be reversed later). For example, adding the bevel modifier to a cube applies a bevel to the geometry of the cube, but you can adjust the bevel or remove the bevel whenever you like. Some object types, such as lights and cameras, can't have modifiers.
=== Visual Effects Properties ===
This tab lets you add visual effects to grease pencil objects, such as pixelation and blur effects. These effects treat the object like an image. Unlike modifiers, these can not be applied to the object.
=== Particle Properties ===
This tab lets you add particle systems to objects, which can let you create effects such as smoke, flames or sparks. Particles in Blender can also be used to generate hair or fur. Particles can be set to custom objects, to produce effects like blades of grass, water droplets on a wet surface, or even entire buildings to make up a large cityscape!
=== Physics Properties ===
This allows you to simulate real-world physics, such as simulating solid dice colliding with each other, or simulating how water in a cup reacts when you move it.
=== Object Constraint Properties ===
Constraints limit various object properties, such as the location, rotation, and scale of the object. These are usually to set animate objects, such as making the wheels of the bus rotate together.
== Object Data ==
=== Object Data Properties ===
These control settings specific to the object type such as text font, lamp settings, and camera settings. This is reflected in the icon, which changes according to the type of object selected.
== Object Shading ==
=== Material Properties ===
The material settings for an object control its appearance, e.g. its colour, whether it has a shiny or dull surface, how transparent it is, and so on.
You can also control the material of an object using shader nodes.
=== Texture Properties ===
Textures in Blender used to control the surface of an object, alongside the materials. Nowadays, it has been replaced by the shader nodes, and is only used for texture painting.
{{B3D:N2P/NAV
|next=3D View Windows
|previous=User Preferences Windows
|subcat=Background
}}
sscz8shh97zi3zfzpvzbj1ve13lefae
Chinese (Mandarin)/Lesson 11
0
255892
4641219
4192859
2026-06-26T06:46:32Z
一隻北極熊
3609960
/* Chinese Characters */
4641219
wikitext
text/x-wiki
{{Chinese (Mandarin)TOC}}
= Lesson 11: Taiwan / 第十一課:臺灣 =
{| width="80%"
! Traditional Characters
! Simplified Characters
|-
|
臺灣是一個海島。 <br />
臺灣的主要語言是中文(繁體中文)。<br />
它有各種文化,有名的特產。<br />
它處於大陸棚上。所以有海鮮。<br />
它有山脈,所以有美麗的風景。<br />
|
台湾是一个海岛。<br />
台湾的主要语言是中文(繁体中文)。<br />
它有各种文化,有名的特产。<br />
它处于大陆架上。所以有海鲜。<br />
它有山脉,所以有美丽的风景。<br />
|-
! Pīnyīn
! English
|-
|
Táiwān shì yígè hǎidǎo.<br />
Táiwān de zhǔyào yǔyán shì zhōngwén (fántǐ zhōngwén).<br />
Tā yǒu gèzhǒng wénhuà, yǒumíng de tèchǎn.<br />
Tā chǔyú dàlùjià shàng. Suǒyǐ yǒu hǎixiān.<br />
Tā yǒu shānmài, suǒyǐ yǒu měilì de fēngjǐng.<br />
|
Taiwan is an island. <br />
Its main language is Chinese (Traditional Chinese).<br />
It has a variety kinds of culture, famous local products.<br />
It is on the continental shelf. So there is seafood.<br />
It has mountains, it has beautiful scenery.
|}
== Vocabulary ==
{|class="wikitable"
|-
! Trad. Chinese !! Simp. Chinese !! Pinyin !! English
|-
| 東海 || 东海 || Dōnghǎi || East China Sea
|-
| 南海 || = || Nánhǎi || South China Sea
|-
| 山脈 || 山脉 || shānmài || mountain
|-
| 特產 || 特产 || tèchǎn || local products
|-
| 海鮮 || 海鲜 || hǎixiān || seafood
|-
| 大陸*棚 || 大陆*架 || dàlùpéng(dàlùjià) || continental shelf
|-
| 風景 || 风景 || fēngjǐng || scenery
|-
| 文化 || = || wénhuà || culture
|}
; Note:
*'''=''' means there are no differences in characters.
*'''*''' means those are different in using words, rather than in characters.
=== Chinese Characters ===
{|class="wikitable" style="text-align:center"
|-
! Traditional !! Simplified || Note
|-
| <font size=8>臺</font> || <font size=8>台</font> || "台" is also widely used in Traditional Chinese. Always feel free to use it.
|-
| <font size=8>灣</font> || <font size=8>湾</font> ||
|-
| <font size=8>海</font> || - ||
|-
| <font size=8>島</font> || <font size=8>岛</font> ||
|-
| <font size=8>東</font> || <font size=8>东</font> ||
|-
| <font size=8>南</font> || - ||
|-
| <font size=8>產</font> || <font size=8>产</font> ||
|-
| <font size=8>鮮</font> || <font size=8>鲜</font> ||
|-
| <font size=8>麗</font> || <font size=8>丽</font> ||
|-
| <font size=8>風</font> || <font size=8>风</font> ||
|-
| <font size=8>景</font> || - ||
|}
== Grammar ==
美麗(的)風景 = beautiful scenery<br>
Sometimes Chinese people drop the ‘的’ for adjectives to keep it from appearing too many times. They will say ‘美麗風景’ and ‘免費圖書(Free book)’ without the adverb '的'.
{{BookCat}}
ka82d9y930v20z35f9sw89iiye9v389
History of China
0
291938
4641228
3989975
2026-06-26T08:19:37Z
一隻北極熊
3609960
4641228
wikitext
text/x-wiki
{{info|This is a freshly started book. It does not have enough information for readers to have a brief idea on this subject. If you know this subject well, please [[w:plunge forward|plunge forward]] and help it become a better book!}}<br />
Welcome to the ''History of China'' Wikibook!
= Before you use this book=
Here are some basic knowledge you need to know before learning Chinese history.<br>
[[History of China/Introduction|Introduction]] {{stage|00%}}
= Prehistoric =
[[History of China/Prehistoric|Prehistoric]]
= Kingdom (22<sup>nd</sup> century B.C.~ 222 B.C.)=
[[History of China/The Xia Dynasty|Xia Dynasty]]{{decistage|1|}}<br>
[[History of China/The Shang Dynasty|Shang Dynasty]]{{decistage|1|}}<br>
[[History of China/Zhou Dynasty|Zhou Dynasty]]{{stage|00%}}<br>
= Imperial (221 B.C.~ 1911 A.D.)=
[[History of China/The Qin Dynasty|Qin Dynasty]]{{decistage|3|}}<br>
[[History of China/Han Dynasty|Han Dynasty]]{{stage|00%}}<br>
[[History of China/The Three Kingdoms Period|The Three Kingdoms Period]]{{stage|00%}}<br>
[[History of China/Jin Dynasty|Jin Dynasty]]{{stage|00%}}<br>
[[History of China/The Southern and Northern Dynasties|The Southern and Northern Dynasties]]{{stage|00%}}<br>
[[History of China/The Sui Dynasty|Sui Dynasty]]{{decistage|1|}}<br>
[[History of China/The Tang Dynasty|Tang Dynasty]]{{decistage|1|}}<br>
[[History of China/The Five Dynasties and Ten Kingdoms|The Five Dynasties and Ten Kingdoms]]{{stage|00%}}<br>
[[History of China/Liao Dynasty|Liao Dynasty]]{{stage|00%}}<br>
[[History of China/Song Dynasty|Song Dynasty]]{{stage|00%}}<br>
[[History of China/Western Xia Dynasty|Western Xia Dynasty]]{{stage|00%}}<br>
[[History of China/Jīn Dynasty|Jīn Dynasty]]{{stage|00%}}<br>
[[History of China/Yuan Dynasty|Yuan Dynasty]]{{stage|00%}}<br>
[[History of China/Ming Dynasty|Ming Dynasty]]{{stage|00%}}<br>
[[History of China/Qing Dynasty|Qing Dynasty]]{{stage|00%}}<br>
= Republic (since 1912 A.D.)=
[[History of China/The Republic of China|The Republic of China]]{{stage|00%}}<br>
[[History of China/History of PRC|The People's Republic of China]]{{decistage|1|}}
= Appendix=
= Related Books=
*[[Chinese History]]
<!--Stage Marks will later be removed except for the main one-->
{{Shelves|Asian history}}
{{Status|0%}}
<noinclude>
__NOEDITSECTION__
[[ja:中国史]]
[[zh:中国历史]]
[[bn:চীনের ইতিহাস]]
</noinclude>
4iqo9qa5zly6l11xuuanirgroshzpuk
Chinese (Mandarin)/Lesson 15
0
294182
4641212
3839726
2026-06-26T04:57:14Z
~2026-36857-17
3609953
4641212
wikitext
text/x-wiki
{{Chinese (Mandarin)TOC}}
=Lesson 15=
{| width="80%"
|-
! Simplified characters
! Pīnyīn
|-
|
中国,全称中华人民共和国,<br />
是一个由五十六个民族组成的国家,<br />
位于东亚。<br />
她<ref>"她" is the feminine third person singular pronoun ("she/her") and is used to represent a female person. Here, it is used as to represent a nation. This “她” could be used to represent nation, natural elements, the planet etc.</ref>风景秀丽,历史悠久,文化多元,<br />
这里的人热情好客,他们优美的语言,<br />
等着你来探索。<br />
|
Zhōngguó, quánchēng Zhōnghuá rénmín gònghéguó,<br />
shì yīgè yóu wǔshíliù gè mínzú zǔchéng de guójiā,<br />
wèiyú dōngyà.<br />
Tā fēngjǐng xiùlì, lìshǐ yōujiǔ, wénhuà duōyuán,<br />
zhèlǐ de rén rèqíng hàokè, tāmen yōuměi de yǔyán,<br />
děngzhe nǐ lái tànsuǒ.<br />
|}
==English==
China, officially called the People's Republic of China (PRC), is a country in which 56 different peoples inhabit, located in East Asia. It has beautiful views, a long history, and diverse culture. The people living there welcome you and their wonderful language is waiting for your exploration.
==Vocabulary==
*共和国 /gòng hé guó/ republic
*东亚 /dōng yà/ East Asia
*秀丽 /xiù lì/ beautiful, pretty
*悠久/ yōu jiǔ/ so long
*多元 /duō yuán/ diverse
*好客/hào kè/ welcome to
*探索/ tàn suǒ/ n. exploration verb. explore
==Note==
{{BookCat}}
m9a8x94os37bgmad1ga7qa51z6jr8p4
User:Panic2k4/TV, movies and documentaries
2
303614
4641129
4641114
2026-06-25T14:19:53Z
Panic2k4
2865
/* Seen: */
4641129
wikitext
text/x-wiki
The ratings are the same [[User:Panic2k4/Books Read|as with the books]]. I hope never to go below 4 if I do I will probably quit in the middle an that is marked with a Q this also may happen if the story does not get my interest. The 5s are the ones I wished I had avoided, 5 below is the ones I do really regret wasting my time with and most 5+ to 6- are movies are often under-budgeted or had an intentional low budget or are simply cinematic errors, not properly acted or weird script often independent productions. The 6 indicates movies that are made for their targeted audience, and fulfill their aspiration, they are good enough for at least that, beyond 6+ is reserved for pleasant commercial fluff in most part, moves that overcome mediocrity, and merit to be the start of the ones that I'm glad I've seen. Since movies tend to be less distributed in quality than books (bad movies cost more to make than a bad book to be printed) and most aggregate on the average quality 5 and 6 I've added + and - to make a better distinction and be more fair.
{{NOTE|The comments I make is based on my own taste in content and esthetics. I'm not an image or cinematography expert, even an enthusiast, simply an appreciator. If you wish to have a discussion regarding any of my observations or need to correct me somehow, use my user talk page, I would appreciate hearing from any divergent viewpoint.}}
==Seen:==
===Documentaries and other miscellaneous content:===
[https://www.youtube.com/@TheDiaryOfACEO The Diary Of A CEO]: {{YouTube link|32u5T6lO8qk|Billionaire's WARNING: I'm SELLING Everything. The Crash Is Already Here!}} (7-, I dislike the forum, too commercial and US ego centric / self promoting, but Jeremy Grantham the co-founder of GMO, an institutional investment firm in Boston, and a long-term investment strategist does a great job going over the societal collapse problem we face, from Trump and Musk into Demographics, in a clear and down to Earth way that does not make any wild or unreasonable claims.)</br>
{{YouTube link|WDbo6dDXTkA|Viewing the Work of [[w:Panos Cosmatos|Panos Cosmatos]]}} (6+, very well made overview)</br>
[[w:Adam Ruins Everything|Adam Ruins Everything]] (6-Q, only saw season 2 episode 25, it is listed as a comedy but I think its more a satiric opinion show that is too reductive to have any value)</br>
[[w:Outrageous Acts of Science|Outrageous Acts of Science]] (6-Q, only saw season 9 episode 1, interesting but the format does not work)</br>
[https://www.imdb.com/title/tt9632280/ Dead of Winter] (6Q, only saw the first episode, I really don't think this subject matter in this format can be fairly and properly televised for the masses in any positive way)</br>
[[w:Vice (TV series)|Vice]] [https://www.youtube.com/playlist?list=PLDbSvEZka6GGTP6ZlKo9eacICAAe_x-t3 FAMEish]:{{YouTube link|nkPx5vVxP9s|The Greatest Trump Impersonator on Earth}} (6)</br>
[[w:Vice (TV series)|Vice]] [https://www.youtube.com/playlist?list=PLDbSvEZka6GGTP6ZlKo9eacICAAe_x-t3 FAMEish]:{{YouTube link|lMngWwI5bPU|Meet the Martha Stewart of Marijuana}} (6)</br>
[[w:Vice (TV series)|Vice]] [https://www.youtube.com/playlist?list=PLDbSvEZka6GGTP6ZlKo9eacICAAe_x-t3 FAMEish]:{{YouTube link|I2GNnA-JF18|The Self-Proclaimed Bimbo Doll}} (6)</br>
{{YouTube link|Y_b2i_FvYPw|Hunting mad honey by Raphael Treza}} (6+)</br>
[https://www.cnbc.com/deadly-rich/ Deadly Rich] (6, only saw episode 4 of the first season, a bit bias toward the victimization of the rich and the accolades of the law enforcement)</br>
[[w:Alone Together (TV series)|Alone Together]] (6-, only saw episode 1 of the second season)</br>
[[w:Nanette (show)|Hannah Gadsby: Nanette]] (7+, not really a straight forward comedy show, yet again what is claimed to be a minority gets a huge representation, but at least this time very well done, sadly will probably go unnoticed amidst the cacophony.)</br>
[https://www.imdb.com/title/tt4835908/ David Attenborough Meets President Obama] (6)</br>
[https://www.imdb.com/title/tt6503230/ Pornocracy: The New Sex Multinationals] (6+)</br>
[[w:Gringo: The Dangerous Life of John McAfee|Gringo: The Dangerous Life of John McAfee]] (7-)</br>
[https://www.imdb.com/title/tt8197422/ Follow Your Nose: Cracking Smell's Code] (7)</br>
[[w:America: Imagine the World Without Her|America: Imagine the World Without Her]] (5+Q, political propaganda, couldn't stomach it, made an effort as it raised some valid points that indeed proves that there is a skew on the other side of the arguments but the extrapolations and the ideas that is pushes forward are just too radical and often personalized in their targets)</br>
[https://www.imdb.com/title/tt0463399/ E! True Hollywood Story] {{YouTube link|HAc75TDWe3Y|Rod Serling: Beyond The Twilight Zone}}) (6+, the editing is very annoying)</br>
[[w:Vice (TV series)|Vice]] Japan: {{YouTube link|iquoaVVUTQk|Africa's Moonshine Epidemic}}) (6+)</br>
[[w:Vice (TV series)|Vice]] Japan: {{YouTube link|aT32eTWtv18|The Homeliest Homeless}}) (6+)</br>
[http://www.imdb.com/title/tt2400435/ Snoop Dogg Presents: The Bad Girls of Comedy] (7+)</br>
[http://www.imdb.com/title/tt7183876/ Joe Mande's Award-Winning Comedy Special] (6-)</br>
[[w:TMZ on TV|TMZ on TV]] (6-Q, only saw 2018/03/01 and 12 episodes, what a load of crap content, psychologically damaging, exploitative and abusive, the format is amazingly well done for the function and very addictive they should do something like this for legislative coverage, science, consumer and civil rights)</br>
[http://www.imdb.com/title/tt6254992/ Conscious Capitalism] (5+, low in content high in self promotion and propaganda, conscience - of actions and consideration for the future, especially long term - and capitalism are incompatible, unless forced by law but then we wouldn't have capitalism at all)</br>
[[w:Fake Britain|Fake Britain]] (6Q, only saw episode 11 or the 8 season)</br>
[[w:Roman Empire: Reign of Blood|Roman Empire: Reign of Blood]] (6+, 6 episodes, sadly it adds too much speculation over the historical record)</br>
[http://www.imdb.com/title/tt7582890/ Judah Friedlander: America is the Greatest Country in the United States] (6-)</br>
Building the Sun: The 250 Million Degree Problem (7-)</br>
A.I. and the Destiny of Mankind (6)</br>
[http://www.imdb.com/title/tt2446192/ Bronies: The Extremely Unexpected Adult Fans of My Little Pony] (7-)</br>
[http://docuwiki.net/index.php?title=The_Spiral The Spiral] (7-)</br>
[http://www.imdb.com/title/tt2338173/ Radioman] (7)</br>
[http://docuwiki.net/index.php?title=The_Undiscovered_Secrets_of_Petra The Undiscovered Secrets of Petra] (7)</br>
[http://www.travelchannel.com/shows/mysterious-islands Mysterious Islands] (6-Q, only saw episode 1, the hipped sensationalistic format is a cancer)</br>
[[w:The 400 Million|The 400 Million aka China in 1938]] (6)</br>
[http://www.imdb.com/title/tt6710212/ Warning: This Drug May Kill You] (7-)</br>
[http://www.imdb.com/title/tt5747692/ After Hitler] (6+, 2 parts, a bit too sanitized in parts, too rushed and lacks factual data/statistics, generalizes too much and fails to explain the Soviets)</br>
[http://www.imdb.com/title/tt6836760/ Stonehenge: The Final Mystery] (6+)</br>
[[w:The Farthest|The Farthest]] (7+)</br>
[https://zdf-enterprises.de/en/catalogue/international/zdfefactual/history-biographies/the-secret-of-the-phaistos-code The Secret of the Phaistos Code] (7)</br>
[[w:Panorama (TV series)|Panorama]]:[http://www.imdb.com/title/tt7129272/ Trump's Fortress America] (6+)</br>
[[w:Panorama (TV series)|Panorama]]:[http://www.imdb.com/title/tt7840358/ Millionaire Bankrupts Exposed] (6, too superficial)</br>
[http://www.imdb.com/title/tt2384296/ Jay Mohr: Funny for a Girl] (6)</br>
[http://www.imdb.com/title/tt1119621/ Jim Norton: Monster Rain] (6, the in your face bi stuff creeps me a bit at times)</br>
[http://www.imdb.com/title/tt4534440/ The Secret Life of Materials] (6, the jumpy presentation is very annoying, but probably required due to the monotony of how they go about it, the content presented does not justify the time it takes to show it)</br>
[http://www.imdb.com/title/tt4938484/ Silicon Cowboys] (7-)</br>
[http://www.imdb.com/title/tt1029165/ Decoding the Past: The Tibetan Book of the Dead] (6-)</br>
[https://www.youtube.com/watch?v=ieaVjXs3oMs Brain Overload] (6-, while the subject matter is pertinent and the presentation is not bad the content is shaped as propaganda, seeming to support anti-connection legislation/policies, that I myself do not disagree are useful but without exacerbating the problem out of proportion like they did here, this is probably why the documentary was made free)</br>
[http://www.imdb.com/title/tt6544274/ Motherboard 2017] (6+, only saw episode 1 [http://www.imdb.com/title/tt6654624/ The Hunt for the New Physics], the presentation is appealing but the short format makes it not very useful)</br>
[http://video.aljazeera.com/channels/eng/topics/war-and-conflict Al Jazeera World: Libya's Shifting Sands - Derma & Sirte] (6+, 2 episodes, the editing is not very good and the content at times is redundant failing also to clearly express and substantiate its core point regarding the links amongst the fighters and external influences)</br>
[http://www.imdb.com/title/tt6946984/ Exploring Quantum History with Brian Greene] (6, 3 episodes)</br>
[http://www.imdb.com/title/tt6391320/ Ancient Earth] (6-, 3 episodes, content, that would fill many more hours, is crushed into 3 hours, the CGI, editing and production is not good, similar content exists in better form elsewhere)</br>
[https://zdf-enterprises.de/en/catalogue/international/zdfefactual/history-biographies/mission-x-collection/the-diesel-mystery The Diesel Mystery] (6, the voice over quality, script and editing is not the best, the reenactment is far superior, it is strong in speculations but weak on facts)</br>
[[w:The Toy Box|The Toy Box]] (6-Q, only saw episode 1)</br>
[http://www.imdb.com/title/tt4648556/ Impossible Engineering] (6, only saw season 3 episode 5 and 9, it is barely sufferable it goes in tangents and only covers the subject superficially, regarding the Tesla Factory episode with a highly nationalistic skew, again as with most pop US TV shows its sensationalistic format makes one cringe)</br>
[[w:Expedition Unknown|Expedition Unknown]] (6-, only saw episode 16, regarding the old Indian Vedic City of Duarka, the show is very low on real content on the subject matter and replicates the lose sensationalist format of other Travel Channel productions, but for this type of content it further reduces the quality)</br>
[[w:After Porn Ends 2|After Porn Ends 2]] (6)</br>
[http://www.imdb.com/title/tt0109508/ Crumb] (7+, extremely interesting in levels of self analysis and the raw exposure of the persons and art)</br>
[[w:Planet Earth (TV series)|Planet Earth]] (7+, 11 episodes, BBC quality but seemingly at a cost, as we now know that nature in BBC productions tends to go by a multitude of filters and all the richness is a deception for the eye not factual "nature" but a conceptualized and optimized representation)</br>
[http://www.imdb.com/title/tt2526846/ I Am Santa Claus] (6-, a bit too depressing and goes too much into other stuff)</br>
[http://www.imdb.com/title/tt4669186/ Kevin Hart: What Now?] (6)</br>
[http://www.imdb.com/title/tt5515750/ The Mad World of Donald Trump] (6, balance is hard in the midst of crazy, while it shows Trump from all angles, it sadly explores superficially mostly the negatives. Note the tactic on the snip from [[w:Larry King]]'s old interview shows that Trump has some education into subliminal persuasion, the dialog and the hand movements)</br>
[[w:For the Love of Spock|For the Love of Spock]] (6+)</br>
[[w:Panorama_(TV_series)|Panorama 2016 - Why We Voted to Leave]] (5, single sided and demagogic, since there is a clear editorial control on what is shown, and not, there is also a lack of proper analysis of the opinions expressed beyond a nodding head, there are many problems with the EU and the greatest one was the UK itself)</br>
[[w:The True Cost|The True Cost]] (7-, a bit overemotional and missed some chances to be more clear becoming a bit overextended toward the end)</br>
[[w:For No Good Reason|For No Good Reason]] (6+)</br>
[[w:Top Gear (2002 TV series)|Top Gear (2002+)]] (7-, 22 series 175 episodes with specials, I think I have watched most of them, I probably missed some at the start, the image, sound and lighting quality are at the best of what the BBC does the editing is also good and the original cast had a working chemistry that made it all work nicely, I'm not into cars at all I just enjoyed the quality and the crazy Britishness. (These qualities are something that the US version lacks and I couldn't stomach more than 5 minutes of it)</br>
[[w:Going Clear: Scientology and the Prison of Belief|Going Clear: Scientology and the Prison of Belief]] (6-, very empty of real content beyond a superficial review of some personal stories)</br>
[[w:Where to Invade Next|Where to Invade Next]] (6+, oversimplification is a problem with most of [[w:Michael Moore]]'s work, probably due to the intended audience but then it risks losing the argument due to be inaccurate or unrealistic, in any case the last bit of it attempts to put some fairness into the content, and as always with Moore's work it provides good reflection material)</br>
[http://www.imdb.com/title/tt4498460/ Killing Them Safely] (7-, a bit unbalanced and fails properly explore the central issue that is how the Police mishandles the device, exacerbating its lethal potential)</br>
[[w:The Seven Five|The Seven Five]] (7-, a bit single sided and shallow look into the events, fun to watch due to the reported events and the characters involved but not informative enough beyond the culture of a particular social area in space and time)</br>
[http://www.imdb.com/title/tt3272570/ All Things Must Pass: The Rise and Fall of Tower Records] (7)</br>
[http://www.imdb.com/title/tt4872998/ Margaret Cho: PsyCHO] (6-, also a bit to much me, me and more about me for my taste)</br>
[[w:John Bishop (comedian)|John Bishop Supersonic Live]] (6+)</br>
[[w:Cartel Land|Cartel Land]] (6, disliked the approach that attempts to pass as an simple observation of events at first but in close examination shows some partiality on what it decided to cover or how to present events, in any case the punch line is correct vigilantism is not only dangerous but a corruption of better systems that should provide better accountability and transparency, vigilantism is impractical beyond a tribal like setting were most parties are known to all)</br>
[[w:The Nightmare (2015 film)|The Nightmare]] (6, while it presents the subject for a personal experience view point it lacks the proper background about the "experiencers" for the dramatization to have any meaning and does not try to move the subject beyond those few unverifiable data-points, even if they are congruent with the general reports)</br>
[http://www.imdb.com/title/tt3735164/ 7 Deadly Sins] (7, 7 episodes)</br>
[[w:Ancient Aliens|Ancient Aliens]] (5Q, I've seen the first 4 series after that, being in its 7 season now I only have watched some episodes that touched subjects that I'm interested, while I accept some of the premises as valid, few, and consider ET presence a certainty, the show has a very low quality and lack of consistency even with its own argumentation at times it is just funny crazy, a black spot on the history channel)</br>
[[w:The Island (U.S. TV series)|The Island]] (5+, 6 episodes, bad concept and "casting", not that I like the other Bear Grylls's shows. Not because of the content but the way it is structured and presented, I think they target the lowest common denominator.)</br>
[[w:List of Horizon episodes|BBC Horizon Series 47: 2010–2011 - Asteroids – The Good, the Bad and the Ugly]] (7-)</br>
[[w:List of Horizon episodes|BBC Horizon Series 51: 2014–2015 - Allergies: Modern Life and Me]] (6, disliked the chosen format the bit that pushes the fear of salmonella in the wrong section,
that pre and pro biotics received only a brief mention or the confusion in how it openly refutes the [[w:Hygiene hypothesis]] on epidemiological grounds but adheres to it by large without stating it)</br>
[[w:List of Horizon episodes|BBC Horizon Series 51: 2014–2015 - Ebola: The Search for a Cure]] (8, I only disliked the convoluted rationalization presented for offering all of the only 3 trial medications to westerners, especially the last specimen, as defended on the documentary I find it morally objectionable.)</br>
[[w:List of Horizon episodes|BBC Horizon Series 51: 2014–2015 - The Hunt for Gravitational Waves]] (6+)</br>
[[w:List of Horizon episodes|BBC Horizon Series 53: 2017-2018 - 10 Things You Need To Know About The Future]] (6)</br>
[[w:The Jinx (miniseries)|The Jinx]] (7, 9 episodes, well crafted presentation of the issues regarding the strange life and deaths of [[w:Robert Durst]], it could have been better it gets a little overextended in what it presents, but the ending is priceless)</br>
===Series:===
[[w:The Looming Tower (miniseries)|The Looming Tower]] (6, 10 episodes, the acting is not consistent, [[w:Tahar Rahim]] does a great job, the main problem is the production value and the script that is very simplistic even infantile in areas to a point that it seems more an historic whitewash)</br>
[[w:The Walking Dead (TV series)|The Walking Dead]] (7-, 9 seasons totalling 131 episodes)</br>
[[w:The Terror (TV series)|The Terror]] (7, 10 episodes, great cast and acting, fair production and fantastic script)</br>
[[w:Grimm (TV series)|Grimm]] (6, 6 seasons totalling 123 episodes, the acting at times is problematic as is the writing but the cast manages to pull it along, it has some cool concepts and plot lines sadly it doesn't try to be more than it is)</br>
[[w:Beyond the Walls (TV series)|Beyond the Walls aka Au-delà des Murs]] (6, 3 episodes)</br>
[[w:Outlander (TV series)|Outlander]] (7, 4 seasons totalling 55 episodes - '''not concluded''', sadly there is a decay in quality of writing especially on the last 2 seasons)</br>
[https://www.imdb.com/title/tt6144672/ The Day aka De Dag] (7-, 12 episodes)</br>
[[w:Parade's End (TV series)|Parade's End]] (7, 5 episodes)</br>
[[w:Revolution (TV series)|Revolution]] (7-, 2 seasons totalling 42 episodes - '''cancelled, not concluded''')</br>
[[w:Russian Doll (TV series)|Russian Doll]] (6+, 8 episodes)</br>
[[w:Spartacus (TV series)|Spartacus]] (7-, 3 seasons totalling 39 episodes, extremely innovative cinematography and great action sequences, the plot could be better and there was a problem with recasting and rebooting the serial but overall a very refreshing take on an old subject)</br>
[[w:Strange Angel|Strange Angel]] (6+, 10 episodes - '''not concluded''', good production and cast but the plot at times seems lose focus on what to explore)</br>
[[w:Tin Star (TV series)|Tin Star]] (7, 2 seasons totalling 19 episodes - '''not concluded''', great cast with a fantastic [[w:Tim Roth]], cool plot and characters a bit production strapped but it makes it and great soundtrack [https://www.tunefind.com/show/tin-star/season-1 here S1] - [https://www.tunefind.com/show/tin-star/season-2 here S2])</br>
[[w:Insecure (TV series)|Insecure]] (6+, only saw episode 1, only for the proper audience and that ain't me)</br>
[[w:Outcast (TV series)|Outcast (TV series)]] (7+, 2 seasons totalling 20 episodes - '''not concluded''', great acting, casting and lighting, production is a bit cheap but manages to work about the limitations)</br>
[[w:The Umbrella Academy (TV series)|The Umbrella Academy]] (7, 10 episodes - '''not concluded''')</br>
[[w:Miracle Workers (2019 TV series)|Miracle Workers]] (5Q, only saw the first 2 episodes, good premise, strange casting and badly executed, too forced)</br>
[[w:Limitless (TV series)|Limitless]] (6+, 22 episodes) - '''not concluded''')</br>
[[w:Condor (TV series|Condor]] (7-, 10 episodes - '''not concluded''')</br>
[[w:Castle Rock (TV series)|Castle Rock]] (6+, 10 episodes, the main problem is the pace and how the story is presented)</br>
[[w:Counterpart (TV series)|Counterpart]] (7, 2 series of 10 episodes each)</br>
[[w:Nightflyers (TV series)|Nightflyers]] (7-, 10 episodes - '''not concluded''', cool concept even if derivative, the direction seems lacking as there is lots of over acting. Productions overuses "budget vr" too much to cut costs, and the pace is problematic, it is very slow at times, especially the emotional scenes and faster when things gets interesting action and concepts)</br>
[[w:Preacher (TV series)|Preacher]] (6+, 3 season totalling 33 episodes - '''not concluded''', the quality is not constant but it contains many cleaver ideas, didn't read the comix)</br>
[[w:Taboo (2017 TV series)|Taboo]] (7+, 8 episodes - '''not concluded''')</br>
[[w:The Mentalist|The Mentalist]] (6+, 7 seasons totalling 151 episodes)</br>
[[w:Lodge 49|Lodge 49]] (7-, 10 episodes - '''not concluded''')</br>
[[w:Impulse (TV series)|Impulse]] (6+, 10 episodes)</br>
[[w:Origin (TV series)|Origin]] (7, 10 episodes - '''not concluded''', it could have easily been better, the main issues are the scripts, that became repetitive, indulge on wasting too much screen time (maybe a production issue) and also there is a lack of directing especially of [[w:Tom Felton]] that has a lot of potential but when not on the reminiscences acts very out of a believable character)</br>
[[w:Future Man (TV series)|Future Man]] (6+, 2 seasons totalling 26 episodes - '''not concluded''', while the scripts are mostly a bit absurd, but consistent to the created universe, the cast commitment to the roles and the limited production capability to realize the scripted concepts pushes it all above the expected)</br>
[[w:Titans (2018 TV series)|Titans]] (7-, 11 episodes - '''not concluded''', so far the best Marvel/DC serial in quality of production and in script writing)</br>
[[w:The Sinner (TV series)|The Sinner]] (7, 2 self contained seasons totalling (8x2) 16 episodes)</br>
[[w:The First (TV series)|The First]] (6+, 8 episodes, great production and cast but it is a slow going drama on a Si-Fi setting, so be aware of that so to not feel frustrated)</br>
[[w:Wayne (TV series)|Wayne]] (6+, 10 episodes - '''not concluded''', great premise and acting even if the scripts fall short at times and the production value seems limited)</br>
[[w:The Mist (TV series)|The Mist (TV series)]] (6+, 10 episodes - '''not concluded''', while the twist on the original plot lines is not great it has good production value and the acting is not bad, even if there is a problem with the pace of the action)</br>
[[w:Fortitude (TV series)|Fortitude]] (6+, 3 seasons totalling 26 episodes - '''not concluded''', the quality of the seasons is a decline, not in the acting or production but on the writing, the main ideas are great and full of promise but the writers and production sadly fails to deliver)</br>
[[w:The 100 (TV series)|The 100]] (6, 5 seasons totalling 71 episodes - '''not concluded''', the main problem with the series is the writing, at times it sabotages itself making characters act out, or failing to provide satisfying resolutions to problems, as the seasons go there are improvements especially in production quality, acting and better castings)</br>
[[w:Zapped (TV series)|Zapped]] (6+, 2 seasons totalling 9 episodes, low budget and a bit limited in some of the acting but the scripts are like something out of [[w:Terry Pratchett]] and ultimately it does what it proposes to do)</br>
[[w:Bodyguard (2018 TV series)|Bodyguard]] (8, 6 episodes)</br>
[[w:The Good Cop|The Good Cop]] (6-, only saw episode 1)</br>
[[w:American Horror Story: Apocalypse|American Horror Story: Apocalypse]] (6-Q, only saw the first 2 episodes of this season, it is the third season of the serial [[w:American Horror Story]], I believe I saw the first episode of the first season and like these last 2 the quality of production is there but the scripts and acting in general terms are just bad, there is some visual quality and esthetical care but all is for not as the rest of the content makes it unbearable)</br>
[[w:Ozark (TV series)|Ozark]] (7+, 2 seasons 20 episodes total, great cast, direction and scripts, [[w:Julia Garner]] is fantastic in her role)</br>
[[w:Succession (TV series)|Succession]] (6-, only saw episode 1)</br>
[[w:Jack Ryan (TV series)|Tom Clancy's Jack Ryan]] (6+, 8 episodes, the US propaganda is strong in this one and they even get to bash the French a bit)</br>
[[w:Primeval (TV series)|Primeval]] (6-, 5 seasons totalling 36 episodes - '''not concluded''')</br>
[[w:Primeval: New World|Primeval: New World]] (6 if you had seen Primeval, 6- if not, 13 episodes - '''not concluded''')</br>
[[w:Colony (TV series)|Colony]] (7, 3 seasons totalling 35 episodes - '''not concluded''', low budget but creative with it, the scripts are above average and the acting and probably directing, makes it enjoyable and wanting to come for more)</br>
[[w:Take Two (TV series)|Take Two]] (6, only saw the first episode, not good or innovative but mildly entertaining)</br>
[[w:The Outpost (TV series)|The Outpost]] (5Q)</br>
[[w:Me, Myself & I (TV series)|Me, Myself & I]] (6-, only saw the first 2 episodes, the comedy is too forced and formulaic and I didn't like much of the casting, the concept is interesting but the scripts fall short)</br>
[[w:Mr. Mercedes (TV series)|Mr. Mercedes]] (8, 10 episodes)</br>
[[w:People of Earth|People of Earth]] (6, 2 seasons totalling 20 episodes - '''not concluded''', it could easily have been better, the scripts and the format creates issues more than the low budget, the cast is fantastic for what it is as are the effects)</br>
[[w:Inspector George Gently|Inspector George Gently]] (6-, only saw episode 1 of season 9, a low budget, mixed quality acting and basic script writing makes it fall flat)</br>
[[w:The Orville|The Orville]] (7-, 12 episodes - '''not concluded''', great production quality, well casted and acted, the main issues are the openly social preaching scripts and highly derivative content)</br>
[[w:The Living and the Dead (TV series)|The Living and the Dead]] (6+, 6 episodes - '''not concluded''', BBC quality, great acting only the scripts pull the series back)</br>
[https://www.imdb.com/title/tt4167960/ Stripped] (6-, only saw episode 1)</br>
[[w:Here and Now (2018 TV series)|Here and Now]] (6-, only saw episode 1)</br>
[[w:Quacks (TV series)|Quacks]] (6Q, only saw episode 1, almost a 6- it depends on the audience)</br>
[[w:Goliath (TV series)|Goliath]] (7-, 8 episodes)</br>
[[w:Deep State (TV series)|Deep State]] (7-, 8 episodes)</br>
[[w:Damnation (TV series)|Damnation]] (6Q, only saw up to episode 2, good production, characters but not as good script and blatant propagandist at times)</br>
[[w:Lost in Space (2018 TV series)|Lost in Space (2018)]] (7-, 10 episodes - '''not concluded''', it could easily have been better 10% reduction on epic music, better direction of the kid and script accommodation for him, some scenes do not work at all and less repetition of patterns on the script, different but the same becomes boring at that slow pace)</br>
[[w:Kim's Convenience (TV series)|Kim's Convenience]] ( 6+, 2 seasons totalling 28 episodes, there is a negative bell curve change in quality of the writing on episodes 7 to 12)</br>
[[w:Black Lightning|Black Lightning]] (6-Q, only saw episode 1, low quality even if it has some production value, it also feels too racial oriented)</br>
[[w:Plebs (TV series)|Plebs]] (5+Q, only saw episode 1 or the 4th season)</br>
[[w:Britannia (TV series)|Britannia]] (5+Q, only saw episode 1, acting is problematic, the script is lacking especially due to being a purportedly historically based, the production also misses the point that people, their wardrobe and scenes should be dirtier, less plastic and more chaotic. The only exception is [[w:Nikolaj Lie Kaas]] great acting, distinct presence it even clashes with the other characters, more than was decidedly intended)</br>
[[w:Instinct (U.S. TV series)|Instinct (U.S.)]] (6-Q, only saw episode 1, the script and characters were not catching, there are better alternatives)</br>
[[w:Alias (TV series)|Alias]] (7-, 5 seasons totalling 105 episodes, I skipped a few, but loved the script history arcs, regretted them not having as good production as lesser projects, as the acting and writing is far more consistent in quality)</br>
[[w:24 (TV series)|24]] (6, 9 seasons totalling 204 episodes + some web content, the production quality is very good as the pace of the writing, the scripts could be a bit better and the acting also)</br>
[[w:The Good Place|The Good Place]] (6+, 2 seasons totalling 22 episodes - '''not concluded''')</br>
[[w:From Dusk till Dawn: The Series|From Dusk till Dawn: The Series]] (6-Q, only saw, with a lot of FF up to the first episode of season 2, it diverges too much form the film, the cast and production aren't bad but the scripts are not good, too much time in dream/vision space also)</br>
[[w:Forever (U.S. TV series)|Forever (U.S.)]] (6+, 22 episodes - '''not concluded''')</br>
[[w:Altered Carbon (TV series)|Altered Carbon]] (8, 10 episodes, great cast, production and script)</br>
[[w:Dimension 404|Dimension 404]] (6, 6 episodes, the quality is very inconsistent, from acting to the scripts)</br>
[[w:Hard Sun|Hard Sun]] (6, 6 episodes - '''not concluded''', great characters, ok cast and acting, interesting main plot line but all else is too bland and repetitive)</br>
[[w:Godless (TV series)|Godless]] (7+, 7 episodes)</br>
[[w:Rewind (TV series)|Rewind]] (6, <b>pilot only</b> - {{YouTube link|Vi6u14oGmh0|Rewind}})</br>
[[w:Salvation (TV series)|Salvation]] (6-, 13 episodes - '''not concluded''', the acting and writing could have been better but it really shows no effort of wanting to be more than it is)</br>
[[w:Ray Donovan|Ray Donovan]] (7+, 6 seasons of 12 episodes each totalling (6x12) 72 episodes, great acting, impeccable image and very good writing for the most part, it somewhat gets over extended on the last season but manages to keep it cool)</br>
[[w:Stargate Universe|Stargate Universe]] (7-, 2 seasons with a 20 episodes each, it breaks a bit from the rest of the series, the quality is not constant but a crescendo, the acting quality improves with a few exceptions and the scripts overtime become better - '''cancelled, not concluded''')</br>
[[w:Sleepy Hollow (TV series)|Sleepy Hollow]] (6Q, only saw up to season 2 episode 5, it became too repetitive and the acting was not great, the major quality was the script plot, some of the effects and some times great esthetics, sadly inconsistently so)</br>
[[w:Time After Time (TV series)|Time After Time US]] (6Q, 5 episodes - '''not concluded''')</br>
[[w:Travelers (TV series)|Travelers]] (6+, 12 episodes - '''not concluded''')</br>
[[w:The Last Kingdom (TV series)|The Last Kingdom]] (7+, 2 seasons with a total of 16 episodes - '''not concluded''')</br>
[[w:Second Chance|Second Chance]] (6+, 11 episodes - '''cancelled''')</br>
[[w:Smallville|Smallville]] (6+, 10 seasons with a total of 218 episodes, while the acting is not consistent it is above average of what one would expect and there is a real production behind it all with a script designed to please the demographic it targets it still keeps making it interesting to core fans on the DC/Marvel universe)</br>
[[w:Better Call Saul|Better Call Saul]] (8, 3 seasons totalling 30 episodes)</br>
[[w:Three Inches|Three Inches]] (6+, <b>pilot only</b>)</br>
Transparent (6+, <b>pilot only</b>, sad as it had promise)</br>
[[w:Turn: Washington's Spies|Turn: Washington's Spies]] (6+, 4 series of 10 episodes each, great characters but restricted budget and a free hand with history prevents it from being more, the scripts of the episodes are also of different quality, but there is a general decline near the end)</br>
[[w:Oasis (2017 TV series)|Oasis]] (7, saw the pilot, hope it gets picked and they don't bork it, great starting material)</br>
[[w:The Triangle (miniseries)|The Triangle]] (6-, 3 parts, it could have been much more, but the script takes too many bad turns)</br>
[[w:The Leftovers (TV series)|The Leftovers]] (6+, for season 1, 7+ for season 2 and 3, totalling 28 episodes, the characters and casting are great, the script starts with a cool concept and improves after season 1 where it is it's biggest problem, too slow and confusingly presented without any gain to the story, the improvements are especially on the narrative and deepness that breaches many sensitive subjects in a very cleaver way)</br>
[[w:Crossbones (TV series)|Crossbones]] (5+Q, only saw the first 5 episodes, low production quality and [[w:Richard Coyle]] seems to be one of the few actors that attempts to make it work)</br>
[[w:South of Hell (TV series)|South of Hell]] (5-Q, only partially saw the first 2 episodes)</br>
[[w:Aftermath (2016 TV series)|Aftermath (2016)]] (5+Q, only saw first season up to episode 13, the script tries to mash too many things, that is in part the interesting bit about it, production quality and acting are not there at all)</br>
[[w:Mech-X4|Mech-X4]] (6-, only saw episode one, not in the right demographic for it, but it has some production quality)</br>
[[w:Riviera (TV series)|Riviera]] (6+, 10 episodes, the script is great, with a restricted budget and the casting a bit off but the actors do their part, except for [[w:Iwan Rheon]], he doesn't seem to make an effort to make his character shine)</br>
[[w:Cleverman|Cleverman]] (6-Q, only saw the first 3 episodes, the cultural divide seems too great for me to appreciate it)</br>
[[w:Legion (TV series)|Legion]] (7, 8 episodes - '''not concluded''')</br>
[[w:Loaded (TV series)|Loaded]] (6-Q, only saw episode 1, too forced, a few interesting characters)</br>
[[w:The Handmaid's Tale (TV series)|The Handmaid's Tale]] (8, 10 episodes)</br>
[[w:Backstrom (TV series)|Backstrom]] (6-Q, only saw up to episode 6, great characters, cleaver script bits but it is too populated, the actors don't take it seriously to a point that they degenerate in acting very similar to each-other)</br>
[[w:The Magicians (U.S. TV series)|The Magicians]] (7, 3 seasons totalling 39 episodes each, the script has great quality more than the rest of the production, the cast and characters are great. A bit too heavy on the LGBT issues and overuse of the f word, I think intentionally as to force a somewhat unpleasant cultural chock but without any real benefit to the story telling)</br>
[[w:Of Kings and Prophets|Of Kings and Prophets]] (6, 9 episodes - '''cancelled, not concluded''', not as bad as many critics pain it, my main peeves are the historic inaccuracies like the use of ballistas among other things, the limited budget, some cheesy dialogs and lack of proper exteriors, the acting improves with time))</br>
[[w:Iron Fist (TV series)|Iron Fist]] (7-, 13 episodes - '''not concluded''', while not too innovative the casting and acting is right, it has a lack of better special effects and camera work as at time the hero seems "non-heroic" in physical feats, and mind, the later a problem with the script that at times is a bit too infantile. The action sequences are also poor, Marvel did a better job in previous shows like in [[w:Daredevil (TV series)]])</br>
[[w:Dig (TV series)|Dig]] (6, 10 episodes - '''cancelled, not concluded''', the production quality is above average, the acting is fair)</br>
[[w:Emerald City (TV series)|Emerald City]] (8-, 10 episodes - '''not concluded''', good concept and production quality the only downside is some huge differences in acting capability in parts of the cast, or maybe lack of proper directing)</br>
[[w:Crashing (U.S. TV series)|Crashing]] (6-, only saw the first 3 episodes, too forced and not that funny, it has great characters but that is all)</br>
[[w:Cardinal (TV series)|Cardinal]] (8-, 6 episodes, somewhat low budget but amazing quality and acting, from the photography to the music)</br>
[[w:The Last Kingdom (TV series)|The Last Kingdom]] (7-, 8 episodes - '''not concluded''')</br>
[[w:Tomorrow When the War Began (TV series)|Tomorrow When the War Began]] (6, 6 episodes, suffers from a low budget but the pace of the script and the care put into it makes it work)</br>
[[w:Van Helsing (TV series)|Van Helsing]] (6, 13 episodes - '''not concluded''', hampered by a low budget but the script keeps it going with some innovative ideas)</br>
[[w:Taken (TV series)|Taken]] (6Q, only saw episode 1)</br>
[[w:Westworld (TV series)|Westworld]] (8, 2 seasons 20 episodes total, great production value, characters, casting and acting and cleaver script full of rich dialogs and clever ideas)</br>
[[w:Shameless (UK TV series)|Shameless (UK)]] (6-, only saw one or two episodes, the concepts as shown by the US version is fine but the acting and productions was very lax)</br>
[[w:Shameless (U.S. TV series)|Shameless (U.S.)]] (8, 7 seasons total of 84 episodes, great cast, characters, acting and clever scripts at a fantastic pace)</br>
[[w:Pure (TV series)|Pure]] (7-, 6 episodes)</br>
[[w:Scorpion (TV series)|Scorpion]] (6Q, only saw the fist 6 episodes, the scripts and ideas are a bit stale, it rehashes previous similar series)</br>
[[w:Six (TV series)|Six]] (6-Q, only saw the first 2 episodes, not very good acting and the script is very basic except in the operational side of it, the settings are great better than similar shows)</br>
[[w:The Exorcist (TV series)|The Exorcist]] (6, 10 episodes, not my cup of tea, but it has great characters and some scenes are memorable)</br>
[[w:Lexx|Lexx]] (7-, 4 seasons 61 episodes, while the quality is not constant the uniqueness of it all make it all work, fantastic characters) (*PS revisiting it I think I only saw up to season 2 or 3)</br>
[[w:Continuum (TV series)|Continuum]] (6, 4 seasons totaling 42 episodes, the writing is good but time travel is very hard, some of the acting is lacking and the budget seems short at times, it has some cool ideas)</br>
[[w:Stitchers|Stitchers]] (5+Q, only saw the first 4 episodes, too plastic and canned, the scripts, setting and image weren't good, [[w:Emma Ishta]] is fine but the rest of the cast does not commit)</br>
[[w:Powerless (TV series)|Powerless]] (6-, only saw episode 1, too infantile and forced, would be great for kids, I also had a strong dislike to the audio treatment of voices very cartoonish, the registry and pace)</br>
[[w:Quarry (TV series)|Quarry]] (7, 8 episodes, great casting, eye for detail of the era, the scripts could be easily improved especially the pace of the action as well as the cinematography)</br>
[[w:Training Day (TV series)|Training Day]] (6-Q, only saw part of episode 1, bad script, cast and acting couldn't stomach it)</br>
[[w:Containment (TV series)|Containment]] (6-, 13 episodes - '''cancelled, not concluded''', acting is mixed, a very few do alight and the script is poor)</br>
[[w:Caprica (TV series)|Caprica]] (7-, 19 episodes - '''cancelled, not concluded''', interesting but gets a bit too lost in virtual reality and we already know how that goes since Star-trek holodeck, there are some cool ideas on the script mostly dealing with the underlying universe)</br>
[[w:Sneaky Pete|Sneaky Pete]] (8, 10 episodes - '''not concluded''', great show, interesting characters, great acting and well paced script, a bit more funding for sets, better lighting, more camera work and more varied sets would be great but as is it is all good)</br>
[[w:Maigret (2016 TV series)|Maigret]] (7-, 2 episodes, sadly the production values is low, image and sound suffers from it, but the sets and acting is ok and it was very well casted)</br>
[[w:Falling Water (TV series)|Falling Water]] (6, 10 episodes, the unnecessary twisted narrative serves no real purpose beyond distraction from a weak script and then frustration after the realization that it all does not matter as the script writers can magically solve anything, and even then they make a blunder here and there)</br>
[[w:Beyond (2017 TV series)|Beyond]] (6, 10 episodes - '''not concluded''', excruciatingly slow without much creative content beyond the tease that makes it go, the directing is also problematic)</br>
[[w:Travelers (TV series)|Travelers]] (6+, 12 episodes - '''not concluded''')</br>
[[w:Dirk Gently's Holistic Detective Agency (TV series)|Dirk Gently's Holistic Detective Agency]] (6, 8 episodes - '''not concluded''', the acting quality is not uniform, it may be a problem with directing as some actors aren't even making an effort to take the job seriously, the script also has issues, it could easily have been much better)</br>
[[w:The OA|The OA]] (7, 2 seasons with 16 episodes - '''not concluded''', a well crafted big tease, fantastic casting, good acting and cleaver script that ultimately frustrates the created expectations again and again, season 2 has some minor script errors, regarding sequence and time frames capabilities)</br>
[[w:Sense8|Sense8]] (5+Q, only saw part of episode 1, visually appealing, but poor acting and script, including too much LGBT issues)</br>
[[w:Public Morals (2015 TV series)|Public Morals]] (7-, 10 episodes - '''canceled, not concluded''', fantastic cast and eye for detail, the acting and scripts are smooth but it lacks a bit of support in the production, the sets become as repetitive as the camera angles used)</br>
[[w:The Crown (TV series)|The Crown]] (6Q,only saw part of episode 1, high BBC quality but who cares about royals, the characterization can even be described as a work of propaganda)</br>
[[w:Luke Cage (TV series)|Luke Cage]] (6, 13 episodes, the script is not great it is exasperatingly slow also not very creative, and the production quality goes down the closer it gets to the end, the acting is fine and the casting shines, it also focus too much on social propaganda disturbingly so and in unnecessary musical plugging)</br>
[[w:Kevin Can Wait|Kevin Can Wait]] (6-Q, Only saw episode 1 the casting is a mess, the audience laughter is horrid and after [[w:The King of Queens]] who needs more at lesser quality)</br>
[[w:Quantico (TV series)|Quantico]] (6-Q, Only saw the first 4 episodes of season 1, not very creative and what is up with this over-presence of Indian, especially as leads in the new US shows. Is it a intentional move to get into those markets? [[w:Priyanka Chopra]] is not bad but the trend stands out badly in such an overbearing way)</br>
[[w:StartUp (TV series)|StartUp]] (7, 10 episodes - '''not concluded''', suffers from its low budget and the writing quality declined in the last 3 episodes, lightning/filters and image quality could easily be improved it is unnecessarily raw)</br>
[[w:The Night Of|The Night Of]] (8-, 8 episodes, great writing until, on my view, some out of character options near the end, it is also a rare and for it a political piece in how it shows some American minorities)</br>
[http://www.imdb.com/title/tt4800878/ Stan Lee's Lucky Man](6-, 10 episodes, low budget and with a problematic scrip due to its childish nature, it has a great premise and characters, the acting is fair but its like painting by numbers in the creative department, the directing seems also bad since some of the actors should be able to do more with what they have)</br>
[[w:Slasher (TV series)|Slasher]] (6Q, only saw the first 3 episodes, it just failed to captivate any interest)</br>
[[w:Supergirl (TV series)|Supergirl]] (6-, 1 season with a total of 20 episodes, low budget, sub par acting and stale scripting too focused to a very specific narrow audience)</br>
[[w:Stranger Things (TV series)|Stranger Things]] (8+, season 1 with 8 episodes, 7, season 2 with 6 episodes, fantastic casting and care for the epoch look, even in the initial way in the first series they worked the cinematography, going so far to the fonts selected, the plot sadly is a bit too derivative but beyond that it would be hard to make any improvements, even so on the second series the acting and the script loses quality probably a problem with directing)</br>
[[w:Man Down (TV series)|Man Down]] (5Q, only saw part of the first episode, couldn't manage more)</br>
[[w:Angel from Hell|Angel from Hell]] (6-Q, only saw the second episode, clearly directed toward a female audience, the sketches aren't very funny and the comedy is too forced)</br>
[[w:Person of Interest (TV series)|Person of Interest]] (7-, 5 seasons with a total of 103 episodes, the production, acting and casting is good, the script has cool ideas and solid history arcs but at times is repetitive and the finalization lacks not only conviction but solidity, its a bit messy. Overall quality is not constant it declines with time)</br>
[[w:iZombie (TV series)|iZombie]] (6+, [[w:List of iZombie episodes|4 seasons 58 Episodes]] - '''not concluded''', very creative, probably due to the original source material but the casting works very well, the acting quality is mixed but not that bad, major flaw is that it is a bit repetitive)</br>
[[w:The Expanse (TV series)|The Expanse]] (7-, season 1, 7+ season 2, 8 season 3, 3 seasons totaling 36 episodes, in the first season the rate is mostly due to the quality of the production cast and acting, the script is not too innovative and a bit slow and I particularly disliked the "South African" atmosphere they decided to go with at tines, the second season has a bump in production value, this in general seem more coordinated and the story is given a proper arch, less time is spent in building up the characters and so things start to get a better pace, the third season is a continuation of the improvement work and the season finale is fantastic)</br>
[[w:The Hollow Crown (TV series)|The Hollow Crown]] (6Q, only saw part of episode 1, it is hard to stomach even if the quality is there there is no patience for it, the dialogs are as illustrious as the irrelevance of it all beyond the great cast and some historical interest that today is of no relevance at all)</br>
[http://www.imdb.com/title/tt5237932/ Witless] (6-Q, only saw episode 1, too forced to be funny)</br>
[[w:The Lottery|The Lottery]] (6, 10 episodes, while the plot lines are interesting the script does not present an engaging story, one of the highlight is carefully selected wardrobe)</br>
[[w:The Last Ship (TV series)|The Last Ship]] (6, 4 seasons totaling 48 episodes, the most pressing problem is the acting, generally it is not great and the script has issues, especially in regards to emotions and nationalism and political views expressed, very basic, but at times does come out with some good ideas in regards to the settings and main plot lines)</br>
[[w:Bosch (TV series)|Bosch]] (7-, 2 series 10 episodes each, fine acting and interesting script even in a field that is hard to innovate the pace and environment, light and camera work makes it distinct)</br>
[[w:11.22.63|11.22.63]] (7-, 8 episodes, very interesting and well done, specially the first episodes, some minor logical errors on the script but it may be issues found in the original material, time traveling is always hard to write about... The last 2 episodes are very rushed and it is when the internal logic of the script starts to crumble. All past inconsistencies could have been only flaws created by the participating characters but it starts to come out of the hinges in the end. I liked the cast and the acting performances, except the part of [[w:George MacKay]], not the acting, but the direction and the character bipolar behavior.)</br>
[[w:Wynonna Earp (TV series)|Wynonna Earp]] (6-Q, only saw the 1st episode, main issue is the acting)</br>
[[w:Orphan Black|Orphan Black]] (6+, 5 seasons totaling 50 episodes - '''not concluded''', great work from [[w:Tatiana Maslany]] she is the series, the plot is interesting but the production is low cost and so it becomes repetitive both in the settings and situations and unnecessary complex as the plot branches)</br>
[[w:Power (TV series)|Power]] (7, 2 seasons 18 episodes, great acting, the pace, plot and characters are compelling)</br>
[[w:Mr. Robot (TV series)|Mr. Robot]] (7-, Season 1 with 10 episodes, great acting, interesting script and characters)</br>
[[w:Silicon Valley (TV series)|Silicon Valley]] (6-Q, only saw Season 1 and Season 2 first episode, the acting is not great nor the chemistry between the cast, the scripts are interesting at times with the pertinent information but seems to fail when dealing with the emotional and more mundane stuff)</br>
[[w:Proof (2015 TV series)|Proof]] (6, Season 1 with 10 episodes - '''not concluded''')</br>
[[w:Frank Herbert's Dune|Frank Herbert's Dune]] (7+, 3 episodes)</br>
[[w:And Then There Were None (TV series)|And Then There Were None]] (6, 3 episodes)</br>
[[w:The Frankenstein Chronicles|The Frankenstein Chronicles]] (6, 2 seasons of 6 episodes each, the low budget and the rushed ending of season one damages what could easily be a better production, the time space between seasons also does not help)</br>
[[w:12 Monkeys (TV series)|12 Monkeys]] (7-, 4 Seasons, totaling 47 episodes, good acting, workable scripts even if a little constrained on budget but manages to keep the quality constant, the plot get increasingly confusing as it goes, heh time traveling...)</br>
[[w:American Crime (TV series)|American Crime]] (6Q, only saw the firt three episodes of season 1, probably a 6+ but requires an interest for the script topic that to me it failed to make compelling, the acting and production is good)</br>
[[w:Its Always Sunny in Philadelphia|Its Always Sunny in Philadelphia]] (6Q, only saw the first 2 episodes of the first season but it seemed too contrived)</br>
[[w:Childhood's End (miniseries)|Childhood's End]] (6, I still don't understand why Syfy productions need to be so weak/cheap. This is one of the best I've seen but it fails a bit on how it circumvents what the audience would be interested to know/see and lingers too much on futile and uninteresting alternate reality love connection / triangle and rushes over some concepts, making them hard to swallow)</br>
[[w:The Man in the High Castle (TV series)|The Man in the High Castle]] (7, Season 1, 7+, Season 2, 20 episodes total - '''not concluded''', a bit slow but the alternative reality is compelling and pushed forward by a great cast, on season 1 the production quality was a bit low making it a bit restrictive and repetitive in its setting, it could well be easily converted into a 4 hour movie with some re-shooting, broader view of that reality and a faster pace that would need a reworking of the main plot, focusing less on the convolutions would have made it far better, season 2 gets a better pace, it does less character building, but in my view exaggerates on the head trips of the characters to explain motivations and concerns. [[w:Cary-Hiroyuki Tagawa]] is excellent.)</br>
[[w:Glitch (TV series)|Glitch]] (6+, 6 episodes - '''not concluded''')</br>
[[w:The Grinder (TV series)|The Grinder]] (5+Q, only saw part of episode 1)</br>
[[w:Jessica Jones|Jessica Jones]] (7+, 13 episodes, great casting, acting and writing, well up to episode 10, then it seems to be rushed or crammed to fit the 13 episodes and I blame it on the direction and editing since there is some wasted time on the slow action of the first episodes)</br>
[[w:Hung (TV series)|Hung]] (7, 3 seasons 30 episodes - '''canceled''' without proper conclusion, great cast, acting and creative writing)</br>
[[w:Helix (TV series)|Helix]] (6, 2 seasons with a total of 26 episodes - '''not concluded''', the quality is not consistent nor the acting, the writing and pace is fine even innovative in its field)</br>
[[w:FlashForward|FlashForward]] (6+, 22 episodes - '''canceled''' without proper conclusion)</br>
[[w:Doctor Who (series 1)|Doctor Who 2005]] (6-Q, seen only up to season 9 episode 8, the quality in general was never that great the lore is the more interesting part, but after the [[w:sonic screwdriver]] was turned into sunglasses and the scripts continue in a down-spiral in regards to creativity, I'm done with it...)</br>
[http://www.imdb.com/title/tt3551796/ American Odyssey] (6-, 13 episodes - '''not concluded''', the acting is not great, the action pace is unbalanced probably a writing issue, that also fails to explore the relevant bits to the history and focus on the easier but often unrealistically presented emotional connections)</br>
[[w:Outcasts (TV series)|Outcasts]] (6+, 8 episodes - '''not concluded''', the script was interesting in parts and messed up in others the acting was not of consistent quality but it was compelling)</br>
[[w:Human Target (2010 TV series)|Human Target]] (7-, 2 seasons total of 25 episodes - '''not concluded''', great cast, acting and an above average script)</br>
[[w:Agent X (TV series)|Agent X]] (5+Q, only saw episode 1, lots of FF after the major discontinuity on the first fight that indicated a lack of quality in the production, just to be surprised moments later on the casting options working with this tired script)</br>
[[w:House of Cards (US)|House of Cards (U.S. TV series)]] (7+ season 1, 7- season 2, 6+ season 3, 7 seasons 4, 4 seasons with 52 episodes - '''not concluded''')</br>
[[w:House of Cards (UK)|House of Cards (UK TV series)]] (8+, 4 episodes)</br>
[[w:Dr. Ken|Dr. Ken]] (5Q, seen part of 1st episode)</br>
[[w:Lie to Me|Lie to Me]] (6+, 3 seasons with 48 episodes, very creative script plots and subplots but also repetitive in the minutia, hence the 6+ and not a 7-, great acting and pace, [[w:Tim Roth]] makes it pop)</br>
[[w:Legends (TV series)|Legends]] (6-Q, only saw the first 3 episodes, nothing innovative or enticing, the casting of [[w:Sean Bean]] does not work for me, the age and accent, then there is the feeling that they are treating the show as canned food, no love or spark)</br>
[[w:Longmire (TV series)|Longmire]] (7-, 4 seasons with 43 episodes total, great casting, acting, setup and inventive script that manages to make the series not about the subplots but the characters and a rare glimpse on US society interaction with native american's issues)</br>
[[w:The Knick|The Knick]] (7, 2 seasons, 20 episodes, the acting and scripts are great, the production is not at the same level and the camera work and techno sound track at times become extremely annoying, less so on season 2. Counter intuitively the quality also declines as the series goes on on season 1, being the first episodes the better ones even if the characters aren't yet as rich. In season 2 the presentation is more balanced)</br>
[[w:Defiance (TV series)|Defiance]] (6, 3 seasons 38 episodes total, the production quality is sadly low but there is a lot of creativity and some few sparks of cool acting, all actors improve along the run of the serial and some characters become truly memorable, the background universe is unnecessarily complex and the script writers at times fail to be logically consistent with the reality created or let it go underused, probably due to budgetary issues)</br>
[[w:Entourage (TV series)|Entourage]] (7-, 8 seasons with a total of 98 episodes, the last 2 seasons had a drop in quality, mostly on the script writing all other production values remained consistent)</br>
[[w:Zoo (TV series)|Zoo]] (5+Q, saw 8 episodes, the acting is not great, after the first episodes the actors, the less experienced ones, have adopted the same mannerisms of the only 2 innovators, the script starts ok but degenerates too fast becoming increasingly and unnecessarily complex and without a defined path)</br>
[[w:Lucky 7 (TV series)|Lucky 7]] (6-Q, 2 episodes - '''canceled''' without proper conclusion)</br>
[[w:Resurrection (U.S. TV series)|Resurrection]] (6, 2 seasons - '''not concluded''', 21 episodes, interesting concept, so as the script goes it shows in its logical failings how absurd some religious concepts are. The acting is not consistent at all, some good actors and some bad and some actors even devolve along the run of the series probably due to lack of proper direction.)</br>
[[w:Homeland (TV series)|Homeland]] (8, 7 seasons totaling 84 episodes, the script, casting, acting and image is great, the writing degrades a bit as it goes into the last season but almost unnoticeable or complemented the incorporation of good ideas.)</br>
[[w:Taken (miniseries)|Taken]] (6+, 10 episodes, a bit confusing especially for those that aren't aware of the meme and for those that are a bit infantile on the presentation, I guess that it was weirdly directed toward a younger audience.)</br>
[[w:666 Park Avenue|666 Park Avenue]] (6, 12 episodes, haven't seen the final 13 or the promised rewritten final - '''canceled''' without proper conclusion)</br>
[[w:Peaky Blinders (TV series)|Peaky Blinders]] (8, 2 seasons, 12 episodes)</br>
[[w:Fargo (TV series)|Fargo (TV series)]] (9-, 3 seasons totaling 30 episodes)</br>
[[w:The Event|The Event]] (6+, 22 episodes - '''canceled''' without proper conclusion)</br>
[[w:Z Nation|Z Nation]] (5+, 4 seasons totaling 56 episodes, crazy scripts, general bad acting (even if improving as it goes on) and bad effects, even so, it is so bad that is fun to watch)</br>
[[w:Escobar: Paradise Lost|Escobar: Paradise Lost]] (6)</br>
[[w:Ascension (TV series)|Ascension]] (6, first 6 episodes - '''not concluded''', this is one show that one has to use their ability to suspend critical thinking as there are many issues with the preposition of the script but the pace, acting, effects and the good side of the concept makes it all go forward, since it does not provide a conclusion I would not advise spending time in it until its a finished product)</br>
[[w:American Heist|American Heist]] (5, bad script and bad directing plus the casting of [[w:Adrien Brody]] feels just weird, he tries but he does not convince)</br>
[[w:Tut (miniseries)|Tut]] (5+Q, only saw part of the first episode, the acting and casting is not great and any hope of historic correctness was quickly shoot)</br>
[[w:Wayward Pines|Wayward Pines]] (8 season 1, 7 season 2, 20 episodes total, a conclusion is provided in some way on season 1 but the ability to suspend disbelief on the logic of the plot starts to decay a few episodes near the end, as characters start to behave unrealistically and some even against what the audience would expect based on the provided construction, even so the issue is with the writing and probably on budget stresses to provide a final, this seems to be proven by an increased decline in writing quality on season 2 and even a lower quality of main actors, while the reality created is enticing the production of it seems to decay)</br>
[[w:Daredevil (TV series)|Daredevil]] (8, 3 seasons totaling 39 episodes, it has a weak 2 first seasons and in the first the series lingers more than it should after episode 8 but overall the best Marvel's hero conversion at the time, especially because it is not too juvenile or infantile as all the others so far, great casting and acting, there is a palpable improvement in the third season even if the writing still lingers in the emotional side of the story)</br>
[[w:V (2009 TV series)|V (2009]]] (6-, 2 seasons with a total of 22 episodes - '''canceled''' and '''not concluded''', not a carbon copy of the original but lacks the production budget to pull off any significance)</br>
[[w:V (1984 TV series)|V (1984)]] (6+, 19 episodes, it hasn't aged well and the acting wasn't great nor was the production value but a 80's classic with some creative plot lines and a good pace)</br>
[[w:Falling Skies|Falling Skies]] (6+, 5 seasons with a total of 52 episodes - '''not concluded''', production wise is just enough to keep it going and this influences the scripts, the CGI could also be better at times, even the creative department could be more consistent in general, but the main problem is the acting quality among the cast (and their directing) , with very few exceptions and considering that the main characters improve over time. the thing that keeps it all going is the main story arc and even so the writers at times takes us in some unnecessary side rides and rush the important stuff at the end of a season)</br>
[[w:Remember Me (TV series)|Remember Me]] (6, 3 episodes, Great cast and acting, BBC quality image but the script that starts fabulously loses quality rapidly)</br>
[[w:Da Vinci's Demons|Da Vinci's Demons]] (6-, 2 seasons 18 episodes)</br>
[[w:Banshee (TV series)|Banshee]] (7, 2 seasons / 20 ep. + web series Banshee Origins 8 ep.)</br>
[[w:Black Sails (TV series)|Black Sails]] (9, 4 seasons totalling 38 episodes, great cast, acting, writing and production value)</br>
[[w:Almost Human (TV series)|Almost Human]] (6+, 13 - '''canceled''', a bit more consistent acting and higher production and it would be extremely cool, no closure was provided to the series long history arc)</br>
[[w:Rubicon (TV series)|Rubicon]] (8, 13 episodes - '''canceled''' and '''not concluded''', very good acting, plot and production, to be clear the last episode offers some sort of haphazardly created conclusion that addresses some of the plot arches questions but does not resolve or satisfy as a real end)</br>
[[w:Ripper Street|Ripper Street]] (7 for the first season, 6 for the second and third, 3 seasons with a total of 24 episodes, great acting and some good plot lines and well created characters but the script degrades overtime into not only a slower speed but repetition and common places, the 3rd season would have closed the series nicely...)</br>
[[w:No Ordinary Family|No Ordinary Family]] (6, 20 episodes)</br>
[[w:The Shield|The Shield]] (9, 7 seasons with 88 episodes total)</br>
[[w:Under the Dome (TV series)|Under the Dome]] (5-Q, 5 for the first season and 4 for the 2nd seasons as the quality in general crashes even at script level, 26 episodes, I have stopped watching at the 4th episode of the 3rd season as I really couldn't care less about the characters the plot of the cheesy acting)</br>
[[w:The Unit|The Unit]] (6, 4 seasons with 68 episodes)</br>
[[w:Dirk Gently (TV series)|Dirk Gently]] (6)</br>
[[w:The Big Bang Theory|The Big Bang Theory]] (7 season 1, 6 season 2, 5 season 3, 4 the rest ... I just continue to see it due to character based curiosity and to define what went wrong, I think it was the script quality...)</br>
[[w:Utopia (UK TV series)|Utopia]] (6, 2 seasons with 22 episodes total, could have been better the music score and the story itself is great)</br>
[[w:Penny Dreadful (TV series)|Penny Dreadful]] (7+, 3 seasons of 8, 10 and 9 episodes respectively, superb casting, great acting and improving quality in esthetics's and editing, if it had more funding, the quality of the scripts was constant and some clumsy acting corrected it would be un-improvable)</br>
[[w:Wheel of Time|Wheel of Time]] (5, pilot)</br>
[[w:The Strain (TV series)|The Strain]] (7, 4 seasons totalling 48 episodes, while quality declines a bit on the second season, the issue being that the serial is become even slower and more repetitive it picks up a bit later even if it seems to start to be written more for a specific demographics, teenagers)</br>
[[w:The X-Files|The X-Files]] (7, 9 seasons with 202 episodes, the series hasn't aged well and the quality is not constant across all episodes, nor are they all related to the main history arch, at times the plot gets very and unnecessarily confusing, watching the movies will probably help clearing all the mess, even so there are episodes and concepts that are truly good)</br>
[[w:Terminator: The Sarah Connor Chronicles|Terminator: The Sarah Connor Chronicles]] (7, 2 series with 31 episodes - '''not concluded''')</br>
[[w:Endgame (TV series)|Endgame]] (6, 13 episodes - '''not concluded''')</br>
[[w:Eleventh Hour (U.S. TV series)|Eleventh Hour]] (6+, 18 episodes)</br>
[[w:Elementary (TV series)|Elementary]] (6+, 6 seasons totaling 141 episodes, sadly beyond season 2 the quality of episodes is not constant but the writers keep the creativity fresh with the help of a wonderful cast)</br>
[[w:Alphas|Alphas]] (6, 2 seasons with a total of 24 episodes - '''canceled''' and '''not concluded''')</br>
[[w:Poldark (2015 TV series)|Poldark (2015)]] (7-, first 2 seasons, 6 in the last 2, 4 seasons with a total of 35 episodes - '''not concluded''', good acting, great casting and filled with interesting characters all under BBC's great care for image, there is a decline in quality even of acting from season 3 on, and the scripts devolve into something similar to a soap opera with the only thing keeping it going is the investment the audience has in the characters)</br>
[[w:Weeds (TV series)|Weeds]] (7, 8 seasons with 102 episodes)</br>
[[w:Extant (TV series)|Extant]] (6, 2 seasons 26 episodes, the script and the acting, even [[w:Halle Berry]] performance could be better, probably a director's problem. The quality declines a bit on the second season too)</br>
[[w:The Suspicions of Mr Whicher|The Suspicions of Mr Whicher]] (8, 2 seasons of 2 episodes)</br>
[[w:Alcatraz (TV series)|Alcatraz]] (6, only seen 12 of the 13 episodes as it was '''canceled''', the last episode seems to have been created to provide closure as make the series salable. Not great but good acting, way better than Marvel Agents of Shield)</br>
[[w:True Blood|True Blood]] (7+, 7 seasons, 80 episodes total, great universe, fantastic characters a bit too in your face LGBT for my taste at times but it maintains a good quality across all seasons)</br>
[[w:True Detective (TV series)|True Detective]] (9, Season 1, 8 episodes, 8, Season 2, 8 episodes, fantastic characters, aesthetics and good script, even if season 1 is superior in both acting and script consistency and pace, probably due to the simpler base plot)</br>
[[w:Dexter (TV series)|Dexter]] (7 for the 1st series, 6 for the 2nd up to the 7th and 5 for the last season the 8th)</br>
[[w:Vikings (TV series)|Vikings]] (9 for the 2 first seasons, 19 episodes, 7 for the 3rd, 10 episodes, 6+ for the 4th, 20 episodes, amazing production from the image to the actors, casting and script, the casting starts to lose quality from the third season on, and the acting replicative and not character driven)</br>
[[w:Terra Nova (TV series)|Terra Nova]] (6, 13 episodes - '''canceled''')</br>
[[w:The Michael J. Fox Show|The Michael J. Fox Show]] (4, S1E1-2Q, too forced and cliché to a point it wasn't funny.)</br>
[[w:Merlin (TV series)|Merlin]] (5, 5 seasons, 65 episodes)</br>
[[w:Halt and Catch Fire (TV series)|Halt and Catch Fire]] (8 for Season 1, 10 episodes)</br>
[[w:Inside No. 9|Inside No. 9]] (6+, only saw the 1st season ep. 1 and the 2nd season ep. 2, a special taste is required, the series revolves around human social, moral constructs and behaviors)</br>
[[w:The Last Man on Earth (TV series)|The Last Man on Earth]] (6-, 4 seasons with a total 67episodes, it falls in the section of "it is so bad that I couldn't stop watching", and that it is sad because it could have been so much better, the concept and even the actors are not bad but it derails into very infantile and over extended attempts to be funny, though there are some cool ideas and the scripts improve over time)</br>
[[w:The Messengers (TV series)|The Messengers]] (5Q, seen only the first 2 episodes, the writing is the worst part but the religious setup, as presented, caters only for a selected audience, the camera works and the acting needed also an improvement)</br>
[[w:Hand of God (TV series)|Hand of God]] (6+, 10 episodes, the first episodes are great but the script seems to lose quality especially after episode 7, the plot come to a crawl at that point and the ending is unsatisfactory)</br>
[[w:World Without End (miniseries)|World Without End]] (7)</br>
[[w:United States of Tara|United States of Tara]] (8, 3 seasons of 12 episodes)</br>
[[w:Persons Unknown (TV series)|Persons Unknown]] (6, 13 episodes, good production and good acting but things start to fall apart as the great setup crumbles, sad.)</br>
[[w:Paradox (TV series)|Paradox]] (5+, 5 episodes - '''canceled''', interesting idea but not so good production.)</br>
[[w:The Fades (TV series)|The Fades]] (6-, 6 episodes, good acting, interesting concept but low production prevents it to be better.)</br>
[[w:Texas Rising|Texas Rising]] (6-, 5 episodes, good production, image and fair acting, the history channel has managed to keep that standard but with it also comes the low quality of the content and presentation, that in this case has no regard to historic accuracy, that should be principal, embarking in an infantile state propaganda, akin to those that we are accustomed to come from China or South Korea)</br>
[[w:Sense8|Sense8]] (5-, only saw the first episode)</br>
[[w:Awake (TV series)|Awake]] (7, 13 episodes - '''not concluded''')</br>
[[w:Bosch (TV series)|Bosch]] (6, pilot - '''not concluded''' )</br>
[[w:Hysteria (TV series)|Hysteria]] (6, pilot - '''not concluded''' )</br>
[[w:Allegiance (TV series)|Allegiance]] (5, seen only 1 episode, the premise was ok but, bad acting and worse script sank it, see [[w:The Americans (2013 TV series)]] for contrast)</br>
[[w:The Voices (film)|The Voices]] (5, good premise, ok acting but the story is very blah and the characters are very thin)</br>
[[w:Game of Thrones|Game of Thrones]] (9, 4 seasons, 40 episodes + A Day in the Life, season 5 making of documentary)</br>
[[w:Zero Hour (2013 TV series)|Zero Hour]] (6-, 13 episodes, the acting is not great but the script is an interesting mix of ideas)</br>
[[w:Attack on Titan|Shingeki no Kyojin]] (7, 25 episodes)</br>
[[w:X Company|X Company]] (5+Q, 3 episodes, low production more than anything harms this series, the script premise is interesting but it locks the story development into repetition, making it not very creative at all beyond the introduction to it)</br>
[[w:The Bridge (2013 TV series)|The Bridge]] (8, 2 seasons with 13 episodes each)</br>
[[w:2 Broke Girls|2 Broke Girls]] (6, season 1, 24 episodes, 5, season 2, 24 episodes, 5-, season 3 and 4, 24 and 22 episodes respectively)</br>
[[w:The Assets|The Assets]] (6, 8 episodes)</br>
==== Animation ====
[[w:Merc Storia: Yujutsushi to Suzu no Shirabe|Merc Storia: Yujutsushi to Suzu no Shirabe]] (6Q, only saw episode 1, I'm not the intended demographic and the art work and animation was not very good)</br>
[https://www.imdb.com/title/tt8421152/ Gary and His Demons] (6-, only saw episode 1, didn't like the animation artwork or audio work, even if the writing was creative)</br>
[[w:Angolmois: Record of Mongol Invasion|Angolmois: Record of Mongol Invasion]] (6, 12 episodes, the animation isn't great but the characters and plot lines keeps it going)</br>
[[w:Cardcaptor Sakura: Clear Card|Cardcaptor Sakura: Clear Card]] (6-Q, only saw part of the first episode, I remember watching the some episodes of the first series and it were better it seems to have degenerated into something like [[w:Sailormoon]])</br>
[[w:Orange (manga)|Orange]] (7+, 13 episodes)</br>
[[w:Drifters (manga)|Drifters]] (6, 12 episodes - '''not concluded''', I don't like the format nor part of the artwork, especially the eyes, but the script is fun even if a lot of it is derivative)</br>
[[w:Black Clover|Black Clover]] (6-, only saw the first episode)</br>
[[w:Angels of Death (video game)|Angels of Death aka Satsuriku no Tenshi]] (6-, only saw the first episode)</br>
[[w:Atom: The Beginning|Atom: The Beginning]] (6Q, only saw the first two episodes, the art and animation is good but the scripts fail to keep an interest)</br>
[[w:Rick and Morty|Rick and Morty]] (6-Q, only saw episode 1, great creativity, the main plot lines are great but I don't like the low quality art work and resonate badly with some of the course humor in the quantity provided)</br>
[[w:B The Beginning|B: The Beginning]] (6+, 12 episodes, art and animation ok, but the content is too derivative and no real depth is given to most of the characters or even the setting, especially since it has not been expressed on other medium)</br>
[[w:Blend S|Blend S]] (6Q, only saw episode 6, nothing to declare same stuff rehashed again and again)</br>
[[w:List of Attack on Titan episodes|Attack on Titan]] aka Shingeki no Kyojin (7-, 2 series with a total of 37 episodes - '''not concluded''', while the artwork is not that impressive nor is the animation, the script ideas that holds it together and its characters are good, even if something is lost in the second series the plot lines become more promising)</br>
[[w:The Laughing Salesman|The Laughing Salesman aka Warau Salesman]] (6-Q, only saw episode 1, did not like the artwork or the plot)</br>
[[w:Seven Mortal Sins|Seven Mortal Sins aka Sin – Nanatsu no Taizai]] (6Q, only saw the first 4 episodes, it is more like [[w:Hentai]] with a lot of Nipon censure. The art work isn't great nor the animation, the plot is innovative but the script is dedicated to the core purpose)</br>
[[w:Re:Zero − Starting Life in Another World|Re:Zero − Starting Life in Another World]] (7-, 25 episodes)</br>
[[w:Alderamin on the Sky|Alderamin on the Sky]] (7-, 13 episodes)</br>
[[w:Dimension W|Dimension W]] (6+, 12 episodes)</br>
[[w:Log Horizon|Log Horizon]] (6+, 2 series with a total of 50 episodes, the creative idea (2011) seems to be the source of other derivatives, like Overlord or DanMachi but here is presented in a very dull/repetitive way, the characters are great but the plot is slow and unnecessary complicated, the second series gains a better quality in regards to artwork but the same is lost in the script)</br>
[[w:Comet Lucifer|Comet Lucifer]] (6, 12 episodes, the artwork and animation if fine but the script is not very good beyond most, but not all, of the characters in it)</br>
[[w:Mysterious Girlfriend X|Mysterious Girlfriend X]] (6+, 13 episodes, the attention to detail on the animation movements is very cool)</br>
[[w:Berserk (2016 TV series)|Berserk (2016)]] (7-, 12 episodes, I dislike the artwork and some of the transparent computer aided animation but can't refute the quality of some of the craft and creativity behind it, there are some memorable sequences and dialogs that push it further than it would otherwise go that and the great characters and story line)</br>
[[w:Big Order|Big Order]] (6+, 10 episodes)</br>
[[w:Endride|Endride]] (6-Q, only saw the first episode, too derivative and the artwork is not that great)</br>
[[w:Lego Nexo Knights|Lego Nexo Knights]] (5Q, only saw episode 9)</br>
[[w:Planetarian: The Reverie of a Little Planet|Planetarian: The Reverie of a Little Planet]] (7, 5 episodes)</br>
[[w:Gate (novel series)|Gate]] (6+, 20 episodes, sadly the animation is not of better quality, but its a very creative concept full of interesting characters)</br>
[[w:Kabaneri of the Iron Fortress|Kabaneri of the Iron Fortress]] (7, 12 episodes)</br>
[[w:Basilisk (manga)|Basilisk]] (6+, 24 episodes)</br>
[[w:Servamp|Servamp]] (6-, only saw the first episode, while the artwork and animation is fine the plot is too absurd, even for an anime)</br>
[[w:Erased (manga)|Erased]] (7-, 12 episodes)</br>
[[w:Bungo Stray Dogs|Bungo Stray Dogs]] (6, only saw the first episode, didn't care for the plot and did not like the color "overuse" nor the excessive info-graphics, the art work and animation was fine)</br>
[[w:Spice and Wolf|Spice and Wolf]] (6+, 17 episodes - '''not concluded''', while the artwork and animation is not the best the plot and characters makes it memorable, this is also one of the few times I liked an English dub of a Japanese animation, great work by the voice actors)</br>
[[w:Kagewani|Kagewani]] (5, only saw the first episode, did not like the style of the animation, animated stills, and artwork itself)</br>
[[w:Twin Star Exorcists|Sousei no Onmyouji]] (5+, only saw the first episode, script is a rehash of better works the artwork is also not very good)</br>
[[w:Fate/Zero|Fate/Zero]] (6, 25 episodes, did not like some of the artwork, specially some of the faces, the script is not that good or innovative and the ending is very anticlimactic, it does get interesting characters and is superb on their emotional interconnections, it also tries to be a bit mental in terms of strategy and rules of its universe without being too complex or frustrate too much the viewer with "magical" exceptions)</br>
[http://www.imdb.com/title/tt4953128/ Animals] (5Q, only saw episode 1, for something similar but way better see the original [[w:Creature Comforts]])</br>
[[w:One-Punch Man|One-Punch Man]] (7-, 12 episodes, the artwork and design is very inconsistent in quality, very good parts mixed with some low quality, the most problematic is the short format that hinders the story telling and inner consistency of it)</br>
[[w:Overlord (novel series)|Overlord]] (7-, 3 seasons totaling 39 episodes - '''not concluded''', haven't seen the [[w:Original video animation|OVA]]s, I don't particularly like the artwork but the ideas on the scripts are extremely fun, resulting in a very clever mashup)</br>
[[w:Noragami|Noragami Aragoto]] (6+, 13 episodes, very creative lore and concepts)</br>
[[w:Tron: Uprising|Tron: Uprising]] (6+, 19 episodes - "Canceled", the end seems a bit rushed but it provides some closure)</br>
[[w:Shimoneta: A Boring World Where the Concept of Dirty Jokes Doesn’t Exist|Shimoneta: A Boring World Where the Concept of Dirty Jokes Doesn’t Exist]] (6+, 12 episodes, for adults, even if at times nippon culture seem extremely alien to a point of moral objection)</br>
[[w:Planetes|Planetes]] (7-, 26 episodes, a real space soap opera, great story, art style and animation, even if at times shortcuts seem to have been taken, especially toward the end)</br>
[[w:Generator Rex|Generator Rex]] (6-, 3 seasons with 60 episodes in total, great artwork and better scripting but low budget animation and very "aggressive" musical score degrades the quality, there are some very cool ideas mixed together, except the talking monkey sidekick. There is a small improvement on quality as it progresses)</br>
[[w:Gods Eater Burst|Gods Eater]] (5+, only saw the first episode not the prelude one labeled 0, I generally dislike high stylized BD or animation, in this particular work I appreciate the concept, at times almost like water color and do like the creative art but the plot and characters are rehashes)</br>
[[w:Btooom!|Btooom!]] (6, 12 episodes)</br>
[[w:Is It Wrong to Try to Pick Up Girls in a Dungeon?|DanMachi]] (6+, 13 episodes, extremely creative, funny and full of RPG references with a Nippon twist anime)</br>
[[w:Aldnoah.Zero|Aldnoah.Zero]] (6+, 24 episodes, while I do not appreciate the style, especially the one used for faces and the simplistic backgrounds, it improves as the series goes on, the action sections seem to be computer aided animation and are distinct and the plot and emotional dynamics are well structured)</br>
[[w:Tokyo Ghoul|Tokyo Ghoul]] (6, 12 episodes - '''not concluded''', good artwork but Nippon scripting is a bit over the wall for me, regarding the subject matter, beyond the commonalities that are expected)</br>
[[w:Parasyte|Parasyte - the maxim]] (7, 24 episodes)</br>
[[w:The Heroic Legend of Arslan|Arslan]] (5Q, only saw the first 2 episodes, the animation is not very good nor is the script. I hope that the books are better but there is clearly a desynchrony on how in general terms, Asians envision European medieval times and build upon that)</br>
===Movies:===
[[w:Destroyer (2018 film)|Destroyer]] (6+)</br>
[[w:Bullitt County (film)|Bullitt County]] (6-Q, subpar acting and a droll script)</br>
[https://www.imdb.com/title/tt6294226/ Stray (2019)] (6-, all ok except the script that except from the core concept, is very weak)</br>
[[w:Captain Marvel (film)|Captain Marvel]] (6+)</br>
[https://www.imdb.com/title/tt3312180/ The Last Man] (6-Q, too theatrical and the script is all over the place with attempts to pass "clever" subtext)</br>
[[w:Bird Box (film)|Bird Box]] (7-)</br>
[[w:Black Mirror: Bandersnatch|Black Mirror: Bandersnatch]] (6-)</br>
[[w:Green Book (film)|Green Book (film)]] (7-)</br>
[https://www.imdb.com/title/tt4157728/ The Last Boy] (6-)</br>
[[w:The Girl in the Spider's Web (film)|The Girl in the Spider's Web]] (6)</br>
[[w:Io (film)|Io]] (6)</br>
[[w:Glass (2019 film)|Glass]] (6+)</br>
[[w:Polar (film)|Polar]] (6-, great acting potential ruined by everything else. From a crappy camera, bad direction and foul editing to a sub par script)</br>
[[w:Bumblebee (film)|Bumblebee]] (6, the script is very bad)</br>
[[w:Mortal Engines (film)|Mortal Engines]] (6+, same formula rinse and repeat, sad, any innovative idea is just nonsense)</br>
[[w:Aquaman (film)|Aquaman]] (7-)</br>
[https://www.imdb.com/title/tt8883164/ Dead in the Water] (6)</br>
[[w:Piercing (film)|Piercing]] (6+, a bit too empty of content for the length it uses)</br>
[[w:The Man Who Killed Hitler and Then the Bigfoot|The Man Who Killed Hitler and Then the Bigfoot]] (6, the acting is fine but the script and production falters at critical moments dragging it down to mediocre levels)</br>
[[w:Alita: Battle Angel|Alita: Battle Angel]] (7-)</br>
[[w:Prospect (film)|Prospect]] (6+)</br>
[https://www.imdb.com/title/tt8329290/ The Golem] (6-)</br>
[[w:Shoplifters|Shoplifters]] (6+)</br>
[https://www.imdb.com/title/tt9679608/ Mystery 101] (6-Q)</br>
[[w:Rust Creek|Rust Creek]] (6-, almost a 6 but the script and acting was not there)</br>
[[w:The Vanishing (2018 film)|The Vanishing (2018)]] (6)</br>
[[w:The Old Man & the Gun|The Old Man & the Gun]] (6+)</br>
[[w:King Lear (2018 film)|King Lear (2018)]] (6-Q, too dry for me, I dislike play actualization that preserve de-synchronicities as fake erudition, in this case, the dialogs)</br>
[[w:Sorry to Bother You (film)|Sorry to Bother You]] (6-, it start ok, and the social commentary is well crafted but the scrip goes off the tracks in the middle not only by deepening a palpable racial dissonance but the general nonsense that is introduced)</br>
[[w:The Belstone Fox|The Belstone Fox]] (6-, it hasn't aged well especially the cinematography, but even then the editing would have been problematic, too low budged and simplified, waiting a more artistic remake as the plot lines of the original work and the underline text would merit it)</br>
[[w:Apostle (film)|Apostle]] (6, the scrip goes off the rails near the end, only the core plot lines, production value and the acting saves it, the casting/directing also works well, [[w:Dan Stevens]] type of over acting in this case is a perfect match or the intense and damaged character)</br>
[[w:The Kindergarten Teacher (2018 film)|The Kindergarten Teacher]] (7)</br>
[https://www.imdb.com/title/tt6013156/ What Still Remains] (5+)</br>
[[w:Leave No Trace (film)|Leave No Trace]] (6+)</br>
[[w:Bloody Spear at Mount Fuji|Bloody Spear at Mount Fuji]] (7-)</br>
[[w:Sekigahara (film)|Sekigahara]] (6+, the dialogs pace is too fast at times, the film would benefit more time as not to be as compressed)</br>
[[w:Hotel Artemis|Hotel Artemis]] (6)</br>
[[w:Black '47 (film)|Black '47]] (6+)</br>
[[w:Hold the Dark|Hold the Dark]] (6+)</br>
[[w:Cold Skin (film)|Cold Skin]] (7-)</br>
[[w:The Satan Bug|The Satan Bug]] (6-)</br>
[[w:I Think We're Alone Now (film)|I Think We're Alone Now]] (6)</br>
[[w:Bleach (2018 film)|Bleach]] (6)</br>
[[w:The Wailing (film)|The Wailing]] (6+)</br>
[[w:Support the Girls|Support the Girls]] (6-, sadly the script is not worth more)</br>
[[w:American Animals|American Animals]] (6, very weak 6 at that as this small story is slowly presented in almost a documentary format that is at the same time a creative approach but makes even more evident that there is very few content for it all. The acting is fine and even if limited in budget the production works for what it aim for)</br>
[[w:Remains (film)|Remains]] (5Q)</br>
[[w:Solo: A Star Wars Story|Solo: A Star Wars Story]] (6- if you love the original trilogy, 6 if you don't really care about the context of it all)</br>
[[w:Mission: Impossible – Fallout|Mission: Impossible – Fallout]] (6)</br>
[[w:Sicario: Day of the Soldado|Sicario: Day of the Soldado]] (7-)</br>
[[w:Mandy (2018 film)|Mandy]] (6, the visuals are great, the cinematography is above average but the script does little to justify the time, the acting and editing could easily be better with some luck it may get into the cult movie niche with some subjective interpretation of it all)</br>
[[w:The Meg|The Meg]] (5+, there is some production quality but the script is atrocious, maybe partly due to a cultural dissonance but even so its bad)</br>
[https://www.imdb.com/title/tt5973658/ Winter Ridge] (5Q)</br>
[[w:Mark Felt: The Man Who Brought Down the White House|Mark Felt: The Man Who Brought Down the White House]] (6+)</br>
[[w:Radius (film)|Radius]] (6, low budget but the script, the cast and acting works ok)</br>
[[w:Skyscraper (2018 film)|Skyscraper (2018)]] (6)</br>
[[w:Tag (2018 film)|Tag (2018)]] (6-)</br>
[[w:Patient Zero (film)|Patient Zero]] (6-)</br>
[[w:Bleeding Steel|Bleeding Steel]] (5+)</br>
[[w:Fahrenheit 451 (2018 film)|Fahrenheit 451 (2018)]] (6-Q)</br>
[[w:Cargo (2017 film)|Cargo (2017)]] (6)</br>
[[w:A Quiet Place (film)|A Quiet Place]] (6)</br>
[[w:Death Wish (2018 film)|Death Wish (2018)]] (6+, all is fine, even the scrip manages to have a great pace, it doesn't aspire to more than it is, if we discount the political barbs)</br>
[[w:A Wrinkle in Time (2018 film)|A Wrinkle in Time (2018)]] (6-)</br>
[[w:First Reformed|First Reformed]] (6, a bit preachy, no pun intended, and the end seems rushed and out of character)</br>
[[w:Phantoms (film)|Phantoms]] (6-, low budget, the acting is problematic only the script pushes it up a bit and even that has fails)</br>
[[w:Future World (film)|Future World]] (5+)</br>
[[w:Josie (film)|Josie]] (6-)</br>
[[w:Extinction (2018 film)|Extinction (2018)]] (6)</br>
[[w:Jurassic World: Fallen Kingdom|Jurassic World: Fallen Kingdom]] (6)</br>
[[w:Hot Summer Nights (film)|Hot Summer Nights]] (7-)</br>
[[w:How It Ends (film)|How It Ends]] (6, almost did not make it, limited budget shows and the script does not satisfy)</br>
[[w:Tomb Raider (film)|Tomb Raider (2018)]] (6+)</br>
[[w:In Darkness (2018 film)|In Darkness (2018)]] (5+)</br>
[[w:2036 Origin Unknown|2036 Origin Unknown]] (6-)</br>
[[w:Siberia (2018 film)|Siberia (2018)]] (6, almost dint make it, limited budget and the script start and pace is problematic but it goes in a crescendo and by the end it is saved)</br>
[https://www.imdb.com/title/tt3165632/ 5th Passenger] (5+, better camera work and more funding required but production is not bad and the acting is passable a better script and it would made the cut)</br>
[[w:Chappaquiddick (film)|Chappaquiddick]] (6, I do dislike these Hollywood history re-wrights)</br>
[[w:Ghost Stories (film)|Ghost Stories]] (6)</br>
[[w:Tully (2018 film)|Tully]] (6, probably a 6+ for its intended audience but I found the script a bit empty, the trailer and cast is great)</br>
[https://www.imdb.com/title/tt5017936/ Prodigy] (6-, suffers from a low budget and the acting is too stiff and theatrical but the script pushes it forward almost to a 6)</br>
[[w:Flower|Flower]] (6)</br>
[[w:Escape Plan|Escape Plan]] (6-)</br>
[[w:Escape Plan 2: Hades|Escape Plan 2: Hades]] (5+Q)</br>
[[w:Before We Vanish|Before We Vanish]] (5+Q)</br>
[[w:The Endless (film)|The Endless]] (6, could easily have been better, it goes a bit offtrack near the end, low budget and some problematic acting an lighting also do not help but a cleaver script saves it)</br>
[[w:Truth or Dare (2018 film)|Truth or Dare (2018)]] (6-, maybe a 6 for the young of the intended demographics but the script has some very big logic holes)</br>
[[w:Muse (2017 film)|Muse]] (6)</br>
[[w:Rampage (2018 film)|Rampage]] (6+, the script is a huge mess but the production, acting and cgi are the main show)</br>
[[w:Alien Code|Alien Code]] (6- but a 6 for those that can grasp the inside "messages", sadly the limited budget is noticed)</br>
[[w:Tau (film)|Tau]] (6+, a low budget and being a revisit to a well know subject becomes problematic at times but good acting and adding new ideas makes it a pleasure to see it play out)</br>
[[w:Black Butterfly (2017 film)|Black Butterfly (2017)]] (6)</br>
[[w:Ghost in the Shell (2017 film)|Ghost in the Shell]] (6+)</br>
[[w:Alien: Covenant|Alien: Covenant]] (7-)</br>
[[w:Going in Style (2017 film)|Going in Style]] (6)</br>
[[w:Tharlo|Tharlo]] (6+)</br>
[[w:Shot Caller (film)|Shot Caller]] (6)</br>
[[w:The Osiris Child: Science Fiction Volume One|The Osiris Child: Science Fiction Volume One]] (6-)</br>
[https://www.imdb.com/title/tt6891976/ Alien Reign of Man] (5Q, more than the effects or even the production limitation it is the acting and poor and slow script that are intolerable)</br>
[[w:Sacrifice (2016 film)|Sacrifice (2016)]] (6)</br>
[[w:Extraterrestrial (2011 film)|Extraterrestrial aka SP:Extraterrestre]] (6+)</br>
[https://www.imdb.com/title/tt5723416/ The Beyond] (6-)</br>
[[w:Day of the Dead: Bloodline|Day of the Dead: Bloodline]] (6-)</br>
[[w:Red Sparrow|Red Sparrow]] (6)</br>
[[w:Pacific Rim Uprising|Pacific Rim Uprising]] (6, mostly the effects and CGI the script and acting is sub par)</br>
[[w:Black Panther (film)|Black Panther]] (6, the acting is bad, the CGI is problematic and it is unnecessarily racial at times)</br>
[[w:Anon (film)|Anon]] (6, beyond the initial plot lines the script is a mess)</br>
[[w:November Criminals (film)|November Criminals]] (6-, the script needed more work the action's pace is off and the casting feels weird, the acting is fine but it doesn't seem to work well)</br>
[[w:Game Over, Man!|Game Over, Man!]] (5+Q)</br>
[[w:The Commuter (film)|The Commuter]] (6+)</br>
[[w:The Titan (film)|The Titan]] (6)</br>
[[w:Psychokinesis (film)|Psychokinesis]] (6)</br>
[[w:The Hurricane Heist|The Hurricane Heist]] (6)</br>
[[w:You Were Never Really Here|You Were Never Really Here]] (6-, the problem is all in the script and production that probably affected the choices made and the camera work)</br>
[[w:12 Strong|12 Strong]] (6)</br>
[[w:Hostiles (film)|Hostiles]] (7-)</br>
[https://www.imdb.com/title/tt6210996/ 10x10] (6)</br>
[https://www.imdb.com/title/tt4469518/ Genesis] (6-)</br>
[[w:Vanishing Waves|Vanishing Waves aka Aurora]] (7-)</br>
[https://www.imdb.com/title/tt3831344/ Amelia 2.0] (6)</br>
[[w:The Man from Earth: Holocene|The Man from Earth: Holocene]] (6- if you haven't seen the previous, 6 if you have)</br>
[[w:Brawl in Cell Block 99|Brawl in Cell Block 99]] (6+)</br>
[[w:Goodbye Christopher Robin|Goodbye Christopher Robin]] (6+, a bit too formulaic)</br>
[[w:Spartan (film)|Spartan]] (6)</br>
[[w:The Ballad of Lefty Brown|The Ballad of Lefty Brown]] (6)</br>
[[w:Thor: Ragnarok|Thor: Ragnarok]] (6+)</br>
[[w:The Open House|The Open House]] (6-)</br>
[[w:Maze (2017 film)|Maze (2017 film)]] (6)</br>
[[w:Downsizing (film)|Downsizing]] (6+, could easily been better but the plot lines was more about social comments than the stuff the attracted audience would probably want)</br>
[[w:Suburbicon|Suburbicon]] (6, could have been better but the criticism I saw was not merited)</br>
[[w:The Florida Project|The Florida Project]] (6+)</br>
[[w:The Killing of a Sacred Deer|The Killing of a Sacred Deer]] (6-, a quasi-nonsensical script but the directing of the actors, for what it was going for, and cinematography is quite good)</br>
[[w:The Cloverfield Paradox|The Cloverfield Paradox]] (6, the script has issues, the acting could be better and production value is limited but well distributed)</br>
[[w:The Ritual (2017 film)|The Ritual]] (6)</br>
[[w:Thank You for Your Service (2017 film)|Thank You for Your Service]] (6)</br>
[[w:Murder on the Orient Express (2017 film)|Murder on the Orient Express (2017)]] (6)</br>
[[w:Wonder (film)|Wonder]] (6+)</br>
[[w:Marrowbone (film)|Marrowbone]] (6+)</br>
[[w:Beast of Burden (film)|Beast of Burden]] (6-)</br>
[[w:The Lodgers (film)|The Lodgers]] (5+, good production value but all else fails in some way)</br>
[[w:All the Money in the World|All the Money in the World]] (6+)</br>
[[w:The Shape of Water|The Shape of Water]] (7-)</br>
[[w:Mute (2018 film)|Mute]] (6+, too convoluted at times it tried to mashup too many things, and the editing, how it is presented does not help)</br>
[[w:Jumanji: Welcome to the Jungle|Jumanji: Welcome to the Jungle]] (6, almost a 6- acting is not good, the script is atrocious, except in very few bits, and the CGI is also problematic, it has a good production but the allocation of resources are off)</br>
[[w:The Vanishing of Sidney Hall|The Vanishing of Sidney Hall]] (6+)</br>
[[w:The Disaster Artist (film)|The Disaster Artist]] (6+)</br>
[[w:Annihilation (film)|Annihilation]] (6, almost a 6- the script needed more work, CGI is not good enough, the cast and esthetics is what manages to save it)</br>
[[w:The Death of Stalin|The Death of Stalin]] (5, the script is atrocious, even if some form of caricature is presented only a few that understand what they are seeing will get it, the casting is also off, most of them are great actors, but the effort put in it is very basic)</br>
[[w:I Kill Giants (film)|I Kill Giants]] (6)</br>
[[w:Proud Mary (film)|Proud Mary]] (6)</br>
[http://www.imdb.com/title/tt1959563/ The Hitman's Bodyguard] (6-, almost didn't make it, some films shouldn't be made)</br>
[[w:Death Note (2017 film)|Death Note]] (6 or 6- if not aware of the other work)</br>
[[w:Pirates of the Caribbean: Dead Men Tell No Tales|Pirates of the Caribbean: Dead Men Tell No Tales]] (6, the script sinks it a bit)</br>
[[w:Transformers: The Last Knight|Transformers: The Last Knight]] (6, the scrip is the worst so far, only the eye candy saves it)</br>
[[w:Crooked House (film)|Crooked House]] (6)</br>
[[w:Skyline (2010 film)|Skyline]] (6-, limited by a shoe string budget, even so some parts of the script could easily been improved)</br>
[[w:Beyond Skyline|Beyond Skyline]] (6, less actors better acting and improved CGI, but the script again could easily been tweaked a bit to make something more)</br>
[[w:The Mountain Between Us (film)|The Mountain Between Us]] (6, [[w:Kate Winslet]] acting shines in this one but the simplicity of the story doesn't permit more)</br>
[[w:Justice League (film)|Justice League]] (6+, the CGI and the script ought to be better)</br>
[http://www.imdb.com/title/tt6204340/ Bullet Head] (6, the script needed more work)</br>
[[w:The Pirates of Somalia (film)|The Pirates of Somalia]] (6)</br>
[[w:Land of Mine|Land of Mine]] (6+)</br>
[[w:Better Watch Out (film)|Better Watch Out]] (6)</br>
[[w:The Trip to Spain|The Trip to Spain]] (5+)</br>
[[w:The Foreigner (2017 film)|The Foreigner]] (6+, still a bit too propagandist but at the same level as some similar inclined US productions)</br>
[[w:American Made (film)|American Made]] (6+)</br>
[[w:Hangman (2017 film)|Hangman]] (6, almost a 6- the the camera, editing and the direction especially of [[w:Karl Urban]] are exceptionally off)</br>
[[w:Dunkirk (2017 film)|Dunkirk]] (7+, it could have been better but managed to avoid some dangerous pitfalls, not too nationalistic or bitter but also not really going deep on the event, not even at the depth that was needed to satisfy and enrich the spectator)</br>
[[w:The Devil's Candy|The Devil's Candy]] (6+, [[w:Ethan Embry]] acting is fantastic)</br>
[[w:Mayhem (film)|Mayhem]] (6-, low budget, easy script prevents it from being more)</br>
[http://www.imdb.com/title/tt6069264/ Bitch] (5+, great premise but the script fails to deliver, the acting is not consistent)</br>
[[w:My Cousin Rachel (2017 film)|My Cousin Rachel]] (6, the pace is a bit too slow)</br>
[[w:Inherent Vice (film)|Inherent Vice]] (6+)</br>
[[w:The Man from Planet X|The Man from Planet X]] (6)</br>
[[w:Alone in Berlin (film)|Alone in Berlin]] (6, the casting overshadows and at time leads to overacting on a mostly uninteresting script) </br>
[[w:The Mummy (1999 film)|The Mummy (1999)]] (6+)</br>
[[w:The Mummy (2017 film)|The Mummy (2007)]] (6)</br>
[[w:Free Fire|Free Fire]] (6)</br>
[[w:Memories of Murder|Memories_of_Murder]] (6)</br>
[[w:Bushwick (film)|Bushwick]] (6-, almost a 6, the acting degenerates past the middle even for those that had so far been doing a good job at it)</br>
[[w:Rememory|Rememory]] (6)</br>
[[w:First Kill (2017 film)|First Kill]] (6)</br>
[[w:It Comes at Night|It Comes at Night]] (6, could easily be much better)</br>
[[w:Baby Driver|Baby Driver]] (6+, the worst part is the movie title)</br>
[[w:Walking Out|Walking Out]] (6-)</br>
[[w:No One Lives|No One Lives]] (6-, good script concept even if with some flaws but it is the acting that is not uniform that manages to ruin the movie)</br>
[[w:Jeepers Creepers 3|Jeepers Creepers 3]] (6)</br>
[[w:The Hero (2017 film)|The Hero]] (6+)</br>
[[w:What Happened to Monday|What Happened to Monday]] (6, so much potential almost a 6+, but budget and acting holds it back)</br>
[[w:Hacksaw Ridge|Hacksaw Ridge]] (6)</br>
[[w:Spider-Man: Homecoming|Spider-Man: Homecoming]] (6+)</br>
[[w:The Limehouse Golem|The Limehouse Golem]] (6)</br>
[http://www.imdb.com/title/tt2291284/ Subterranea] (5+Q)</br>
[http://www.imdb.com/title/tt3839880/ Infinity Chamber] (6, some cool ideas and mashups but limited budget and a ready to be improved script limits it)</br>
[[w:War for the Planet of the Apes|War for the Planet of the Apes]] (6)</br>
[[w:The Man with the Iron Heart (film)|HHhH aka The Man with the Iron Heart]] (6+)</br>
[[w:The Dark Tower (2017 film)|The Dark Tower]] (6)</br>
[http://www.imdb.com/title/tt4881364/ Anti Matter] (6-)</br>
[[w:Atomic Blonde|Atomic Blonde]] (6, the fights choreographies are pretty good)</br>
[[w:Jungle (2017 film)|Jungle]] (6, the cast is better than the script, not all stories merit a movie)</br>
[http://www.imdb.com/title/tt3469798/ Orbiter 9] (6)</br>
[[w:Spoor (film)|Spoor]] (6+, a weak 6+ since the script could have been better but the characters and actors are great, the context also permits the inclusion of stuff that would not work with other setups, at times it feels a bit overcrowded with ideas but ultimately that is what pushes it above in quality, it has a heavy subtext and even a bit of EU propaganda of sorts mixed in)</br>
[[w:Young Ones (film)|Young Ones]] (6-Q, great concept and some good ideas but fails in a lot of areas from the acting, to the script and production value)</br>
[[w:The Wall (2017 film)|The Wall]] (6+, a weak one mostly due to a bare script that is extremely limited from the onset, the high point is for the balance it provides amongst other similar movies in regards to the two forces in conflict)</br>
[[w:The Case for Christ|The Case for Christ]] (6-Q, I should have known better, but the production has great quality in comparison to other "jobs" like this, the settings and even acting is not bad, even if the casting could have been better, but the script is unredeemable the premise starts ok but the argumentation, character build and dialogs clearly shows a bias on the presentation and telegraphs where it intendeds to go. I really was expecting a more intelligent argumentation from both sides and some fairness on the presentation.)</br>
[[w:Rules of Engagement|Rules of Engagement]] (6)</br>
[[w:The Sunset Limited (film)|The Sunset Limited]] (8-, great acting, good script and fantastic audio work and editing, camera work could be better and the script as a few argumentation that don't flow, even considering the characters)</br>
[[w:Thor (film)|Thor]] (6+, just made it to 6+ and mostly for the effects and casting)</br>
[[w:Thor: The Dark World|Thor: The Dark World]] (6+, even if a bit better that the previous one)</br>
[[w:The Comedian (2016 film)|The Comedian]] (6)</br>
[[w:Patrick (2013 film)|Patrick]] (5+Q, all is well but the script, it even lacks originality, the acting could be better at times and the casting is a bit off)</br>
[http://www.imdb.com/title/tt3722614/ Revolt] (6, low budget but makes a huge effort, thanks to the actors and the cinematography, that it is even clever as to hide the shortfalls, the CGI is not great but passable)</br>
[http://www.imdb.com/title/tt5669936/ The Recall] (5+)</br>
[[w:John Wick: Chapter 2|John Wick: Chapter 2]] (6)</br>
[[w:The Circle (2017 film)|The Circle]] (6+, while the script is very weak, especially the characters, the core ideas in it are interesting to explore)</br>
[[w:Wonder Woman (2017 film)|Wonder Woman]] (7)</br>
[[w:2:22 (2017 film)|2:22]] (6)</br>
[http://www.imdb.com/title/tt1920846/ Another World aka The Walking Death] (6-, note that the trailer available is not related to the content of the film, low budget and a too theatrical representation of a rehashed plot, even so with more effects, better image and direction, funds and little rewriting could have been easily better)</br>
[[w:The Lost City of Z (film)|The Lost City of Z]] (6, the script is too empty, making the movie very slow and unsatisfying at the end, even if historically accurate)</br>
[[w:Once Upon a Time in Venice|Once Upon a Time in Venice]] (5+, main culprit is the script)</br>
[[w:Hot Tub Time Machine|Hot Tub Time Machine]] (6-, matches its own expectations)</br>
[[w:Camera Store|Camera Store]] (6-Q, the scrip is not good even if some of the dialog are interesting but not the setup, acting is too theatrical and with uneven quality)</br>
[[w:King Arthur: Legend of the Sword|King Arthur: Legend of the Sword]] (6+, cinematography, sound and soundtrack are amazing but the rest falls in quality, even the acting and casting, for example [[w:Jude Law]] was a poor choice, the script is too overcrowded for a single movie format, even if it is brilliant at time, great characters, ideas and dialogs)</br>
[[w:A Dark Song|A Dark Song]] (6+, simple and small budget, but a creative script and dynamic acting makes it work)</br>
[[w:Wilson (2017 film)|Wilson]] (6)</br>
[[w:Boy 7|Boy 7]] (6-Q)</br>
[[w:Future Folk|Future Folk]] (6-)</br>
[[w:Colossal (film)|Colossal]] (6)</br>
[http://www.imdb.com/title/tt5460530/ Vengeance: A Love Story] (6-Q)</br>
[[w:Personal Shopper|Personal Shopper]] (6)</br>
[[w:Isolation (2005 film)|Isolation]] (6+)</br>
[[w:Flags of Our Fathers|Flags of Our Fathers]] (6+)</br>
[[w:A Cure for Wellness|A Cure for Wellness]] (6-, the script tanks it, even if we attempt to give it a subtext it just does not work, the rest is fine not great but would serve best a better scrip, the casting of [[w:Jason Isaacs]] also seem a bit out of sync)</br>
[http://www.imdb.com/title/tt5464234/ Kill Switch] (6-, the casting is off, the script is not great, the core idea is a rehash, but the effects and visuals are great, in fact it is the best 3rd person scenes I have seen so far)</br>
[[w:War Machine (film)|War Machine]] (7, the script is the best part, but it would fall short on its vivid characters without a fantastic cast)</br>
[[w:X the Unknown|X the Unknown]] (6)</br>
[[w:Red Beard|Akahige/Red Beard]] (7-, the script is not the best but has its moments and interesting characters, the cinematography is great)</br>
[[w:Sandy Wexler|Sandy Wexler]] (5+Q)</br>
[[w:Stalker (1979 film)|Stalker]] (6-, the cinematography, imagines and visual setups are great but all else fails to captivate, the script is confusing at times uninteresting at others, except for the self contained sketches and the pace is generally too slow)</br>
[[w:Mine (2016 film)|Mine]] (6, could easily be better, it is not innovative at all)</br>
[[w:The Founder|The Founder]] (6+, good acting, great production. I do hate when Hollywood "simplifies"/rewrites history in general and so disregard any relation to reality when watching any of these works)</br>
[[w:The Void (2016 film)|The Void]] (5+Q, the script is a mess and the acting is not consistent, effects are ok)</br>
[http://www.imdb.com/title/tt3722062/ Bokeh] (6)</br>
[[w:The Great Wall (film)|The Great Wall]] (6, there is a cultural divide that still prevents movies to be portable from East to West when mixing cultural concepts)</br>
[[w:About Time (2013 film)|About Time (2013)]] (6)</br>
[http://www.imdb.com/title/tt4835894/ Middle Man (2016)] (6-Q)</br>
[http://www.imdb.com/title/tt2449638/ Atomica] (5Q)</br>
[[w:The Bay (film)|The Bay]] (5+Q)</br>
[[w:Win It All|Win It All]] (6)</br>
[[w:Here Alone (film)|Here Alone]] (6+)</br>
[[w:The Discovery (film)|The Discovery]] (6+, sadly it does waste too much time and fails to go more in depth, even around the central subject mater, [[w:Jesse Plemons]] is fantastic)</br>
[[w:Life (2017 film)|Life]] (7-, the plot ideas are better than the movie but the movie isn't bad)</br>
[[w:Gantz (film)|Gantz]] (6+, if you at least have seen the anime, 6 if not)</br>
[http://www.imdb.com/title/tt1525836/ Gantz: Perfect Answer] (6 if you saw the first, 6- if not, the script is not as good as the first film and the production seems to be more restricted in budget)</br>
[[w:Black Moon Rising|Black Moon Rising]] (5+, it hasn't aged very well the main problem is the cinematography and script even for its time it wouldn't be very good, interesting to see the younger [[w:Tommy Lee Jones]] and [[w:Linda Hamilton]])</br>
[http://www.imdb.com/title/tt5167934/ The Chamber (2016)] (6-, this sort of script requires great acting and writing to work this is not the case, it has been done better many times before)</br>
[[w:The Shack (2017 film)|The Shack]] (6, while the film had a feel good intention and for the believer will be somewhat uplifting, the concept of a personal God, one that cares about each individual continues to seem nonsensical and unworkable, even as fantasy plot-line)</br>
[[w:The White King|The White King]] (6-, great premise good acting but the script doesn't satisfy in the end)</br>
[[w:The Eagle Has Landed |The Eagle Has Landed]] (7-)</br>
[[w:Midway (film)|Midway]] (7-, these old war movies almost always get better with time, if quality is there to begin with)</br>
[[w:Marathon Man|Marathon Man]] (7)</br>
[[w:Logan's Run (film)|Logan's Run]] (6+, it also hasn't aged very well, a redo is in order)</br>
[[w:The Omen|The Omen]] (6+)</br>
[[w:Carrie (1976 film)|Carrie (1976)]] (6-, it hasn't aged well)</br>
[[w:Rocky|Rocky]] (6, it never was a great movie but time has also eroded it)</br>
[[w:Taxi Driver|Taxi Driver]] (8+)</br>
[[w:Jonah Hex (film)|Jonah Hex (film)]] (6+)</br>
[[w:King Kong (1933 film)|King Kong (1933)]] (7)</br>
[[w:King Kong (1976 film|King Kong (1976)]] (6)</br>
[[w:King Kong (2005 film)|King Kong (2005 film)]] (7-)</br>
[[w:Kong: Skull Island|Kong: Skull Island]] (7-, some improvements in regards to the backgrounds, but the script lacks some of the cool dialogs of the previous, as it is designed to put forward the visual show)</br>
[[w:Iron Man (2008 film)|Iron Man]] (7-)</br>
[[w:Iron Man 2|Iron Man 2]] (6+)</br>
[[w:Iron Man 3|Iron Man 3]] (7, but requires to have seen the previous, if not 7-, the script still suffers from blockbuster memes that shouldn't have been included)</br>
[[w:Moontrap|Moontrap]] (6-, I did like the script and some parts fo the movie, it hasn't aged well and even at its time it was a low budget production, it would merit a remake)</br>
[http://www.imdb.com/title/tt3705822/ Moontrap: Target Earth] (5, it has mostly nothing to do with the first Moontrap and it is all bad except the core ideas of the script)</br>
[[w:Silence (2016 film)|Silence]] (6+)</br>
[[w:Logan (film)|Logan]] (7-)</br>
[[w:Operation Avalanche (film)|Operation Avalanche]] (6-Q, a low budget but fantastically casted and reflecting the time in sets, costumes and image it just doesn't have the content to be a movie, the script rehashes cleverly some of the moon landing memes but it still doesn't escape the feel of being a movie student project)</br>
[[w:Why Him?|Why Him?]] (6)</br>
[[w:Live by Night (film)|Live by Night]] (6+, a bit too formulaic)</br>
[[w:The Assignment (2016 film)|The Assignment]] (6-, the cast is better than the script that sucks, even a bit frustratingly since some of the ideas in it could work indeed work. [[w:Sigourney Weaver]] does an interesting psychopath)</br>
[[w:Without Warning (1980 film)|Without Warning (1980)]] (5Q, even at its time is would have been a B movie, some star cast, or star to be, [[w:Jack Palance]], [[w:Martin Landau]], [[w:David Caruso]], the script and audio editing are very bad)</br>
[[w:The Day the Earth Caught Fire|The Day the Earth Caught Fire]] (7+, it aged well)</br>
[[w:I Don't Feel at Home in This World Anymore|I Don't Feel at Home in This World Anymore]] (6, a somewhat interesting script with some high points, interesting characters that aren't really fleshed out, the acting was fine)</br>
[[w:Tumbledown (2015 film)|Tumbledown]] (6, sweet story but [[w:Jason Sudeikis]] casting does not work and the script is a bit too bare)</br>
[[w:AfterDeath (film)|AfterDeath]] (6-)</br>
[[w:Case 39|Case 39]] (6, the casting of [[w:Renée Zellweger]] was an error and the script needed more work)</br>
[[w:Assassin's Creed (film)|Assassin's Creed]] (6, the biggest problem was casting and the uneven acting helped by a script that had little in subtleties and proper dialogs)</br>
[[w:Allied (film)|Allied]] (6+, loved the color pallet and the cinematography, the CGI was a bit too transparent)</br>
[[w:Gold (2016 film)|Gold]] (6)</br>
[[w:Underworld (2003 film)|Underworld]] (6+)</br>
[[w:Underworld: Evolution|Underworld: Evolution]] (6)</br>
[[w:Underworld: Rise of the Lycans|Underworld: Rise of the Lycans]] (6)</br>
[[w:Underworld: Awakening|Underworld: Awakening]] (6, script wise the worst than the previous ones)</br>
[[w:Underworld: Blood Wars|Underworld: Blood Wars]] (6+, but you must have watched the others or it will be hard to get into)</br>
[[w:Resident Evil (film)|Resident Evil (film)]] (7-)</br>
[[w:Resident Evil: Apocalypse|Resident Evil: Apocalypse]] (6+)</br>
[[w:Resident Evil: Extinction|Resident Evil: Extinction]] (7-)</br>
[[w:Resident Evil: Afterlife|Resident Evil: Afterlife]] (6+)</br>
[[w:Resident Evil: Retribution|Resident Evil: Retribution]] (6)</br>
[[w:Resident Evil: The Final Chapter|Resident Evil: The Final Chapter]] (6+)</br>
[[w:Safety Not Guaranteed|Safety Not Guaranteed]] (6-Q, well I didn't quit but there was a lot of fast forward, some interesting ideas but the acting script and production values aren't there)</br>
[[w:Teenage Cocktail|Teenage Cocktail]] (6-Q, too much focused to a specific type of audience to have any interest for me and the quality is not that great to make me linger, it has a very 90s feel about it that does not help)</br>
[http://www.imdb.com/title/tt3612320/ Within] (6-, some of the acting has problems and the script in not very good, extremely derivative)</br>
[[w:The 9th Life of Louis Drax|The 9th Life of Louis Drax]] (6-, the script has problems and it wouldn't at its core be worth a movie, the convolutions added still does not justify the time. All the rest is fine and it has an above average music score)</br>
[[w:War on Everyone|War on Everyone]] (6-Q, the script is a mess, there are some interesting sketches and it rewrites or reuses some old ones but the narrative and the quality below the setup is very bad, the acting is not bad and as for image production and casting they are above average even the selection of film color)</br>
[[w:Patriots Day (film)|Patriots Day]] (6+, a bit of a propaganda work, movies should avoid contemporaneous events if possible as they often serve to rewrite history or skew the discourse, in this case the "reality" goes by a very heavy filter and what goes out only slightly has any points of connection to factual events and ultimately is one sided)</br>
[http://www.imdb.com/title/tt3138344/ Baked in Brooklyn] (6-)</br>
[http://www.imdb.com/title/tt2445178/ Molly Moon and the Incredible Book of Hypnotism] (5+Q)</br>
[[w:USS Indianapolis: Men of Courage|USS Indianapolis: Men of Courage]] (5+Q, the script is horrid as are some of the CGI, image quality and pallet is great and the acting in not bad but the script is just unbearable)</br>
[[w:The Girl with All the Gifts (film)|The Girl with All the Gifts]] (7+)</br>
[[w:Road Games (film)|Road Games]] (6-Q, too slow and the image is too raw, the script and its characters did not impress)</br>
[[w:Passengers (2016 film)|Passengers]] (7-)</br>
[[w:Equity (film)|Equity]] (5+Q, casting, acting and script are bad)</br>
[[w:Genius (2016 film)|Genius]] (7-)</br>
[[w:Dollman (film)|Dollman]] (5Q)</br>
[[w:The Autopsy of Jane Doe|The Autopsy of Jane Doe]] (6)</br>
[[w:Rogue One|Rogue One]] (7-)</br>
[[w:Time Out of Mind (2014 film)|Time Out of Mind]] (7-, a bit slow but the script is very well planed all dialogs contribute to shape not only the story but to establish the background of the reality portrayed. The acting/directing is superb, all around. The only downside is the medium, the editing and story pace seems more like a TV movie than cinema)</br>
[http://www.imdb.com/title/tt4800418/ Manson's Lost Girls] (6-Q, all good but the format, a TV movie with very cropped image and fast editing, cast, acting and production is good, the best I've seen covering this tired subject)</br>
[[w:The Benefactor (film)|The Benefactor]] (6-Q)</br>
[http://www.imdb.com/title/tt3954876/ Don Quixote: The Ingenious Gentleman of La Mancha] (5+Q)</br>
[[w:The Thinning|The Thinning]] (5+, bad script and some sub par acting)</br>
[http://www.imdb.com/title/tt2106651/ Spectral] (7-, a little better CGI, a little less corner cutting in the script and a little more creative cinematics and it would be great)</br>
[[w:The Liberator (film)|The Liberator]] (6, great image quality, decent cinematography and well acted the main problem is the script that feels too slow, missing pertinent historical information or simply oversimplifies)</br>
[[w:Dad's Army|Dad's Army]] (6-, great casting and image, but acting and script fail to work)</br>
[[w:The Siege of Jadotville (film)|The Siege of Jadotville]] (6-, good acting but low budget and poor script)</br>
[[w:Train to Busan|Train to Busan]] (6-, interesting movie but some of the casting, acting and CGI/effects does not match a better script, has great ideas but some are derivative, it is also a bit too long but manages not to get repetitive)</br>
[[w:The Da Vinci Code (film)|The Da Vinci Code]] (7)</br>
[[w:Angels & Demons (film)|Angels & Demons]] (6+)</br>
[[w:Inferno (2016 film)|Inferno]] (6)</br>
[[w:The Serpent and the Rainbow (film)|The Serpent and the Rainbow]] (5Q, it was never a good movie but it also hasn't aged well at all)</br>
[[w:Creative Control (film)|Creative Control]] (5+Q)</br>
[http://www.imdb.com/title/tt3471098/ Maggie's Plan] (6-Q)</br>
[[w:Masterminds (2016 film)|Masterminds]] (6-)</br>
[[w:Fantastic Beasts and Where to Find Them (film)|Fantastic Beasts and Where to Find Them]] (7-)</br>
[[w:The Accountant (2016 film)|The Accountant]] (6+, a bit too formulaic but a cool and well told story)</br>
[[w:True Memoirs of an International Assassin|True Memoirs of an International Assassin]] (6-Q)</br>
[[w:Arrival (film)|Arrival]] (6+, a too heavy on the emotional content and light on the technological side, even if one must recognize some effort on that area)</br>
[[w:Snowden (film)|Snowden]] (6, a weak one, only reached because of the heroic performance by [[w:Joseph Gordon-Levitt]] in this a low budgeted underwhelming script shown in monotonous cinematography)</br>
[[w:Dog Eat Dog (2016 film)|Dog Eat Dog]] (6-, the script is a mess in its sequencing, character build and its too dry, beyond the Bogart joke, that is a bit out of date, and personal crisis of [[w:Willem Dafoe]]'s character that occurs out of the blue)</br>
[[w:Sully (film)|Sully]] (6, often reality do not a good movie make, but I'm glad that the hyperbole was kept to a bearable degree making it watchable in this format)</br>
[http://www.imdb.com/title/tt3976144/ The Monster] (6, the acting, image, cinematography and a well balanced script, even if very derivative, elevates it beyond the stigma of being a low budget production)</br>
[http://www.imdb.com/title/tt3597108/ Plan Z] (6-, low budget and crappy camera makes it all worst than it is, the script could have had a bit more of work but cinematics, acting and effects are ok)</br>
[[w:Miss Peregrine's Home for Peculiar Children (film)|Miss Peregrine's Home for Peculiar Children (film)]] (6)</br>
[[w:Doctor Strange (film)|Doctor Strange]] (7-, visually great but the script is a bit empty of creativity beyond the effects and cramped with lore and origin to a point that the viewer only sees highlights but few nuances, if they make a second one maybe the actors can really act in a more well paced and crafted script)</br>
[[w:Army of One (2016 film)|Army of One]] (6, sadly a low value production that could have been much more. One of the best roles I have seen [[w:Nicolas Cage]] in, especially recently. He carries all the movie but that barely saves it, the script is repetitive at times and generally not good beyond Cage's character.)</br>
[[w:Nine Lives (2016 film)|Nine Lives]] (6-)</br>
[[w:Jack Reacher: Never Go Back|Jack Reacher: Never Go Back]] (6)</br>
[[w:In a Valley of Violence|In a Valley of Violence]] (6, could easily have be better, but parts of what could have been a great script are weakly constructed or are too derivative and the camera work is horrid at times even if the cinematography is above par, this all would indicate budget problems but the cast seems to indicate a bad production choice, heck the most memorable roles are by the dog and Tommy Nohilly (Tubby) anyway...)</br>
[[w:Anthropoid (film)|Anthropoid]] (6-, low budget and bad script, actors and props are fine but even the camera work and cinematography at times feels cheap)</br>
[http://www.imdb.com/title/tt3286052/ February] (6-, everything even the cinematography and music score is great but the script and the presentation chosen makes it am almost painful experience, there really is no content)</br>
[[w:Captain Fantastic (film)|Captain Fantastic]] (7-)</br>
[[w:The Infiltrator (2016 film)|The Infiltrator (2016)]] (6, suffers a bit from a low budget, the lighting is not good and the script is formulaic and seems directed into elevating its pedestrian characters)</br>
[[w:Zoom (2015 film)|Zoom (2015)]] (6-, some cleaver ideas, good enough casting and acting but the script is not right, the characters needs more building time so that the audience can appreciate them, it would be fine as a short film, even more compressed or extended into a series)</br>
[[w:Mechanic: Resurrection|Mechanic: Resurrection]] (6-, only problem is the brain dead script, it could be a 6 but the nonsense directing the action makes it pointless)</br>
[[w:Special Correspondents|Special Correspondents]] (6-, it has the start of an interesting subtext but as the main plot it doesn't do much with it, I also have a particular dislike as [[w:Ricky Gervais]] always portray him as the ultimate underdog ad nausea, it is tiresome)</br>
[http://www.imdb.com/title/tt2932532/ Blood Trap] (5Q)</br>
[[w:Morgan (2016 film)|Morgan]] (6, a bit frustrating that the script wasn't more forward thinking, many lost opportunities making it fell too claustrophobic, shallow and repetitive, a ripe opportunity to someone to pick the core premises and make it go well beyond)</br>
[http://www.imdb.com/title/tt3865238/ ChickLit] (6)</br>
[[w:Swiss Army Man|Swiss Army Man]] (6-, while the encoded subtext is open to interpretation the script in itself is not that great, some cool sketches some cool philosophical issues and a good enough acting does not make a good movie alone, a bit fun but a lot wieldier, but ultimately that is the point being made)</br>
[[w:Café Society (film)|Café Society]] (7-)</br>
[[w:Alice Through the Looking Glass (film)|Alice Through the Looking Glass]] (6+)</br>
[[w:The Good Neighbor (film)|The Good Neighbor]] (6-)</br>
[[w:ARQ (film)|ARQ]] (6)</br>
[http://www.imdb.com/title/tt2278870/ ISRA 88] (5, low budget and nonsensical script, the production value is there, even decent acting sadly it does not go anywhere)</br>
[http://www.imdb.com/title/tt3330764/ The Neighbor] (6-, horrid camera at times, the script needed more work, the characters and setup is fine and the acting is not bad)</br>
[[w:Other People (film)|Other People]] (6-Q, too forced and the script is not good)</br>
[[w:Transpecos (film)|Transpecos]] (6-, the acting could have been more consistent and the script have more content and close more of the storyline, the main issue was probably the low budget)</br>
[http://www.imdb.com/title/tt0084329/ A Midsummer Night's Sex Comedy] (6, the editing is a bit bad, especially if we compare it with more contemporaneous works)</br>
[[w:Don't Breathe (2016 film)|Don't Breathe]] (6+)</br>
[[w:The Confirmation|The Confirmation]] (6)</br>
[[w:I Am Not a Serial Killer (film)|I Am Not a Serial Killer]] (5+Q)</br>
[http://www.imdb.com/title/tt2243260/ Swung] (5+Q)</br>
[[w:Into the Forest|Into the Forest]] (6, the script loses a bit of coherence near the end)</br>
[[w:The Neon Demon|The Neon Demon]] (7-)</br>
[[w:Our Kind of Traitor (film)|Our Kind of Traitor]] (6)</br>
[[w:Blood Father|Blood Father]] (7-, the script loses momentum as it approaches the end and sadly [[w:Mel Gibson]] fails to innovate, not that it is bad, never is, just repetitious, we already seem to have seen all he can offer on screen too many times)</br>
[[w:War Dogs (2016 film)|War Dogs]] (7-)</br>
[http://www.imdb.com/title/tt4475992/ Tank 432] (5)</br>
[[w:Secret in Their Eyes|Secret in Their Eyes]] (6+)</br>
[[w:Imperium (2016 film)|Imperium]] (6)</br>
[[w:Arbitrage (film)|Arbitrage]] (6+)</br>
[[w:Regression (film)|Regression]] (6, it could easily be much better but the script keeps it too simplistic and formulaic)</br>
[[w:One Eyed Girl|One Eyed Girl]] (6-Q, good acting and cinematography, and enjoyable premise but the script has bad pace and lacks content)</br>
[[w:600 Miles|600 Miles]] (6, low budget but well done and with [[w:Tim Roth]] to boot, camera work leaves something to desire at times and the argument is not that complex but its the simplicity that makes it work)</br>
[http://www.imdb.com/title/tt2818252/ Couple in a Hole] (6, it could easily be better)</br>
[[w:Flight of the Navigator|Flight of the Navigator (1986)]] (6-, it hasn't aged well but would be still fun for kids)</br>
[[w:Breakdown (2016 film)|Breakdown]] (6)</br>
[[w:We Need to Talk About Kevin (film)|We Need to Talk About Kevin]] (6, the script presentation is a mess, it requires a lot of patience to get into the crazy way things are shown, the story is ok and the acting is above par)</br>
[[w:All the Way (film)|All the Way]] (6, the script is too revisionist and emotional focused, it skirts some of the most important issues, the casting is great and as expected [[w:Bryan Cranston]] does a great act, [[w:Anthony Mackie]] also does a great [[w:Martin Luther King Jr.]])</br>
[[w:The Man Who Knew Infinity (film)|The Man Who Knew Infinity]] (6)</br>
[[w:Lazer Team|Lazer Team]] (5+Q)</br>
[http://www.imdb.com/title/tt2630992/ Darkest Day] (6-, the camera work is horrid)</br>
[[w:Jason Bourne (film)|Jason Bourne]] (6)</br>
[http://www.imdb.com/title/tt1517471/ Dough] (6-, a low budget movie with a forced and simplistic script that is badly directed as the actors seem capable of more)</br>
[[w:Suicide Squad (film)|Suicide Squad]] (6)</br>
[http://www.imdb.com/title/tt3007132/ Daylight's End] (5+, better than one would expect, props, effects and image and even the some of the acting, the main issue was the script and probably budgetary restrains, it could have been better)</br>
[http://www.imdb.com/title/tt3975556/ Jackrabbit] (6-, some cool concepts but the script is not that good in this low budget production, acting if fair but all could easily be better)</br>
[[w:The Jungle Book (2016 film)|The Jungle Book]] (6)</br>
[[w:The Legend of Tarzan (film)|The Legend of Tarzan]] (6+)</br>
[[w:Lights Out (2016 film)|Lights Out]] (6)</br>
[http://www.imdb.com/title/tt1821641/ The Congress] (6, too many ideas crumpled into it, its all a bit unnecessary confusing and indirect)</br>
[[w:The Nice Guys|The Nice Guys]] (6+, good scrip and a fair production of it, the casting of [[w:Russell Crowe]] is a bit off and he really does not make an effort, the movie is carried along by [[w:Ryan Gosling]] and [[w:Angourie Rice]])</br>
[[w:A Hologram for the King (film)|A Hologram for the King]] (6+)</br>
[http://www.imdb.com/title/tt1498878/ The Whisperer in Darkness] (6-, problems with the acting, pace of action and CGI effects, and only those)</br>
[[w:High-Rise (film)|High-Rise]] (6-Q, good production quality, esthetics and cinematography, great casting but the script is not relatable, I don't know the original novel but I couldn't care less about it all.)</br>
[http://www.imdb.com/title/tt3189648/ Blood Moon] (5+, too theatrical and the audio is not right even if casting is also an issue as [[w:Maya Kazan]] voice hard to cope with in that reguister.)</br>
[http://www.imdb.com/title/tt2597892/ Viral] (6)</br>
[[w:Star Trek Beyond|Star Trek Beyond]] (6, the script isn't good, and I hate the reboot changes to the ST Universe in general, not the actors even if I would prefer a less plastic look)</br>
[[w:Star Trek Into Darkness|Star Trek Into Darkness]] (6+, for the acting and visuals a lot has improved from the first, the new Klingons... I hate)</br>
[[w:Star Trek (film)|Star Trek (reboot)]] (6, what a mess)</br>
[[w:Free State of Jones (film)|Free State of Jones]] (6)</br>
[http://www.imdb.com/title/tt4470266/ Numb](6)</br>
[[w:Transcendence (2014 film)|Transcendence]] (6+, there are issues with the script, there is also one or two blatant unexplainable jumps of the plot on screen)</br>
[http://www.imdb.com/title/tt3923388/ The Call Up] (5+, some issues with the script and the acting is not good, but the production quality is there, image, lights and cgi, only the sound suffers a bit)</br>
[[w:The BFG (2016 film)|The BFG]] (6-, great for children but has several issues that puts it below average)</br>
[[w:The Way, Way Back|The Way, Way Back]] (6+)</br>
[[w:Scoop (2006 film)|Scoop]] (6+, [[w:Scarlett Johansson]] is always fantastic even if the film is a bit too theatrical, even more than usual for a [[w:Woody Allen]] movie. In that regard it is also becoming obvious that most of his movies are just a bit too repetitious in the characters psychology and small sketch formulas they use)</br>
[http://www.imdb.com/title/tt4834150/ Accidental Exorcist] (5Q, the real issues are the script and the low budget but kudos for the effects, image quality and acting)</br>
[[w:Marauders (2016 film)|Marauders]] (6-, script, casting and production issues, there is also something lacking in the cinematography and editing)</br>
[http://www.imdb.com/title/tt2883448/ Cash Only] (6)</br>
[[w:About Scout|About Scout]] (6Q, it just didn't capture my interest)</br>
[[w:Equals (film)|Equals]] (6, sadly it fails to have more content to justify the screen time and it is too derivative to be called creative)</br>
[[w:Blackway|Blackway]] (6, the acting is fine but the script is just not that fleshed out, in the characters' backgrounds or in the content it presents)</br>
[[w:The Duel (2016 film)|The Duel]] (6-, the main problems is the script, the erudition of the dialogs is out of context, then the slow pace, low scenery and unsteady cam puts the final nails on it)</br>
[[w:Criminal (2016 film)|Criminal]] (6+, the only real problem is the unreality of it all the rest is simply a well oiled rehash of old formulas that we have already see elsewhere, good acting and overall production that pushes it ahead but nothing new inside)</br>
[[w:Synecdoche, New York|Synecdoche, New York]] (6-Q, while I can recognize the production quality especially of the actors and cast in general, I can only get frustrated by the psychotic script populated by interesting characters in a chaotic manner. I loved some of the small sketches but couldn't care less about the main plot beyond a shared frustration with the main character regarding what is going on)</br>
[[w:Von Ryan's Express|Von Ryan's Express]] (6-, it hasn't aged well at all, the plot is fine, as is the acting and casting, with the exception of the extras that at times are completely out of it. The camera and audio is hard to stomach today requires a note that the Motion Picture Sound Editors nominated it for "Best Sound Editing" in a Feature Film in 1966)</br>
[[w:Gridlocked (2015 film)|Gridlocked]] (6-Q, low budget production, bad image and script, with some recognizable faces but the acting is also not good in general)</br>
[[w:Money Monster|Money Monster]] (6, not a very creative script and has several problems in it, it all feels like a small production and yet the story does not merit much more)</br>
[[w:Eye in the Sky (2015 film)|Eye in the Sky (2015)]] (6, a bit of an unrealistic view of how thing go, politically and military, we all have seen factual and audible dialog from real leaked footage of similar attacks, so to err so broadly is clearly a white wash work of propaganda and fantasy, aside from that the acting and production is ok and manages to engage people into the story)</br>
[[w:Cell (film)|Cell]] (5+, it has many issues first the script has problems, the camera, sound and feel is of a extremely low budget production, except for the main actors, sets and effects, some of the secondary aren't good at all. The script has some interesting ideas and the limited cinematography at times manages to get some cool shoots here and there)</br>
[[w:Warcraft (film)|Warcraft]] (7-, great visually but did not dare to have a better script, the direction of [[w:Travis Fimmel]] a good actor, is also lacking, why didn't they push him to diverge more from his previous Viking role, we see the same mannerisms even speech patterns and he is clearly capable of evolving beyond a single role, so it must have been intentional and it detracts from the movie)</br>
[http://www.imdb.com/title/tt2544074/ Identicals] (6-, script needed more balance, lighting, cinematography and the general esthetics were good but it feels empty, the characters disposable this and a haze of confused story telling)</br>
[[w:Urge (film)|Urge]] (5Q)</br>
[http://www.imdb.com/title/tt4991652/ Camino] (5Q)</br>
[[w:Approaching the Unknown|Approaching the Unknown]] (6-, mostly due to a very weak the script, and I think I got the under-text, but it is also a low budget production)</br>
[http://www.imdb.com/title/tt3174376/ Before I Wake] (7)</br>
[[w:Colonia (film)|Colonia]] (6, the camera work at times is very messy)</br>
[[w:Manhattan Night|Manhattan Night]] (6)</br>
[http://www.imdb.com/title/tt4149732/ Crush the Skull] (5+, very creative script, the dialogs at time do really shine, the production suffers form a very limited budget the camera work and image in general is crap, especially the lighting in the outdoor scenes, the editing is not bad and the cinematography could be better since the setting were great for better and creative angles, especially with the cameras available. As for the actors they could improve the best performance is without a doubt by Katie Savoy, sadly Chris Dinh tries too hard and it shows)</br>
[[w:Mr. Right (2015 film)|Mr. Right]] (6-, while it just manages to deliver what it intended, the casting doesn't work even if both of the main actors are great they face an hard sell)</br>
[[w:The Forest (2016 film)|The Forest (2016)]] (6)</br>
[[w:Hardcore Henry|Hardcore Henry]] (7-, there are some memorable scenes and some very creative ideas and setups, the production suffers from a reduced budget but the stunts are great and the CGI only has small issues, the main problem is the trippy script, at times it seems to try to mash too many things into the story some it succeeds some it doesn't)</br>
[[w:Red Dawn|Red Dawn (1984)]] (6)</br>
[[w:Red Dawn (2012 film)|Red Dawn (2012)]] (6-)</br>
[[w:Captain America: Civil War|Captain America: Civil War]] (7-, it could easily been better, the main plot line needed to be better constructed but it probably couldn't due to time constrains even if the movie does seems a 2 part work as it does not provide a proper conclusion. The CGI is also lacking but the fights chorography has clearly improved)</br>
[[w:X-Men: Apocalypse|X-Men: Apocalypse]] (6+, it has good quality in all areas but also a script that fails to take excellent characters and do something with them, most of the film is a continuous unravel of a new character and his/hers powers peppered with historical lore dust but cant escape the old and tired formulas, until people stop rewarding this tripe this will continue to be made)</br>
[[w:The Witch (2015 film)|The Witch]] (6, and a weak 6 since the only virtues of the work is the purported historical accounting it makes, the good acting, fair image and editing but the rest is not that great the pace is very slow, boringly so, the blame is all on the script more background scenes even of daily life would have made it more tolerable and the characters more rich and interesting)</br>
[http://www.imdb.com/title/tt0848554/ The Sighting] (5Q, the actors and the script are the main problem, there are passable production values in the image, camera and editing but that alone does not make it something that is watchable)</br>
[[w:The Finest Hours (2016 film)|The Finest Hours]] (6+, the scrip is meh but some of the characters, casting and direction are great and even if it is very limited in visual diversity and richness of exteriors and sets it manages to do a convincing job, it also does not go overboard with nationalistic or special interests propaganda that is common on this "historic" pieces from the US)</br>
[[w:Brooklyn (film)|Brooklyn]] (6, a weak 6 due to what was done to in the script to make it populist propaganda at times. The real plot line and I believe the original material from the book is interesting and the characters and cast are fine, the directing could have been better so that the interactions would be more organic and not so staged)</br>
[http://www.imdb.com/title/tt2667380/ Kill Command] (6, very sad but the script needed more work and the characters to be better fleshed out, a strong 6 for the image, creativity and CGI)</br>
[[w:London Has Fallen|London Has Fallen]] (6, a film for brain dead Americans to fell good about their nation, disregarding any link to reality there is I believe an intentional tongue in cheek around the plot, one needs to pay attention to the dialogs, but it aim to be a blockbuster action movie and it does that with a weak script a not that great acting and the rehashing of all the formulas once again, one thing that is great is the choregraphy of the gun fights the parts with the tracers are very well designed)</br>
[[w:The Adderall Diaries (film)|The Adderall Diaries]] (6+, the script is not for everyone and requires effort to appreciate, the best parts are the characters it brings then the casting and acting of those)</br>
[http://www.imdb.com/title/tt3093286/ The American Side] (5+Q, the cinematography is there but the camera work is a bit clumsy and the editing could be better, the acting isn't great but with a better script or direction it could be easily better, liked the care for image and lighting and the backgrounds that gives it a 70's nuance)</br>
[[w:Guns for Hire (film)|Guns for Hire]] (5+Q, the script has potential but it is not there yet the acting suffers from bad direction as the talent is there)</br>
[[w:Triple 9|Triple 9]] (6-, the script is too unnecessarily confusing and the acting is not even, some talent is wasted, like [[w:Woody Harrelson]]. The action sequences are interesting but seems low budget more due to the prevalent bad editing and sloppy lighting)</br>
[[w:Hail, Caesar!|Hail, Caesar!]] (6+, not an easy work, full of subtext and references to old classics, the script is very creative but I found myself perplexed by minor but obvious continuity errors, was it intentional?!)</br>
[[w:The Boy (2016 film)|The Boy]] (6-, the story is too surreal to work)</br>
[http://www.imdb.com/title/tt5113926/ They Found Hell] (5Q)</br>
[[w:Precious Cargo (film)|Precious Cargo]] (6)</br>
[[w:The Veil (2016 film)|The Veil]] (6, fantastic work, as usual by [[w:Thomas Jane]], the story itself is not great but it manages to get the mood and the cinematography is ok)</br>
[[w:Risen (2016 film)|Risen (2016)]] (6-)</br>
[http://www.imdb.com/title/tt4540434/ Paradox] (5-Q)</br>
[[w:Midnight Special (film)|Midnight Special]] (7, fantastic acting and interesting story even if it fails to satisfy in the ending, it is like a long pilot for a serial)</br>
[[w:Dirty Grandpa|Dirty Grandpa]] (5Q, to confess I did not quit, I just fast forwarded it a lot I couldn't believe someone would waste money and time working in something like this)</br>
[[w:The Girl King|The Girl King]] (6-Q, to much theatrical to my taste, I do like theater but generally not the theatrical acting play productions values packaged as a movie, the wardrobe also seem funky for the historic date it intends to represent)</br>
[[w:Backtrack (2015 film)|Backtrack]] (6, a bit slow but manages the ending twist, the script lingers too much in non-important stuff, for instance the dead people, failing to make clear a few details within that logic. It would have been more interesting to focus on the factual emotional drama, and the links that emerge to the memories that it uncovers. The casting of George Shevtsov as [[w:Adrien Brody]] dad is genial.)</br>
[[w:Walt Before Mickey|Walt Before Mickey]] (5+, small budget production with a great effort in the settings but the acting is not great and the script while interesting in the particulars it covers fails in the options it makes, making it more like a theatrical play)</br>
[[w:The Trust (film)|The Trust]] (6, too over acted by the main characters and with a plot that does not evolve in a satisfying script, it ends when one would like it to really begin, in all it is fun but also frustrating)</br>
[[w:Freaks of Nature (film)|Freaks of Nature]] (5+, it just tries too hard not to be more)</br>
[[w:Pandemic (film)|Pandemic]](6-, the script has some cool ideas and the movie is an expansion of previous POV cinematography attempts but is still too raw and low budget, the acting is also not constant in quality, more a casting and directing issue)</br>
[[w:Batman v Superman: Dawn of Justice|Batman v Superman: Dawn of Justice]] (6, main issue is the implementation of the plot concept, that is good but falls apart when they blackmail superman and present us a clueless batman. There are a few great visual moments but the dialog and actors presentation are not that great)</br>
[[w:10 Cloverfield Lane|10 Cloverfield Lane]] (6+)</br>
[[w:Zathura (film)|Zathura]] (7-)</br>
[[w:Jumanji|Jumanji]] (7-)</br>
[[w:The Fisher King|The Fisher King]] (7+)</br>
[[w:Dead Poets Society|Dead Poets Society]] (8)</br>
[[w:Good Morning, Vietnam|Good Morning, Vietnam]] (7)</br>
[[w:Awakenings|Awakenings]] (8+)</br>
[[w:Forever (2015 film)|Forever]] (5+Q)</br>
[[w:Pawn Sacrifice|Pawn Sacrifice]] (6, good acting but the story as told is not very compelling material, there are parts of [[w:Bobby Fischer]] history that would merit more attention and would be more interesting to dissect and explore)</br>
[[w:Pride and Prejudice and Zombies (film)|Pride and Prejudice and Zombies]] (6-, mostly for the novelty, even if it is an adaptation of a literary work, the editing, acting and script are not good)</br>
[[w:Undercover Blues|Undercover Blues]] (6)</br>
[[w:Millennium (film)|Millennium]] (6)</br>
[[w:WarGames|WarGames]] (6+, it hasn't aged well but it is still an iconic work of its time)</br>
[[w:Confessions of a Dangerous Mind|Confessions of a Dangerous Mind]] (7)</br>
[[w:Spotlight (film)|Spotlight]] (7-)</br>
[[w:Forsaken (2015 film)|Forsaken]] (6-, slow and bare script a lost opportunity with that cast, there is also the problem that [[w:Kiefer Sutherland]] is not very good at emotional roles)</br>
[[w:Standoff (film)|Standoff]] (6, almost a 6+, it improves as the story is being told but from the start something is off, the camera, lighting and direction hasn't been given the necessary effort and the dialogs and emotional nuances are lacking, with such good actors it could have been way better)</br>
[[w:Gods of Egypt (film)|Gods of Egypt]] (6-, a mess of a movie, from the idealization, casting and script, the effects are ok and the acting and production is not bad)</br>
[http://www.imdb.com/title/tt2364774/ Kill or Be Killed] (5+Q, the cinematics, acting and script are not good)</br>
[[w:The Lady in the Van|The Lady in the Van]] (6, fantastic work by [[w:Maggie Smith]] the script is a bit slow and dull but there are some clever dialogs and little sketches that makes it move forward nicely, a nice story telling, it could easily been better without feeling too cluttered)</br>
[[w:The People vs. Larry Flynt|The People vs. Larry Flynt]] (7, they try to much too shock the audience, the acting is great)</br>
[[w:Code 46|Code 46]] (6, it isn't better due to the low budget and logical failures of some of the propositions on the script, the aesthetics and acting are fine and some of the ideas in it are worth the reflection)</br>
[[w:Extremely Loud and Incredibly Close (film)|Extremely Loud and Incredibly Close]] (6-Q, more for the production value and acting, the casting is off and the script doesn't work, it also seems to be an emotional exploitation job due to the artificiality of it all)</br>
[http://www.imdb.com/title/tt2324928/ Alienate] (5+, the acting is not bad but its a low cost production of a very demanding concept and so the script fails to satisfy there are also several issues in continuity/editing and the camera work could be better)</br>
[[w:She's Funny That Way|She's Funny That Way]] (6+, like a slowed down Woody Hallen, good scrip, pace and interesting characters ([[w:Imogen Poots]] was fantastic), even if some are too off with the plastic jobs it was interesting to see them again. I think also that [[w:Owen Wilson]] and [[w:Jennifer Aniston]] are becoming too typecast, even if I love to see them on that type, its becoming a blur)</br>
[[w:Victor Frankenstein (film)|Victor Frankenstein]] (6)</br>
[http://www.imdb.com/title/tt4733536/ American Hero] (6-)</br>
[[w:Southbound (2015 film)|Southbound]] (5Q)</br>
[[w:Frankenstein (2015 film)|Frankenstein (2015)]] (5+, low production value beyond the acceptable acting, that yet seems uncoordinated and the pace plus the inconsistencies in the scrip also diminish what would be a great angle for the revisit to the subject, making it lose track and become as disfigured as the protagonist)</br>
[[w:Deadpool (film)|Deadpool]] (6+, I don't know the original material but some of the funny moments are too forced and the need or presence of the X-Men subtract more than add, I especially disliked Colossus, there is also a problem with the character Weasel being too similar to Deadpool himself, the action bits are fun but could easily been better)</br>
[[w:The Survivalist (film)|The Survivalist]] (7-)</br>
[http://www.imdb.com/title/tt5354588/ Tom Clancy's the Division: Agent Origins] (5, better camera work and characterization, use of filters and quality would be easily increased)</br>
[[w:Deathgasm|Deathgasm]] (5+, they didnt aim to do much better than)</br>
[[w:The Night Before (2015 film)|The Night Before]] (6-, very poor and mixed up script that seems at times to be a simple vehicle for product placement)</br>
[[w:Deadly Virtues: Love.Honour.Obey|Deadly Virtues: Love.Honour.Obey]] (5+, the script is not very creative, low production value and the acting is lacking)</br>
[[w:The Legend of Barney Thomson|The Legend of Barney Thomson]] (5+, the script is not good and rarely fun at all it is a waste of acting capability)</br>
[[w:The Sand|The Sand]] (5+, a bit below what it aims to be, it should be a short story not a feature film)</br>
[[w:The War of the Roses (film)|The War of the Roses]] (7-)</br>
[[w:Love the Coopers|Love the Coopers]] (6-)</br>
[[w:Romancing the Stone|Romancing the Stone]] (6+)</br>
[[w:The Jewel of the Nile|The Jewel of the Nile]] (6+)</br>
[http://www.imdb.com/title/tt3013160/ Arrowhead] (5+, the confused and hard to implement script and lack of funds seems be the main issue more than the acting)</br>
[[w:Lamb (2015 American film)|Lamb]] (7-, great acting and script)</br>
[[w:Synchronicity (film)|Synchronicity]] (5+, the acting is ok but also a low cost production with a script too convoluted without any rewarding content)</br>
[[w:The Mask (film)|The Mask]] (6, this movie hasn't aged well, while it remains iconic of the 90s, with the repeated and over-similar work of the actor [[w:Jim Carrey]] that had peaked in fame at the time allied with an unimpressive script and some advanced (for that time) special effects)</br>
[[w:Scent of a Woman (1992 film)|Scent of a Woman]] (7-)</br>
[[w:The 5th Wave (film)|The 5th Wave]] (6, don't know the original source for the adaptation but the script is not great and I hope they don't waste those actors in more of this tripe)</br>
[[w:Pleasantville (film)|Pleasantville]] (7, the cinematography, lighting and aesthetics push it up, the script internal logic at times gets very strained, the acting at times is intentionally woody as to fit the epoch and so the casting has also to be praised)</br>
[[w:Exposed (2016 film)|Exposed]] (6-, the script is too slow to unravel and the viewer is not granted a proper return for the convoluted deception)</br>
[[w:Terminus (2015 film)|Terminus]] (6+, great work done on a shoe string, cinematography and acting is good, even the effects, the script could have a bit more polish and faster pace at times but I loved the Iran angle and depth it got)</br>
[[w:Rock the Kasbah (film)|Rock the Kasbah]] (6-, I like Bill Murray but the last few scripts he agreed to perform aren't good at all, this one included)</br>
[[w:Our Brand Is Crisis (2005 film)|Our Brand Is Crisis]] (6-, while the subject mater has merit the acting and script are weak)</br>
[[w:Flutter (2011 film)|Flutter]] (6-, a very depressing movie that has some cool ideas but also holes in the script that ruin the en-sable)</br>
[[w:Dune (film)|Dune]] (7-, the film hasn't aged well especially the special effects, it has also other problems, badly done fight scenes and editing, but the source material, esthetics, soundtrack, cast and acting is great. It would be interesting if someone took it and digitally remastered it and corrected and improved some of the background scenes.)</br>
[[w:Amnesiac (film)|Amnesiac]] (6-)</br>
[[w:28 Days Later|28 Days Later]] (7-)</br>
[[w:28 Weeks Later|28 Weeks Later]] (6, the script is a mess at times making the characters behavior unrealistic and generally over simpleminded placing them in a setup that seems only so as to make the plot work toward the intended goal, the acting and casting is fine)</br>
[[w:Steve Jobs (2015 film)|Steve Jobs (2015)]] (7+, great script writing, casting and acting)</br>
[[w:The Pawnbroker (film)|The Pawnbroker]] (6+, it hasn't aged too well, but it can be an historic reference to a particular time, the acting is great and has a rich background, the casting of the protagonist especially for the scenes of a prison camp does not go well due to his body frame)</br>
[[w:Crazy, Stupid, Love|Crazy, Stupid, Love]] (6)</br>
[[w:Solace (2015 film)|Solace]] (6, fun but you have to leave logic way behind to go along with the premise of the plot)</br>
[http://www.imdb.com/title/tt4076760/ Diablo] (5+, the main problem is the script)</br>
[[w:The Walk (2015 film)|The Walk]] (6+, it could have been better without the high tone theatrics and a more close, realistic and human view of events, it almost derails the movie in its first half)</br>
[[w:Burnt (film)|Burnt]] (6, small issues with the editing)</br>
[[w:Guns for Hire|Guns for Hire]] (5Q)</br>
[[w:The Flock (film)|The Flock]] (6+, it could have been better simply by refraining from taking an "educational" path)</br>
[[w:Concussion (2015 film)|Concussion]] (6)</br>
[[w:The Diary of a Teenage Girl|The Diary of a Teenage Girl]] (6+)</br>
[http://www.imdb.com/title/tt4974584/ Harry Price: Ghost Hunter] (6)</br>
[[w:Irrational Man (film)|Irrational Man]] (7, fantastic characters and casting)</br>
[[w:Carol (film)|Carol]] (6-Q, the constant close plane of the camera is claustrophobic and monotonous, the acting and detail to match the era is great but the script is not that great nor the dialogs and pace)</br>
[[w:Scouts Guide to the Zombie Apocalypse|Scouts Guide to the Zombie Apocalypse]] (5+)</br>
[[w:Spectre (2015 film)|Spectre]] (7-)</br>
[[w:Idiocracy|Idiocracy]] (7-)</br>
[[w:The Ridiculous 6|The Ridiculous 6]] (5Q, the script is just horrible)</br>
[[w:Bare (film)|Bare]] (6, probably a 6+ but this type of film is not my cup of tea, so I haven't a deep appreciation for the script)</br>
[[w:He Never Died|He Never Died]] (6-, a low budget production with potential, the script has some cool ideas)</br>
[[w:The Revenant (2015 film)|The Revenant]] (7-, the costume design is great the cgi is not)</br>
[[w:In the Heart of the Sea (film)|In the Heart of the Sea]] (7-)</br>
[[w:The Hateful Eight|The Hateful Eight]] (6+, the last creations of [[w:Quentin Tarantino]] haven't been great (or as great as we come to expect), in this one the cinematography is inconstant and highlights the Tarantino formula, a sequence of copycats of epic moments of other productions applied to "mostly" creative and fun scripts)</br>
[[w:Star Wars: The Force Awakens|Star Wars: The Force Awakens]] + [http://screenrant.com/star-wars-7-force-awakens-deleted-scenes-images/ deleted-scenes] (6, the script is not creative, in fact we can find much of it is a rehash of other movies of the same franchise, starting for the quest for the droid with the secret message. I also am starting to have a cognitive resistance to the contrived propagandistic wave of this pseudo-blockbuster productions, from the girl heroin to the afro-American second fiddler, well at least we haven't the hero question her sexuality)</br>
[[w:A Walk in the Woods (film)|A Walk in the Woods]] (6-, the script isn't very good and it all seem very canned, the best bit is [[w:Nick Nolte]] and the idea of casting [[w:Emma Thompson]] as [[w:Robert Redford]] wife is just wrong, probably good as bait for the viewers but it doesn't work in practice)</br>
[[w:A Perfect Day (2015 film)|A Perfect Day]] (6-, the script is weak and the acting is not that great even from [[w:Benicio del Toro]] that over-performs making it stick out, in a bad way, and contrasting with the other actors, the best moment is the ending sequence from just before it starts to rain)</br>
[[w:Crimson Peak|Crimson Peak]] (6, it fails the purpose, that of terror, but it fails beautifully, and I don't give it more because at least in the wardrobe esthetics remove credibility to what is already an over the top visual ensemble, I was derailed several thinking about how fake the presented climate/weather was)</br>
[[w:Room (2015 film)|Room]] (8, there is little thing that could be optimized, probably a better musical score and certainly a bit more of cinematic creativity with angles, lenses and even light but it is certainly one of the best movies of 2015)</br>
[[w:The Intern (2015 film)|The Intern]] (6-, I see no point or merit on the script beyond a vehicle for social propaganda, propaganda because it promotes and attempts to normalizes fringe social-economical behaviors, not defending or opposing any of what is covered but I feel a bit sick when it is packaged and given a shine like this without a real balance or promotion for reflection)</br>
[[w:A Very Murray Christmas|A Very Murray Christmas]] (6-, I almost quitted and it would be a 5+ without [[w:Bill Murray]], the problem as I see it is that they create a very depressing atmosphere, even claustrophobic that highlights the artificiality of it all, including the "Christmas spirit")</br>
[[w:Heist (2015 film)|Heist]] (6+)</br>
[[w:Knight and Day|Knight and Day]] (6+)</br>
[[w:Sleepers (film)|Sleepers]] (7)</br>
[[w:Ronin (film)|Ronin]] (7)</br>
[[w:Wag the Dog|Wag the Dog]] (7-)</br>
[[w:The Fan (1996 film)|The Fan]] (6+)</br>
[[w:Cape Fear (1991 film)|Cape Fear]] (8-, great acting all around)</br>
[[w:The Mission (1986 film)|The Mission]] (8, some historic errors/freedoms but not very relevant)</br>
[[w:Parasyte: Part 1|Parasyte: Part 1]] (6, cool adaptation, the acting is not great and the easier parts to replicate like the emotional drama, love relation, internal conflict is mostly missing focusing more on the special effects part that works great except for the way the "heroes" move together)</br>
[[w:Uncanny (film)|Uncanny]] (6+, a bit of a reluctant 6+ since the sexual weird part of the script seems an unnecessary addition to the plot, nice esthetics and a good pace)</br>
[[w:Parasyte: Part 2|Parasyte: Part 2]] (6-, it deviates even more from the original, for someone that has no previous knowledge it makes it all become too bizarre)</br>
[http://www.imdb.com/title/tt3508840/ The Assassin] (5+Q, the photography is great but it is too artsy and with a extremely slow pace for me to digest, if a director needs to show off non-story telling concepts he should use short movies or create a good pace of visual fanfare)</br>
[http://www.imdb.com/title/tt2954474/ Visions] (7-, good script)</br>
[[w:No Escape (2015 film)|No Escape]] (7-, the writing has a bit of a badly done injection of anti-neo-colonialism that as presented it would be better have been left out and also while the action takes place in an unnamed nation the inclusion of Vietnam as a safe harbor demonstrates how Hollywood serves to shape public perception)</br>
[[w:Absolutely Anything|Absolutely Anything]] (5+)</br>
[http://www.imdb.com/title/tt1920846/ Another World] (5Q)</br>
[http://www.imdb.com/title/tt3774790/ 400 Days] (5-, very weird work, the script is absurd the acting not that great but there is some production value in it, esthetics, image and light are above B movie level)</br>
[[w:Before We Go|Before We Go]] (6+)</br>
[[w:Insidious: Chapter 3|Insidious: Chapter 3]] (6)</br>
[[w:The Man from U.N.C.L.E. (film)|The Man from U.N.C.L.E.]] (6, I was going to give it a 6- but if you disregard the flaws, bad script and lack of chemistry between the main actors, the rest is pretty good, from the cinematics, color choice, esthetics and music all is above par)</br>
[[w:SuperBob|SuperBob]] (6-, I think it depends on taste, it is nonsense comedy, reminiscent of [[w:Monty Python]] at times)</br>
[[w:Everest (2015 film)|Everest]] (6)</br>
[[w:X+Y|A Brilliant Young Mind]] (6)</br>
[[w:9. April|9. April]] (6)</br>
[[w:The End of the Tour|The End of the Tour]] (6-Q, good acting and movie in general but based on a core dialog that seems to go into an endless loop of witticism, commonalities and some minor erudition, I think people that aren't capable of very profound thoughts or have a good cultural background would certainly appreciate it more but I lost patience with it)</br>
[[w:Bone Tomahawk|Bone Tomahawk]] (6+, a bit slow and the camera work at times is painful but a cool script, characters and acting puts it above the norm had it more funding and content it could easily have been better)</br>
[[w:Momentum (2015 film)|Momentum]] (6-, I have noticed an issue that it transversal to most SA productions, the choice of image format, it hampers the immersion into the movie, this and the attempt to emulate Hollywood in the aesthetics. In this case all fall short, and is utterly unnecessary, the freaky futuristic costumes may have worked wonders for the trailer but not for the film itself, that and a poor script and uneven acting especially when they put in [[w:James Purefoy]] as the second fiddler creates a critical unbalance that robs it of any chance of working out)</br>
[[w:Bridge of Spies (film)|Bridge of Spies]] (6, I have issues with this type of Hollywood rewrite or simplification of history, I also took note of the blatant product placing, it truly disgusted me)</br>
[[w:Howl (2015 film)|Howl]] (6, the minor issue is the close-up effects on the fully transformed creatures it may be because of the conservative budget or a directors decision, the movie does not bring anything new but it is well constructed and presents what it proposes)</br>
[http://www.imdb.com/title/tt3118452/ Circle] (6+, yet again a variation of a groups of people in a closed room but well conceived, good casting, script and acting makes it above average)</br>
[[w:Experimenter (film)|Experimenter]] (6+, great acting from [[w:Peter Sarsgaard]], clever script that manages to do a great presentation at low cost)</br>
[[w:Re-Kill|Re-Kill]] (5+Q, bad concept, the effects aren't great and dislike the docustyle camera-work in general)</br>
[[w:Six Degrees of Separation (film)|Six Degrees of Separation]] (6+)</br>
[[w:Mr. Holmes|Mr. Holmes]] (7)</br>
[http://www.imdb.com/title/tt4224478/ The Subjects] (6-, great premise and an innovation over the genre but needs a rewrite, waiting for a remake)</br>
[[w:The Green Inferno (film)|The Green Inferno]] (5+)</br>
[[w:Garm Wars: The Last Druid|Garm Wars: The Last Druid]] (6-, some above average CGI, good cinematography, fair acting but a extremely weak script and creative content beyond the futuristic esthetics)</br>
[[w:The Vatican Tapes|The Vatican Tapes]] (5+)</br>
[[w:The Gift (2015 film)|The Gift]] (6)</br>
[http://www.imdb.com/title/tt2531362/ Chariot] (5Q, interesting central idea but the rest is just awful)</br>
[[w:The Martian (film)|The Martian]] (6+, also saw the extended version, the only annoyance was the politically (in)correct way that China is included into the script even if it is also on the source novel)</br>
[[w:The Hive (2014 film)|The Hive]] (6-, some cool rehashed ideas in there)</br>
[[w:Little Boy (film)|Little Boy]] (7-, good tale and well told even if is doesn't innovate in old and tired formulas)</br>
[[w:Beyond the Mask|Beyond the Mask]] (5+Q)</br>
[[w:Closer to the Moon|Closer to the Moon]] (5+, seems a propagandistic movie in itself, very full of misdirected primitive anti-communism and cultural Zionism and empty of much anything else, the major plot line is great but its hand is shown right at the start, a very broad mix of acting quality and low budget production values also do not help)</br>
[[w:Unknown (2011 film)|Unknown]] (6+)</br>
[[w:The Chronicles of Narnia: The Lion, the Witch and the Wardrobe|The Chronicles of Narnia: The Lion, the Witch and the Wardrobe]] (5+, it may be directed at an young audience but it isn't very good, the acting even production values are fine but the script and effects are not)</br>
[[w:The Chronicles of Narnia: Prince Caspian|The Chronicles of Narnia: Prince Caspian]] (6-)</br>
[[w:The Chronicles of Narnia: The Voyage of the Dawn Treader|The Chronicles of Narnia: The Voyage of the Dawn Treader]] (6, more a part of a set, alone the movie wouldn't make any sense)</br>
[[w:The Hard Way (1991 film)|The Hard Way]] (6-)</br>
[[w:Teen Wolf|Teen Wolf]] (6-, it hasn't aged well, these epoch centered movies are ripe for a remake)</br>
[[w:Vampires (film)|Vampires]] (6+, many flaws but memorable, as many other work's from [[w:John Carpenter]] the expenses are dwarfed by the returns in detriment of production quality)</br>
[[w:Pixels (2015 film)|Pixels]] (5)</br>
[[w:Love & Mercy (film)|Love & Mercy]] (5+)</br>
[[w:Pay the Ghost|Pay the Ghost]] (5+)</br>
[[w:Me and Earl and the Dying Girl (film)|Me and Earl and the Dying Girl]] (6+)</br>
[[w:Mississippi Grind|Mississippi Grind]] (6+)</br>
[http://www.imdb.com/title/tt3153582/ Listening] (6-)</br>
[[w:Cop Car (film)|Cop Car]] (7-)</br>
[http://www.imdb.com/title/tt0685628/ The Sign of Four] (5+, it hasn't aged well, the series was great, this movie exacerbates the theatrical acting something that was more subdued in the series)</br>
[[w:American Ultra|American Ultra]] (6+)</br>
[[w:Tale of Tales (2015 film)|Tale of Tales]] (6, a bland blending of old folk tales)</br>
[http://www.imdb.com/title/tt3815430/ Awaiting] (5+Q, it is more like awaiting for it to end, the script is very bare of content and drags the few rehashed ideas too long, in a low production with above fair, but not brilliant acting)</br>
[[w:Zipper (film)|Zipper]] (6-, not a good script, a beaten track and lacks content)</br>
[[w:Self/less|Self/less]] (6-, the issue is the directing, the acting is ok and the script has its issues but the options taken do not work)</br>
[[w:Tiger House|Tiger House]] (6)</br>
[[w:Z for Zachariah (film)|Z for Zachariah]] (7-, very cleaver premise for the script but falls short on what it could deliver on the very human subjects it tries to approach, it becomes an endurance process due to the very slow pace, creating a frustration that in part does help empathize with the frustration felt by the characters )</br>
[[w:Entourage (film)|Entourage (film)]] (5+, or a 6- for those that have seen the serial)</br>
[[w:Twixt (film)|Twixt]] (5+Q, from [[w:Francis Ford Coppola]] ?! why not simply make a experimental short movie instead of this mess)</br>
[[w:Star Trek: Renegades|Star Trek: Renegades]] (5+, all things are off except the CG effects and editing)</br>
[[w:Bad Night|Bad Night]] (5+)</br>
[[w:Fifty Dead Men Walking|Fifty Dead Men Walking]] (6-, the main issue with it is the production value and the tired subject it covers, it does an amazing job but the quality is not there, the image format selected is also extremely bad for the project, claustrophobic at times and hinders the movie more than anything else.)</br>
[[w:Attack on Titan (film)|Attack on Titan]] (5, the adaptation is very poor, even if we recognize that it would be extremely difficult but the best ideas, even those that wouldn't require great cost or effects are left out and the acting is extremely theatrical, the best part is the effects and other solutions found for this low budget but with high expectations production.)</br>
[[w:Strangerland|Strangerland]] (6-, extremely slow and shallow script, some interesting dialogs and a good main plot line, the casting of [[w:Joseph Fiennes]] seems out of place, but a good quality ensemble.)</br>
[[w:The Humbling (film)|The Humbling]] (6-, the script is not great, a bit confusing at times but with some interesting vignettes and there isn't much that we haven't seen from [[w:Al Pacino]], he does not surprise us here.)</br>
[[w:Air (2015 film)|Air]] (6, a bit slow and empty of content, [[w:Norman Reedus]] is a great actor.)</br>
[http://www.imdb.com/title/tt3064356/ The Beat Beneath My Feet] (5+Q)</br>
[[w:Fantastic Four (2015 film)|Fantastic Four]] (6, the reboot script is crap, the effects, ambiance and backgrounds are ok)</br>
[[w:Harbinger Down|Harbinger Down]] (6-, the main problem is the acting and a not very creative script)</br>
[[w:The Runner (2015 film)|The Runner]] (6-)</br>
[[w:Shaun of the Dead|Shaun of the Dead]] (6)</br>
[[w:Taken (film)|Taken]] (7, more than anything for the cleaver script concept and a memorable film)</br>
[[w:Taken 2|Taken 2]] (6)</br>
[[w:Taken 3|Taken 3]] (6, I wanted to tag it as a 5 due to the very crappy editing that degrades most of the film, especially the action sequences, the script also does not help, not creative or with fully fleshed characters)</br>
[[w:Some Kind of Beautiful|Some Kind of Beautiful]] (5+, not very good acting, script or even casting)</br>
[[w:The Age of Adaline|The Age of Adaline]] (6+, a rehash of ideas but not at all bad)</br>
[[w:Perfect Sense|Perfect Sense]] (6)</br>
[[w:Kingdom of Heaven (film)|Kingdom of Heaven]] (6)</br>
[[w:Cracks (film)|Cracks]] (6)</br>
[[w:Big Driver (film)|Big Driver]] (6)</br>
[[w:American Sniper (film)|American Sniper]] (6)</br>
[[w:Wild Card (2015 film)|Wild Card]] (6)</br>
[http://www.imdb.com/title/tt2691734/ October Gale] (6)</br>
[[w:Grizzly (2014 film)|Grizzly (2014 film)]] (5, bad digital effects and camera + mixed cast quality)</br>
[http://www.imdb.com/title/tt1921149/ Trash] (6)</br>
[[w:Wyrmwood|Wyrmwood]] (6, for the creativity, acting and effects, considering the low budget and independent production, the close plane camera subterfuge still annoys the hell out of me)</br>
[http://www.imdb.com/title/tt2998118/ SOS: Save Our Skins] (4, funny to watch due to how bad, in a good way. Very low budget and crazy script)</br>
[[w:Tracers (film)|Tracers]] (6)</br>
[[w:Jupiter Ascending|Jupiter Ascending]] (6, I almost gave this a 5 the script is horrid, including the lack of any innovative idea beyond mixing all into a blender including lycanthropes and vampires. The esthetics and effects are excellent but the casting and acting are not.)</br>
[[w:The Loft (2014 film)|The Loft]] (5, script story as told is very unsalable to get one interested, the acting is also very inconsistent probably due to errors in casting and directing that only makes it worst)</br>
[[w:The Interview (2014 film)|The Interview]] (5, I rarely like this type of movies anyway, but due to the hype I did look at it, as the others its a waste of time)</br>
[[w:Northmen: A Viking Saga|Northmen: A Viking Saga]] (5Q, Good production and acceptable acting but the script is bad and the pace is off, very slow. I liked the cinematography but couldn't stomach the empty dialog and lack of character building)</br>
[[w:Black Sea (film)|Black Sea]] (6, a good story concept, great works from [[w:Jude Law]], but issues with the script cripples it from being even better more than the budget)</br>
[http://www.imdb.com/title/tt2798456/ The Hybrid] (6)</br>
[[w:Battle Creek (TV series)|Battle Creek]] (5, only seen 1st episode, the acting is lacking the script quality is not constant, some great ideas mixed with very old clichés and the camera work is also poor)</br>
[[w:Exodus: Gods and Kings|Exodus: Gods and Kings]] (5, not that great acting, disliked the twists in the script to the original material)</br>
[[w:The Pyramid (film)|The Pyramid]] (5)</br>
[[w:Night at the Museum|Night at the Museum]] (5)</br>
[[w:Night at the Museum: Battle of the Smithsonian|Night at the Museum: Battle of the Smithsonian]] (6)</br>
[[w:Night at the Museum: Secret of the Tomb|Night at the Museum: Secret of the Tomb]] (5)</br>
[http://www.imdb.com/title/tt3204734/ Allies] (4Q)</br>
[http://www.imdb.com/title/tt3793230/ Extraction Day] (4Q)</br>
[[w:Cut Bank (film)|Cut Bank]] (6)</br>
[[w:Vice (2015 film)|Vice]] (5)</br>
[[w:Chappie (film)|Chappie]] (6, it could have been so much better, it could even incorporate some of the stuff from [[w:Isaac Asimov]])</br>
[[w:District 9|District 9]] (8)</br>
[[w:Elysium|Elysium]] (7)</br>
[[w:Kidnapping Freddy Heineken|Kidnapping Freddy Heineken]] (6, a bit empty, it could have been better scripted)</br>
[[w:My Mistress|My Mistress]] (6)</br>
[[w:Meet Joe Black|Meet Joe Black]] (7, some "logical" issues but great story and acting)</br>
[[w:Instinct (film)|Instinct]] (6, almost a 7, but much is lost by hand holding the audience)</br>
[[w:Hannibal (film)|Hannibal]] (7)</br>
[[w:The Silence of the Lambs (film)|The Silence of the Lambs]] (8)</br>
[[w:Seven (1995 film)|Seven]] (8)</br>
[[w:The Cobbler (2014 film)|The Cobbler]] (6)</br>
[http://www.imdb.com/title/tt3804114/ Halo: Nightfall] (5)</br>
[[w:Fifty Shades of Grey (film)|Fifty Shades of Grey]] (6, a weak 6 since there is not much content on it, nor any profound psychological depth as one might expect)</br>
[[w:Innocence (2013 film)|Innocence]] (4Q)</br>
[[w:Cymbeline (film)|Cymbeline]] (4Q)</br>
[[w:Faults (film)|Faults]] (7, clever scripting and good acting beats low production costs every time)</br>
[[w:Alexander (2004 film)|Alexander]] (5, bad acting, casting and awful script)</br>
[[w:Spring (2014 film)|Spring]] (5, too slow, inconsequential, the camera work/image could have been easily better)</br>
[[w:Boyhood (film)|Boyhood]] (6)</br>
[[w:A Most Violent Year|A Most Violent Year]] (5, good acting but the script is lacking)</br>
[[w:Robot Overlords|Robot Overlords]] (4)</br>
[[w:Big Eyes|Big Eyes]] (6)</br>
[[w:Into the Woods|Into the Woods]] (6, musicals aren't my cup of tea)</br>
[[w:Annie (1982 film)|Annie]] (6)</br>
[[w:The Sound of Music (film)|The Sound of Music]] (7)</br>
[[w:The Frighteners|The Frighteners]] (7)</br>
[http://www.imdb.com/title/tt2194826/ The Barber] (6, the best point is [[w:Scott Glenn]] act. The script is not great or better yet the history told is not, it is all about the characters and sadly only one gets any tangibility)</br>
[[w:The Beaver (film)|The Beaver]] (7)</br>
[[w:The Day of the Dolphin|The Day of the Dolphin]] (6, a weak one, while the plot is good the movie itself hasn't aged well, still a classic but not re-watchable)</br>
[[w:An Act of War|An Act of War]] (5Q, esthetically pleasing cinematography but no real innovative content in a slow develop plot on a slim budget)</br>
[[w:Blackhat (film)|Blackhat]] (5, due to the cinematographic quality, or it would be a 6, the acting is also problematic at times with exception of [[w:Chris Hemsworth]], the plot is interesting and the movie well paced but the camera quality and even the audio is inconsistent)</br>
[[w:Last Knights|Last Knights]] (5Q, horrid script premise, Historic Nippon setup in a Western context (Knights as Samurai), and a waste of good acting talent)</br>
[[w:Dead Rising: Watchtower|Dead Rising: Watchtower]] (5, some innovative ideas in regard to the Zombie gender, with some concepts from the game, but weak acting and bad camera work takes it below the 6. The budget also does not help, even in the s. effects department)</br>
[[w:Dead Rising: Endgame|Dead Rising: Endgame]] (6-, better actors and previous actors had more experience, increased production value, except the sound and a messed up casting, even shifting same actors around in roles would have been better, in any case direction is also lacking, as some actors perform below what they have done in the past)</br>
[[w:Batman vs. Robin|Batman vs. Robin]] (5, subpar animation, one thing done right was the fight choreography between different sized combatants where one would expect problems or gimmicks to surpass them)</br>
[[w:Robin Hood: Prince of Thieves|Robin Hood: Prince of Thieves]] (6)</br>
[[w:The Untouchables|The Untouchables]] (7)</br>
[[w:Outland (film)|Outland]] (8)</br>
[[w:Good Kill|Good Kill]] (6, sadly it fails to go deeper into the morality of subject matter and focus to much into personal crisis and technicalities and soapboxing, that prevents it for being better)</br>
[[w:The Dead Lands|The Dead Lands]] (6, weak 6 since the scrip is not great. The strongest point is the Māori culture that is rarely seen on the global screens and when shown it is too politically correct or clean. In that note one of the actors strikes out as being too westerner looking for the casting)</br>
[[w:The Lazarus Effect (2015 film)|The Lazarus Effect (2015 film)]] (6-, the script is not innovative, like a remake of [[w:Flatliners]] in a small scale production)</br>
[[w:Flatliners|Flatliners]] (7)</br>
[[w:30 Days of Night (film)|30 Days of Night]] (6)</br>
[http://www.imdb.com/title/tt2361602/ Five Star] (5+)</br>
[[w:The Big Lebowski|The Big Lebowski]] (7)</br>
[[w:Four Brothers (film)|Four Brothers]] (6+)</br>
[[w:Mission: Impossible – Rogue Nation|Mission: Impossible – Rogue Nation]] (6-, what is up with all the neon/led lightening it is even more out of place than in ST reboot high brightness weird futuristic ambiance)</br>
[[w:The Physician (2013 film)|The Physician]] (7)</br>
[[w:Kiss of Death (1995 film)|Kiss of Death]] (5, bad casting and lousy script)</br>
[[w:Birdman (film)|Birdman]] (5, almost didn't make it till the end, great acting great script I just didn't appreciate the subject-matter else it would be probably a 7)</br>
[[w:Laggies|Laggies]] (6, I FF some-parts of the start as the movie seems to be intended to a niche audience, not bad for what it is)</br>
[http://www.imdb.com/title/tt2505294/ Ask Me Anything] (7)</br>
[[w:Unbroken (film)|Unbroken]] (6, the script itself is weak and walks in a beaten path but transpires reality and stays away from the unnecessary nationalistic imaginary that we would expect, I loved the color pallet concept)</br>
[[w:Alexander and the Terrible, Horrible, No Good, Very Bad Day (film)|Alexander and the Terrible, Horrible, No Good, Very Bad Day]] (5, there is no real chemistry on the cast, all good actors but that and the issues with the script that breaks at times makes it not shine)</br>
[[w:Whiplash (2014 film)|Whiplash]] (6, not much of a story beyond attempting to validate the insanity that mediocrity should be sacrificed in the altar of subjective excellence, a 1% sponsored message, but great acting and music)</br>
[[w:Kill the Messenger (2014 film)|Kill the Messenger]] (6, simple production but concise presentation)</br>
[[w:The Imitation Game|The Imitation Game]] (6, low budget production but my main dislike was the departure from the real history)</br>
[[w:The Gambler (2014 film)|The Gambler]] (7)</br>
[[w:Seventh Son (film)|Seventh Son]] (5)</br>
[[w:Horrible Bosses|Horrible Bosses]] (5)</br>
[[w:Horrible Bosses 2|Horrible Bosses 2]] (4)</br>
[[w:Stonehearst Asylum|Stonehearst Asylum]] (6)</br>
[[w:Blood: The Last Vampire (2009 film)|Blood: The Last Vampire]] (6, low budget and forced internationalization but it delivers a good show for what it is, the camera works should be more cinematic and the shoots should be less regular in amplitude it feels a bit too narrow at times)</br>
[[w:The Atticus Institute|The Atticus Institute]] (6)</br>
[http://www.imdb.com/title/tt2557276/ Against the Sun] (6)</br>
[[w:Jarhead_2:_Field_of_Fire|Jarhead 2: Field of Fire]] (5Q, bad script and claustrophobic camera more than the acting makes it intolerable)</br>
[[w:Extinction (film)|Extinction]] (7-, great acting, good effects even in such a small production, the script should have been better leveraged and paced)</br>
[[w:Dark Was the Night (film)|Dark Was the Night]] (6-, very few proper actors and a limited budget, that is evident in the effects, camera works, lighting and sound quality, allied with a very bare script puts it on the hedge of meriting the time expenditure)</br>
[http://www.imdb.com/title/tt1854580/ That Burning Feeling] (5Q, interesting premise but weak presentation)</br>
[http://www.imdb.com/title/tt2570224/ Two-Bit Waltz] (4Q)</br>
[[w:Enough (film)|Enough]] (6)</br>
[[w:The Drop (film)|The Drop]] (6)</br>
[http://www.imdb.com/title/tt3157224/ We Still Kill the Old Way] (4Q)</br>
[[w:Good Night, and Good Luck|Good Night, and Good Luck]] (6, it could be better it suffers from bad editing, the camera work, selected planes are also problematic and at times it is too slow for the content presented)</br>
[[w:Alien vs. Predator (film)|Alien vs. Predator]] (6)</br>
[[w:The Adjustment Bureau|The Adjustment Bureau]] (6)</br>
[[w:Foxcatcher|Foxcatcher]] (5)</br>
[[w:'71 (film)|'71]] (7)</br>
[[w:Rising Sun (film)|Rising Sun]] (6)</br>
[http://www.imdb.com/title/tt0835775/ Electric Slide] (5)</br>
[[w:Conspiracy Theory (film)|Conspiracy Theory]] (6)</br>
[[w:The Scorpion King 4: Quest for Power|The Scorpion King 4: Quest for Power]] (5, a [[w:LARP]] while the scrip itself is not that bad the acting or directing is very lacking, some setting/locations also are out of place and the epic music becomes extremely annoying after a bit)</br>
[[w:I Saw the Devil|I Saw the Devil]] (7)</br>
[[w:Get Low (film)|Get Low]] (6)</br>
[[w:Highwaymen (film)|Highwaymen]] (6, the very ending is very out of character and unnecessary)</br>
[[w:Time Lapse (film)|Time Lapse]] (5, good premise but the script needed more work and greater creativity)</br>
[[w:Hunter Killer (film)|Hunter Killer]] (6)</br>
[[w:Gone Girl (film)|Gone Girl]] (7)</br>
[[w:The Contract (2006 film)|The Contract]] (6)</br>
[[w:The Sum of All Fears (film)|The Sum of All Fears]] (6)</br>
[[w:Driving Miss Daisy|Driving Miss Daisy]] (7)</br>
[[w:Along Came a Spider (film)|Along Came a Spider]] (7)</br>
[[w:Nurse Betty|Nurse Betty]] (6)</br>
[[w:The Shawshank Redemption|The Shawshank Redemption]] (8)</br>
[[w:Hot Pursuit (2015 film)|Hot Pursuit]] (5+, almost gave up, the script is horrid leading to very forced and infantile gags, the acting is fair)</br>
[[w:Ant-Man (film)|Ant-Man]] (6, safe and boring use of basic formulas, it is like packing sausages. The effects are fine but the ant "speech" is cartoonish and out of place)</br>
[http://www.imdb.com/title/tt2558318/ The Last Survivors] (5+, lacks many things, the premise is fine even if it needed some work to work beyond setting the stage for the action. The acting is also lacking beyond the very main characters. The "villain" could easily been better structured at least to bring it to par with the "heroes" even fleshing this duality would have provided some usable content. With a little more work it could have been way better...)</br>
[[w:The Day the Earth Stood Still (2008 film)|The Day the Earth Stood Still (2008)]] (7-, a remake that adds some good content but fails to be better due to concentrating too much on the [[w:Keanu Reeves]] part)</br>
[[w:The Day the Earth Stood Still|The Day the Earth Stood Still]] (8, a memorable classic)</br>
[[w:Soldier (1998 American film)|Soldier]] (6)</br>
[[w:The Time Machine (1960 film)|The Time Machine (1960)]] (8, a classic with memorable scenes, except for some of the effects it has aged remarkably well)</br>
[[w:In Bruges|In Bruges]] (6, funny story with unexpected twists)</br>
[[w:REC (film)|REC]] (5, some good scenes but weak plot, the acting is also very inconsistent probably an issue with direction more than issues with the script)</br>
[[w:REC 4: Apocalypse|REC 4: Apocalypse]] (5, a bit better production but suffers from the same acting issues added to it is the camera work that in this installment should have been more cinematographic)</br>
[[w:The Day of the Beast (film)|The Day of the Beast]] (7)</br>
[[w:Pan's Labyrinth|Pan's Labyrinth]] (6)</br>
[http://www.imdb.com/title/tt3367686/ Awaken] (4+Q, main issues for what little I saw, the camera work the acting and the general production value)</br>
[[w:The Manchurian Candidate (2004 film)|The Manchurian Candidate (2004)]] (6)</br>
[[w:The Manchurian Candidate (1962 film)|The Manchurian Candidate (1962)]] (7+)</br>
[[w:The Parallax View|The Parallax View]] (6-, it didn't age well, some parts of the script would probably merit a remake as they continue to be interesting to explore. There is some potential there and a remake would be easier than what happened to latter adaptations to screen of [[w:The Manchurian Candidate]])</br>
[http://www.imdb.com/title/tt2517300/ The Suicide Theory] (5-Q, the plot premise reads great but production, casting and acting is bad, I did not see much of the movie to comment on the script but it should be on par with the rest)</br>
[[w:Tusk (2014 film)|Tusk]] (5)</br>
[[w:I Origins|I Origins]] (5, very slow for lack of content)</br>
[[w:The Skeleton Twins|The Skeleton Twins]] (5Q)</br>
[[w:Minuscule: Valley of the Lost Ants|Minuscule: Valley of the Lost Ants]] (5Q)</br>
[[w:Nightcrawler (film)|Nightcrawler]] (7)</br>
[[w:Dying of the Light (film)|Dying of the Light]] (5)</br>
[http://www.imdb.com/title/tt1958007/ Roadside] (5)</br>
[[w:Thin Ice (2011 film)|Thin Ice]] (6+)</br>
[[w:Teenage Mutant Ninja Turtles (2014 film)|Teenage Mutant Ninja Turtles (2014)]] (5)</br>
[[w:Late Phases|Late Phases]] (5, interesting script ideas but low budget and weak directing it could have been way better, this is one waiting for a proper remake)</br>
[[w:The Hunger Games: Mockingjay – Part 1|The Hunger Games: Mockingjay – Part 1]] (6)</br>
[[w:Three Days of the Condor|Three Days of the Condor]] (8)</br>
[[w:The Canal (2014 film)|The Canal]] (4Q)</br>
[[w:Fury (2014 film)|Fury]] (7)</br>
[[w:Into the Storm (2014 film)|Into the Storm]] (4, some of the effects are fine and its the main point of a calamity movie so I FF to those in place of quiting)</br>
[[w:Living with the Enemy (tv series)|Living with the Enemy]] (5, I only have seen episode 5 about Marijuana, I dislike the format because it can be easily manipulated on production and it doesn't reach any conclusion beyond maybe having an impact on the protagonists, one thing it reinforced in my view is how connected the legal system and even general politic discourse is with the US)</br>
[[w:These Final Hours|These Final Hours]] (7)</br>
[[w:Nightbreed|Nightbreed]] (8)</br>
[http://www.imdb.com/title/tt2873214/ Bad Turn Worse] (5, boiler plate)</br>
[[w:A Walk Among the Tombstones (film)|A Walk Among the Tombstones]] (7, the musical score is very interesting, good script and acting too)</br>
[[w:Locke (film)|Locke]] (7, mesmerizing story about character and responsibility, one of a kind)</br>
[[w:The Lunchbox|The Lunchbox]] (7, a good, and funny, look into India's lifestyle and social relations)</br>
[[w:This Is Where I Leave You|This Is Where I Leave You]] (5)</br>
[[w:John Wick (film)|John Wick]] (6, I was going to make it a 7 due to the combat choreography/scenography but the last sequences of the script, especially the "boss" fight ruin it)</br>
[http://www.imdb.com/title/tt2769184/ Debug] (5, the plot premise was great but the aesthetics and implementation failed probably due to budget issues, not bad acting in general)</br>
[[w:Total Recall (1990 film)|Total Recall (1990)]] (7, it didn't age well)</br>
[[w:Total Recall (2012 film)|Total Recall (2012)]] (6)</br>
[[w:A Merry Friggin' Christmas|A Merry Friggin' Christmas]] (4Q)</br>
[[w:And So It Goes (film)|And So It Goes]] (5, nothing new, the same formulas, rinse and repeat)</br>
[[w:Dracula Untold|Dracula Untold]] (6)</br>
[[w:The Hobbit: The Desolation of Smaug|The Hobbit: The Desolation of Smaug]] (8)</br>
[[w:The Hobbit: The Battle of the Five Armies|The Hobbit: The Battle of the Five Armies]] (6)</br>
[[w:Frontera (2014 film)|Frontera]] (5, mostly a one sided educational film directed as to moralize an infantile audience on the base of emotional appeal and not addressing the real issues behind actions and events)</br>
[[w:Interstellar (film)|Interstellar]] (7)</br>
[[w:Gravity (film)|Gravity]] (7)</br>
[http://www.imdb.com/title/tt1639397/ Once Upon a Time in Queens] (6, a bit slow a bit myopic but a good rehash and spin on many similar movies that deal with aging and dealing with changes)</br>
[[w:The Salvation (film)|The Salvation]] (7, not an unique script but the cinematography the camera angles were great, not the editing, it was horrid at times and the over use of light filters, but excellent acting and good sound track)</br>
[[w:America Unearthed|America Unearthed]] (4, very bad TV format and premise, I have only seen a few of the programs, the ones that cover subjects that I may have an interests like the copper mystery, vikings in the Americas etc but the show is very bad at explaining and exploring the subjects and in differentiating fact from fiction and present a grounded scientific conclusion)</br>
[[w:Guardians of the Galaxy (film)|Guardians of the Galaxy]] (7, I always liked the more or less consistent Marvel universe, and the efforts they make to keep it so, this adaptation into the big screen didn't seem to mess that up too much, one of the best Marvels adaptations so far)</br>
[[w:Nine Queens|Nine Queens]] (7)</br>
[[w:Before I Go to Sleep (film)|Before I Go to Sleep]] (7)</br>
[http://www.imdb.com/title/tt2170593/ St. Vincent] (5)</br>
[http://www.imdb.com/title/tt1403862/ Sinbad: The Fifth Voyage] (4)</br>
[[w:Lucy (2014 film)|Lucy]] (7)</br>
[[w:Beyond the Edge|Beyond the Edge]] (7)</br>
[[w:Wolf Creek (film)|Wolf Creek]] (6)</br>
[[w:Wolf Creek 2|Wolf Creek 2]] (5)</br>
[[w:Big Hero 6 (film)|Big Hero 6]] (6, seeing the same formulas applied over and over again without significant innovations or creativity becomes boring)</br>
[[w:Predestination (film)|Predestination]] (7)</br>
[[w:The Warrior's Way|The Warrior's Way]] (6, more for the image and aesthetics and strangeness of the plot)</br>
[[w:Snowpiercer|Snowpiercer]] (6, good acting and interesting attempt of a political statement, but the plot itself is not consistent in logic and since those premises are central to the story it hinders the overall quality)</br>
[[w:True Story (film)|True Story]] (6, I'm sad that it isn't better, the acting is great but ultimately it is all that there is to it, the story is not that good or especially well told and so it centers the movie in the conflict of the two main characters)</br>
[[w:Jinn (film)|Jinn]] (4Q)</br>
[[w:Hercules (2014 film)|Hercules]] (6, a weak 6 at that there are problem with the cinematography, the decisions made especially in the first part of the movie. The editing is also a problem...)</br>
[[w:Camp X-Ray (film)|Camp X-Ray]] (6, a bit disappointing that it never goes beyond the emotional aspect of the issue of captive vs captor and the background seems only circumstantial emptying the movie of any interest)</br>
[[w:The Judge (2014 film)|The Judge]] (6)</br>
[[w:A Most Wanted Man (film)|A Most Wanted Man]] (6)</br>
[[w:The Prince (2014 film)|The Prince]] (5)</br>
[[w:Let's Be Cops|Let's Be Cops]] (4Q)</br>
[[w:The Limits of Control|The Limits of Control]] (5+, too pointless, empty and slow, again the premise is fine and the actor's are ok but their work is not that hard in this setup. It could have easily been much more profound and/or entertaining, even taking advantage of better locations/backgrounds would add value to it)</br>
[[w:Housebound|Housebound]] (4, yes I've seen it till the end, a bit of FF but didn't quit, just because of Morgana O'Reilly acting and role)</br>
[[w:The Rover (2014 film)|The Rover]] (7, with a few tweaks it would have been fantastic but as it is, it is memorable)</br>
[[w:Grumpy Old Men (film)|Grumpy Old Men]] (6-, I do like Jack Lemmon and Walter Matthau but is not that great and some situational comedy too forced)</br>
[[w:The Usual Suspects|The Usual Suspects]] (8, the script is great as it is the acting)</br>
[[w:Strange Magic (film)|Strange Magic]] (6-, I don't particularly like musicals but the animation is good, even if I strongly dislike the style used for faces)</br>
[[w:Run All Night (film)|Run All Night]] (6+, well paced action flick)</br>
[[w:Beyond the Reach|Beyond the Reach]] (6-, there a a multitude of similar and better movies around similar lines)</br>
[[w:Divergent (film)|Divergent]] (6-)</br>
[[w:The Divergent Series: Insurgent|Insurgent]] (5+, only due to the effects, the casting and acting is not good, suffers basically from the same problems of the first movie but the story issues becomes more pressing as it progresses)</br>
[[w:The Divergent Series: Allegiant|The Divergent Series: Allegiant]] (6, the best one of the series, the acting has improved, even if the script is relatively empty of content and not very creative. I also disliked the implementation of the gas threat, not the visual but the "logic" on how they've gone about it, in all its angles)</br>
[[w:The Forger (2014 film)|The Forger]] (4Q)</br>
[[w:The Reconstruction of William Zero|The Reconstruction of William Zero]] (6-, unnecessarily confused presentation, the key concepts of the script are interesting but fizzle without satisfying)</br>
[http://www.imdb.com/title/tt2567038/ The Frame] (4Q)</br>
[[w:Avengers: Age of Ultron|Avengers: Age of Ultron]] (6+, better than all the previous ones but MARVEL IP is at times outdated, even if they managed to explore almost every angle on paper, on screen the selection or options hurt the "logic" of the plot)</br>
[[w:The Duke of Burgundy|The Duke of Burgundy]] (7-, there is not much on history content)</br>
[[w:Embrace of the Vampire|Embrace of the Vampire]] (4Q, the best angle is to regard it as a very weak soft porn)</br>
[[w:Cake (2014 film)|Cake]] (6, a weak 6 since it can get a boring for lack of content beyond the good acting and interesting characters)</br>
[[w:Spare Parts (film)|Spare Parts]] (6, but a weak 6 only due to the excessive propagandistic way the story is presented)</br>
[[w:Kingsman: The Secret Service|Kingsman: The Secret Service]] (6-, the script is weak and full of clichés that are taken too seriously, to be seen as a parody to the gender)</br>
[[w:Kingsman: The Golden Circle|Kingsman: The Golden Circle]] (5+, why waste good production value in this type of trash is incomprehensible to me, the script is a mess the CGI is over used and not very good and the camera was too squizo)</br>
[[w:Hit by Lightning|Hit by Lightning]] (5)</br>
[http://www.imdb.com/title/tt4530832/ Road Wars] (5, a bit more work on the script and better actors, not that all are bad, and it could have been easily better, its not that hard with this gender)</br>
[[w:It Follows|It Follows]] (5)</br>
[http://www.imdb.com/title/tt3552892/ Hungerford] (5)</br>
[[w:Home (2015 film)|Home]] (5)</br>
[http://www.imdb.com/title/tt2784134/ Battle for Skyark] (5+, a bit more work on the script and little more in the budget and it could have be easily improved)</br>
[[w:Maggie (film)|Maggie]] (6)</br>
[http://www.imdb.com/title/tt3327624/ Infini] (5, good premise that fails to deliver, main issue is the script that falls apart as soon as it goes beyond the introduction)</br>
[[w:Project Almanac|Project Almanac]] (6-)</br>
[[w:Focus (2015 film)|Focus (2015 film)]] (7)</br>
[[w:Exeter|Exeter]] (5)</br>
[[w:Area 51 (film)|Area 51]] (5)</br>
[[w:The Admiral: Roaring Currents|The Admiral: Roaring Currents]] (5+, most of the acting is bad and it continues to baffles me why most of these Asian movies are so filled with propagandistic or ultra nationalistic nuances, in this case it also includes erroneous religious remarks since at the time Koreans did not believe in a single God. Even if the historic accuracy was already doubtful it further detracts from the presentation)</br>
[http://www.imdb.com/title/tt2564978/ Lost Time] (5-, what a mess, some cool ideas and effects but a crazy script and bad acting makes it unwatchable)</br>
[[w:Mimic (film)|Mimic]] (7-)</br>
[[w:Mimic 2|Mimic 2]] (6-)</br>
[[w:Mimic 3: Sentinel|Mimic 3: Sentinel]] (6)</br>
[http://www.imdb.com/title/tt3300572/ Stung] (5+, required a lot of FF)</br>
[[w:Two Girls and a Guy|Two Girls and a Guy]] (6-, the buildup is great but there are script issues and the production quality is low, in any case it keeps your watching)</br>
[[w:The Terminator|The Terminator]] (8-)</br>
[[w:Terminator 2: Judgment Day|Terminator 2: Judgment Day]] (7)</br>
[[w:Terminator 3: Rise of the Machines|Terminator 3: Rise of the Machines]] (6+)</br>
[[w:Terminator Salvation|Terminator Salvation]] (7+)</br>
[[w:Terminator Genisys|Terminator Genisys]] (7-)</br>
[http://www.imdb.com/title/tt3029476/ Pressure] (6+)</br>
[[w:Madame Bovary (2014 film)|Madame Bovary (2014)]] (5+)</br>
[[w:Manglehorn|Manglehorn]] (5+, no problem about the acting but the script is too bare and slow to make it worth investing the time)</br>
[[w:Law Abiding Citizen|Law Abiding Citizen]] (6)</br>
[http://www.imdb.com/title/tt2962726/ The Anomaly] (5, very interesting concept, nothing new but an interesting subject, good production but not well directed, acted and the fight scenes are very, very bad and in bullet time)</br>
[[w:Extraterrestrial (2014 film)|Extraterrestrial]] (6, if you take it for what it is "a groups of friends decide to take a romantic weekend in the woods at her parents' cabin", the plot could have be better as it has a hard time to stay funny and dark at the same time, it could have been great had they decided one way or the other)</br>
[http://www.imdb.com/title/tt2186663/ 36 Saints] (4Q)</br>
[[w:The Gunman (film)|The Gunman]] (6, it could have been better if not for the weak script and the almost unbearable moralism that permeates it, I gave it a 6 because of the action sequences and the settings)</br>
[http://www.imdb.com/title/tt4627104/ Flight World War II] (5+, the script needed more work, the film would benefit from a better camera work and a larger production, but the plot is different, a creative merge of many other previous works)</br>
[[w:Jurassic Park (film)|Jurassic Park]] (7)</br>
[[w:The Lost World: Jurassic Park|The Lost World: Jurassic Park]] (6)</br>
[[w:Jurassic Park III|Jurassic Park III]] (6-)</br>
[[w:Jurassic World|Jurassic World]] (6-, the scrip falls apart 30m into it, the acting is good but rehashing cliches does not make it a good movie, huge lack of imagination to stay in the already traveled path)</br>
[[w:Parlor (film)|Anarchy Parlor]] (5)</br>
[[w:Stretch (2014 film)|Stretch]] (5)</br>
[[w:Earth to Echo|Earth to Echo]] (4, a weaker version of Explorers, and I hate the "found footage" meme, except for Cloverfield)</br>
[[w:The Goonies|The Goonies]] (7-)</br>
[[w:Explorers (film)|Explorers]] (7)</br>
[[w:Cloverfield|Cloverfield]] (7-)</br>
[[w:Revenge of the Green Dragons|Revenge of the Green Dragons]] (4, bad camera work, weak montage and sadly clearly a script for Asian consumption. I cringe every time I see this propagandistic use of racism, to a sickening degree, it is not that some coverage of it may not be justified, but they exacerbate it to the nth degree)</br>
[[w:Begin Again (film)|Begin Again]] (5)</br>
[[w:Deliver Us from Evil (2014 film)|Deliver Us from Evil]] (6)</br>
[[w:Automata (film)|Automata]] (7, it seems to suffer from a low production budget, with a little tweak here and there it would have been fantastic)</br>
[[w:I, Robot (film)|I, Robot]] (8)</br>
[[w:The Hornet's Nest|The Hornet's Nest ]] (5, embedded reporting is almost always tendentious, in this case it is also a bit of self promotion and in general it takes a single sided propagandistic and sanitized aspect without any real content beyond a few, sadly "normal", tales of the misery of war. The music score is extremely detrimental and over dramatical, completely unnecessary)</br>
[[w:The Purge|The Purge]] (4)</br>
[[w:The Purge: Anarchy|The Purge: Anarchy]] (5)</br>
[[w:The Purge: Election Year|The Purge: Election Year]] (5+, the acting/cast is improving as the effects but the script is not)</br>
[[w:Fargo (film)|Fargo]] (7)</br>
[[w:Kumiko, the Treasure Hunter|Kumiko, the Treasure Hunter]] (6-, slow and without much content, I do get the emotional and cultural allusions but that alone does not validate this film)</br>
[[w:A Dark Reflection|A Dark Reflection]] (6-, a bit slow and too propagandistic, while having a good image quality the pace and script fails to satisfy any requirements of a thriller, making a difficult watch. Reading the resume of the issues or the wikipedia entry on the movie would be as satisfying and less of a burden to the audience)</br>
[[w:San Andreas (film)|San Andreas]] (7-, a 7 only due to the effects and graphical work and acting, the script in itself is not very good its simply a visual disaster movie)</br>
[[w:Kajaki (film)|Kajaki]] (5Q, has a very unnecessary slow start and it is not great in the acting or the writing, if one believes that this ineptitude is how professional armies operate)</br>
[[w:Just Before I Go|Just Before I Go ]] (5+, very confusing and pointless script even if one tries to make something out of any subtext)</br>
[[w:Warm Bodies (film)|Warm Bodies]] (7, cool twist on a creatively lifeless subject matter)</br>
[[w:Edge of Tomorrow (film)|Edge of Tomorrow]] (6, some plot holes but a good watch.)</br>
[[w:Million Dollar Arm|Million Dollar Arm]] (5)</br>
[[w:Sin City (film)|Sin City]] (7)</br>
[[w:Sin City: A Dame to Kill For|Sin City: A Dame to Kill For]] (7)</br>
[[w:The Homesman|The Homesman]] (6, the movie should have ended much sooner, the last sequences are ruinous.)</br>
[[w:Road to Paloma|Road to Paloma]] (5, not bad for a first film, but too much of the director itself on film and too many lingering reflective moments.)</br>
[[w:Cold in July (film)|Cold in July]] (4, empty movie with not even good acting)</br>
[[w:The Maze Runner (film)|The Maze Runner]] (6, we will have now to become accustomed to movies in installments...)</br>
[[w:Maze Runner: The Scorch Trials|Maze Runner: The Scorch Trials]] (6-, I'm beginning to think that the main issue is with the original work, in any case this installment has almost no content it just adds and builds up characters to the story as they incessantly run around)</br>
[[w:Coherence (film)|Coherence]] (4, has a lot of scientific incoherences with some funny though experiments but it is boring)</br>
[[w:Good People (film)|Good People]] (6)</br>
[http://www.imdb.com/title/tt1572306/ Don't Blink] (5, the sound designer needs to be more subtle, he alone manages to ruin some good scenes)</br>
[[w:Horns (film)|Horns]] (5)</br>
[[w:The Equalizer (film)|The Equalizer]] (6, nothing new, same formula over and over again)</br>
[[w:The Equalizer 2|The Equalizer 2]] (6)</br>
[[w:Survivor (film)|Survivor]] (6-, weak script, pervasive with a strange subtext, is a waste of time for those actors)</br>
[http://www.imdb.com/title/tt2950236/ The Living] (5Q)</br>
[[w:Children of Men|Children of Men]] (7)</br>
[[w:Page Eight|Page Eight]] (7)</br>
[[w:Turks & Caicos (film)|Turks & Caicos]] (6-, not as good as the first movie of the series, [[w:Page Eight]] and the plot is very thinly presented but good enough acting and set-up, a must if one sees the first)</br>
[[w:Salting the Battlefield|Salting the Battlefield]] (6)</br>
[[w:Tomorrowland (film)|Tomorrowland]] (6+)</br>
[[w:Big Game (2014 film)|Big Game]] (5+)</br>
[[w:5 Flights Up (film)|5 Flights Up (film)]] (6+)</br>
[[w:Mad Max: Fury Road|Mad Max: Fury Road]] (6+)</br>
[[w:Mad Max|Mad Max]] (6-)</br>
[[w:Mad Max 2|Mad Max 2]] (6)</br>
[[w:Mad Max Beyond Thunderdome|Mad Max Beyond Thunderdome]] (6)</br>
[[w:Parallels (2015 film)|Parallels]] (6-, simple but to the point, the acting could be a bit better and the script improved, it seems a long pilot and ends without any real conclusion, I recollected the great [[w:Sliders]] series)</br>
[http://www.imdb.com/title/tt2016335/ Walter] (5)</br>
[[w:The Giver (film)|The Giver]] (6, good movie but a bad adaptation to script from the novel [[w:The Giver|The Giver]], that I haven't read but seems to avoid many of the bad issues that the script creates in the background that is presented.)</br>
====Shorts====
[http://www.imdb.com/title/tt6089002/ Yes, God, Yes] (6-, it could easily been better)</br>
[http://www.imdb.com/title/tt7078780/ Zygote] (6)</br>
[[w:Marvel One-Shots]]:[[w:All Hail the King|All Hail the King]] (6+)</br>
[[w:Marvel One-Shots]]:[[w:Item 47|Item 47]] (6+)</br>
[[w:Marvel One-Shots]]:[[w:Agent Carter (film)|Agent Carter]] (6-, the low budget feel ruins it)</br>
[[w:Marvel One-Shots]]:[[w:Marvel_One-Shots#The_Consultant_.282011.29|The Consultant]] (6+)</br>
[[w:Marvel One-Shots]]:[[w:Marvel_One-Shots#A_Funny_Thing_Happened_on_the_Way_to_Thor.27s_Hammer_.282011.29|A Funny Thing Happened on the Way to Thor's Hammer]] (7)
====Animation====
[[w:Batman Ninja|Batman Ninja]] (6-, while I can appreciate the craft didn't like the art work on this context, and I have rarely seen computer aided animation that I like or better yet not notice)</br>
[[w:Reign of the Supermen (film)|Reign of the Supermen]] (6+)
[[w:Ralph Breaks the Internet|Ralph Breaks the Internet]] (6+)</br>
[[w:Kingsglaive: Final Fantasy XV|Kingsglaive: Final Fantasy XV]] (6-)</br>
[[w:Isle of Dogs (film)|Isle of Dogs]] (6+)</br>
[[w:Dead Space: Aftermath|Dead Space: Aftermath]] (5Q)</br>
[[w:Captain Underpants: The First Epic Movie|Captain Underpants: The First Epic Movie]] (6-)</br>
[[w:Godzilla: Planet of the Monsters|Godzilla: Planet of the Monsters]] (6-)</br>
[[w:Harmony (2015 film)|Hāmonī aka Harmony]] (6-)</br>
[[w:Starship Troopers: Traitor of Mars|Starship Troopers: Traitor of Mars]] (6)</br>
[[w:Memories (1995 film)|Memories]] (8-, while a collection of shorter films the overall quality is good even if the esthetics suffer significant changes)</br>
[http://www.imdb.com/title/tt0817910/ Hellboy Animated: Blood and Iron] (6)</br>
[http://www.imdb.com/title/tt0810895/ Hellboy Animated: Sword of Storms] (6)</br>
[[w:Resident Evil: Vendetta|Resident Evil: Vendetta]] (6)</br>
[[w:The Boss Baby|The Boss Baby]] (6, for the proper audience, kids, as the script has logic issues. Also the message seems a bit too dangerous and is much stressed on the initial part of the movie, love is finite and needs to be divided in portions and a brother/sister will result in less love for the kid, is not how I would introduce things)</br>
[[w:Justice League: Gods and Monsters|Justice League: Gods and Monsters]] (6)</br>
[[w:Summer Wars|Summer Wars]] (7)</br>
[[w:Gantz: O|Gantz: O]] (6)</br>
[[w:Teen Titans: The Judas Contract|Teen Titans: The Judas Contract]] (6-)</br>
[[w:Moana (2016 film)|Moana]] (6)</br>
[[w:Redline (2009 film)|Redline]] (6+, the script isn't great and I dislike the style of the artwork but it has some very good scenes and clever ideas in the mix)</br>
[[w:Justice League Dark (film)|Justice League Dark]] (6-, while the quality of the artwork is not consistent the script and some of the later animation sequences saves it)</br>
[[w:Mardock Scramble: The First Compression|Mardock Scramble: The First Compression]] (6, some cool ideas but the script is not very good nor is the artwork)</br>
[[w:Mardock Scramble|Mardock Scramble: The Second Combustion]] (6, this time the open end is even more obnoxious, this is a serialized movie)</br>
[[w:Snowtime!|Snowtime!]] (6)</br>
[[w:Finding Dory|Finding Dory]] (6)</br>
[https://teaser-trailer.com/hulk-where-monsters-dwell-movie/ Hulk Where Monsters Dwell] (5+)</br>
[[w:Psycho-Pass: The Movie|Psycho-Pass: The Movie]] (6+)</br>
[[w:April and the Extraordinary World|April and the Extraordinary World]] (7-, the artwork is not great but the animation and creativity especially in the script, even if derivative, ties it all well enough, it could easily be better, the idea of a rocket with a rock-crusher is one that shouldn't have passed)</br>
[[w:The Jungle Book (1967 film)|The Jungle Book (1967)]] (6+)</br>
[[w:The Secret Life of Pets|The Secret Life of Pets]] (6)</br>
[[w:Justice League vs. Teen Titans|Justice League vs. Teen Titans]] (6-, the script and action is a bit repetitive, the selected color scheme also is very tiring and basic)</br>
[[w:The Iron Giant|The Iron Giant]] (7+)</br>
[[w:Open Season (2006 film)|Open Season]] (6)</br>
[[w:Open Season: Scared Silly|Open Season: Scared Silly]] (5+Q)</br>
[[w:Anomalisa|Anomalisa]] (6-, the animation is ok but the script is dull, the male voice-overs on female parts is just weird)</br>
[[w:Justice League: Throne of Atlantis|Justice League: Throne of Atlantis]] (5, subpar animation, bad script and I cringe to what they are doing to [[w:Captain Marvel (DC Comics)|Captain Marvel aka Shazam]] after the DC/Marvel merge.)</br>
[[w:Batman Unlimited: Monster Mayhem|Batman Unlimited: Monster Mayhem]] (5+Q, bad artwork not so bad animation but an horrendous script no pun intended.)</br>
[[w:Batman: Bad Blood|Batman: Bad Blood]] (6)</br>
[[w:The Peanuts Movie|The Peanuts Movie]] (6-, the animation is not great and the changes to the original material remove more than add)</br>
[[w:Pirate's Passage|Pirate's Passage]] (6, while the animation is not great and the script is too slow in unfolding it is a fine tale)</br>
[http://www.imdb.com/title/tt4856322/ Halo: The Fall of Reach] (6-, the artwork is fine but the animation is subpar and takes several shortcuts like use of static backgrounds, the faces and bodies are also weird in proportions and movement)</br>
[[w:Dragon Nest: Warrior's Dawn|Dragon Nest: Warrior's Dawn]] (6-, the art work and animation quality is not consistent it has lows and highs, the script has its issues and at times it feels like a rerun of many other movies without a real creative insight just a lose mishmash set into appealing to higher emotions but failing miserably to have any moral regard to the violence it dishes out at times)</br>
[[w:Toy Story That Time Forgot|Toy Story That Time Forgot]] (6+)</br>
[[w:Ghost in the Shell (film)|Ghost in the Shell]] (8)</br>
[[w:Ghost in the Shell: Arise|Ghost in the Shell: Pyrophoric Cult]] (6, the animation has lost some quality even the art work and the scripts seem repetitive)</br>
==Future:==
- Sakamoto Days is getting a second season, which is also due to hit the streamer 2027.
- second season of Blue Eye Samurai.
== Media comments ==
I will start this section to keep a log of my views regarding some of the content producers.</br></br>
[[w:History (TV channel)|'''History channel''']] part of the [[w:Hearst Corporation|'''Hearst Corporation''']] (to what I have an historic disdain) this American cable and satellite television channel is a good example of what is wrong with most US TV content producers. Its productions are very good, almost as good as [[w:HBO]] but the content is empty of almost any value. In general transmits US stereotypes and idiocy and is an extension of the continued attempt of rewriting history, reality perception and shape culture by a sensationalist appeal to the lowest common denominator and at its best its like fast food for your mind.</br>
</br>
Recently learned about a new definition, '''Christian historical films.''' WTF?!?</br>
I was aware of other movies that "promote" Christian values but I think this is too much idiocy, just think about the term. In the religious sense it should be clarified to those not aware that anglo-american Christianism is about a subsection of Roman-Chatolic values with deviations that may even include Mormonism. In any case I see this mostly US centric "fragmentation" a sign that at least some "minorities" are revolting against "main-stream" media content in regard to the moral values they "promote" and I applaud the self labeling as "promotion" material. Sadly it will soon be equated to lack of quality mostly of production, writing/creativity and to the rest of the knowledgeable non-believers and potential consumers as an unwanted distortion of reality. I also don't think you can proselytize with movies the best they can is make people think or acclimate to issues (unless they are true deception jobs, but that would go against most religious beliefs), in any case most of these Christian productions I've seen are too far inside their own act to create any valid concise point of reflection beyond turning it off.</br>
0jkgnikh3vvtyykid7f3butca41fhaz
Wikibooks:Edit filter/False positives
4
396216
4641227
4640365
2026-06-26T08:10:44Z
ArchiverBot
1227662
Bot: Archiving 2 threads (older than 75 days) to [[Wikibooks:Edit filter/False positives/Archive 4]]
4641227
wikitext
text/x-wiki
__NONEWSECTIONLINK__ __NOINDEX__ {{Wikibooks:Edit filter/False positives/Header}} {{shortcut|WB:EFFP}} {{User:MiszaBot/config
|archive = Wikibooks:Edit filter/False positives/Archive %(counter)d
|algo = old(75d)
|counter = 4
|maxarchivesize = 150K
|minthreadstoarchive = 1
|minthreadsleft = 3
}}
== ~2026-22598-75 ==
;Username
: [[:b:User:~2026-22598-75|~2026-22598-75]]<span class="noprint"> {{toolbar|separator=dot
|[[:b:User talk:~2026-22598-75|discuss]]
|[[:b:Special:Emailuser/~2026-22598-75|email]]
|[[:b:Special:Contributions/~2026-22598-75|contribs]]
|[{{fullurl:b:Special:Log|user={{urlencode:~2026-22598-75}}}} <span style{{=}}"color:#002bb8">logs</span>]
|[//tools.wmflabs.org/xtools/pcount/index.php?lang{{=}}en&wiki{{=}}wikibooks&name{{=}}{{urlencode:~2026-22598-75}} <span style{{=}}"color:#002bb8">count</span>]
}}</span> (<span class="plainlinks">[{{fullurl:Special:AbuseLog|wpSearchUser=%7E2026-22598-75}} filter log]</span>)
;Page you were editing
: [[History Books/Who Was Alexander the Great/Introduction]] <span class="plainlinks">([{{fullurl:Special:AbuseLog|wpSearchTitle=History+Books%2FWho+Was+Alexander+the+Great%2FIntroduction}} filter log]) ([{{fullurl:Special:AbuseLog|wpSearchTitle=History+Books%2FWho+Was+Alexander+the+Great%2FIntroduction&wpSearchUser=%7E2026-22598-75}} user filter log])</span>
;Description
: The page was tagged for speedy deletion due to being a subpage of a nonexistent book, but I have since created the parent books. However, it won’t let me remove the tag, now that the problem has been addressed.
Leave the rest of this page intact. -->
;Date and time
: 17:39, 12 April 2026 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
: {{EFFP|done}} – [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 22:15, 12 April 2026 (UTC)
== Idavidmiller ==
;Username
: [[:b:User:Idavidmiller|Idavidmiller]]<span class="noprint"> {{toolbar|separator=dot
|[[:b:User talk:Idavidmiller|discuss]]
|[[:b:Special:Emailuser/Idavidmiller|email]]
|[[:b:Special:Contributions/Idavidmiller|contribs]]
|[{{fullurl:b:Special:Log|user={{urlencode:Idavidmiller}}}} <span style{{=}}"color:#002bb8">logs</span>]
|[//tools.wmflabs.org/xtools/pcount/index.php?lang{{=}}en&wiki{{=}}wikibooks&name{{=}}{{urlencode:Idavidmiller}} <span style{{=}}"color:#002bb8">count</span>]
}}</span> (<span class="plainlinks">[{{fullurl:Special:AbuseLog|wpSearchUser=Idavidmiller}} filter log]</span>)
;Page you were editing
: [[Maxima/Installation]] <span class="plainlinks">([{{fullurl:Special:AbuseLog|wpSearchTitle=Maxima%2FInstallation}} filter log]) ([{{fullurl:Special:AbuseLog|wpSearchTitle=Maxima%2FInstallation&wpSearchUser=Idavidmiller}} user filter log])</span>
;Description
: Revising this page as it is way too complex for the intended audience. The external links prevent copying extensive sections from project installation instruction pages.
;Date and time
: 15:10, 20 April 2026 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
: <span class="template-ping">@[[:User:Idavidmiller|Idavidmiller]]:</span> I temporarily granted you confirmed user access so that the filter should not prevent you. It's in effect until Thursday, 10:14 AM CDT/15:14 UTC. [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 15:16, 21 April 2026 (UTC)
== Usp4pg ==
;Username
: [[:b:User:Usp4pg|Usp4pg]]<span class="noprint"> {{toolbar|separator=dot
|[[:b:User talk:Usp4pg|discuss]]
|[[:b:Special:Emailuser/Usp4pg|email]]
|[[:b:Special:Contributions/Usp4pg|contribs]]
|[{{fullurl:b:Special:Log|user={{urlencode:Usp4pg}}}} <span style{{=}}"color:#002bb8">logs</span>]
|[//tools.wmflabs.org/xtools/pcount/index.php?lang{{=}}en&wiki{{=}}wikibooks&name{{=}}{{urlencode:Usp4pg}} <span style{{=}}"color:#002bb8">count</span>]
}}</span> (<span class="plainlinks">[{{fullurl:Special:AbuseLog|wpSearchUser=Usp4pg}} filter log]</span>)
;Page you were editing
: [[Lentis/AI: More Human Than You Think]] <span class="plainlinks">([{{fullurl:Special:AbuseLog|wpSearchTitle=Lentis%2FAI%3A+More+Human+Than+You+Think}} filter log]) ([{{fullurl:Special:AbuseLog|wpSearchTitle=Lentis%2FAI%3A+More+Human+Than+You+Think&wpSearchUser=Usp4pg}} user filter log])</span>
;Description
: It is saying the edits I am making are unconstructive even though I added actual content to prevent it from falsely deleting the page. It will not allow me to publish changes. This is for a class project, and I am just starting to get the skeleton done.
;Date and time
: 14:56, 21 April 2026 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
: {{EFFP|done}} <span class="template-ping">@[[:User:Usp4pg|Usp4pg]]:</span> I removed the tag as it was not a test page. – [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 15:12, 21 April 2026 (UTC)
== LeventBulut ==
;Username
: [[:b:User:LeventBulut|LeventBulut]]<span class="noprint"> {{toolbar|separator=dot
|[[:b:User talk:LeventBulut|discuss]]
|[[:b:Special:Emailuser/LeventBulut|email]]
|[[:b:Special:Contributions/LeventBulut|contribs]]
|[{{fullurl:b:Special:Log|user={{urlencode:LeventBulut}}}} <span style{{=}}"color:#002bb8">logs</span>]
|[//tools.wmflabs.org/xtools/pcount/index.php?lang{{=}}en&wiki{{=}}wikibooks&name{{=}}{{urlencode:LeventBulut}} <span style{{=}}"color:#002bb8">count</span>]
}}</span> (<span class="plainlinks">[{{fullurl:Special:AbuseLog|wpSearchUser=LeventBulut}} filter log]</span>)
;Page you were editing
: [[Objective Projection: Why the Brain Never Forgets Some Stories]] <span class="plainlinks">([{{fullurl:Special:AbuseLog|wpSearchTitle=Objective+Projection%3A+Why+the+Brain+Never+Forgets+Some+Stories}} filter log]) ([{{fullurl:Special:AbuseLog|wpSearchTitle=Objective+Projection%3A+Why+the+Brain+Never+Forgets+Some+Stories&wpSearchUser=LeventBulut}} user filter log])</span>
;Description
: I am the author of the Objective Projection methodology. I was trying to add a legitimate educational book to Wikibooks under CC BY-SA 4.0. The filter blocked my edits twice — once for external links, once for content volume. All content is my own original work written specifically for Wikibooks. The Turkish version of the same book is already live on tr.wikibooks.org Open license declaration at leventbulut.com/acik-lisans-bildirimi-wikibooks/
;Date and time
: 06:35, 25 April 2026 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
: [[User:LeventBulut|LeventBulut]], the filters were working as intended, but I can adjust them. However, I've temporarily given you confirmed user access until 2026-04-29. Please note that this will exclude you from some commonly-hit filters, but not all of them to be exact. Thank you. [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 15:07, 26 April 2026 (UTC)
== SHE-LOVES-BRIAN ==
;Username
: [[:b:User:SHE-LOVES-BRIAN|SHE-LOVES-BRIAN]]<span class="noprint"> {{toolbar|separator=dot
|[[:b:User talk:SHE-LOVES-BRIAN|discuss]]
|[[:b:Special:Emailuser/SHE-LOVES-BRIAN|email]]
|[[:b:Special:Contributions/SHE-LOVES-BRIAN|contribs]]
|[{{fullurl:b:Special:Log|user={{urlencode:SHE-LOVES-BRIAN}}}} <span style{{=}}"color:#002bb8">logs</span>]
|[//tools.wmflabs.org/xtools/pcount/index.php?lang{{=}}en&wiki{{=}}wikibooks&name{{=}}{{urlencode:SHE-LOVES-BRIAN}} <span style{{=}}"color:#002bb8">count</span>]
}}</span> (<span class="plainlinks">[{{fullurl:Special:AbuseLog|wpSearchUser=SHE-LOVES-BRIAN}} filter log]</span>)
;Page you were editing
: Page not specified
;Description
:
;Date and time
: 14:35, 5 May 2026 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
: {{EFFP|note}} You are autoconfirmed, which means the filter shouldn't trigger on you anymore, but not all of them to be exact. – [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 15:58, 15 June 2026 (UTC)
== ~2026-32360-90 ==
;Username
: [[:b:User:~2026-32360-90|~2026-32360-90]]<span class="noprint"> {{toolbar|separator=dot
|[[:b:User talk:~2026-32360-90|discuss]]
|[[:b:Special:Emailuser/~2026-32360-90|email]]
|[[:b:Special:Contributions/~2026-32360-90|contribs]]
|[{{fullurl:b:Special:Log|user={{urlencode:~2026-32360-90}}}} <span style{{=}}"color:#002bb8">logs</span>]
|[//tools.wmflabs.org/xtools/pcount/index.php?lang{{=}}en&wiki{{=}}wikibooks&name{{=}}{{urlencode:~2026-32360-90}} <span style{{=}}"color:#002bb8">count</span>]
}}</span> (<span class="plainlinks">[{{fullurl:Special:AbuseLog|wpSearchUser=%7E2026-32360-90}} filter log]</span>)
;Page you were editing
: [[Chess Opening Theory/1. e4/1...e5/2. Bc4/2...Bc5/3. Qh5/3...Qe7]] <span class="plainlinks">([{{fullurl:Special:AbuseLog|wpSearchTitle=Chess+Opening+Theory%2F1.+e4%2F1...e5%2F2.+Bc4%2F2...Bc5%2F3.+Qh5%2F3...Qe7}} filter log]) ([{{fullurl:Special:AbuseLog|wpSearchTitle=Chess+Opening+Theory%2F1.+e4%2F1...e5%2F2.+Bc4%2F2...Bc5%2F3.+Qh5%2F3...Qe7&wpSearchUser=%7E2026-32360-90}} user filter log])</span>
;Description
: Trying to add a language ([[:fi:Shakki/rnb1k1nr;ppppqppp;8;2b1p2Q;2B1P3;8;PPPP1PPP;RNB1K1NR w KQkq]]) was being flagged as unconstructive by the edit filter.
;Date and time
: 15:57, 15 June 2026 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
:{{EFFP|rf}} [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 15:57, 15 June 2026 (UTC)
== ~2026-35089-83 ==
;Username
: [[:b:User:~2026-35089-83|~2026-35089-83]]<span class="noprint"> {{toolbar|separator=dot
|[[:b:User talk:~2026-35089-83|discuss]]
|[[:b:Special:Emailuser/~2026-35089-83|email]]
|[[:b:Special:Contributions/~2026-35089-83|contribs]]
|[{{fullurl:b:Special:Log|user={{urlencode:~2026-35089-83}}}} <span style{{=}}"color:#002bb8">logs</span>]
|[//tools.wmflabs.org/xtools/pcount/index.php?lang{{=}}en&wiki{{=}}wikibooks&name{{=}}{{urlencode:~2026-35089-83}} <span style{{=}}"color:#002bb8">count</span>]
}}</span> (<span class="plainlinks">[{{fullurl:Special:AbuseLog|wpSearchUser=%7E2026-35089-83}} filter log]</span>)
;Page you were editing
: [[[[Japanese/Kana]]]] <span class="plainlinks">([{{fullurl:Special:AbuseLog|wpSearchTitle=%5B%5BJapanese%2FKana%5D%5D}} filter log]) ([{{fullurl:Special:AbuseLog|wpSearchTitle=%5B%5BJapanese%2FKana%5D%5D&wpSearchUser=%7E2026-35089-83}} user filter log])</span>
;Description
: Tried replacing a dead link with a working version I found when I plugged the link into webarchive, since that's what I presumed I was meant to do when I found a dead link.
;Date and time
: 01:27, 15 June 2026 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
ct1m5benyhqfmwbnc10pz7hokz23q9v
Handbook of the Swatow Vernacular modernized
0
437819
4641188
4441023
2026-06-25T22:37:53Z
Noeiel17
3495772
added language categorization
4641188
wikitext
text/x-wiki
{{TOCright}}
== Preface to the modernized edition ==
This is a version of Handbook of the Swatow Vernacular by Lim Hiong Seng, originally published in 1886. The original has been [[wikisource:Handbook_of_the_Swatow_Vernacular|digitized and transcribed on Wikisource]].
The original edition used phonetic spelling adapted from missionary romanization systems, and also included Chinese characters that were glosses into Mandarin or literary Chinese, rather than characters reflecting actual Teochew usage. In this modernized edition, we have added the [[wikipedia:Peng'im|Guangdong Education Department 1960 Pêng'im]] and the [http://library.hiteo.pw/book/wagpzbkv.html Tîe-lô] systems of phonetic spelling as well as Teochew vernacular characters. The symbol ~ is used when a generally accepted character is not known.
== Original Chinese Preface (1886) ==
此書乃彙集英潮土語專為英人學習潮語
潮人學習英語而發第其中華字旁註按以
潮州土音多有無字可寫者如不要二字之
類則不字當讀作唔字要字當讀作愛字便
合潮人土談其餘倣此可以類推學者舉一
反三自能玩索有得誠英潮通語之津梁也
果能潜心熟讀則言語之科應對之才無不
於此基之矣爰為之誌 潮州林雄成著集
光緒十二年元月吉日新嘉坡古友軒承印
== Original English Preface (1886) ==
The present work differs in one respect from all other works on the Swatow language previously published, as it has been compiled by one to whom it is a mother tongue and who has learned English, instead of by a European who has learned Chinese, so that it has been possible to confine the sentences strictly to the colloquial form. It is almost impossible for a European to compile any such aid so as to be entirely colloquial, because he commences his first study of the language by engaging a Chinese teacher and acquires his knowledge of Chinese principally from that class. These teachers are in the habit of importing into their speech a certain number of “bookish” words, that is, words which are only used in the written language, and are never used in the colloquial, and are not therefore understood by the people in general. To acquire the pure colloquial it is better to start with the early study of the language from another class rather than from a pedant like the teacher class. Learned men indeed add a few polite or pedantic phrases, but these are only used on certain occasions and are mere excrescences.
The chief disadvantage of inserting book words in phrase books is that the student after discovering that a certain number of words given therein when used are not understood by the people, is led to doubt whether some other words used would be understood. Thus the student has to enquire and ascertain those words which may seem to him doubtful before he uses them. Readers of the present work will be able to use every word occurring throughout the whole volume without having any doubt of its being understood.
The following is the system of orthography employed.
=== VOWELS ===
a as a in far, never as in man.
e „ e „ they
i „ i „ machine, not as in tin, sin.
o „ aw „ law
u „ u „ rude
ṳ „ ü „ Trübner
=== DIPHTHONGS ===
In all the diphthongs each vowel is heard distinctly with its own proper sound.
ai as y in fly
au „ ow „ cow
oi „ oy „ boy
ou nearly „ ou „ four
ua „ wa „ war
ui „ wee „ weed
=== CONSONANTS ===
Most of the consonants are pronounced as in English, or very nearly so.
ch—always as in cheese. g—is always hard.
h—is always pronounced, except when final.
j—always as in judge.
ng—as in king, cut off ki will leave the exact nasal sound of ng.
s—as in song, never as in choose, lose.
z—always as ds or dz; never as in zeal, zone.
k, p, and t,—as final consonants are pronounced without the slightest emission of vocal breath as there usually is in pronouncing English.
m and ng—will be found written without any vowel (e. g. n̂g, m̄, ḿ); often also preceded by a consonant (e. g. sng, hñg, kng) “The nature of these syllables without a distinct vowel becomes at once unmistakable in singing, as at such a word all clear vocal sound at once ceases, and nothing is heard but a dull nasal murmur.
“The Aspirated Consonants are a very remarkable feature in all the languages of China, and require very special attention. They are kh, ph, th, chh, and tsh. The sounds are the same as those indicated by the same notation in the languages of India, being formed by a real distinct aspiration pronounced after the respective consonants………………The sounds are almost the same as those often used by Irishmen when pronouncing with a strong brogue such words as come, pig, &c.; they are also often heard in the mouths of the Scottish Highlanders.
“kh—may be thus described:—Pronounce……………look here! rapidly and clearly, cut off loo- and -re, and you have the Chinese “khi.” “ph—might be illustrated in a similar manner;—e. g. say loophole very rapidly and sharply, cut off loo- and -le from the two ends, and there remains the Chinese “pho.”
“th—must not be confounded with the English th, which is really a simple sound. The Chinese th is a clear distinct t followed by the aspirate. Thus the Chinese “thau” may be carved out of out-house or hot-house.
“chh—is formed in a similar way from the ch of church. Take such a word as watch-house or coach-house, remove the wa- or coa- from the beginning and the -se from the end, and something very near the Chinese “chhau” remains.[1]
tsh—is almost the same as chh, the slight difference it has is that there is not so much sound of h as in chh.
ch—is not an aspirated consonant as explained above, it is always pronounced as in cheese.
A small ⁿ written above the line at the end of a syllable indicates that the whole syllable becomes nasal. From the various dialects in the Swatow region that of the Departmental city known as Ch’ao-chow-foo, (or Tie-chiu-hu in this dialect,) has been chosen, although that of the department of Theng Hai is more extensively spoken in Singapore and perhaps in Swatow also. This work makes no pretence of being more than introductory, and the sentences are such as may be heard from the lips of the native in every day use, while the little dictionary attached to it will undoubtedly be found useful. For many English words there are several Chinese colloquial equivalents, and in the little dictionary two or more of these are frequently given. But there are, no doubt, others which have been inadvertently omitted, and in case of doubt as to any word which does not appear, the student will have no difficulty in ascertaining whether the word that is omitted is in common use, as he can enquire from any one who speaks the dialect, however uneducated he may be.
In conclusion the author has to thank the Rev. J. A. B. Cook for aid in bringing out the work.
LIM HIONG SENG.
Singapore, February, 1886.
== Contents ==
* [[/Introductory/]]
* [[/A list of introductory verbs/]]
* [[/Exercises (1)/]]
* [[/A list of introductory adjectives/]]
* [[/Exercises (2)/]]
* [[/Numeral/]]
* [[/Tones, hyphens/]]
* [[/Grammar/]]
* [[/Time generally/]]
* [[/A Building &c/]]
* [[/Human Body &c/]]
* [[/Household Furniture &c/]]
* [[/Garden/]]
* [[/A List of Words used in Cooking/]]
* [[/Provisions, Fish, Vegetable and Fruit/]]
* [[/On Dress/]]
* [[/Nautical/]]
* [[/Medical/]]
* [[/Commercial-Piece-goods/]]
* [[/Commercial-Mineral &c/]]
* [[/Commercial-Miscellaneous Articles/]]
* [[/Commercial-Carpentry/]]
* [[/Commercial-Tailoring/]]
* [[/Commercial-Accounts/]]
* [[/Commercial-Monetary/]]
* [[/Commercial-A List of Words Used in Commerce/]]
* [[/Commercial-Weights and Measures/]]
* [[/Judicial/]]
* [[/Hostilities/]]
* [[/Religious/]]
* [[/Relationships/]]
* [[/A List of Animals and Birds/]]
* [[/A List of Classifiers/]]
* [[/Notes—Nautical/]]
* [[/Notes—Medical/]]
* [[/Notes—Commercial/]]
* [[/Notes—Judicial/]]
* [[/Notes—Hostilities/]]
* [[/Notes—Religious/]]
* [[/A Dictionary of some of the more important words in the Swatow dialect/]]
{{shelves|Chinese language}}
{{status|0%}}
{{Category 4 Language}}
lv023s2w4e62vfs1t3nibu84fltvfzl
Wikibooks:Edit filter/False positives/Archive 4
4
455830
4641226
4639884
2026-06-26T08:10:34Z
ArchiverBot
1227662
Bot: Archiving 2 threads from [[Wikibooks:Edit filter/False positives]]
4641226
wikitext
text/x-wiki
{{talk archive}}
== 205.118.123.63 ==
;Username
: {{user|205.118.123.63}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:205.118.123.63}}|NAME=filter log}})
;Page you were editing
: [[]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:}}|NAME=filter log}})
;Description
:
;Date and time
: 20:47, 21 February 2023 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
== 205.118.123.63 ==
;Username
: {{user|205.118.123.63}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:205.118.123.63}}|NAME=filter log}})
;Page you were editing
: [[]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:}}|NAME=filter log}})
;Description
:
;Date and time
: 20:49, 21 February 2023 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
== Abid Sidiq Ahanger ==
;Username
: {{user|Abid Sidiq Ahanger}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Abid Sidiq Ahanger}}|NAME=filter log}})
;Page you were editing
: [[]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:}}|NAME=filter log}})
;Description
:
;Date and time
: 16:00, 25 February 2023 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
== Aadit6 ==
;Username
: {{user|Aadit6}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Aadit6}}|NAME=filter log}})
;Page you were editing
: [[en.wikibooks.org/w/index.php?title=A-level_Computing/AQA/Paper_1/Skeleton_program/AS2023]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:en.wikibooks.org/w/index.php?title=A-level_Computing/AQA/Paper_1/Skeleton_program/AS2023}}|NAME=filter log}})
;Description
: I am trying to insert the full skeleton code into the wikibooks page. This is the original code supplied by AQA available for computer science students but it will not allow me to insert it.
;Date and time
: 09:18, 3 March 2023 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
== 94.204.59.111 ==
;Username
: {{user|94.204.59.111}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:94.204.59.111}}|NAME=filter log}})
;Page you were editing
: [[Chess Opening Theory/1.e4/b5]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:Chess Opening Theory/1.e4/b5}}|NAME=filter log}})
;Description
: I just wanted to correct grammar. The part that I wanted to correct said the the rook, while my edit changed it to the rook.
;Date and time
: 09:41, 3 March 2023 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
:{{done}} – see [[Special:Diff/4240955]]. --[[User:SHB2000|SHB2000]] ([[User talk:SHB2000|discuss]] • [[Special:Contributions/SHB2000|contribs]]) 01:22, 4 March 2023 (UTC)
== David Allencourt ==
;Username
: {{user|David Allencourt}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:David Allencourt}}|NAME=filter log}})
;Page you were editing
: [[The History of the Armenians (Movses Khorenatsi)]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:The History of the Armenians (Movses Khorenatsi)}}|NAME=filter log}})
;Description
: Hello! I am attempting to add my translation of Movses Khorenatsi's work The History of the Armeniansp, which has long been used as a textbook of Armenian history. However it is getting caught in the filter.
;Date and time
: 03:32, 6 March 2023 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
{{done}}. {{re|David Allencourt}}, you are likely to face difficulty editing your text for a while, as you're being hit by a filter we have no control over. Feel free to continue submitting false positive requests for a while. [[User:Leaderboard|Leaderboard]] ([[User talk:Leaderboard|discuss]] • [[Special:Contributions/Leaderboard|contribs]]) 05:58, 6 March 2023 (UTC)
== 99.209.41.18 ==
;Username
: {{user|99.209.41.18}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:99.209.41.18}}|NAME=filter log}})
;Page you were editing
: [[]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:}}|NAME=filter log}})
;Description
:
;Date and time
: 17:39, 7 March 2023 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
== 99.209.41.18 ==
;Username
: {{user|99.209.41.18}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:99.209.41.18}}|NAME=filter log}})
;Page you were editing
: [[]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:}}|NAME=filter log}})
;Description
:
;Date and time
: 17:43, 7 March 2023 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
== UhLukas 90 ==
;Username
: {{user|UhLukas 90}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:UhLukas 90}}|NAME=filter log}})
;Page you were editing
: [[]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:}}|NAME=filter log}})
;Description
: Publishing error
;Date and time
: 22:02, 8 March 2023 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
:You were correctly blocked. Your attempt to paste a set of Discord copyright material onto your user page was rightly detected as unconstructive. [[User:MarcGarver|MarcGarver]] ([[User talk:MarcGarver|discuss]] • [[Special:Contributions/MarcGarver|contribs]]) 10:08, 9 March 2023 (UTC)
== Andrewdav ==
;Username
: {{user|Andrewdav}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Andrewdav}}|NAME=filter log}})
;Page you were editing
: [[page about Stephen William Grimsley]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:page about Stephen William Grimsley}}|NAME=filter log}})
;Description
: Adding factual data, including year of death
;Date and time
: 10:11, 9 March 2023 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
== Lachlan Peterson ==
;Username
: {{user|Lachlan Peterson}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Lachlan Peterson}}|NAME=filter log}})
;Page you were editing
: [[Transportation Deployment Casebook/2023/Vancouver SkyTrain]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:Transportation Deployment Casebook/2023/Vancouver SkyTrain}}|NAME=filter log}})
;Description
: I was trying to create a page for an assignment, it started by not letting me upload images then it assused me of creating "Cannibis/CBD Spam" when I was writing about the Vancouver Skytrain.
;Date and time
: 07:36, 11 March 2023 (UTC)
;Comments
* Wikibooks has several automated filters meant to prevent spam and vandals; sometimes these inadvertently catch non-spammers, especially very new users. I recommend making smaller edits at a time until you are eventually autoconfirmed. —[[User:Kittycataclysm|Kittycataclysm]] ([[User talk:Kittycataclysm|discuss]] • [[Special:Contributions/Kittycataclysm|contribs]]) 01:57, 13 March 2023 (UTC)
== Yunchenli ==
;Username
: {{user|Yunchenli}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Yunchenli}}|NAME=filter log}})
;Page you were editing
: [[]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:}}|NAME=filter log}})
;Description
:
;Date and time
: 01:49, 13 March 2023 (UTC)
;Comments
* Wikibooks has several automated filters meant to prevent spam and vandals; sometimes these inadvertently catch non-spammers, especially very new users. I recommend making smaller edits at a time until you are eventually autoconfirmed. —[[User:Kittycataclysm|Kittycataclysm]] ([[User talk:Kittycataclysm|discuss]] • [[Special:Contributions/Kittycataclysm|contribs]]) 01:56, 13 March 2023 (UTC)
* I took a look at all of [[User:Yunchenli|your]] edits, but most of them are more or less irrelevant to the page you were trying to create. --[[User:SHB2000|SHB2000]] ([[User talk:SHB2000|discuss]] • [[Special:Contributions/SHB2000|contribs]]) 06:44, 22 March 2023 (UTC)
== Robertbenjmin00 ==
;Username
: {{user|Robertbenjmin00}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Robertbenjmin00}}|NAME=filter log}})
;Page you were editing
: [[]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:}}|NAME=filter log}})
;Description
:
;Date and time
: 05:53, 27 March 2023 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
:{{not done}} – you tried to fill your talk page with irrelevant self-promotional spam, which was rightly detected by the edit filter. Further attempts to spam your talk page may result in a loss of editing privileges. --[[User:SHB2000|SHB2000]] ([[User talk:SHB2000|discuss]] • [[Special:Contributions/SHB2000|contribs]]) 06:31, 27 March 2023 (UTC)
== SomethingForDeletion ==
;Username
: {{user|SomethingForDeletion}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:SomethingForDeletion}}|NAME=filter log}})
;Page you were editing
: [[360_Assembly/360_Family]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:360_Assembly/360_Family}}|NAME=filter log}})
;Description
: Trying to add a link to wiki.qemu.org/Documentation/Platforms/S390X – this is information about how to use the QEMU open source package to emulate z/Architecture IBM mainframes, and hence is relevant to the topic of the book and its readers. The edit filter won't even let me put the URL on this page!
;Date and time
: 20:05, 21 February 2023 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
BTW, I realise someone is probably going to say "you can't because you are a new user please wait a few days". Can someone add the link for me? Also, wouldn't this edit filter be better if it took into account one's global contributions? A new user which has already made significant contributions on Wikipedia/etc is probably not a spammer. [[User:SomethingForDeletion|SomethingForDeletion]] ([[User talk:SomethingForDeletion|discuss]] • [[Special:Contributions/SomethingForDeletion|contribs]]) 23:28, 21 February 2023 (UTC)
:@[[User:Leaderboard|Leaderboard]] I'm not savvy enough to know this, but is there any way to take into account someone's global edits in the edit filter? My guess is no, but you would know better. —[[User:Kittycataclysm|Kittycataclysm]] ([[User talk:Kittycataclysm|discuss]] • [[Special:Contributions/Kittycataclysm|contribs]]) 14:35, 15 April 2023 (UTC)
::{{re|Kittycataclysm}} Unless the filter itself is global, no. It is however possible to take into account global user groups, but that won't apply for the vast majority of users (it's useful for groups such as [[meta:GR|global rollback]] who can then use their rights here without being hit by the filter). [[User:Leaderboard|Leaderboard]] ([[User talk:Leaderboard|discuss]] • [[Special:Contributions/Leaderboard|contribs]]) 17:03, 15 April 2023 (UTC)
== 110.224.130.225 ==
;Username
: {{user|110.224.130.225}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:110.224.130.225}}|NAME=filter log}})
;Page you were editing
: [[]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:}}|NAME=filter log}})
;Description
: Was adding one important guide about intellectual property
;Date and time
: 11:03, 14 April 2023 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
:{{not done}}. You tried to add a link to a blog. That is not a reliable or useful source. [[User:MarcGarver|MarcGarver]] ([[User talk:MarcGarver|discuss]] • [[Special:Contributions/MarcGarver|contribs]]) 21:09, 16 April 2023 (UTC)
== 58.169.215.204 ==
;Username
: {{user|58.169.215.204}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:58.169.215.204}}|NAME=filter log}})
;Page you were editing
: [[]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:}}|NAME=filter log}})
;Description
:
;Date and time
: 09:14, 21 April 2023 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
Adding external links as required by my assignment and computer said no
:For reference to other admins, this IP tried to paste the following under a "See also" section on [[Transportation Planning Casebook/Fast(er) Rail in NSW]]. I'll leave it to others as to whether these links are appropriate or not, as I'm a sysop primarily for anti-vandalism purposes.
* Hawker Britton - Australia’s High-Speed Rail Network (History of High Speed Rail in Australia) (www.hawkerbritton.com/blog/2022/10/17/australias-high-speed-rail-network/)
* A Profile of High Speed Railways - Internal Australian Government Brief (www.bitre.gov.au/sites/default/files/other_001_a_profile_of_high-speed_railways.pdf)
* The Story of (non-existent) High-Speed Rail in Australia - Railways Explained (www.youtube.com/watch?v=Rjvnpeqaj5s&ab_channel=RailwaysExplained)
:--[[User:SHB2000|SHB2000]] ([[User talk:SHB2000|discuss]] • [[Special:Contributions/SHB2000|contribs]]) 10:21, 21 April 2023 (UTC)
:Thanks @[[User:SHB2000|SHB2000]]! For the IP, what is the purpose of including these external links as is? If it is for the purpose of references/citations, I'd recommend using the dedicated reference tool for that. I'm curious what the actual requirement in the assignment is. —[[User:Kittycataclysm|Kittycataclysm]] ([[User talk:Kittycataclysm|discuss]] • [[Special:Contributions/Kittycataclysm|contribs]]) 12:02, 21 April 2023 (UTC)
::Me too – and if these do have to be linked, is the YouTube link really necessary? (as someone who follows NSW HSR off-wiki, I also question if it's the one of the best off-wiki links) --[[User:SHB2000|SHB2000]] ([[User talk:SHB2000|discuss]] • [[Special:Contributions/SHB2000|contribs]]) 12:05, 21 April 2023 (UTC)
== Беспечная крыса ==
;Username
: {{user|Беспечная крыса}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Беспечная крыса}}|NAME=filter log}})
;Page you were editing
: [[Ada_Style_Guide/Programming_Practices]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:Ada_Style_Guide/Programming_Practices}}|NAME=filter log}})
;Description
: A big part of section 5 is missing. I'm appending the lost part. The part contains external links to Ada Reference Manual as adahome site.
;Date and time
: 11:05, 21 April 2023 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
== 78.3.89.31 ==
;Username
: {{user|78.3.89.31}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:78.3.89.31}}|NAME=filter log}})
;Page you were editing
: [[False Friends of the Slavist/Croatian-Bosnian]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:False Friends of the Slavist/Croatian-Bosnian}}|NAME=filter log}})
;Description
: I'm trying to remove "sedmica" as Croatian translation of week, this word is never used for "week" in Croatian, only "tjedan". This is a false friend between Croatian and Serbian (and maybe Bosnian, no idea if Bosnian uses sedmica for week.
;Date and time
: 21:12, 13 May 2023 (UTC)
;Comments
See my response below —[[User:Kittycataclysm|Kittycataclysm]] ([[User talk:Kittycataclysm|discuss]] • [[Special:Contributions/Kittycataclysm|contribs]]) 13:27, 14 May 2023 (UTC)
== 78.3.89.31 ==
;Username
: {{user|78.3.89.31}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:78.3.89.31}}|NAME=filter log}})
;Page you were editing
: [[False Friends of the Slavist/Polish-Croatian]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:False Friends of the Slavist/Polish-Croatian}}|NAME=filter log}})
;Description
: Trying to fix the "droga" false friend, current translation for Croatian is wrong. This should be placed instead:
{{{{BOOKTEMPLATE}}/FalseFriends|ff77
|Pol. '''''droga'''''
|1. ''cesta'' ‘road’<br>2. ''put'' ‘way (of doing things)’
|Cr. '''''droga'''''
|Pol. ''używka'' ‘illegal drug, narcotic’
|doba}}
;Date and time
: 21:30, 13 May 2023 (UTC)
;Comments
See my response below —[[User:Kittycataclysm|Kittycataclysm]] ([[User talk:Kittycataclysm|discuss]] • [[Special:Contributions/Kittycataclysm|contribs]]) 13:27, 14 May 2023 (UTC)
== 78.3.89.31 ==
;Username
: {{user|78.3.89.31}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:78.3.89.31}}|NAME=filter log}})
;Page you were editing
: [[Wikibooks:Edit filter/False positives]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:Wikibooks:Edit filter/False positives}}|NAME=filter log}})
;Description
: Can't report error while trying to add the meaning of "arch" for luk/łuk in Polish-Croatian false friends
;Date and time
: 21:41, 13 May 2023 (UTC)
;Comments
Well I'm done trying. If you fix this filter bump this thread.
:Hello! My best guess about what happened is that you unwittingly tripped a global anti-vandalism filter since one of your edits contained profanity, and then repeated editing attempts tripped wikibooks-specific repeated vandalism filters. I'm not an expert on the edit filters, so someone with more experience may correct me. If you'd like to do more significant editing without the risk of tripping filters designed for IP vandals, you may wish to create an account. Cheers! —[[User:Kittycataclysm|Kittycataclysm]] ([[User talk:Kittycataclysm|discuss]] • [[Special:Contributions/Kittycataclysm|contribs]]) 13:26, 14 May 2023 (UTC)
== The Yennefer ==
;Username
: {{user|The Yennefer}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:The Yennefer}}|NAME=filter log}})
;Page you were editing
: [[Wikibooks:Reading room/General]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:Wikibooks:Reading room/General}}|NAME=filter log}})
;Description
: Trying to add link needed for deciding if the linked book can be added to wikibooks.
;Date and time
: 16:34, 14 May 2023 (UTC)
;Comments
:Hello! It looks like the filter caught you since there are restrictions on new users posting links in order to prevent vandalism. I will note that when I investigated the link you were trying to post, it was broken and didn't link to anything. —[[User:Kittycataclysm|Kittycataclysm]] ([[User talk:Kittycataclysm|discuss]] • [[Special:Contributions/Kittycataclysm|contribs]]) 17:27, 14 May 2023 (UTC)
== Richard Vinke ==
;Username
: {{user|Richard Vinke}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Richard Vinke}}|NAME=filter log}})
;Page you were editing
: [[<link to translate manual>]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:<link to translate manual>}}|NAME=filter log}})
;Description
: I try to add the following line, with external link to the end of the section "translate".
To align an element to another element, the function align() can be used. See <external link>.
;Date and time
: 13:46, 7 June 2023 (UTC)
;Comments
Hello! It looks like you were trying to add a raw link to that page. To prevent link spamming, very new users are not permitted to do so; additionally, in that context, you may wish to use a citation instead. Cheers —[[User:Kittycataclysm|Kittycataclysm]] ([[User talk:Kittycataclysm|discuss]] • [[Special:Contributions/Kittycataclysm|contribs]]) 17:41, 7 June 2023 (UTC)
== Gieyan81 ==
;Username
: {{user|Gieyan81}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Gieyan81}}|NAME=filter log}})
;Page you were editing
: [[]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:}}|NAME=filter log}})
;Description
:
;Date and time
: 21:53, 15 June 2023 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
:this happens as you are a new editor trying to insert URLs (hyperlinks). Save the edit with no URLs initially. You can come back and add them, one or two at a time, and after a few days the system will recognise that you are not trying to spam. By the way, one of the links you tried to insert was to Wikipedia. There is a way of doing this without a URL: enter '''<nowiki>[[w:the wikipedia page name|a description]]</nowiki>''' [[User:MarcGarver|MarcGarver]] ([[User talk:MarcGarver|discuss]] • [[Special:Contributions/MarcGarver|contribs]]) 07:53, 16 June 2023 (UTC).
== EP426 ==
;Username
: {{user|EP426}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:EP426}}|NAME=filter log}})
;Page you were editing
: [[https://en.wikibooks.org/w/index.php?title=Themes_in_Literature%2FIsolation_and_Community%2FThe_Deluded_Self&veswitched=1&oldid=0&veaction=edit]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:https://en.wikibooks.org/w/index.php?title=Themes_in_Literature%2FIsolation_and_Community%2FThe_Deluded_Self&veswitched=1&oldid=0&veaction=edit}}|NAME=filter log}})
;Description
: Copy pasting sandbox wikibook into a blank and new wikibook provided by the professor, yet the system won't let me as it considers it a large edit. IP Large Edits
;Date and time
: 09:18, 17 June 2023 (UTC)
;Comments
Hello! My guess is that this is happening because you're a new user trying to make a large edit. I recommend breaking it up into multiple smaller edits to resolve the issue. Cheers! —[[User:Kittycataclysm|Kittycataclysm]] ([[User talk:Kittycataclysm|discuss]] • [[Special:Contributions/Kittycataclysm|contribs]]) 14:45, 17 June 2023 (UTC)
== 2A00:7660:271C:0:98A9:804F:A460:BD66 ==
;Username
: {{user|2A00:7660:271C:0:98A9:804F:A460:BD66}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:2A00:7660:271C:0:98A9:804F:A460:BD66}}|NAME=filter log}})
;Page you were editing
: [[]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:}}|NAME=filter log}})
;Description
:
;Date and time
: 11:51, 29 June 2023 (UTC)
;Comments
I am filling in my chapter for a wiki book and I am unable to publish changes due to an editing filter
:Hello—contributors who are not logged in are restricted in the size of their edits. I recommend making multiple smaller edits. Cheers! —[[User:Kittycataclysm|Kittycataclysm]] ([[User talk:Kittycataclysm|discuss]] • [[Special:Contributions/Kittycataclysm|contribs]]) 18:04, 29 June 2023 (UTC)
== 2A01:7C8:AAB2:30E:5054:FF:FE9A:5545 ==
;Username
: {{user|%7B%7Bsubst%3AREVISIONUSER%7D%7D%7Ctimestamp%3D%7B%7Bsubst%3ACURRENTTIMESTAMP%7D%7D}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:%7B%7Bsubst%3AREVISIONUSER%7D%7D%7Ctimestamp%3D%7B%7Bsubst%3ACURRENTTIMESTAMP%7D%7D}}|NAME=filter log}})
;Page you were editing
: [[]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:}}|NAME=filter log}})
;Description
:
;Date and time
: 07:29, 4 August 2023 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
I thinking ever link need alternative some of countries pastebin.com didn't work.}}
== Amirx324 ==
;Username
: {{user|Amirx324}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Amirx324}}|NAME=filter log}})
;Page you were editing
: [[]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:}}|NAME=filter log}})
;Description
:
;Date and time
: 14:57, 14 August 2023 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
:Thanks for drawing our attention to your spamming; you are now blocked. [[User:MarcGarver|MarcGarver]] ([[User talk:MarcGarver|discuss]] • [[Special:Contributions/MarcGarver|contribs]]) 15:29, 14 August 2023 (UTC)
== Teuxe ==
;Username
: {{user|Teuxe}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Teuxe}}|NAME=filter log}})
;Page you were editing
: [[X86_Disassembly/Analysis_Tools]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:X86_Disassembly/Analysis_Tools}}|NAME=filter log}})
;Description
: I wanted to add a reference to ImHex which is a must-know free and open-source hex editor with lots of tools.
;Date and time
: 13:54, 3 August 2023 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
:{{ping|Teuxe}} try writing the reference without the link (just remove the "https://" bit), then you or another user can add it back in sometime later. You will need to be autoconfirmed to add links to most pages. {{User:L10nM4st3r/sig.css}} 18:23, 3 August 2023 (UTC)
:Done (but too quick, I wasn't logged in...). Thanks. [[User:Teuxe|Teuxe]] ([[User talk:Teuxe|discuss]] • [[Special:Contributions/Teuxe|contribs]]) 15:50, 18 August 2023 (UTC)
== Aletheajohnn ==
;Username
: {{user|Aletheajohnn}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Aletheajohnn}}|NAME=filter log}})
;Page you were editing
: [[]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:}}|NAME=filter log}})
;Description
:
;Date and time
: 05:34, 30 August 2023 (UTC)
;Comments
Promotion like this is prohibited on Wikibooks. —[[User:Kittycataclysm|Kittycataclysm]] ([[User talk:Kittycataclysm|discuss]] • [[Special:Contributions/Kittycataclysm|contribs]]) 18:31, 30 August 2023 (UTC)
== Tanbiruzzaman ==
;Username
: {{user|Tanbiruzzaman}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Tanbiruzzaman}}|NAME=filter log}})
;Page you were editing
: [[Wikibooks:Requests for deletion/Bob Baker Vs Rocky Marciano 2.3.56]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:Wikibooks:Requests for deletion/Bob Baker Vs Rocky Marciano 2.3.56}}|NAME=filter log}})
;Description
: I was just reverting vandalism on the page, but triggered by the Filter description: Abuse 23
;Date and time
: 13:39, 3 September 2023 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
== to upper case method for c# ==
;Username
: {{user|212.219.48.125}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:212.219.48.125}}|NAME=filter log}})
;Page you were editing
: [[A-level_Computing/AQA/Paper_1/Skeleton_program/202
4]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:A-level_Computing/AQA/Paper_1/Skeleton_program/202
4}}|NAME=filter log}})
;Description
: Trying to put a method to convert to upper case for c#
;Date and time
: 13:41, 15 September 2023 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
== Tony Rose Orge-Monzales ==
;Username
: {{user|Tony Rose Orge-Monzales}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Tony Rose Orge-Monzales}}|NAME=filter log}})
;Page you were editing
: [[= '''Educational Developments in the Philippines''' =]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:= '''Educational Developments in the Philippines''' =}}|NAME=filter log}})
;Description
: Published my work with no external links
;Date and time
: 09:46, 17 September 2023 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
== 87.58.32.132 ==
;Username
: {{user|87.58.32.132}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:87.58.32.132}}|NAME=filter log}})
;Page you were editing
: [[Wikijunior:Kings and Queens of England/Future monarchs]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:Wikijunior:Kings and Queens of England/Future monarchs}}|NAME=filter log}})
;Description
: A few months after Elizabeth II died, I copied and repurposed some material about Charles III from this article into the article [[Wikijunior:Kings and Queens of England/The House of Windsor]]. When I tried deleting the now redundant Charles biography on "Future monarchs", it kept warning me that I was deleting large amounts of material. I wrote a message on the [[Wikijunior talk:Kings and Queens of England/Future monarchs|"Future monarchs" talk page]] asking someone else to delete the Charles bio, but no one has done so. I probably should have come here and asked for help back then, and I apologize for not doing that. I would appreciate if someone who is authorized to do so deleted the Charles bio at "Future monarchs". Thank you.
;Date and time
: 06:56, 20 September 2023 (UTC)
;Comments
{{done}} Thanks for the heads-up! —[[User:Kittycataclysm|Kittycataclysm]] ([[User talk:Kittycataclysm|discuss]] • [[Special:Contributions/Kittycataclysm|contribs]]) 12:32, 20 September 2023 (UTC)
== Fabrickator ==
;Username
: {{user|Fabrickator}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Fabrickator}}|NAME=filter log}})
;Page you were editing
: [[[[Professionalism/Boston's Big Dig Project]]]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:[[Professionalism/Boston's Big Dig Project]]}}|NAME=filter log}})
;Description
: rescue broken "boston.com" link with Wayback link
;Date and time
: 16:43, 29 September 2023 (UTC)
;Comments
Heads-up: I went to look at the wayback link in order to add it in manually for you, but it was broken. —[[User:Kittycataclysm|Kittycataclysm]] ([[User talk:Kittycataclysm|discuss]] • [[Special:Contributions/Kittycataclysm|contribs]]) 14:14, 30 September 2023 (UTC)
== Adolfo Martin Fuentes ==
;Username
: {{user|Adolfo Martin Fuentes}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Adolfo Martin Fuentes}}|NAME=filter log}})
;Page you were editing
: [[BASIC Programming]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:BASIC Programming}}|NAME=filter log}})
;Description
: I was adding two links to normative documents
;Date and time
: 15:23, 7 October 2023 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
== Adolfo Martin Fuentes ==
;Username
: {{user|Adolfo Martin Fuentes}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Adolfo Martin Fuentes}}|NAME=filter log}})
;Page you were editing
: [[BASIC_Programming/Introduction]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:BASIC_Programming/Introduction}}|NAME=filter log}})
;Description
: I was creating a new page as a framework for subsequent editing
;Date and time
: 18:59, 7 October 2023 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
== Mikedavid.1525 ==
;Username
: {{user|Mikedavid.1525}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Mikedavid.1525}}|NAME=filter log}})
;Page you were editing
: [[]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:}}|NAME=filter log}})
;Description
: I've made a slight modification to the text to enhance clarity and flow:
here my updated text
online Python editor and compiler that allows you to run your Python code without the need for any installation. With this convenient web-based tool, you can write, test, and execute Python code instantly.
;Date and time
: 09:18, 8 October 2023 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
== 92.17.242.176 ==
;Username
: {{user|92.17.242.176}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:92.17.242.176}}|NAME=filter log}})
;Page you were editing
: [[Ohio_7th_Grade_World_History/Spread_and_Impact_of_the_Black_Death]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:Ohio_7th_Grade_World_History/Spread_and_Impact_of_the_Black_Death}}|NAME=filter log}})
;Description
: orthographic and grammatical corrections. Also, plague is caused by a bacterium, not by a virus as wrongly stated in one of the sections of this article
;Date and time
: 07:21, 18 October 2023 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
:What were you doing when you made the edit? <sup>— [[User:L10nM4st3r|<span style="color:#c71300">L10nM4st3r</span>]]</sup> / <sub>[[User talk:L10nM4st3r|<span style="color:#ce3f00">'''ROAR''' at me!</span>]]</sub> 08:00, 18 October 2023 (UTC)
::This was a good edit that fell foul of an edit filter because your account (or IP address in this case) is new. It was triggered by including the word "suck" which is a common word for vandals to insert. I have made the edit for you. [[User:MarcGarver|MarcGarver]] ([[User talk:MarcGarver|discuss]] • [[Special:Contributions/MarcGarver|contribs]]) 10:16, 18 October 2023 (UTC)
== Kdmz ==
;Username
: {{user|Kdmz}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Kdmz}}|NAME=filter log}})
;Page you were editing
: [[Arabic/Online_resources]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:Arabic/Online_resources}}|NAME=filter log}})
;Description
: Tried to add a new Arabic resource which presents an Arabic keyboard with a unique automatic diacritization feature and comprehensive Arabic grammar lessons from beginner to advanced levels but the edit triggered an automated throttle.
;Date and time
: 18:45, 15 October 2023 (UTC)
;Comments
:{{ping|Kdmz}} Post a link that isnt the actual link, so like this: '''example.com/example''' instead of '''https://example.com/example'''. Then another user who can post external links will/should come along and make it a link. <sup>— [[User:L10nM4st3r|<span style="color:#c71300">L10nM4st3r</span>]]</sup> / <sub>[[User talk:L10nM4st3r|<span style="color:#ce3f00">'''ROAR''' at me!</span>]]</sub> 08:08, 17 October 2023 (UTC)
::{{ping|Kdmz}} My original ping didnt work, now the issue has been fixed <sup>— [[User:L10nM4st3r|<span style="color:#c71300">L10nM4st3r</span>]]</sup> / <sub>[[User talk:L10nM4st3r|<span style="color:#ce3f00">'''ROAR''' at me!</span>]]</sub> 08:34, 17 October 2023 (UTC)
:::Ok done [[User:Kdmz|Kdmz]] ([[User talk:Kdmz|discuss]] • [[Special:Contributions/Kdmz|contribs]]) 19:14, 6 November 2023 (UTC)
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
== Daeraxa ==
;Username
: {{user|Daeraxa}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Daeraxa}}|NAME=filter log}})
;Page you were editing
: [[OpenSCAD_User_Manual/Using_an_external_Editor_with_OpenSCAD]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:OpenSCAD_User_Manual/Using_an_external_Editor_with_OpenSCAD}}|NAME=filter log}})
;Description
: Attempting to add links to the "Support of external editors" section in order to add the link to both the Pulsar editor homepage and the relevant package - particularly relevant as Pulsar is the only actively maintained and developed fork of Atom and has nearly all of Atom's original packages. No commercial link spamming here as Pulsar is completely FOSS and has no monetisation other than a few donation links on the webpage in order to try and offset hosting costs. (Unrelated but this page keeps prompting to hit a "Save page" button which does not appear to exist? This is in the instructions banner as well as in the acceptance for ToS and Privacy Policy).
;Date and time
: 18:33, 12 September 2023 (UTC)
;Comments
Sorry this got missed! I made the edit for you since there are restrictions on new/inexperienced users adding external links due to spam. Cheers —[[User:Kittycataclysm|Kittycataclysm]] ([[User talk:Kittycataclysm|discuss]] • [[Special:Contributions/Kittycataclysm|contribs]]) 02:35, 21 November 2023 (UTC)
:Thanks for sorting that, part of the URL got missed (probably by me initially) so I've added it in and it seems to have let me do it. [[User:Daeraxa|Daeraxa]] ([[User talk:Daeraxa|discuss]] • [[Special:Contributions/Daeraxa|contribs]]) 03:06, 21 November 2023 (UTC)
== 204.116.105.26 ==
;Username
: {{user|204.116.105.26}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:204.116.105.26}}|NAME=filter log}})
;Page you were editing
: [[Ancient History/Greece/Mycenaean Civilization]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:Ancient History/Greece/Mycenaean Civilization}}|NAME=filter log}})
;Description
: My friend tried to make a joke and put "I AM A DINOSAUR" on my other friend's computer and I was trying to change it back to "The Iliad"
;Date and time
: 20:13, 4 December 2023 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
== O andras ==
;Username
: {{user|O andras}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:O andras}}|NAME=filter log}})
;Page you were editing
: [[The_World_of_Peer-to-Peer_(P2P)/What_is_Peer-to-Peer_(P2P)/Legal_Perspective]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:The_World_of_Peer-to-Peer_(P2P)/What_is_Peer-to-Peer_(P2P)/Legal_Perspective}}|NAME=filter log}})
;Description
: An external URL now results in HTTP 404, so I was replacing it with an archive.org version instead.
;Date and time
: 18:52, 6 December 2023 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
== Joris Darlington Quarshie ==
;Username
: {{user|Joris Darlington Quarshie}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Joris Darlington Quarshie}}|NAME=filter log}})
;Page you were editing
: [[Creating User:Joris Darlington Quarshie/Userscript/Chapter Progress Tracker]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:Creating User:Joris Darlington Quarshie/Userscript/Chapter Progress Tracker}}|NAME=filter log}})
;Description
: I was creating a page for a userscript i just created for wikibooks.
;Date and time
: 11:42, 13 December 2023 (UTC)
;Comments
@[[User:Joris Darlington Quarshie]] It looks like you were flagged due to the presence of links in your edit, since new users have restrictions on adding links to pages. Would you like me to add the content for you? —[[User:Kittycataclysm|Kittycataclysm]] ([[User talk:Kittycataclysm|discuss]] • [[Special:Contributions/Kittycataclysm|contribs]]) 16:55, 16 December 2023 (UTC)
== RandomEditin ==
;Username
: {{user|RandomEditin}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:RandomEditin}}|NAME=filter log}})
;Page you were editing
: [[en.wikibooks.org/w/index.php?title=OpenSCAD_User_Manual/DXF_Extrusion]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:/OpenSCAD_User_Manual/Using_the_2D_Subsystem}}|NAME=filter log}})
;Description
: I was trying to fix link rot by replacing the link with a archived version.
;Date and time
: 04:43, 20 December 2023 (UTC)
;Comments
I've fixed it for you. Cheers! —[[User:Kittycataclysm|Kittycataclysm]] ([[User talk:Kittycataclysm|discuss]] • [[Special:Contributions/Kittycataclysm|contribs]]) 14:29, 20 December 2023 (UTC)
== Helrasincke ==
;Username
: {{user|Helrasincke}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Helrasincke}}|NAME=filter log}})
;Page you were editing
: [[LaTeX/Special_Characters#External_links]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:LaTeX/Special_Characters#External_links}}|NAME=filter log}})
;Description
: Triggered throttle whilst attempting to replace dead URLs with archived versions. Please rectify. Cheers
;Date and time
: 11:19, 26 December 2023 (UTC)
;Comments
{{done}} cheers —[[User:Kittycataclysm|Kittycataclysm]] ([[User talk:Kittycataclysm|discuss]] • [[Special:Contributions/Kittycataclysm|contribs]]) 19:07, 26 December 2023 (UTC)
== 213.175.171.242 ==
;Username
: {{user|213.175.171.242}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:213.175.171.242}}|NAME=filter log}})
;Page you were editing
: [[Chess_Opening_Theory/1._e4/1...d5/2._exd5/2...Qxd5/3._Ke2/3...Qe4]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:Chess_Opening_Theory/1._e4/1...d5/2._exd5/2...Qxd5/3._Ke2/3...Qe4}}|NAME=filter log}})
;Description
: I was trying to add some content about the last move, but I got blocked by 'repeated vandalism attempts'. But, I was trying to add content to it!
;Date and time
: 16:10, 27 December 2023 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
== 139.130.241.224 ==
;Username
: {{user|139.130.241.224}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:139.130.241.224}}|NAME=filter log}})
;Page you were editing
: [[Wikibooks:Sandbox]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:Wikibooks:Sandbox}}|NAME=filter log}})
;Description
: I was trying to experiment with the sandbox, but a filter said that my edit will not be published as it is considers it as vandalism.
;Date and time
: 08:19, 3 January 2024 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
== SociableFish ==
;Username
: {{user|SociableFish}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:SociableFish}}|NAME=filter log}})
;Page you were editing
: [[More C++ Idioms/Curiously Recurring Template Pattern]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:More C++ Idioms/Curiously Recurring Template Pattern}}|NAME=filter log}})
;Description
: I was trying to edit the CRTP page to add a simpler way you can do it in C++23 using explicit this parameter. Because people might not know what those 3 words mean, I wanted to make the 3 words link to the cppreference page about it. cppreference is the C++ reference wiki that most people use.
;Date and time
: 19:24, 27 December 2023 (UTC)
;Comments
Hi {{ping|SociableFish}} New users are restricted in their ability to add links in order to prevent spam. I'd recommend adding everything but the link, and then someone else can help you. Cheers —[[User:Kittycataclysm|Kittycataclysm]] ([[User talk:Kittycataclysm|discuss]] • [[Special:Contributions/Kittycataclysm|contribs]]) 17:08, 6 January 2024 (UTC)
== 49.187.16.86 ==
;Username
: {{user|49.187.16.86}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:49.187.16.86}}|NAME=filter log}})
;Page you were editing
: [[Wikibooks:Sandbox]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:Wikibooks:Sandbox}}|NAME=filter log}})
;Description
: I wanted to edit the Sandbox, isn't it a page for experimenting? Because it said that I am making unconstructive edits. Can you please fix this?
;Date and time
: 03:05, 10 January 2024 (UTC)
;Comments
<span class="template-ping">@[[:User:Leaderboard|Leaderboard]]:</span> do you know why this pinged a filter? It does seem like a reasonable use of the sandbox. —[[User:Kittycataclysm|Kittycataclysm]] ([[User talk:Kittycataclysm|discuss]] • [[Special:Contributions/Kittycataclysm|contribs]]) 19:22, 10 January 2024 (UTC)
:{{re|Kittycataclysm}}, the IP hit filter 18 - that's a simple rate filter. Seemed like the user was trying to make (to the filter) quick edits; we should improve this. [[User:Leaderboard|Leaderboard]] ([[User talk:Leaderboard|discuss]] • [[Special:Contributions/Leaderboard|contribs]]) 17:40, 12 January 2024 (UTC)
::Got it, thanks! Unfortunately, I'm not sure how to go about making this kind of change. —[[User:Kittycataclysm|Kittycataclysm]] ([[User talk:Kittycataclysm|discuss]] • [[Special:Contributions/Kittycataclysm|contribs]]) 00:23, 15 January 2024 (UTC)
== Spindown ==
;Username
: {{user|Spindown}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Spindown}}|NAME=filter log}})
;Page you were editing
: [[[[How to Solve the Rubik's Cube]]]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:[[How to Solve the Rubik's Cube]]}}|NAME=filter log}})
;Description
: I was fleshing out part of the beginner methods section, since it had some material that was still in raw point form, and the instructions were incomplete. The link I provided, which triggered the spam filter, is a tutorial with diagrams that do a better job of explaining these steps. I would have added it as a citation, but I used a link to follow the style of the rest of the section.
;Date and time
: 18:25, 12 January 2024 (UTC)
;Comments
Hi {{ping|Spindown}}! I'd recommend using citations over simply inserting links. I believe it is more appropriate for the book format and the way the link is being used. Cheers —[[User:Kittycataclysm|Kittycataclysm]] ([[User talk:Kittycataclysm|discuss]] • [[Special:Contributions/Kittycataclysm|contribs]]) 00:28, 15 January 2024 (UTC)
:I agree that citations would be better, however that clashes with the format of the existing text. [[User:Spindown|Spindown]] ([[User talk:Spindown|discuss]] • [[Special:Contributions/Spindown|contribs]]) 21:35, 5 April 2024 (UTC)
== 110.54.146.208 ==
--[[Special:Contributions/110.54.146.208|110.54.146.208]] ([[User talk:110.54.146.208|discuss]])media<math><math></math>~
;Username
: {{user|110.54.146.208}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:110.54.146.208}}|NAME=filter log}})
;Page you were editing
: [[]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:}}|NAME=filter log}})
;Description
:
;Date and time
: 07:13, 16 January 2024 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
== Zoetanya ==
;Username
: {{user|Zoetanya}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Zoetanya}}|NAME=filter log}})
;Page you were editing
: [[Creating About the DAReS project]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:Creating About the DAReS project}}|NAME=filter log}})
;Description
: insert an external link to the project to provide more information on it for incoming Hackathon participants
;Date and time
: 05:02, 26 January 2024 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
== Fabrickator ==
;Username
: {{user|Fabrickator}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Fabrickator}}|NAME=filter log}})
;Page you were editing
: [[]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:}}|NAME=filter log}})
;Description
: Replace link for "European Dream of Progress and Enlightenment" with wayback link
: Sadly, it wouldn't allow including the url I was adding so had to delete it ... now I try to add it
: : web.archive.org/web/20080410041858/http://history-world.org/age_of_enlightenment.htm
;Date and time
: 03:16, 9 February 2024 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
== 96.230.237.221 ==
;Username
: {{user|96.230.237.221}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:96.230.237.221}}|NAME=filter log}})
;Page you were editing
: [[]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:}}|NAME=filter log}})
;Description
: I was adding clarification about a calculator program that caused my class and I confusion. I was editing the "Editing TI-Basic 84 Programming/ A Basic Program for clarity in using quotation marks/ string markers to enclose the message and make the program function.
;Date and time
: 01:24, 28 February 2024 (UTC)
;Comments
I added the clarification for you. Cheers! —[[User:Kittycataclysm|Kittycataclysm]] ([[User talk:Kittycataclysm|discuss]] • [[Special:Contributions/Kittycataclysm|contribs]]) 02:14, 28 February 2024 (UTC)
== TomKeane03 ==
;Username
: {{user|TomKeane03}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:TomKeane03}}|NAME=filter log}})
;Page you were editing
: [[]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:}}|NAME=filter log}})
;Description
: Uploading my univeristy assignment as required. will not let me save. all my own work with appropriate in text referencing and bibliography.
;Date and time
: 09:59, 4 March 2024 (UTC)
;Comments
I believe this occurred because you are a new editor trying to make a large edit. Try making smaller edits. Cheers —[[User:Kittycataclysm|Kittycataclysm]] ([[User talk:Kittycataclysm|discuss]] • [[Special:Contributions/Kittycataclysm|contribs]]) 18:44, 4 March 2024 (UTC)
== 223.24.187.153 ==
[[Special:Contributions/223.24.187.153|223.24.187.153]] ([[User talk:223.24.187.153|discuss]]) 16:22, 16 March 2024 (UTC)
;Username
: {{user|223.24.187.153}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:223.24.187.153}}|NAME=filter log}})
;Page you were editing
: [[]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:}}|NAME=filter log}})
;Description
:
;Date and time
: 16:22, 16 March 2024 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
== 172.59.218.11 ==
;Username
: {{user|172.59.218.11}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:172.59.218.11}}|NAME=filter log}})
;Page you were editing
: [[]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:}}|NAME=filter log}})
;Description
: change lbs-ft to ft-lbs for every torque setting listed.
;Date and time
: 12:30, 18 March 2024 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
== Dmlsjournal ==
;Username
: {{user|Dmlsjournal}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Dmlsjournal}}|NAME=filter log}})
;Page you were editing
: [[]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:}}|NAME=filter log}})
;Description
:
;Date and time
: 01:56, 1 April 2024 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
== Raidarr ==
;Username
: {{user|Raidarr}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Raidarr}}|NAME=filter log}})
;Page you were editing
: [[User_talk:Kittycataclysm]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:User_talk:Kittycataclysm}}|NAME=filter log}})
;Description
: Attempted notification that KC's impersonator on miraheze is locked and recommending a usurption request if there is an interest in claiming that name on miraheze in the future.
;Date and time
: 14:39, 11 April 2024 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
== Rodejong ==
;Username
: {{user|Rodejong}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Rodejong}}|NAME=filter log}})
;Page you were editing
: [[User_talk:Kittycataclysm]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:User_talk:Kittycataclysm}}|NAME=filter log}})
;Description
: I was trying to notify Kittycataclysm, that the impersonator at Miraheze now has been globally locked, but what ever message I try to send, the message is blocked by Operator873's Filter. - The message is:
→I am a MH Volunteer. FYI, this user requested a new wiki, Global permissions and Stewardship within a day. And He/She referred to this account. So by coincident [[User:Xeverything11|Xeverything11]] confirmed my suspicion.
Said user account is now disabled. I hope this takes away the awkward feeling it must give to have an imposter using your on-wiki presence.
Kind regards<nowiki>, ~~~~</nowiki>←
Not even "This user has been globally locked at MH." can be posted in that topic.
Don't know what goes on, but this is weird.
;Date and time
: 14:17, 11 April 2024 (UTC)
;Comments
{{ping|Leaderboard}} Do you know why this user and the user below encountered this issue with my talk page? The filter it tripped doesn't seem to be local. Thanks! —[[User:Kittycataclysm|Kittycataclysm]] ([[User talk:Kittycataclysm|discuss]] • [[Special:Contributions/Kittycataclysm|contribs]]) 18:33, 11 April 2024 (UTC)
:{{re|Kittycataclysm}}, it's a global filter maintained by {{re|Operator873}} - you probably can't see it because it's a hidden global filter. To Operator873: the filter message says that you intended to disable it, but you enabled it later. Can you adjust the filter to make use of global edit counts at least? Also, Kittycataclysm, you may want to apply for [[meta:AFH|abuse filter helper]] as that will allow you to view these global filters if this helps you in diagnosing these issues better (but it's optional). [[User:Leaderboard|Leaderboard]] ([[User talk:Leaderboard|discuss]] • [[Special:Contributions/Leaderboard|contribs]]) 18:53, 11 April 2024 (UTC)
::{{re|Rodejong|Raidarr}} - pinging you with the explanation above. [[User:Leaderboard|Leaderboard]] ([[User talk:Leaderboard|discuss]] • [[Special:Contributions/Leaderboard|contribs]]) 18:53, 11 April 2024 (UTC)
:::Thank you very much. At least @[[User:Kittycataclysm|Kittycataclysm]] was notified. And a problem discovered that can be dealt with. All in all "2 flies in one smack" [[User:Rodejong|Rodejong]] ([[User talk:Rodejong|discuss]] • [[Special:Contributions/Rodejong|contribs]]) 08:19, 12 April 2024 (UTC)
::@[[User:Leaderboard|Leaderboard]] I cannot. I'm no longer a steward, nor meta sysop. I'd suggest requesting that filter be disabled on [[meta:Steward_requests/Miscellaneous|Meta:SRM]] for assistance. [[User:Operator873|Operator873]] ([[User talk:Operator873|discuss]] • [[Special:Contributions/Operator873|contribs]]) 04:05, 12 April 2024 (UTC)
== 114.77.81.207 ==
;Username
: {{user|114.77.81.207}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:114.77.81.207}}|NAME=filter log}})
;Page you were editing
: [[Transportation Planning Casebook/Cross River Rail]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:Transportation Planning Casebook/Cross River Rail}}|NAME=filter log}})
;Description
: Trying to edit my university assignment, the error is claiming I am adding a link, although I have not added any link in the main body, only using the cite/reference tool. If I attempt to submit with the reference removed, it claims I am adding unconstructive information.
;Date and time
: 07:42, 26 April 2024 (UTC)
;Comments
I'm not sure why this is getting flagged by the filter. {{ping|Leaderboard}} do you know what's going on here? My only recommendation would be to make an account. —[[User:Kittycataclysm|Kittycataclysm]] ([[User talk:Kittycataclysm|discuss]] • [[Special:Contributions/Kittycataclysm|contribs]]) 12:32, 26 April 2024 (UTC)
:{{re|Kittycataclysm}} The links are the issue. I recommend the user to create an account, and reference properly (i.e, don't just put a bunch of links at the end). [[User:Leaderboard|Leaderboard]] ([[User talk:Leaderboard|discuss]] • [[Special:Contributions/Leaderboard|contribs]]) 13:11, 26 April 2024 (UTC)
== 108.35.187.110 ==
;Username
: {{user|108.35.187.110}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:108.35.187.110}}|NAME=filter log}})
;Page you were editing
: [[Writing Adolescent Fiction/Character names/Arab]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:Writing Adolescent Fiction/Character names/Arab}}|NAME=filter log}})
;Description
: Since this page had a lot of content removed (the boy’s name and most of the girl’s name section), I was trying to bring it back, but for some reason, it kept giving me an error. Can you bring the removed content back?
;Date and time
: 14:44, 25 May 2024 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
== Bkil ==
;Username
: {{user|Bkil}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Bkil}}|NAME=filter log}})
;Page you were editing
: [[JavaScript/Bookmarklets]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:JavaScript/Bookmarklets}}|NAME=filter log}})
;Description
: Replace a broken link with a web.archive.org version
;Date and time
: 23:54, 6 June 2024 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
== Gberkolaiko ==
;Username
: {{user|Gberkolaiko}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Gberkolaiko}}|NAME=filter log}})
;Page you were editing
: [[Quantum Graphs]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:Quantum Graphs}}|NAME=filter log}})
;Description
: Adding a reference to a published article.
;Date and time
: 20:39, 19 April 2024 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
{{done}} Already done by the user. [[User:EggRoll97|EggRoll97]] ([[User talk:EggRoll97|discuss]] • [[Special:Contributions/EggRoll97|contribs]]) 15:15, 1 July 2024 (UTC)
== Hordes222 ==
;Username
: {{user|Hordes222}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Hordes222}}|NAME=filter log}})
;Page you were editing
: [[User_talk:SHB2000]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:User_talk:SHB2000}}|NAME=filter log}})
;Description
: I am trying to ask about creating a short page for the Irish Gambit (which would be Chess Opening Theory/1. e4 e5 2. Nf6 Nc6 3. Nxe5??). The page had been previously protected for vandalism, which triggered the filter, but my proposed edit is unrelated to said vandalism (see [[User:Hordes222/sandbox|my sandbox]] for what I would add).
;Date and time
: 22:52, 6 May 2024 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
{{done}} Appears to now exist at [[Chess Opening Theory/1. e4/1...e5/2. Nf3/2...Nc6/3. Nxe5]]. [[User:EggRoll97|EggRoll97]] ([[User talk:EggRoll97|discuss]] • [[Special:Contributions/EggRoll97|contribs]]) 15:15, 1 July 2024 (UTC)
== 92.29.137.45 ==
;Username
: {{user|92.29.137.45}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:92.29.137.45}}|NAME=filter log}})
;Page you were editing
: [[]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:}}|NAME=filter log}})
;Description
:
;Date and time
: 15:14, 15 May 2024 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
{{Not done}} Doesn't appear constructive, and you don't appear to have provided any summary to explain the edit. [[User:EggRoll97|EggRoll97]] ([[User talk:EggRoll97|discuss]] • [[Special:Contributions/EggRoll97|contribs]]) 15:15, 1 July 2024 (UTC)
== Bkil ==
;Username
: {{user|Bkil}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Bkil}}|NAME=filter log}})
;Page you were editing
: [[User:Bkil]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:User:Bkil}}|NAME=filter log}})
;Description
: tried to link to Wikipedia
;Date and time
: 23:57, 6 June 2024 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
{{done}} [[User:EggRoll97|EggRoll97]] ([[User talk:EggRoll97|discuss]] • [[Special:Contributions/EggRoll97|contribs]]) 15:15, 1 July 2024 (UTC)
== TheMonkeyEatsBananas ==
;Username
: {{user|TheMonkeyEatsBananas}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:TheMonkeyEatsBananas}}|NAME=filter log}})
;Page you were editing
: [[https://en.wikibooks.org/wiki/User_talk:SHB2000]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:https://en.wikibooks.org/wiki/User_talk:SHB2000}}|NAME=filter log}})
;Description
: I was seeking to add a new message to SHB2000's unarchived discussion page to discuss the false report that I filed above. However, this resulted in this new message also being automatically removed.
;Date and time
: 06:16, 6 July 2024 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
{{re|TheMonkeyEatsBananas}} - can you try your previous edit on Physics again? Regarding the issue with {{re|SHB2000}}, the problem is that she (alongside a few other contributors) has been the target of harassment, which is why that edit was blocked. This will no longer happen once you get some experience. [[User:Leaderboard|Leaderboard]] ([[User talk:Leaderboard|discuss]] • [[Special:Contributions/Leaderboard|contribs]]) 07:43, 6 July 2024 (UTC)
:I've amended the abuse filter to set this wiki as an exception (in addition to enwikivoyage), but Leaderboard has said everything that you [TheMonkeyEatsBananas] need to know. --[[User:SHB2000|SHB2000]] ([[User talk:SHB2000|discuss]] • [[Special:Contributions/SHB2000|contribs]]) 07:50, 6 July 2024 (UTC)
:@[[User:Leaderboard|Leaderboard]] Thank you for your reply.
:Unfortunately with the Physics project, I didn't back up my work immediately before saving it. However, with about 20-30 minutes of spare time, I'll probably be able to attempt my edit again on the Unit 1 subpage of the project. I'll try this after I send this reply.
:Also, regarding harassment of any user on Wikimedia, that's particularly awful, and I hope the broader community is seeking to find a solution to further limit and prevent such activity. [[User:TheMonkeyEatsBananas|TheMonkeyEatsBananas]] ([[User talk:TheMonkeyEatsBananas|discuss]] • [[Special:Contributions/TheMonkeyEatsBananas|contribs]]) 08:22, 6 July 2024 (UTC)
::You can usually check the content of what you wrote before it was blocked on <span class="plainlinks>[https://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser=TheMonkeyEatsBananas Special:AbuseLog]</span>. --[[User:SHB2000|SHB2000]] ([[User talk:SHB2000|discuss]] • [[Special:Contributions/SHB2000|contribs]]) 09:06, 6 July 2024 (UTC)
:::Thank you. To note, I don't yet have the permissions for that as my account is still under four days old. I was able to rewrite what I had from the back-up and I ran into the same error, specifically "IP Large Edits." Would the best approach for transferring the content be to simply wait until I'm a confirmed user? [[User:TheMonkeyEatsBananas|TheMonkeyEatsBananas]] ([[User talk:TheMonkeyEatsBananas|discuss]] • [[Special:Contributions/TheMonkeyEatsBananas|contribs]]) 09:23, 6 July 2024 (UTC)
::::Yeah, I would say just wait till July 9 and then you'll become an autoconfirmed user. Unfortunately, we don't have any bureaucrats on this wiki to manually confirm you. --[[User:SHB2000|SHB2000]] ([[User talk:SHB2000|discuss]] • [[Special:Contributions/SHB2000|contribs]]) 09:43, 6 July 2024 (UTC)
:::::{{re|TheMonkeyEatsBananas}} A steward has overridden this for you - try now. [[User:Leaderboard|Leaderboard]] ([[User talk:Leaderboard|discuss]] • [[Special:Contributions/Leaderboard|contribs]]) 13:15, 6 July 2024 (UTC)
== LKreissig ==
;Username
: {{user|LKreissig}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:LKreissig}}|NAME=filter log}})
;Page you were editing
: [[Polyomino]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:Polyomino}}|NAME=filter log}})
;Description
: Publishing has just been denied only because I mentioned the reputable online integer encyclopedia oeis.org. That is not any kind of commercial advertisement!
;Date and time
: 23:53, 14 August 2024 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
:Just make the edit again with the URL omitted. Before doing so, make sure you name the page properly - it should be in a book, not a standalone page. [[User:MarcGarver|MarcGarver]] ([[User talk:MarcGarver|discuss]] • [[Special:Contributions/MarcGarver|contribs]]) 12:34, 16 August 2024 (UTC)
== TheMonkeyEatsBananas ==
;Username
: {{user|TheMonkeyEatsBananas}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:TheMonkeyEatsBananas}}|NAME=filter log}})
;Page you were editing
: [[Physics Explained Through a Video Game]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:Physics Explained Through a Video Game}}|NAME=filter log}})
;Description
: An introduction to classical mechanics with visual content from the website Bonk.io, a multiplayer physics game with a freely licensed policy for user-generated content. Although it uses examples from a video game as visual aids, the textbook only discusses real-world physics.
The filtered edit was a transfer of Unit 1 of the textbook from the Bonk.io Wiki, a wiki under Fandom, Inc., to Wikibooks. To note, I am the only contributor of the original textbook content. My intention was to move the content from the Bonk.io Wiki to a more appropriate location and continue my work on the project here.
Thank you for your consideration.
;Date and time
: 22:06, 5 July 2024 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
{{not done}} {{ping|TheMonkeyEatsBananas}} The edit needs attribution. [[User:EggRoll97|EggRoll97]] ([[User talk:EggRoll97|discuss]] • [[Special:Contributions/EggRoll97|contribs]]) 03:30, 18 September 2024 (UTC)
== Kamui Kazi ==
;Username
: {{user|Kamui Kazi}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Kamui Kazi}}|NAME=filter log}})
;Page you were editing
: [[PSP/Translation_Projects]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:PSP/Translation_Projects}}|NAME=filter log}})
;Description
: Add my translation project to the list of active projects
;Date and time
: 16:34, 24 September 2024 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
{{done}} [[User:Ternera|Ternera]] ([[User talk:Ternera|discuss]] • [[Special:Contributions/Ternera|contribs]]) 18:57, 25 September 2024 (UTC)
== 24.183.148.225 ==
;Username
: {{user|24.183.148.225}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:24.183.148.225}}|NAME=filter log}})
;Page you were editing
: [[]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:}}|NAME=filter log}})
;Description
:
;Date and time
: 15:34, 23 July 2024 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
{{done}} [[User:Ternera|Ternera]] ([[User talk:Ternera|discuss]] • [[Special:Contributions/Ternera|contribs]]) 18:52, 25 September 2024 (UTC)
:@[[User:Ternera|Ternera]] help block @[[User:MathXplore|MathXplore]] [[Special:Contributions/2601:2C6:500:5300:CEDD:111D:42A3:BDE9|2601:2C6:500:5300:CEDD:111D:42A3:BDE9]] ([[User talk:2601:2C6:500:5300:CEDD:111D:42A3:BDE9|discuss]]) 22:06, 12 October 2024 (UTC)
::Bring it up with them, not me. [[User:Ternera|Ternera]] ([[User talk:Ternera|discuss]] • [[Special:Contributions/Ternera|contribs]]) 22:08, 12 October 2024 (UTC)
:: (Note) This IP has a global block in /64. [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 00:33, 13 October 2024 (UTC)
:Hi [[Special:Contributions/41.122.132.102|41.122.132.102]] ([[User talk:41.122.132.102|discuss]]) 17:58, 5 November 2024 (UTC)
== 75.172.52.200 ==
;Username
: {{user|75.172.52.200}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:75.172.52.200}}|NAME=filter log}})
;Page you were editing
: [[]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:}}|NAME=filter log}})
;Description
:
;Date and time
: 20:38, 6 October 2024 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
{{not done}} Please do not try to blank articles without a reason. [[User:Ternera|Ternera]] ([[User talk:Ternera|discuss]] • [[Special:Contributions/Ternera|contribs]]) 14:35, 9 October 2024 (UTC)
:Why you are not done😭😭😭😭 [[Special:Contributions/41.122.132.102|41.122.132.102]] ([[User talk:41.122.132.102|discuss]]) 18:00, 5 November 2024 (UTC)
== Mdhor123 ==
;Username
: {{user|Mdhor123}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Mdhor123}}|NAME=filter log}})
;Page you were editing
: [[Microsoft Office/PowerPoint Keyboard Shortcuts]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:Microsoft Office/PowerPoint Keyboard Shortcuts}}|NAME=filter log}})
;Description
: Added a bunch of shortcuts to the list, but wasn't allowed to add the source.
;Date and time
: 09:28, 3 November 2024 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
:As a new editor, adding an external link can trigger the edit filter like this. It wasn't the shortcuts that caused the problem, it was the URL. [[User:MarcGarver|MarcGarver]] ([[User talk:MarcGarver|discuss]] • [[Special:Contributions/MarcGarver|contribs]]) 12:01, 4 November 2024 (UTC)
== Tres Libras ==
;Username
: {{user|Tres Libras}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Tres Libras}}|NAME=filter log}})
;Page you were editing
: [[XQuery/SPARQL Tutorial]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:XQuery/SPARQL Tutorial}}|NAME=filter log}})
;Description
: Anti-spam filter.
;Date and time
: 00:22, 19 November 2024 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
I understand that this abuse filter is in place to protect enwikibooks from spam. I was only trying to revert a problematic edit on XQuery/SPARQL Tutorial. I’m not a regular contributor here; I mainly focus on combating cross-wiki vandalism and monitoring small wikis. Best regards.
: Looks like this was taken care of—thank you! —[[User:Kittycataclysm|Kittycataclysm]] ([[User talk:Kittycataclysm|discuss]] • [[Special:Contributions/Kittycataclysm|contribs]]) 00:51, 19 November 2024 (UTC)
== Ab12gu ==
;Username
: {{user|Ab12gu}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Ab12gu}}|NAME=filter log}})
;Page you were editing
: [[OpenJSCAD_User_Guide]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:OpenJSCAD_User_Guide}}|NAME=filter log}})
;Description
: want to add openjscad link
;Date and time
: 22:54, 10 December 2024 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
* It does not look like you triggered any filters on that page? [[User:Ternera|Ternera]] ([[User talk:Ternera|discuss]] • [[Special:Contributions/Ternera|contribs]]) 01:51, 3 January 2025 (UTC)
== 108.35.187.110 ==
;Username
: {{user|108.35.187.110}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:108.35.187.110}}|NAME=filter log}})
;Page you were editing
: [[]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:}}|NAME=filter log}})
;Description
: I am trying to add a link to a page on this very wiki I was about to revise for the false positive, but the filter flagged me for using an external link. The page in question is the Arab names section of Writing Adolescent Fiction, which had a lot of names removed by a vandal.
;Date and time
: 04:18, 21 November 2024 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
: {{EFFP|done}} – [[User:JJPMaster|JJP]]<sub>[[User talk:JJPMaster|Mas]]<sub>[[Special:Contributions/JJPMaster|ter]]</sub></sub> ([[wikt:she|she]]/[[wikt:they|they]]) 22:10, 16 January 2025 (UTC)
== 58.145.184.218 ==
;Username
: {{user|58.145.184.218}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:58.145.184.218}}|NAME=filter log}})
;Page you were editing
: [[]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:}}|NAME=filter log}})
;Description
:
;Date and time
: 21:11, 17 December 2024 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
: {{EFFP|ndefm}} – [[User:JJPMaster|JJP]]<sub>[[User talk:JJPMaster|Mas]]<sub>[[Special:Contributions/JJPMaster|ter]]</sub></sub> ([[wikt:she|she]]/[[wikt:they|they]]) 22:41, 16 January 2025 (UTC)
== 192.0.217.147 ==
;Username
: {{user|192.0.217.147}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:192.0.217.147}}|NAME=filter log}})
;Page you were editing
: [[]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:}}|NAME=filter log}})
;Description
: Chess_Opening_Theory/1._c4/1…c5/2._b4
I was trying to write a page about the Queen's Wing Gambit. That's it, hopefully I'm not an idiot.
;Date and time
: 07:29, 22 December 2024 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
: {{EFFP|alreadydone}} – [[User:JJPMaster|JJP]]<sub>[[User talk:JJPMaster|Mas]]<sub>[[Special:Contributions/JJPMaster|ter]]</sub></sub> ([[wikt:she|she]]/[[wikt:they|they]]) 10:49, 15 January 2025 (UTC)
== 89.164.23.10 ah ffs, I was just trying to correct my spelling, but if wiki objects, whatever ==
;Username
: {{user|89.164.23.10}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:89.164.23.10}}|NAME=filter log}})
;Page you were editing
: [[]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:}}|NAME=filter log}})
;Description
:
;Date and time
: 23:03, 2 January 2025 (UTC)
;Comments
I've fixed this for you! —[[User:Kittycataclysm|Kittycataclysm]] ([[User talk:Kittycataclysm|discuss]] • [[Special:Contributions/Kittycataclysm|contribs]]) 01:09, 3 January 2025 (UTC)
== 2600:1700:25E0:2710:49AF:96EF:8A53:EA8E ==
;Username
: {{user|2600:1700:25E0:2710:49AF:96EF:8A53:EA8E}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:2600:1700:25E0:2710:49AF:96EF:8A53:EA8E}}|NAME=filter log}})
;Page you were editing
: [[]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:}}|NAME=filter log}})
;Description
: Huh?
;Date and time
: 16:56, 30 November 2024 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
== 204.100.235.104 ==
;Username
: {{user|204.100.235.104}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:204.100.235.104}}|NAME=filter log}})
;Page you were editing
: [[How To Assemble A Desktop PC/Choosing the parts]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:How To Assemble A Desktop PC/Choosing the parts}}|NAME=filter log}})
;Description
: Adding updated information about modems
;Date and time
: 22:01, 11 December 2024 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
== AidenPrydeJF ==
;Username
: {{user|AidenPrydeJF}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:AidenPrydeJF}}|NAME=filter log}})
;Page you were editing
: [[Haskell/Getting set up]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:Haskell/Getting set up}}|NAME=filter log}})
;Description
: Eliminated verbosity. Added links to Haskell Discord and IRC for Haskell environment installation assistance
;Date and time
: 17:55, 1 January 2025 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
== Jacobdgm ==
;Username
: {{user|Jacobdgm}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Jacobdgm}}|NAME=filter log}})
;Page you were editing
: [[[[User:Jacobdgm]]]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:[[User:Jacobdgm]]}}|NAME=filter log}})
;Description
: Trying to add a link to my Wikipedia User page. I also tried to add a link to my personal website, similar to the link present on my Wikipedia User page, but even when I removed it, I continued to get the error message upon clicking "Publish".
(Notably, I'm not even able to add a link to my Wikipedia User page [or, for that matter, my Wikibooks User page via URL] here. It's the same username, just in the Wikipedia domain.)
I'm guessing the main reason I'm getting an error message is because my Wikibooks account wasn't activated until a few minutes ago, when I made an edit to a recipe. But it does seem a bit silly that I should not be able to link to other Wikipedia/Wikibooks pages...
;Date and time
: 17:01, 31 January 2025 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
: {{EFFP|defm}} The problem here is that you wrote the link to Wikipedia as https://..., which falls under the [[w:regular expression|regular expression]] for external links. I will look into the possibility of exempting links to Wikimedia projects from the filter. – [[User:JJPMaster|JJP]]<sub>[[User talk:JJPMaster|Mas]]<sub>[[Special:Contributions/JJPMaster|ter]]</sub></sub> ([[wikt:she|she]]/[[wikt:they|they]]) 17:49, 31 January 2025 (UTC)
:We would rather prefer ''not'' using bare links and rather use relative URLs (i.e, [[wikipedia:]]) [[User:Leaderboard|Leaderboard]] ([[User talk:Leaderboard|discuss]] • [[Special:Contributions/Leaderboard|contribs]]) 02:30, 1 February 2025 (UTC)
::I do think we should allow bare links, since those are often used when linking to diffs or log entries (including on the local project). [[User:JJPMaster|JJP]]<sub>[[User talk:JJPMaster|Mas]]<sub>[[Special:Contributions/JJPMaster|ter]]</sub></sub> ([[wikt:she|she]]/[[wikt:they|they]]) 02:34, 1 February 2025 (UTC)
:::OK fair but that's not usually the case from my experience. [[User:Leaderboard|Leaderboard]] ([[User talk:Leaderboard|discuss]] • [[Special:Contributions/Leaderboard|contribs]]) 03:02, 1 February 2025 (UTC)
:::Are there not ways to link to these without bare linking? Like [[Special:Diff]]? It seems like unambiguously valid cases of bare-linking are rare, and discouraging bare-linking seems like a useful way to help reduce spamming. —[[User:Kittycataclysm|Kittycataclysm]] ([[User talk:Kittycataclysm|discuss]] • [[Special:Contributions/Kittycataclysm|contribs]]) 16:37, 1 February 2025 (UTC)
::::Those options do exist, however it took me quite a while to learn about them when I was new to the Wikimedia movement, and new users are precisely those users to whom this filter applies. Equally, users might not be aware of interwiki links ([[Wikibooks:Reading_room/Archives/2024/December#Can_one_publish_single_articles_on_Wikibooks?|example]]), or the <code><nowiki>[{{fullurl:{{PAGENAME}}|action=edit}} edit]</nowiki></code> trick to link to a page's edit box (generally, only relatively advanced MediaWiki users are familiar with that one). Also, I find it hard to understand how exactly you could spam by linking to a Wikimedia project. Most spammers that we attempt to catch with this filter are attempting to use Wikimedia for [[w:search engine optimization|search engine optimization]] purposes, and linking to other Wikimedia projects seems like a very poor way of doing that. [[User:JJPMaster|JJP]]<sub>[[User talk:JJPMaster|Mas]]<sub>[[Special:Contributions/JJPMaster|ter]]</sub></sub> ([[wikt:she|she]]/[[wikt:they|they]]) 17:05, 1 February 2025 (UTC)
== 1.46.150.177 ==
;Username
: {{user|1.46.150.177}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:1.46.150.177}}|NAME=filter log}})
;Page you were editing
: [[Wikibooks:Featured books/Nominations]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:Wikibooks:Featured books/Nominations}}|NAME=filter log}})
;Description
: [[User:JJPMaster|I]] did not attempt to make this edit, but I found it while patrolling [[Special:AbuseLog]], and the "Repeated vandalism attempts" filter should not have applied. The user previously made two legitimate edits that were not caught by the filter a minute prior, but the RVA filter disallowed it.
;Date and time
: 00:30, 8 February 2025 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
== Backofficeaccountant ==
;Username
: {{user|Backofficeaccountant}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Backofficeaccountant}}|NAME=filter log}})
;Page you were editing
: [[]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:}}|NAME=filter log}})
;Description
: i want a edit a external link on my main page as a reference . please allow my page to do it it is necessary because of copyrights.
;Date and time
: 11:25, 15 February 2025 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
i want a edit a external link on my main page as a reference . please allow my page to do it it is necessary because of copyrights.
:You are trying to spam a link to your website, which isn't allowed. And now you are blocked, goodbye. [[User:MarcGarver|MarcGarver]] ([[User talk:MarcGarver|discuss]] • [[Special:Contributions/MarcGarver|contribs]]) 09:30, 17 February 2025 (UTC)
== Ujumrfr ==
;Username
: {{user|Ujumrfr}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Ujumrfr}}|NAME=filter log}})
;Page you were editing
: [[]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:}}|NAME=filter log}})
;Description
:
;Date and time
: 15:42, 11 March 2025 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
: {{EFFP|notdone}} – [[User:JJPMaster|JJP]]<sub>[[User talk:JJPMaster|Mas]]<sub>[[Special:Contributions/JJPMaster|ter]]</sub></sub> ([[wikt:she|she]]/[[wikt:they|they]]) 18:35, 21 March 2025 (UTC)
== CBID2 ==
;Username
: {{user|CBID2}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:CBID2}}|NAME=filter log}})
;Page you were editing
: [[Open Source Wikibooks]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:Open Source Wikibooks}}|NAME=filter log}})
;Description
: I was trying to add a section about Christine Peterson(she came up with the name "open source" and I felt that it was important to add this information to give her proper acknowledgment because she and other women in the open source community are often not acknowledged for their efforts). Unfortunately, I keep getting an error message anytime I try to publish it. Can anyone help me solve it?
;Date and time
: 17:12, 11 April 2025 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
: The link you've included aside, I don't think the quote you tried to add about the origin of the term "open source" is particularly useful. Also, the page you attempted to edit is [[Open Source]], not [[Open Source Wikibooks]] (which doesn't exist). [[User:TTWIDEE|TTWIDEE]] ([[User talk:TTWIDEE|discuss]] • [[Special:Contributions/TTWIDEE|contribs]]) 19:59, 11 April 2025 (UTC)
== Locahox603 ==
;Username
: {{user|Locahox603}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Locahox603}}|NAME=filter log}})
;Page you were editing
: [[]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:}}|NAME=filter log}})
;Description
:
;Date and time
: 16:07, 11 May 2025 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
:{{EFFP|nd}} [[User:Ternera|Ternera]] ([[User talk:Ternera|discuss]] • [[Special:Contributions/Ternera|contribs]]) 14:33, 23 May 2025 (UTC)
== Kcapoor ==
;Username
: {{user|Kcapoor}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Kcapoor}}|NAME=filter log}})
;Page you were editing
: [[]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:}}|NAME=filter log}})
;Description
:
;Date and time
: 03:37, 28 April 2025 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
: {{EFFP|nd}} [[User:Codename Noreste|Codename Noreste]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 19:02, 3 June 2025 (UTC)
== 2A00:1E:DF03:1E01:D170:27F5:F15F:57E8 ==
;Username
: {{user|2A00:1E:DF03:1E01:D170:27F5:F15F:57E8}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:2A00:1E:DF03:1E01:D170:27F5:F15F:57E8}}|NAME=filter log}})
;Page you were editing
: [[[[OpenSCAD User Manual/Input Devices]]]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:[[OpenSCAD User Manual/Input Devices]]}}|NAME=filter log}})
;Description
: I was trying to improve the OpenSCAD input device manual, and added some links to the Debian and Arch linux wikis. Nothing too objectionable. I did spend some time making sure I was improving that page, so it'd be nice if those changes are accepted.
;Date and time
: 11:00, 26 May 2025 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
: {{EFFP|d}} Note that I removed the last sentence, which is unnecessary. Otherwise, your edit looked fine to implement. [[User:Codename Noreste|Codename Noreste]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 18:56, 3 June 2025 (UTC)
== 38.211.149.56 ==
;Username
: {{user|38.211.149.56}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:38.211.149.56}}|NAME=filter log}})
;Page you were editing
: [[]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:}}|NAME=filter log}})
;Description
:
;Date and time
: 10:52, 1 June 2025 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
: {{EFFP|nd}} [[User:Codename Noreste|Codename Noreste]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 18:56, 3 June 2025 (UTC)
== 176.1.132.105 ==
;Username
: {{user|176.1.132.105}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:176.1.132.105}}|NAME=filter log}})
;Page you were editing
: [[Handbook_of_Management_Scales/Procedural_justice]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:Handbook_of_Management_Scales/Procedural_justice}}|NAME=filter log}})
;Description
: trying to add a source with a link via doi . org
;Date and time
: 22:44, 6 June 2025 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
:{{EFFP|d|https://en.wikibooks.org/w/index.php?title=Handbook_of_Management_Scales/Procedural_justice&diff=prev&oldid=4519425}} [[User:Ternera|Ternera]] ([[User talk:Ternera|discuss]] • [[Special:Contributions/Ternera|contribs]]) 13:02, 23 June 2025 (UTC)
== {{subst:136472 Makemake}} ==
;Username
: {{user|2601:2C6:580:1960:9DF8:EF8C:BD2D:E975}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:2601:2C6:580:1960:9DF8:EF8C:BD2D:E975}}|NAME=filter log}})
;Page you were editing
: [[(1364720 Makemake]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:(1364720 Makemake}}|NAME=filter log}})
;Description
: I was editing it but it said "We are sorry, your edit can not be completed at this time. Your recent edits have repeatedly triggered the edit filter. To prevent users from repeatedly attempting to make unconstructive edits, your edit has been disallowed. If this is not your intention, we apologize for the inconvenience but please report this error and try your edit again later."
;Date and time
: 21:58, 20 June 2025 (UTC)
;Comments
The edit was blocked as likely vandalism. While you weren't attempting to vandalise, you were copying and pasting text from Wikipedia which is a breach of the site license. If you wish to import text from Wikipedia, please request an import at [[WB:RFI]] [[User:MarcGarver|MarcGarver]] ([[User talk:MarcGarver|discuss]] • [[Special:Contributions/MarcGarver|contribs]]) 09:35, 23 June 2025 (UTC)
: Per the response above, I am marking as {{EFFP|nd}} [[User:Codename Noreste|Codename Noreste]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 12:00, 29 June 2025 (UTC)
== Makerofjacket ==
Hello, I attempted to add an external link to makerofjacket.com as a relevant reference for leather fashion and design. The brand is mentioned in the context of leather skirt styles and is directly related to the subject.
This is not promotional or spam content the link supports the topic and gives readers a source for further exploration.
:It is spam, as is your username, so you are now blocked. [[User:MarcGarver|MarcGarver]] ([[User talk:MarcGarver|discuss]] • [[Special:Contributions/MarcGarver|contribs]]) 13:21, 1 July 2025 (UTC)
== 185.164.156.170 ==
;Username
: {{user|185.164.156.170}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:185.164.156.170}}|NAME=filter log}})
;Page you were editing
: [[]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:}}|NAME=filter log}})
;Description
:
;Date and time
: 18:53, 27 June 2025 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
:{{EFFP|d}} Though I'll put in a separate edit to fix your link, since it appears to be dead, and I've found a working one online. [[User:EggRoll97|EggRoll97]] ([[User talk:EggRoll97|discuss]] • [[Special:Contributions/EggRoll97|contribs]]) 03:45, 6 July 2025 (UTC)
== ValWinter ==
;Username
: {{user|ValWinter}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:ValWinter}}|NAME=filter log}})
;Page you were editing
: [[Swedish]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:Swedish}}|NAME=filter log}})
;Description
: I wanted to add the Swedish Phrasebook from Wikivoyage in the See Also section. Other WikiMedia sites related to the Swedish language were linked and I wanted to add this as well.
My reason is through researching language acquisition people recommend using phrasebooks as a good starting place for learning essential grammar/words.
If this is inappropriate I apologize and won't do it again.
;Date and time
: 20:14, 1 July 2025 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
:{{EFFP|nd}} {{ping|ValWinter}} I don't think this needs to be in there, as the Swedish language sites are probably enough, but thank you for your contribution! [[User:EggRoll97|EggRoll97]] ([[User talk:EggRoll97|discuss]] • [[Special:Contributions/EggRoll97|contribs]]) 03:48, 6 July 2025 (UTC)
:: For filter 7, this shouldn’t have tripped on Wikipedia URLs which are disallowed by another filter. I'll try to fix that filter later, and perhaps filter 44. <span style="font-family:Verdana">[[User:Codename Noreste|<span style="color:#0024FF">'''''Codename Noreste'''''</span>]] ([[User talk:Codename Noreste|talk]] · [[Special:Contributions/Codename Noreste|contribs]])</span> 03:51, 6 July 2025 (UTC)
:::{{ping|Codename Noreste}} I might suggest, by the way, that [[Special:AbuseLog/305229]] should not have been disallowed on this page, in the interests of allowing a user to report a perceived false positive to the noticeboard. [[User:EggRoll97|EggRoll97]] ([[User talk:EggRoll97|discuss]] • [[Special:Contributions/EggRoll97|contribs]]) 04:12, 6 July 2025 (UTC)
::::Implementing a fix right now… <span style="font-family:Verdana">[[User:Codename Noreste|<span style="color:#0024FF">'''''Codename Noreste'''''</span>]] ([[User talk:Codename Noreste|talk]] · [[Special:Contributions/Codename Noreste|contribs]])</span> 04:15, 6 July 2025 (UTC)
::::: [[User:EggRoll97|EggRoll97]]: {{EFFP|fixed|Codename Noreste}} I tested this, and the false positive hit did not match. I also excluded some Wikimedia domains in addition to <code><ref</code>. The filter should now trip if http is in added_lines then added_links. <span style="font-family:Verdana">[[User:Codename Noreste|<span style="color:#0024FF">'''''Codename Noreste'''''</span>]] ([[User talk:Codename Noreste|talk]] · [[Special:Contributions/Codename Noreste|contribs]])</span> 04:24, 6 July 2025 (UTC)
== MooseGooseTruce ==
;Username
: {{user|MooseGooseTruce}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:MooseGooseTruce}}|NAME=filter log}})
;Page you were editing
: [[LaTeX/Installation]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:LaTeX/Installation}}|NAME=filter log}})
;Description
: Adding a link to the popular and well-maintained LaTeX plugin VimTeX to the Vim section.
;Date and time
: 08:53, 17 July 2025 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
: {{EFFP|nd|The filter is working correctly as it prevents new users from adding external links, but I am not sure if Github is considered acceptable to add such links to books}} <span style="font-family:Verdana">[[User:Codename Noreste|<span style="color:#0024FF">'''''Codename Noreste'''''</span>]] ([[User talk:Codename Noreste|<span style="color:#A1000E">talk</span>]])</span> 00:04, 21 July 2025 (UTC)
== Kristien86 ==
;Username
: {{user|Kristien86}} ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchUser={{urlencode:Kristien86}}|NAME=filter log}})
;Page you were editing
: [[https://en.wikibooks.org/w/index.php?title=Jeep_Liberty/Suspension/Shocks_%26_Struts&veaction=edit§ion=9]] ({{plainlinks|URL=http://en.wikibooks.org/wiki/Special:AbuseLog?title=Special:AbuseLog&wpSearchTitle={{urlencode:https://en.wikibooks.org/w/index.php?title=Jeep_Liberty/Suspension/Shocks_%26_Struts&veaction=edit§ion=9}}|NAME=filter log}})
;Description
: Add an external link to Freedom Offroad USA - https://freedomoffroadusa.com/
;Date and time
: 20:53, 10 July 2025 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
:That was correctly blocked as probable spam. Please discuss on the page's talk page if you think there is value in adding the link [[User:MarcGarver|MarcGarver]] ([[User talk:MarcGarver|discuss]] • [[Special:Contributions/MarcGarver|contribs]]) 08:39, 11 July 2025 (UTC)
: {{EFFP|nd}} <span style="font-family:Verdana">[[User:Codename Noreste|<span style="color:#0024FF">'''''Codename Noreste'''''</span>]] ([[User talk:Codename Noreste|<span style="color:#A1000E">talk</span>]])</span> 16:03, 11 July 2025 (UTC)
:Freedom Offroad USA is a similar/competitor company with the others listed/linked to. We added a valuable section on the topic of the page. Can we please have the link added? [[User:Kristien86|Kristien86]] ([[User talk:Kristien86|discuss]] • [[Special:Contributions/Kristien86|contribs]]) 22:25, 29 July 2025 (UTC)
== Tonyroberts2 ==
;Username
: [[:b:User:Tonyroberts2|Tonyroberts2]]<span class="noprint"> {{toolbar|separator=dot
|[[:b:User talk:Tonyroberts2|discuss]]
|[[:b:Special:Emailuser/Tonyroberts2|email]]
|[[:b:Special:Contributions/Tonyroberts2|contribs]]
|[{{fullurl:b:Special:Log|user={{urlencode:Tonyroberts2}}}} <span style{{=}}"color:#002bb8">logs</span>]
|[//tools.wmflabs.org/xtools/pcount/index.php?lang{{=}}en&wiki{{=}}wikibooks&name{{=}}{{urlencode:Tonyroberts2}} <span style{{=}}"color:#002bb8">count</span>]
}}</span> (<span class="plainlinks>[{{fullurl:Special:AbuseLog|wpSearchUser=Tonyroberts2}} filter log]</span>)
;Page you were editing
: [[https://en.wikibooks.org/w/index.php?title=Python_Programming/Excel]] <span class="plainlinks">([{{fullurl:Special:AbuseLog|wpSearchTitle=https%3A%2F%2Fen.wikibooks.org%2Fw%2Findex.php%3Ftitle%3DPython_Programming%2FExcel}} filter log]) ([{{fullurl:Special:AbuseLog|wpSearchTitle=https%3A%2F%2Fen.wikibooks.org%2Fw%2Findex.php%3Ftitle%3DPython_Programming%2FExcel&wpSearchUser=Tonyroberts2}} user filter log])</span>
;Description
: Adding a section for PyXLL (and Excel add-in mentioned on this page with no further information). Added a link to the PyXLL website (pyxll.com), which is consistent with other sections on this page.
;Date and time
: 11:55, 12 August 2025 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
== Qbancoffee ==
;Username
: [[:b:User:Qbancoffee|Qbancoffee]]<span class="noprint"> {{toolbar|separator=dot
|[[:b:User talk:Qbancoffee|discuss]]
|[[:b:Special:Emailuser/Qbancoffee|email]]
|[[:b:Special:Contributions/Qbancoffee|contribs]]
|[{{fullurl:b:Special:Log|user={{urlencode:Qbancoffee}}}} <span style{{=}}"color:#002bb8">logs</span>]
|[//tools.wmflabs.org/xtools/pcount/index.php?lang{{=}}en&wiki{{=}}wikibooks&name{{=}}{{urlencode:Qbancoffee}} <span style{{=}}"color:#002bb8">count</span>]
}}</span> (<span class="plainlinks>[{{fullurl:Special:AbuseLog|wpSearchUser=Qbancoffee}} filter log]</span>)
;Page you were editing
: [[https://en.wikibooks.org/w/index.php?title=DriveWire_4]] <span class="plainlinks">([{{fullurl:Special:AbuseLog|wpSearchTitle=https%3A%2F%2Fen.wikibooks.org%2Fw%2Findex.php%3Ftitle%3DDriveWire_4}} filter log]) ([{{fullurl:Special:AbuseLog|wpSearchTitle=https%3A%2F%2Fen.wikibooks.org%2Fw%2Findex.php%3Ftitle%3DDriveWire_4&wpSearchUser=Qbancoffee}} user filter log])</span>
;Description
: I'm trying to add content in the way of links and citations to a manual I am putting together for DriveWire 4
;Date and time
: 19:19, 11 October 2025 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
:{{EFFP|f|Codename Noreste}} I went ahead and excluded a legitimate link, so it should not trigger the filter anymore. [[User:Codename Noreste|Codename Noreste]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 00:29, 12 October 2025 (UTC)
== ~2025-60584-5 ==
;Username
: [[:b:User:~2025-60584-5|~2025-60584-5]]<span class="noprint"> {{toolbar|separator=dot
|[[:b:User talk:~2025-60584-5|discuss]]
|[[:b:Special:Emailuser/~2025-60584-5|email]]
|[[:b:Special:Contributions/~2025-60584-5|contribs]]
|[{{fullurl:b:Special:Log|user={{urlencode:~2025-60584-5}}}} <span style{{=}}"color:#002bb8">logs</span>]
|[//tools.wmflabs.org/xtools/pcount/index.php?lang{{=}}en&wiki{{=}}wikibooks&name{{=}}{{urlencode:~2025-60584-5}} <span style{{=}}"color:#002bb8">count</span>]
}}</span> (<span class="plainlinks>[{{fullurl:Special:AbuseLog|wpSearchUser=%7E2025-60584-5}} filter log]</span>)
;Page you were editing
: [[https://en.wikibooks.org/w/index.php?title=Macedonian/Alphabet]] <span class="plainlinks">([{{fullurl:Special:AbuseLog|wpSearchTitle=https%3A%2F%2Fen.wikibooks.org%2Fw%2Findex.php%3Ftitle%3DMacedonian%2FAlphabet}} filter log]) ([{{fullurl:Special:AbuseLog|wpSearchTitle=https%3A%2F%2Fen.wikibooks.org%2Fw%2Findex.php%3Ftitle%3DMacedonian%2FAlphabet&wpSearchUser=%7E2025-60584-5}} user filter log])</span>
;Description
: Corrected the confusion between phonemic transcription (using the IPA standard and square brackets) and graphemic transcription (using local or international standards and angled brackets). Shortened and clarified some examples in the "notes" section as to not confuse the reader on sounds that cannot be approximated in the English language
;Date and time
: 22:11, 13 September 2025 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
: {{EFFP|f|Codename Noreste}} '''[[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]]''' ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 19:28, 26 October 2025 (UTC)
== NigoraJurayeva ==
;Username
: [[:b:User:NigoraJurayeva|NigoraJurayeva]]<span class="noprint"> {{toolbar|separator=dot
|[[:b:User talk:NigoraJurayeva|discuss]]
|[[:b:Special:Emailuser/NigoraJurayeva|email]]
|[[:b:Special:Contributions/NigoraJurayeva|contribs]]
|[{{fullurl:b:Special:Log|user={{urlencode:NigoraJurayeva}}}} <span style{{=}}"color:#002bb8">logs</span>]
|[//tools.wmflabs.org/xtools/pcount/index.php?lang{{=}}en&wiki{{=}}wikibooks&name{{=}}{{urlencode:NigoraJurayeva}} <span style{{=}}"color:#002bb8">count</span>]
}}</span> (<span class="plainlinks>[{{fullurl:Special:AbuseLog|wpSearchUser=NigoraJurayeva}} filter log]</span>)
;Page you were editing
: Page not specified
;Description
:
;Date and time
: 18:41, 13 November 2025 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
: {{EFFP|nd}} [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 19:01, 15 November 2025 (UTC)
== Imona61 ==
;Username
: [[:b:User:Imona61|Imona61]]<span class="noprint"> {{toolbar|separator=dot
|[[:b:User talk:Imona61|discuss]]
|[[:b:Special:Emailuser/Imona61|email]]
|[[:b:Special:Contributions/Imona61|contribs]]
|[{{fullurl:b:Special:Log|user={{urlencode:Imona61}}}} <span style{{=}}"color:#002bb8">logs</span>]
|[//tools.wmflabs.org/xtools/pcount/index.php?lang{{=}}en&wiki{{=}}wikibooks&name{{=}}{{urlencode:Imona61}} <span style{{=}}"color:#002bb8">count</span>]
}}</span> (<span class="plainlinks>[{{fullurl:Special:AbuseLog|wpSearchUser=Imona61}} filter log]</span>)
;Page you were editing
: Page not specified
;Description
:
;Date and time
: 20:07, 13 November 2025 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
: {{EFFP|notdone}} – [[User:JJPMaster|JJP]]<sub>[[User talk:JJPMaster|Mas]]<sub>[[Special:Contributions/JJPMaster|ter]]</sub></sub> ([[wikt:she|she]]/[[wikt:they|they]]) 18:54, 15 November 2025 (UTC)
== Blogger-booster ==
;Username
: [[:b:User:Blogger-booster|Blogger-booster]]<span class="noprint"> {{toolbar|separator=dot
|[[:b:User talk:Blogger-booster|discuss]]
|[[:b:Special:Emailuser/Blogger-booster|email]]
|[[:b:Special:Contributions/Blogger-booster|contribs]]
|[{{fullurl:b:Special:Log|user={{urlencode:Blogger-booster}}}} <span style{{=}}"color:#002bb8">logs</span>]
|[//tools.wmflabs.org/xtools/pcount/index.php?lang{{=}}en&wiki{{=}}wikibooks&name{{=}}{{urlencode:Blogger-booster}} <span style{{=}}"color:#002bb8">count</span>]
}}</span> (<span class="plainlinks>[{{fullurl:Special:AbuseLog|wpSearchUser=Blogger-booster}} filter log]</span>)
;Page you were editing
: Page not specified
;Description
:
;Date and time
: 12:24, 16 November 2025 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
:{{EFFP|nd}} [[User:Ternera|Ternera]] ([[User talk:Ternera|discuss]] • [[Special:Contributions/Ternera|contribs]]) 23:51, 16 November 2025 (UTC)
== Aroaceattorney ==
;Username
: [[:b:User:Aroaceattorney|Aroaceattorney]]<span class="noprint"> {{toolbar|separator=dot
|[[:b:User talk:Aroaceattorney|discuss]]
|[[:b:Special:Emailuser/Aroaceattorney|email]]
|[[:b:Special:Contributions/Aroaceattorney|contribs]]
|[{{fullurl:b:Special:Log|user={{urlencode:Aroaceattorney}}}} <span style{{=}}"color:#002bb8">logs</span>]
|[//tools.wmflabs.org/xtools/pcount/index.php?lang{{=}}en&wiki{{=}}wikibooks&name{{=}}{{urlencode:Aroaceattorney}} <span style{{=}}"color:#002bb8">count</span>]
}}</span> (<span class="plainlinks>[{{fullurl:Special:AbuseLog|wpSearchUser=Aroaceattorney}} filter log]</span>)
;Page you were editing
: [[canadian refugee procedure]] <span class="plainlinks">([{{fullurl:Special:AbuseLog|wpSearchTitle=canadian+refugee+procedure}} filter log]) ([{{fullurl:Special:AbuseLog|wpSearchTitle=canadian+refugee+procedure&wpSearchUser=Aroaceattorney}} user filter log])</span>
;Description
: I was trying to add links of IRCC and CBSA's operational instructions and guidelines to the Home page of Canadian Refugee Procedure because I think it's useful for the readers to know how could the IRCC and/or CBSA handles an application.
;Date and time
: 00:05, 21 December 2025 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
: {{EFFP|done}} – [[User:JJPMaster|JJP]]<sub>[[User talk:JJPMaster|Mas]]<sub>[[Special:Contributions/JJPMaster|ter]]</sub></sub> ([[wikt:she|she]]/[[wikt:they|they]]) 00:29, 21 December 2025 (UTC)
== ~2025-37703-14 ==
;Username
: [[:b:User:~2025-37703-14|~2025-37703-14]]<span class="noprint"> {{toolbar|separator=dot
|[[:b:User talk:~2025-37703-14|discuss]]
|[[:b:Special:Emailuser/~2025-37703-14|email]]
|[[:b:Special:Contributions/~2025-37703-14|contribs]]
|[{{fullurl:b:Special:Log|user={{urlencode:~2025-37703-14}}}} <span style{{=}}"color:#002bb8">logs</span>]
|[//tools.wmflabs.org/xtools/pcount/index.php?lang{{=}}en&wiki{{=}}wikibooks&name{{=}}{{urlencode:~2025-37703-14}} <span style{{=}}"color:#002bb8">count</span>]
}}</span> (<span class="plainlinks>[{{fullurl:Special:AbuseLog|wpSearchUser=%7E2025-37703-14}} filter log]</span>)
;Page you were editing
: [[https://en.wikibooks.org/wiki/Ada_Programming/Platform/POSIX]] <span class="plainlinks">([{{fullurl:Special:AbuseLog|wpSearchTitle=https%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAda_Programming%2FPlatform%2FPOSIX}} filter log]) ([{{fullurl:Special:AbuseLog|wpSearchTitle=https%3A%2F%2Fen.wikibooks.org%2Fwiki%2FAda_Programming%2FPlatform%2FPOSIX&wpSearchUser=%7E2025-37703-14}} user filter log])</span>
;Description
: Just trying to update a dead link. My last edit removed the old link, but soon afterward I found the new link. The new link is https://standards.ieee.org/ieee/1003.5b/1429/
;Date and time
: 03:04, 3 December 2025 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
:{{EFFP|d|4605219}} [[User:Ternera|Ternera]] ([[User talk:Ternera|discuss]] • [[Special:Contributions/Ternera|contribs]]) 15:09, 21 December 2025 (UTC)
== ~2026-96124 ==
;Username
: [[:b:User:~2026-96124|~2026-96124]]<span class="noprint"> {{toolbar|separator=dot
|[[:b:User talk:~2026-96124|discuss]]
|[[:b:Special:Emailuser/~2026-96124|email]]
|[[:b:Special:Contributions/~2026-96124|contribs]]
|[{{fullurl:b:Special:Log|user={{urlencode:~2026-96124}}}} <span style{{=}}"color:#002bb8">logs</span>]
|[//tools.wmflabs.org/xtools/pcount/index.php?lang{{=}}en&wiki{{=}}wikibooks&name{{=}}{{urlencode:~2026-96124}} <span style{{=}}"color:#002bb8">count</span>]
}}</span> (<span class="plainlinks">[{{fullurl:Special:AbuseLog|wpSearchUser=%7E2026-96124}} filter log]</span>)
;Page you were editing
: [[Math_for_Non-Geeks/_Limit_of_functions]] <span class="plainlinks">([{{fullurl:Special:AbuseLog|wpSearchTitle=Math_for_Non-Geeks%2F_Limit_of_functions}} filter log]) ([{{fullurl:Special:AbuseLog|wpSearchTitle=Math_for_Non-Geeks%2F_Limit_of_functions&wpSearchUser=%7E2026-96124}} user filter log])</span>
;Description
: The article is an English translation of this article: https://de.wikibooks.org/w/index.php?title=Serlo%3A_EN%3A_Limit_of_functions&uselang=en
One of my collaborators translated it on de.wikibooks.org, while erroneously leaving a large proportion of German text at the bottom:https://en.wikibooks.org/wiki/Math_for_Non-Geeks/_Limit_of_functions
I copied the article here: https://de.wikibooks.org/wiki/Mathe_f%C3%BCr_Nicht-Freaks:_Grenzwert_von_Funktionen
and I tried to remove the excess text, so the content is in sync with the original German article.
;Date and time
: 17:49, 5 January 2026 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
: {{EFFP|ad|Sascha Lill 95}} [[User:Codename Noreste|Codename Noreste]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 19:55, 5 January 2026 (UTC)
== ~2026-30281-5 ==
;Username
: [[:b:User:~2026-30281-5|~2026-30281-5]]<span class="noprint"> {{toolbar|separator=dot
|[[:b:User talk:~2026-30281-5|discuss]]
|[[:b:Special:Emailuser/~2026-30281-5|email]]
|[[:b:Special:Contributions/~2026-30281-5|contribs]]
|[{{fullurl:b:Special:Log|user={{urlencode:~2026-30281-5}}}} <span style{{=}}"color:#002bb8">logs</span>]
|[//tools.wmflabs.org/xtools/pcount/index.php?lang{{=}}en&wiki{{=}}wikibooks&name{{=}}{{urlencode:~2026-30281-5}} <span style{{=}}"color:#002bb8">count</span>]
}}</span> (<span class="plainlinks">[{{fullurl:Special:AbuseLog|wpSearchUser=%7E2026-30281-5}} filter log]</span>)
;Page you were editing
: Page not specified
;Description
:
;Date and time
: 21:12, 14 January 2026 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
: {{EFFP|notdone}} – [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 20:47, 18 January 2026 (UTC)
== KT1234pro ==
;Username
: [[:b:User:KT1234pro|KT1234pro]]<span class="noprint"> {{toolbar|separator=dot
|[[:b:User talk:KT1234pro|discuss]]
|[[:b:Special:Emailuser/KT1234pro|email]]
|[[:b:Special:Contributions/KT1234pro|contribs]]
|[{{fullurl:b:Special:Log|user={{urlencode:KT1234pro}}}} <span style{{=}}"color:#002bb8">logs</span>]
|[//tools.wmflabs.org/xtools/pcount/index.php?lang{{=}}en&wiki{{=}}wikibooks&name{{=}}{{urlencode:KT1234pro}} <span style{{=}}"color:#002bb8">count</span>]
}}</span> (<span class="plainlinks">[{{fullurl:Special:AbuseLog|wpSearchUser=KT1234pro}} filter log]</span>)
;Page you were editing
: Page not specified
;Description
:
;Date and time
: 06:54, 23 January 2026 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
: {{EFFP|notdone}} – [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 03:28, 24 January 2026 (UTC)
== Standing Alone ==
;Username
: [[:b:User:Standing Alone|Standing Alone]]<span class="noprint"> {{toolbar|separator=dot
|[[:b:User talk:Standing Alone|discuss]]
|[[:b:Special:Emailuser/Standing Alone|email]]
|[[:b:Special:Contributions/Standing Alone|contribs]]
|[{{fullurl:b:Special:Log|user={{urlencode:Standing Alone}}}} <span style{{=}}"color:#002bb8">logs</span>]
|[//tools.wmflabs.org/xtools/pcount/index.php?lang{{=}}en&wiki{{=}}wikibooks&name{{=}}{{urlencode:Standing Alone}} <span style{{=}}"color:#002bb8">count</span>]
}}</span> (<span class="plainlinks">[{{fullurl:Special:AbuseLog|wpSearchUser=Standing+Alone}} filter log]</span>)
;Page you were editing
: [[[[Python_Programming/Getting_Python|Python Programming]]]] <span class="plainlinks">([{{fullurl:Special:AbuseLog|wpSearchTitle=%5B%5BPython_Programming%2FGetting_Python%7CPython+Programming%5D%5D}} filter log]) ([{{fullurl:Special:AbuseLog|wpSearchTitle=%5B%5BPython_Programming%2FGetting_Python%7CPython+Programming%5D%5D&wpSearchUser=Standing+Alone}} user filter log])</span>
;Description
: [[https://en.wikibooks.org/w/index.php?title=Python_Programming/Getting_Python&diff=prev&oldid=4613227 change]]
I was adding PyPy to the other distributions, and at the end, it mentioned the link to get the distribution. However, it seems that, due to spam prevention, the addition of external links is disabled. Could you please add this [[https://pypy.org/ link]] to that table?
;Date and time
: 07:04, 23 January 2026 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
:{{EFFP|d|diff}} [[User:Ternera|Ternera]] ([[User talk:Ternera|discuss]] • [[Special:Contributions/Ternera|contribs]]) 15:29, 26 January 2026 (UTC)
== Davidlovechess ==
;Username
: [[:b:User:Davidlovechess|Davidlovechess]]<span class="noprint"> {{toolbar|separator=dot
|[[:b:User talk:Davidlovechess|discuss]]
|[[:b:Special:Emailuser/Davidlovechess|email]]
|[[:b:Special:Contributions/Davidlovechess|contribs]]
|[{{fullurl:b:Special:Log|user={{urlencode:Davidlovechess}}}} <span style{{=}}"color:#002bb8">logs</span>]
|[//tools.wmflabs.org/xtools/pcount/index.php?lang{{=}}en&wiki{{=}}wikibooks&name{{=}}{{urlencode:Davidlovechess}} <span style{{=}}"color:#002bb8">count</span>]
}}</span> (<span class="plainlinks">[{{fullurl:Special:AbuseLog|wpSearchUser=Davidlovechess}} filter log]</span>)
;Page you were editing
: [[Pinyin]] <span class="plainlinks">([{{fullurl:Special:AbuseLog|wpSearchTitle=Pinyin}} filter log]) ([{{fullurl:Special:AbuseLog|wpSearchTitle=Pinyin&wpSearchUser=Davidlovechess}} user filter log])</span>
;Description
: deleting what i personally think is usless to the topic
;Date and time
: 14:08, 4 February 2026 (UTC)
;Comments
:The edit was correctly blocked. A new editor deleting more than half the page because you "think is usless"[sic] was correctly identified as likely vandalism. I suggest you make smaller edits, and learn more about this project, before wading in to make large changes like this. <!-- Template:Unsigned --><small class="autosigned">— Preceding [[Wikipedia:Signatures|unsigned]] comment added by [[User:MarcGarver|MarcGarver]] ([[User talk:MarcGarver#top|talk]] • [[Special:Contributions/MarcGarver|contribs]]) </small> 17:38, 4 February 2026 (UTC)
== Engmark ==
;Username
: [[:b:User:Engmark|Engmark]]<span class="noprint"> {{toolbar|separator=dot
|[[:b:User talk:Engmark|discuss]]
|[[:b:Special:Emailuser/Engmark|email]]
|[[:b:Special:Contributions/Engmark|contribs]]
|[{{fullurl:b:Special:Log|user={{urlencode:Engmark}}}} <span style{{=}}"color:#002bb8">logs</span>]
|[//tools.wmflabs.org/xtools/pcount/index.php?lang{{=}}en&wiki{{=}}wikibooks&name{{=}}{{urlencode:Engmark}} <span style{{=}}"color:#002bb8">count</span>]
}}</span> (<span class="plainlinks">[{{fullurl:Special:AbuseLog|wpSearchUser=Engmark}} filter log]</span>)
;Page you were editing
: [[QEMU/Monitor]] <span class="plainlinks">([{{fullurl:Special:AbuseLog|wpSearchTitle=QEMU%2FMonitor}} filter log]) ([{{fullurl:Special:AbuseLog|wpSearchTitle=QEMU%2FMonitor&wpSearchUser=Engmark}} user filter log])</span>
;Description
: Update keys for QEMU 10.1.2
;Date and time
: 14:21, 31 January 2026 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
:{{EFFP|done|4618023}} [[User:PieWriter|PieWriter]] ([[User talk:PieWriter|discuss]] • [[Special:Contributions/PieWriter|contribs]]) 01:07, 7 February 2026 (UTC)
== X5DragonFire ==
;Username
: [[:b:User:X5DragonFire|X5DragonFire]]<span class="noprint"> {{toolbar|separator=dot
|[[:b:User talk:X5DragonFire|discuss]]
|[[:b:Special:Emailuser/X5DragonFire|email]]
|[[:b:Special:Contributions/X5DragonFire|contribs]]
|[{{fullurl:b:Special:Log|user={{urlencode:X5DragonFire}}}} <span style{{=}}"color:#002bb8">logs</span>]
|[//tools.wmflabs.org/xtools/pcount/index.php?lang{{=}}en&wiki{{=}}wikibooks&name{{=}}{{urlencode:X5DragonFire}} <span style{{=}}"color:#002bb8">count</span>]
}}</span> (<span class="plainlinks">[{{fullurl:Special:AbuseLog|wpSearchUser=X5DragonFire}} filter log]</span>)
;Page you were editing
: [[Anatomy and Physiology of Animals/Print version]] <span class="plainlinks">([{{fullurl:Special:AbuseLog|wpSearchTitle=Anatomy+and+Physiology+of+Animals%2FPrint+version}} filter log]) ([{{fullurl:Special:AbuseLog|wpSearchTitle=Anatomy+and+Physiology+of+Animals%2FPrint+version&wpSearchUser=X5DragonFire}} user filter log])</span>
;Description
: I was editng the print version of the Anatomy and Physiology of Animals page to be more print friendly, and in doing so copied the image from Anatomy and Physiology of Animals/Cardiovascular System into that page in order to replace a non-print-friendly template.
The description of that image has a link to what I assume is the original creator of that image on Flickr. My guess is that's what is getting flagged.
;Date and time
: 22:49, 5 February 2026 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
:{{EFFP|done|4618018}} [[User:PieWriter|PieWriter]] ([[User talk:PieWriter|discuss]] • [[Special:Contributions/PieWriter|contribs]]) 01:01, 7 February 2026 (UTC)
== Davidlovechess ==
;Username
: [[:b:User:Davidlovechess|Davidlovechess]]<span class="noprint"> {{toolbar|separator=dot
|[[:b:User talk:Davidlovechess|discuss]]
|[[:b:Special:Emailuser/Davidlovechess|email]]
|[[:b:Special:Contributions/Davidlovechess|contribs]]
|[{{fullurl:b:Special:Log|user={{urlencode:Davidlovechess}}}} <span style{{=}}"color:#002bb8">logs</span>]
|[//tools.wmflabs.org/xtools/pcount/index.php?lang{{=}}en&wiki{{=}}wikibooks&name{{=}}{{urlencode:Davidlovechess}} <span style{{=}}"color:#002bb8">count</span>]
}}</span> (<span class="plainlinks">[{{fullurl:Special:AbuseLog|wpSearchUser=Davidlovechess}} filter log]</span>)
;Page you were editing
: [[Classical_Chinese/Lesson_6]] <span class="plainlinks">([{{fullurl:Special:AbuseLog|wpSearchTitle=Classical_Chinese%2FLesson_6}} filter log]) ([{{fullurl:Special:AbuseLog|wpSearchTitle=Classical_Chinese%2FLesson_6&wpSearchUser=Davidlovechess}} user filter log])</span>
;Description
: i was trying to replace the text
;Date and time
: 10:06, 5 February 2026 (UTC)
;Comments
:{{EFFP|note}} I can verify that they are indeed making huge modifications to the lessons in [[Classical Chinese]], as the original texts were harder and longer, and many of the explanations for the original texts were incomplete. The texts that they use are simpler and are more useful as an introductory guide to Classical Chinese. [[Classical Chinese/Lesson 6]]'s text (“喜雨亭记”) was long and there is a huge table on the page; they are trying to replace the table with their own text. [[User:Jianhui67|'''<span style="color:#0E0">Jianhui67</span>''']]<sup> [[User talk:Jianhui67|<span style="color:#1E90FF">'''talk'''</span>]]<span style="color:red">★</span>[[Special:Contributions/Jianhui67|<span style="color:#1E90FF">'''contribs'''</span>]]</sup> 11:12, 5 February 2026 (UTC)
:{{EFFP|d|4618085}} Consider it done, as there seems to be no objections to the content replacement, though you might want to see what you can do with the original text 喜雨亭记. [[User:Jianhui67|'''<span style="color:#0E0">Jianhui67</span>''']]<sup> [[User talk:Jianhui67|<span style="color:#1E90FF">'''talk'''</span>]]<span style="color:red">★</span>[[Special:Contributions/Jianhui67|<span style="color:#1E90FF">'''contribs'''</span>]]</sup> 17:07, 7 February 2026 (UTC)
== WestenM86 ==
;Username
: [[:b:User:WestenM86|WestenM86]]<span class="noprint"> {{toolbar|separator=dot
|[[:b:User talk:WestenM86|discuss]]
|[[:b:Special:Emailuser/WestenM86|email]]
|[[:b:Special:Contributions/WestenM86|contribs]]
|[{{fullurl:b:Special:Log|user={{urlencode:WestenM86}}}} <span style{{=}}"color:#002bb8">logs</span>]
|[//tools.wmflabs.org/xtools/pcount/index.php?lang{{=}}en&wiki{{=}}wikibooks&name{{=}}{{urlencode:WestenM86}} <span style{{=}}"color:#002bb8">count</span>]
}}</span> (<span class="plainlinks">[{{fullurl:Special:AbuseLog|wpSearchUser=WestenM86}} filter log]</span>)
;Page you were editing
: [[Infrastructure Past, Present, and Future Casebook/Washington Metro]] <span class="plainlinks">([{{fullurl:Special:AbuseLog|wpSearchTitle=Infrastructure+Past%2C+Present%2C+and+Future+Casebook%2FWashington+Metro}} filter log]) ([{{fullurl:Special:AbuseLog|wpSearchTitle=Infrastructure+Past%2C+Present%2C+and+Future+Casebook%2FWashington+Metro&wpSearchUser=WestenM86}} user filter log])</span>
;Description
: We are students who are just trying to figure out this system and make our start for this project made by our professor. We are allowed to do this by George Mason University.
;Date and time
: 18:20, 20 February 2026 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
: {{EFFP|done|4620689}} I have added the text for you and moved the page to [[User:WestenM86/Infrastructure Past, Present, and Future Casebook/Washington Metro]], but please do not try to remove {{tl|delete}} templates. – [[User:PieWriter|PieWriter]] ([[User talk:PieWriter|discuss]] • [[Special:Contributions/PieWriter|contribs]]) 12:42, 26 February 2026 (UTC)
== VarastadDB ==
;Username
: [[:b:User:VarastadDB|VarastadDB]]<span class="noprint"> {{toolbar|separator=dot
|[[:b:User talk:VarastadDB|discuss]]
|[[:b:Special:Emailuser/VarastadDB|email]]
|[[:b:Special:Contributions/VarastadDB|contribs]]
|[{{fullurl:b:Special:Log|user={{urlencode:VarastadDB}}}} <span style{{=}}"color:#002bb8">logs</span>]
|[//tools.wmflabs.org/xtools/pcount/index.php?lang{{=}}en&wiki{{=}}wikibooks&name{{=}}{{urlencode:VarastadDB}} <span style{{=}}"color:#002bb8">count</span>]
}}</span> (<span class="plainlinks">[{{fullurl:Special:AbuseLog|wpSearchUser=VarastadDB}} filter log]</span>)
;Page you were editing
: [[User:VarastadDerBedrosian]] <span class="plainlinks">([{{fullurl:Special:AbuseLog|wpSearchTitle=User%3AVarastadDerBedrosian}} filter log]) ([{{fullurl:Special:AbuseLog|wpSearchTitle=User%3AVarastadDerBedrosian&wpSearchUser=VarastadDB}} user filter log])</span>
;Description
: I am a new editor attempting to establish a biographical record for Varastad DerBedrosian, a computer scientist and founder of SecureUp Corp and GadgetWide Solutions. The initial "out of scope" flag likely triggered due to placeholder data from the account's setup phase. I am currently transitioning the content to a neutral, encyclopedic tone (WP:NPOV) and adding third-party citations to technical archives to verify the subject's historical impact on the cybersecurity and mobile utility sectors. I request the removal of the deletion tag to allow for these improvements in the Draft space.
;Date and time
: 08:12, 28 February 2026 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
: {{EFFP|notdone}} – [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 17:28, 11 March 2026 (UTC)
== Jon Peli Oleaga ==
;Username
: [[:b:User:Jon Peli Oleaga|Jon Peli Oleaga]]<span class="noprint"> {{toolbar|separator=dot
|[[:b:User talk:Jon Peli Oleaga|discuss]]
|[[:b:Special:Emailuser/Jon Peli Oleaga|email]]
|[[:b:Special:Contributions/Jon Peli Oleaga|contribs]]
|[{{fullurl:b:Special:Log|user={{urlencode:Jon Peli Oleaga}}}} <span style{{=}}"color:#002bb8">logs</span>]
|[//tools.wmflabs.org/xtools/pcount/index.php?lang{{=}}en&wiki{{=}}wikibooks&name{{=}}{{urlencode:Jon Peli Oleaga}} <span style{{=}}"color:#002bb8">count</span>]
}}</span> (<span class="plainlinks">[{{fullurl:Special:AbuseLog|wpSearchUser=Jon+Peli+Oleaga}} filter log]</span>)
;Page you were editing
: [[FORTRAN program for calculating representative parameters and operating conditions of AC overhead transmission lines]] <span class="plainlinks">([{{fullurl:Special:AbuseLog|wpSearchTitle=FORTRAN+program+for+calculating+representative+parameters+and+operating+conditions+of+AC+overhead+transmission+lines}} filter log]) ([{{fullurl:Special:AbuseLog|wpSearchTitle=FORTRAN+program+for+calculating+representative+parameters+and+operating+conditions+of+AC+overhead+transmission+lines&wpSearchUser=Jon+Peli+Oleaga}} user filter log])</span>
;Description
: I want to insert the code of the program and the input and output data of some examples; to show how data is entered and the coincidence of the results with what was said in the book of the Electric Power Researh Institute published 1n 1975 "Transmission Line Reference Book 345 kv and Above".
I have generated all that information; directly or using the program.--[[User:Jon Peli Oleaga|Jon Peli Oleaga]] ([[User talk:Jon Peli Oleaga|discuss]] • [[Special:Contributions/Jon Peli Oleaga|contribs]]) 11:54, 11 March 2026 (UTC)
;Date and time
: 11:54, 11 March 2026 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
== Kingofnuthin ==
;Username
: [[:b:User:Kingofnuthin|Kingofnuthin]]<span class="noprint"> {{toolbar|separator=dot
|[[:b:User talk:Kingofnuthin|discuss]]
|[[:b:Special:Emailuser/Kingofnuthin|email]]
|[[:b:Special:Contributions/Kingofnuthin|contribs]]
|[{{fullurl:b:Special:Log|user={{urlencode:Kingofnuthin}}}} <span style{{=}}"color:#002bb8">logs</span>]
|[//tools.wmflabs.org/xtools/pcount/index.php?lang{{=}}en&wiki{{=}}wikibooks&name{{=}}{{urlencode:Kingofnuthin}} <span style{{=}}"color:#002bb8">count</span>]
}}</span> (<span class="plainlinks">[{{fullurl:Special:AbuseLog|wpSearchUser=Kingofnuthin}} filter log]</span>)
;Page you were editing
: [[America's voice]] <span class="plainlinks">([{{fullurl:Special:AbuseLog|wpSearchTitle=America%27s+voice}} filter log]) ([{{fullurl:Special:AbuseLog|wpSearchTitle=America%27s+voice&wpSearchUser=Kingofnuthin}} user filter log])</span>
;Description
: Needs removal of other deletion templates as i did a second CSD for previously deleted page.
;Date and time
: 16:56, 25 March 2026 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
: {{EFFP|fixed}} I changed a line of the filter so that certain user groups with <code>autoreview</code> are exempt. – [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 15:18, 27 March 2026 (UTC)
== Dom32628 ==
;Username
: [[:b:User:Dom32628|Dom32628]]<span class="noprint"> {{toolbar|separator=dot
|[[:b:User talk:Dom32628|discuss]]
|[[:b:Special:Emailuser/Dom32628|email]]
|[[:b:Special:Contributions/Dom32628|contribs]]
|[{{fullurl:b:Special:Log|user={{urlencode:Dom32628}}}} <span style{{=}}"color:#002bb8">logs</span>]
|[//tools.wmflabs.org/xtools/pcount/index.php?lang{{=}}en&wiki{{=}}wikibooks&name{{=}}{{urlencode:Dom32628}} <span style{{=}}"color:#002bb8">count</span>]
}}</span> (<span class="plainlinks">[{{fullurl:Special:AbuseLog|wpSearchUser=Dom32628}} filter log]</span>)
;Page you were editing
: [[Chess_Opening_Theory/1._c4/1...g5]] <span class="plainlinks">([{{fullurl:Special:AbuseLog|wpSearchTitle=Chess_Opening_Theory%2F1._c4%2F1...g5}} filter log]) ([{{fullurl:Special:AbuseLog|wpSearchTitle=Chess_Opening_Theory%2F1._c4%2F1...g5&wpSearchUser=Dom32628}} user filter log])</span>
;Description
: Added a link to Lichess.org in References. Lichess is free, open source and well regarded by the wiki community, showing the English Opening: Zilbermints Gambit. If there is a preferred referencing style to not reference lichess here, even if it is free & open source, let me know :)
;Date and time
: 23:46, 27 March 2026 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
== ~2026-21344-85 ==
;Username
: [[:b:User:~2026-21344-85|~2026-21344-85]]<span class="noprint"> {{toolbar|separator=dot
|[[:b:User talk:~2026-21344-85|discuss]]
|[[:b:Special:Emailuser/~2026-21344-85|email]]
|[[:b:Special:Contributions/~2026-21344-85|contribs]]
|[{{fullurl:b:Special:Log|user={{urlencode:~2026-21344-85}}}} <span style{{=}}"color:#002bb8">logs</span>]
|[//tools.wmflabs.org/xtools/pcount/index.php?lang{{=}}en&wiki{{=}}wikibooks&name{{=}}{{urlencode:~2026-21344-85}} <span style{{=}}"color:#002bb8">count</span>]
}}</span> (<span class="plainlinks">[{{fullurl:Special:AbuseLog|wpSearchUser=%7E2026-21344-85}} filter log]</span>)
;Page you were editing
: [[I am looking to link the youtube videos corresponding to each episode]] <span class="plainlinks">([{{fullurl:Special:AbuseLog|wpSearchTitle=I+am+looking+to+link+the+youtube+videos+corresponding+to+each+episode}} filter log]) ([{{fullurl:Special:AbuseLog|wpSearchTitle=I+am+looking+to+link+the+youtube+videos+corresponding+to+each+episode&wpSearchUser=%7E2026-21344-85}} user filter log])</span>
;Description
:
;Date and time
: 04:47, 12 April 2026 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
== ~2026-21344-85 ==
;Username
: [[:b:User:~2026-21344-85|~2026-21344-85]]<span class="noprint"> {{toolbar|separator=dot
|[[:b:User talk:~2026-21344-85|discuss]]
|[[:b:Special:Emailuser/~2026-21344-85|email]]
|[[:b:Special:Contributions/~2026-21344-85|contribs]]
|[{{fullurl:b:Special:Log|user={{urlencode:~2026-21344-85}}}} <span style{{=}}"color:#002bb8">logs</span>]
|[//tools.wmflabs.org/xtools/pcount/index.php?lang{{=}}en&wiki{{=}}wikibooks&name{{=}}{{urlencode:~2026-21344-85}} <span style{{=}}"color:#002bb8">count</span>]
}}</span> (<span class="plainlinks">[{{fullurl:Special:AbuseLog|wpSearchUser=%7E2026-21344-85}} filter log]</span>)
;Page you were editing
: [[SJMFTVF/sandbox (keep as sandbox, is for Screen Junkies Movie Fights & TV Fights)]] <span class="plainlinks">([{{fullurl:Special:AbuseLog|wpSearchTitle=SJMFTVF%2Fsandbox+%28keep+as+sandbox%2C+is+for+Screen+Junkies+Movie+Fights+%26+TV+Fights%29}} filter log]) ([{{fullurl:Special:AbuseLog|wpSearchTitle=SJMFTVF%2Fsandbox+%28keep+as+sandbox%2C+is+for+Screen+Junkies+Movie+Fights+%26+TV+Fights%29&wpSearchUser=%7E2026-21344-85}} user filter log])</span>
;Description
: Looking to update info for about 80 episodes, including links to the associated youtube videos. This has been done for previous episode summaries. Also, I have no way to prove this, but I am the creator of the page. I don't have access to the email associated with the SJMFTVF account anymore.
;Date and time
: 06:56, 12 April 2026 (UTC)
;Comments
<!-- Please leave this area blank for now, but be prepared to answer questions left by reviewing editors. Thanks! -->
q28hgqhcseydoh8z1io715e0fy75euz
Cookbook:Schwarzwälder Kirschtorte (Black Forest Cake) II
102
468423
4641171
4522907
2026-06-25T18:50:38Z
WhatamIdoing
483040
/* Notes, tips, and variations */
4641171
wikitext
text/x-wiki
__NOTOC__
{{recipesummary|category=Cake recipes|servings=12–16|time=About 3 hours <br/>(can be divided over two or three days)|difficulty=4
| Note = Must be prepared >4 hours before serving
}}
{{recipe}} | [[Cookbook:Dessert|Pastries and desserts]] | [[Cookbook:Cuisine of Germany|German cuisine]]
'''Schwarzwälder kirschtorte''', or Black Forest cake in English, is a traditional German dessert. This version puts two different kinds of cherries between layers of cocoa torte, filled with a generous amount of whipped cream. It is freely adapted from a recipe of the same name in the cookbook ''La dolce Wiener: Süße Verführungen von Apfelstrudel bis Zimtschnecken'' by German–Austrian television chef Sarah Wiener.
This is a celebration cake for events that benefits from being made the night before, so the flavors can blend. It must be stored in the refrigerator.
== Ingredients ==
=== Amarena cherries ===
{| class="wikitable" style="background: none"
!Ingredient
!Volume
!Weight
|-
|[[Cookbook:Cherry|Cherries]] (fresh or frozen, preferably sour cherries)
|
|250 [[Cookbook:Gram|g]] (8 [[Cookbook:Ounce|oz]])
|-
|[[Cookbook:Sugar|White sugar]]
|1 [[Cookbook:Cup|cup]]
|200 g
|-
|[[Cookbook:Lemon|Lemon]] juice
|1 [[Cookbook:Tablespoon|tablespoon]] (15 [[Cookbook:Milliliter|ml]])
|15 g
|-
|[[Cookbook:Amaretto|Amaretto]] (almond-flavored liqueur)
|1 oz (30 ml)
|30 g
|}
=== Kirschwasser cherries ===
{| class="wikitable" style="background: none"
!Ingredient
!Volume
!Weight
|-
|Cherries (fresh or frozen, preferably sour/pie cherries)
|8 oz
|250 [[Cookbook:Gram|g]]
|-
|[[Cookbook:Sugar|White sugar]]
|¼ cup
|50 g
|-
|[[Cookbook:Kirsch|Kirschwasser]] (cherry-flavored liqueur)
|1 oz (30 ml)
|30 g
|}
=== Cake ===
{| class="wikitable" style="background: none"
!Ingredient
!Count
!Volume
!Weight
|-
|[[Cookbook:Eggs|Eggs]], separated
|8 [[Cookbook:Each|ea.]]
|
|
|-
|[[Cookbook:Sugar|White sugar]]
|
|1 [[Cookbook:Cup|cup]]
|200 [[Cookbook:Gram|g]]
|-
|All-purpose [[Cookbook:Flour|flour]]
|
|1½ cups
|180 [[Cookbook:Gram|g]]
|-
|Unsweetened [[Cookbook:Cocoa|cocoa]] powder
|
|⅓ cup
|30 g
|}
=== Whipped cream ===
{| class="wikitable" style="background: none"
!Ingredient
!Count
!Volume
!Weight
|-
|Unflavored [[Cookbook:Gelatine|gelatin]] powder
|2 packets (¼ oz each)
|4 [[Cookbook:Teaspoon|teaspoons]]
|14 [[Cookbook:Gram|g]]
|-
|Water, cool
|
|1 ounce (30 ml)
|30 g
|-
|[[Cookbook:Kirsch|Kirschwasser]]
|
|1 ounce (30 ml)
|30 g
|-
|[[Cookbook:Whipping Cream|Whipping cream]] (30–40% butterfat)
|
|3 cups
|675 g
|-
|[[Cookbook:Sugar|Powdered sugar]] (icing sugar)
|
|½ cup
|115 g
|-
|Chocolate shavings (optional)
|
|½ cup or more
|60 g or more
|}
== Procedure ==
=== Amarena cherry preparation ===
# Pit the cherries if needed.
# Cook everything except the liqueur in a medium-sized [[Cookbook:Saucepan|saucepan]] on the stovetop, stirring occasionally to keep it from sticking to the bottom of the pan and to prevent it from boiling over, until the cherries begin softening, about 5 to 10 minutes.
# Add the liqueur and cook for another 10 minutes over medium heat. The cherries should be soft enough to eat easily, but not cooked so long that they become mushy or lose their shape.
# Set the cherries aside to cool.
=== Kirschwasser cherry preparation ===
# Pit the cherries if needed.
# Cook the cherries and sugar in a medium-sized saucepan on the stovetop, stirring occasionally, until the cherries begin softening, for about 5 to 10 minutes. Because there is no added liquid, you may want to start cooking at a slightly lower temperature and raise it to medium after the sugar has melted.
# Add the liqueur, and cook for another few minutes until the cherries are soft enough. Set them aside to cool.
# If you are making the cherries in advance, both kinds can be stored in the refrigerator (in separate containers) at this point for up to several days.
# After both kinds of cherries have been cooked, drain both types of cherries thoroughly and separately, saving all the drained syrup. The cherries need to be cooled and drained well enough that they won't dissolve the whipped cream filling when the cake is assembled. You will use some of the syrup to moisten the cake layers.
=== Cake preparation ===
# Line two 9-inch (23 cm) [[Cookbook:Cake Pan|cake pans]] with [[Cookbook:Parchment Paper|parchment]]. If you don't have parchment paper, spread a very thin layer of butter only on the bottom of the pans. Do not butter the sides of the pans, and do not coat the pans with flour.
# Preheat the oven to 350 °F (180 °F or gas mark 4–medium).
# [[Cookbook:Separating Eggs|Separate the eggs]].
# [[Cookbook:Egg#Foaming|Whip]] the egg whites until stiff and set aside.
# Whip the egg yolks and sugar in a large mixing bowl, until very light and fluffy. This will take several minutes with an [[Cookbook:Mixer|electric mixer]] and longer if you are beating them by hand.
# [[Cookbook:Sifting|Sift]] the cocoa powder and flour together over the egg yolk mixture. Add the stiffly whipped egg whites on top. Gently [[Cookbook:Folding|fold]] together all ingredients.
# Scrape the batter into the two pans and bake until done, approximately 20–25 minutes. The internal temperature should be around 185–190 °F. Set the cakes aside to cool.
=== Whipped cream preparation ===
# Put the powdered gelatin in a small pan. Add an ounce or so (30 ml) of cool water and let it stand until the gelatin has "bloomed" (absorbed the water and softened). This usually takes at least 5 minutes.
# Add the kirschwasser to the softened gelatin. If you do not want to use the kirschwasser, you can substitute an equal volume of syrup from the cherries.
# Heat the gelatin mixture over low heat, stirring constantly. Remove from the heat when the gelatin has dissolved—it will look clear.
# Set the pan aside to cool down to a warm room temperature. Do not place it in the refrigerator. If you have a cooking thermometer, an ideal temperature might be around 75–80°F (24–26 °C). If the gelatin begins to solidify, gently warm it until it is barely liquid again.
# In a large mixing bowl, whip the whipping cream, until it begins thickening but has not reached the point of forming soft peaks.
# Stir a large spoonful of the half-whipped whipping cream into the cooled but still liquid gelatin.
# Resume whipping the remaining cream, gradually drizzling the gelatin mixture into the bowl while whipping.
# Once the gelatin has been incorporated, add the powdered sugar and whip until firm but not grainy.
=== Assembly ===
# Collect everything you need:
#* Both kinds of cooked cherries, completely cooled and well-drained
#* About 2 ounces (60 ml) of cherry syrup from cooking the cherries. Choose your favorite one, or mix them together. You can add an extra ounce (30 ml) of kirschwasser to the syrup if you want. If you want a boozy cake, you can even use kirschwasser instead of the cherry syrups.
#* 2 cake layers, completely cooled
#* Stabilized whipped cream
#* Chocolate shavings or sprinkles (if desired)
#* A large platter (big enough to accommodate whipped cream on the side of the cake if desired)
# Set aside about a dozen pretty, well-drained cherries for decorating the top layer.
# Place the first cake layer on the platter.
# Pour some of the reserved cherry syrup over the cake layer. The amount should be in the "pancake topping" range (about 1 oz/30 mL): enough to cover most of the cake, but not enough to make it soggy or to pour off the edges. Use a [[Cookbook:Brush|pastry brush]] to spread the syrup evenly across the surface. Don't skip this step, or the cake will be much too dry.
# Top the bottom layer with a small amount of whipped cream. Place a single layer of cherries on top of that. Top that with just enough whipped cream to completely fill the spaces between the cherries. Note that the cherries act as a structural element since the whipped cream can't support the weight of the top cake layer on its own. If you put too much whipped cream between the layers, it will squish out the sides when the top cake layer is added.
# Place the top cake layer on top of the cherries, and repeat the process of covering the cake layer with cherry syrup.
# Cover the cake with a generous layer of whipped cream (either on top only or on both the top and sides, as you prefer). The whipped cream can be piped with a [[Cookbook:Pastry Bag|pastry bag]] and tips if desired, or it can be spread on with a spoon or spatula. Arrange the reserved cherries in a decorative pattern on top of the cake.
# If desired, shave a block of semi-sweet chocolate to make chocolate curls. Add chocolate shavings to the top or sides of the cake.
# Place assembled cake in the refrigerator to rest for 4–12 hours before serving.
== Notes, tips, and variations ==
* The cherries can be made several days in advance and stored in the refrigerator. You need both the cherries and the syrup.
* You can use canned cherries (cherries in juice, not cherries in ready-made pie filling). However, they are likely to be very soft even before you cook them to make the flavored syrups. Shorten the first cooking time and stir gently.
* The cake can be baked the day before or the morning of serving. If made far in advance, it should be frozen—defrost before assembling the cake.
* If you want to have more cake layers, use a smaller diameter cake pan, and halve the cakes horizontally to make four thin layers. This may change the cooking time for the cakes, and you will need more whipped cream if you want to completely coat the cake on all sides.
* The remaining cherry syrup can be used on top of pancakes, waffles, yogurt, ice cream, cheesecake, and other desserts, in fizzy drinks and cocktails, or as a glaze or marinade while cooking meat or vegetables.
== Similar recipes ==
<categorytree mode="all">Recipes for black forest cake</categorytree>
[[Category:Recipes for black forest cake]]
[[Category:Dessert recipes]]
[[Category:German recipes]]
[[Category:Recipes with metric units]]
[[Category:Recipes using egg]]
[[Category:Recipes using whipped cream]]
[[Category:Recipes using almond extract]]
[[Category:Recipes using cherry]]
[[Category:Recipes using cocoa powder]]
[[Category:Recipes using white sugar]]
[[Category:Recipes using all-purpose flour]]
[[Category:Recipes using gelatin]]
[[Category:Recipes for whipped cream]]
[[Category:Recipes using whipping cream]]
[[Category:Recipes using lemon juice]]
[[Category:Recipes using kirsch]]
6r5yl8xk03fubw1w9jmkj3f2q9qd5pw
MediaWiki talk:Protect-level-sysop
9
480805
4641199
4608556
2026-06-26T00:05:24Z
Codename Noreste
3441010
reply to 2600 etc ([[mw:c:Special:MyLanguage/User:JWBTH/CD|CD]])
4641199
wikitext
text/x-wiki
{{edit fully-protected|MediaWiki:Protect-level-sysop|answered=no}}
This and [[MediaWiki:Protect-level-autoconfirmed]] are technically wrong. These protection levels aren’t used to allow ''only''; they ''require'' having access to these user groups [Require (administrator/autoconfirmed or confirmed) access]. [[User:2600 etc|2600 etc]] ([[User talk:2600 etc|discuss]] • [[Special:Contributions/2600 etc|contribs]]) 05:07, 22 December 2025 (UTC)
: Right now, I don't think we need to reflect Wikipedia's preferred terms, including [[MediaWiki:Protect-level-autoconfirmed]]. [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 00:05, 26 June 2026 (UTC)
rrv5qycydu4dj02a9afhw4i44zebz1w
Taking Bearings: Artificial Intelligence in Knowledge Platforms and Open, Social Scholarship/Essential Contexts
0
483462
4641175
4638925
2026-06-25T20:09:15Z
Permareperterra
3495921
/* Histories & Theories of AI */ Some citations lacked periods at the end. I added them in. I also checked formatting of the citations up to (but not including) Chun, Jon, and Katherine Elkins,
4641175
wikitext
text/x-wiki
==Histories & Theories of AI==
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Ali, Syed Mustafa, Stephanie Dick, Sarah Dillon, Matthew L. Jones, Jonnie Penn, and Richard Staley. 2023. “Histories of Artificial Intelligence: A Genealogy of Power.” ''BJHS Themes'' 8: 1–18. https://doi.org/10.1017/bjt.2023.15.'''
</div>
The work of these authors seeks to move beyond “conventional origin myths” of AI by contextualizing the academic historical approach within their interdisciplinary backgrounds. As a result, Ali et al. argue that histories of broader processes (like industrialization, colonialism, and social science) can represent the “genealogy” of AI, which is not identified as a specific object but as a grouping of diverse technologies under a loose banner, requiring an equally diverse approach. Although AI is the “flagship of the Information Age”, it was clearly conditioned by the “Management Age”, as these “genealogies” feature four common thematic threads of “hidden labour”, “encoded behaviour”, “disingenuous rhetoric” and “cognitive injustice”. AI is therefore not only situated within the history of computing, but the history of control, the product of the interacting formalist and empiricist views of “intelligence” within Cold War epistemology. In many ways, AI’s refinement of formal abstraction reinforces and impresses Western systems and structures, so these authors do not critique AI with the goal of improvement, but to clarify what AI “is”, “is not”, and perhaps “should not” be.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Anderson, Marc M. 2024. “AI as Philosophical Ideology: A Critical Look Back at John McCarthy’s Program.” ''Philosophy & Technology'' 37 (2): 44. https://doi.org/10.1007/s13347-024-00731-1.'''
</div>
This paper critically analyzes the synthesis of McCarthy’s AI development program, identifying its goals’ nature, purpose, relationship to society, and implications upon morality and social control. Firstly, Anderson considers the most problematic themes of McCarthy’s early and middle writings, then arguing that McCarthy’s later works consolidated his stance by replacing “tentative assumptions” with “statements whose linkages with contemporaneous analytic philosophy are made unequivocally” and thereby present AI as “the outcome of a certain philosophical way of looking at the world”. Here, Anderson emphasizes McCarthy’s biases towards objectivism, scientism, and analytic behaviourism; tendency to enable progress in AI by waiting to identify risks; positioning of philosophy as subordinate “handmaiden” to science; and uneasy presupposition humans have innate knowledge of the world’s object character (which AI will need added). To Anderson, the sum of the “ethical” aspects, “philosophical” aspects, and “competitive” nature of McCarthy’s program give it all the fundamental “characteristics of an ideological program”. This ideology has had deep direct influence, for example by joining AI ethics to consequentialist dilemmas like the “Trolley problem”, and deep indirect influence, for example by influencing a modular and component technical approach. Anderson argues this “ideology” was caused by McCarthy’s motive of making a “servile” and “stripped down model of human mental engagement without emotional qualities”. Overall, Anderson argues McCarthy’s conception of AI as a “perfectly rational abstraction of human thinking” involves severe misconceptions around rationality, and has “come to serve as a blind for increasing techno-corporate control of society” with its propagation of the belief that “AI systems should be controlled as servants”.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Bender, Emily M., Timnit Gebru, Angelina McMillan-Major, and Shmargaret Shmitchell. 2021. “On the Dangers of Stochastic Parrots: Can Language Models Be Too Big? 🦜.” In ''Proceedings of the 2021 ACM Conference on Fairness, Accountability, and Transparency'', 610–23. https://doi.org/10.1145/3442188.3445922.'''
</div>
Bender et al. critically analyze the environmental and social risks of ever larger language models trained with huge uncurated datasets from the web. Their first concern is the environmental costs of training language models, which require increasing energy and compute requirements that further environmental damages that are more likely to fall on marginalized populations. Their social concerns are that language models have the potential to reproduce hegemonic views, reinforce stereotypes, and further reify inequality due to the unrepresentativeness of their training data. Despite the increasing amounts of data ingested in these models, the authors argue that size does not guarantee diversity because there are people who are not on the web (and therefore not included in training data), the content of marginalized people online is less likely to be included in these large datasets and, if it is, it might be filtered out during the data preparation process. Therefore, the authors urge developers to stop using larger training datasets if they cannot be documented. As an alternative, they suggest curating and documenting smaller datasets created for specific purposes, evaluating models by the amount of resources they consume, and developing research that centers the people who are more likely to be adversely affected by the resulting technology.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Berry, David M. 2025. “Synthetic Media and Computational Capitalism: Towards a Critical Theory of Artificial Intelligence.” ''AI & Society'' 40: 5257–5269. https://doi.org/10.1007/s00146-025-02265-2.'''
</div>
Berry develops a critical theory of artificial intelligence centered on what he terms the "algorithmic condition"—a historical moment when computational systems generate cultural content indistinguishable from human production, thereby destabilizing traditional markers of authenticity and authorship. Engaging with Frankfurt School critical theory, particularly concepts of false consciousness and reification, Berry argues that contemporary AI represents a qualitative transformation he calls "the Inversion," where machine-generated works not only replicate but actively reshape the grounds upon which experience and meaning are constituted. This moves beyond mechanical reproduction (Benjamin) or cybernetic feedback (Wiener) toward what Berry theorizes as "post-consciousness," where boundaries between individual and synthetic consciousness become porous. His concept of "diffusionisation" describes how AI systems dissolve cultural forms into probabilistic vector spaces and reconstitute them through latent space manipulation, producing "AI slop"—low-quality synthetic content that infiltrates information ecosystems with garbled meaning. Berry positions this transformation within "computational capitalism," arguing that algorithmic mediation now structures forms of life in ways that demand new critical methods. His "constellational analysis" proposes mapping the interdependencies among technical systems, cultural production, and political-economic structures to resist subsumption into algorithmic logics. Where earlier automation debates focused on task substitution, Berry foregrounds how synthetic media transforms the infrastructure of meaning-making itself, rendering questions of interpretability and embedded bias not as technical problems but as symptoms of deeper epistemic and political reconfigurations under computational conditions.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Chun, J., & Elkins, K. (2023). “The Crisis of Artificial Intelligence: A New Digital Humanities Curriculum for Human-Centred AI.” ''International Journal of Humanities and Arts Computing'' 17 (2). https://doi.org/10.3366/ijhac.2023.0310.'''
</div>
Chun and Elkins position AI's rapid advancement as precipitating multiple interlocking crises—in higher education, in diversity and inclusion within technology fields, and in the broader socioeconomic fabric—that demand a specifically humanities-oriented pedagogical response. Their intervention challenges the prevalent assumption that AI literacy should emerge from STEM-dominated curricula, arguing instead that Digital Humanities offers distinctive pathways for cultivating critical engagement with computational systems. Where conventional computer science education treats AI as primarily a technical phenomenon requiring engineering skills, Chun and Elkins foreground reflective and collaborative meaning-making, insisting that the most effective AI tools amplify rather than replace human intellectual engagement. Their framework explicitly connects pedagogical design to civic preparation, positioning students not as mere consumers or operators of AI systems but as critically engaged citizens capable of interrogating the social and economic implications of algorithmic mediation. Drawing on theories of human-centered computing, they articulate an AI DH curriculum structured around two core commitments: opening meaningful research avenues for humanities scholars working with computational methods and addressing DEI shortcomings by engaging students traditionally alienated by conventional STEM pathways. Their approach implicitly challenges the epistemic authority claims embedded in AI discourse—the fantasy that technical expertise alone can adjudicate questions about algorithmic deployment—by insisting that humanistic inquiry offers essential resources for navigating AI's transformative effects on knowledge production, labor organization, and cultural representation.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Chung, Hiu-Fung. 2025. “Betting on (Un)Certain Futures: Sociotechnical Imaginaries of AI and Varieties of Techno-Developmentalism in Asia.” ''Information, Communication & Society'', 1–18. https://doi.org/10.1080/1369118X.2025.2535427.'''
</div>
Chung redirects scholarly attention from dominant AI powers—China, the United States—to economically advanced but geographically non-dominant Asian societies: Singapore, Hong Kong, and Taiwan. Mobilizing the concept of "techno-developmentalism" to analyze how developmental states harness technological innovation for political-economic projects, Chung identifies three distinct imaginaries that emerge from specific historical, institutional, and geopolitical conditions. Singapore's "cybernetic pragmatism" deploys AI to legitimize neoliberal authoritarianism, embedding computational governance as a continuation of technocratic rule. Hong Kong's "techno-entrepreneurship" imaginary seeks to refashion financial capitalism through AI-driven innovation, positioning the territory as a global fintech hub amid shifting relationships with mainland China. Taiwan's "defensive survival modality" frames AI development as simultaneously addressing internal socioeconomic instability and external threats from superpower rivalry, particularly cross-strait tensions. Chung's analysis challenges the Global North/South binary that structures much AI governance literature, revealing how small advanced economies navigate strategic coupling with global tech industries while managing profound uncertainties about AI-centric reforms. His discourse analysis of policy documents from the early 2010s through 2024 demonstrates how national imaginaries encode assumptions about automation's effects on labor markets, the appropriate balance between state coordination and market mechanisms, and the role of computational infrastructure in securing geopolitical position. This comparative framework illuminates how different state formations mobilize AI to address divergent crises of legitimacy, capital accumulation, and sovereign security.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''van Es, Karin, and Dennis Nguyen. 2024. “‘Your Friendly AI Assistant’: The Anthropomorphic Self-Representations of ChatGPT and Its Implications for Imagining AI.” ''AI & Society'' 40: 3591–3603. https://doi.org/10.1007/s00146-024-02108-6.'''
</div>
van Es and Nguyen analyze how “social-technical imaginaries” invoked by “self-representations” of GenAI could influence public perception of the technology. These “socio-technical imaginaries” are a category of trending concept, which can exist in contrast, as both utopian and dystopian conceptions of AI are present in public discourse. These are dynamically changeable, often strategically promoted by tech companies to influence regulation, and influenced by a variety of media technologies and ecologies with equally diverse social, cultural, and political implications. The authors identify a range of current “socio-technical imaginaries” of AI. This includes: misconceived “magical thinking”, largely produced by poor terminology; speculative, exaggerative debates on AI capabilities, which distract from actualized and present risks; visual motifs correlating intelligence, efficiency, logic, duty, and trust, which are not inherent to Generative AI; and anthropomorphism, which brings a slew of problems surrounding social biases. To study AI “self-representations”, van Es and Nguyen have ChatGPT generate fifty images and fifty-eight sections of text, responding to several variations of the prompt “create an image of yourself”. The authors then perform an empirical, qualitative-exploratory analysis of this content to examine which “socio-technical imaginaries” dominate the material. These images most significantly emphasized ChatGPT’s alleged “social intelligence”, depicted as a friendly research assistant possessing “real” intellect - ironically often surrounded by books. Anthropomorphism was usually present, with eighty-two percent of images portraying AI as humanoid, and a further six percent as a human brain. Futuristic motifs like holograms, metallic shades, and the cosmos portrayed AI as near-magical. Textual responses expressed these same themes, demonstrating consistent messaging. Taken together, these generated responses encourage overlooking the ethical and legal challenges posed by trending GenAI technologies, “overestimate their capabilities”, and “potentially lead to mistakenly perceive them as trustworthy companions”. This raises questions as to what extent specific guidelines to these responses were programmed by OpenAI, or indicative of popular opinion.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Jones, Matthew L. 2023. “AI in History.” ''American Historical Review'' 128 (3): 1360–67. https://doi.org/10.1093/ahr/rhad361.'''
</div>
Jones explores how evolving approaches to AI research reflect upon the importance of studying artificial intelligence’s history. He believes traditional attempts to produce “symbolic” AI have been proven as misguided, comparing their failures to the traditionally unpopular “empiricist” approach. This approach is now dominant and involves the use of large-scale algorithms to capitalize upon the “unreasonable effectiveness of data” via “machine learning”. However, this shift in trends has also forced the meaning and capabilities of “artificial intelligence” to be reconsidered, now threatening “professions centred on particularity” like history. In response, Jones argues modern AI cannot be considered a “neutral substratum” but as a reflection of human creations - including their best and worst traits. Historians are experts at detecting bias, and this understanding of AI’s historical context is clearly necessary for its appropriate application, so historians should be playing a fundamental role in ensuring AI’s critical use. Jones believes historians can best do this by highlighting the “traces of labour” that can illustrate the “granular complex reality” of AI.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Klein, Lauren, Meredith Martin, André Brock, Maria Antoniak, Melanie Walsh, Jessica Marie Johnson, Lauren Tilton, and David Mimno. 2025. “Provocations from the Humanities for Generative AI Research.” Preprint, ''arXiv'', February 26. https://arxiv.org/abs/2502.19190.'''
</div>
Klein et al. explore the stakes of engaging with AI by juxtaposing the humanistic scholar’s investigation of the ‘human’ with the ‘anti-human’ approach of AI, a dichotomy they contextualize within late-stage capitalism. Klein et al. argue that AI’s generalist, binary approach ‘distorts “culture’ to content’. AI programs thereby conduct a ‘statistical enactment of… ideology’, imposing an objectivist European modernist framework of understanding upon the data. This binary conception of data is highlighted within ideas of ‘pure’ versus ‘toxic’ training data, which dismiss that the material inherently ‘reflects cultures and consists of expressions of those cultures’. Even content not being included ‘biases’ the rest of the data, so the best practices of open scholarship cannot fix the root issue - the only way to resolve the issues caused by ‘bias’ is to target the sources of the underlying structural problems. Klein et al. argue this flawed situation was fueled by ‘corporate spokespeople parroting AI hype’ to research - and that this relationship’s politicization should be a particular source of concern. Klein et al. argue AI can still serve a purpose, however. They propose AI with smaller datasets will produce more accurate information when tailored for specific topics and with input from experts of the humanities. Humanists cannot solely effect change, however, as ‘technical researchers must recognize the institutional asymmetries’ of administrative support and funding available to ensure development of ‘humanistic’ AI is a truly equal and interdisciplinary effort.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''McIntosh, Timothy R., Susnjak, Teo, Liu, Tong, Watters, Paul, and Halgamuge, Malka N.. 2023. “From Google Gemini to OpenAI Q* (Q-Star): A Survey of Reshaping the Generative Artificial Intelligence (AI) Research Landscape.” ''Technologies''. https://doi.org/10.3390/technologies13020051.'''
</div>
McIntosh et al. offer a survey of AI development’s frontiers targeted at fellow experts of the field, focussing on evolving “agentic” AI and its resulting research applications. Covering developments, they primarily employ case studies to demonstrate how multimodal AI could eclipse undynamic LLMs, but various “advanced learning techniques” and developments in model architecture are also outlined. On this topic, a table is presented to quantify the relevance of research fields and subfields of AI development. Agentic AI’s possible applications include aiding research by bolstering academic integrity, its market relevance, and its “creative” purposes. McIntosh et al. even argue that development of AGI with “symbolic reasoning” and “probabilistic inference” could handle issues like climate change, considered as a long-term but significant possibility. Therefore, this work is primarily theoretical, with McIntosh et al. centralizing AI’s idealistic applications. However, they do acknowledge AI must be developed with ethical and social principles, for which interdisciplinary cooperation is necessary.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Mao, Yishu, Vanessa Richter, and Christian Katzenbach. (2025). "Strategising imaginaries: How corporate actors in China, Germany and the US shape AI governance." ''Big Data & Society'' 12 (1). https://doi.org/10.1177/20539517251400727.'''
</div>
Mao, Richter and Katzenbach systematize the concept of "sociotechnical imaginaries" as an analytical framework for understanding how collective visions of AI futures shape governance, investment, and public discourse. Engaging explicitly with science and technology studies scholarship—particularly Jasanoff and Kim's formulation of imaginaries as "collectively held, institutionally stabilized, and publicly performed visions"—they demonstrate how AI's meaning emerges through contested negotiations among stakeholders from industry, government, academia, media, and civil society. Their comparative analysis across the United States, China, and Germany challenges simplistic national characterizations, revealing heterogeneous and often contradictory imaginaries even within single regulatory regimes. Where US discourse fragments across multiple geographic AI hubs, German imaginaries center on EU policy compliance and regulatory frameworks, while Chinese articulations align tightly with party-state directives that minimize local variation. The source argues that these imaginaries function performatively, not merely representing AI's future but actively mobilizing resources, legitimating interventions, and establishing trajectories for development. Their framework illuminates how benchmark cultures, optimization narratives, and investor expectations become embedded in technical choices through discursive processes that precede and exceed engineering decisions. By foregrounding stakeholder co-dependencies and cross-national dynamics, the authors position AI imaginaries as sites where epistemological assumptions about intelligence, automation, and progress become institutionalized through political-economic mechanisms—a contribution that connects discourse analysis to questions of power, accountability, and the material reorganization of labor and knowledge production.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Whiteley, Paul. 2023. “Why Artificial Intelligence Is a Misnomer.” ''London School of Economics and Political Science Politics and Policy Blog'', October 19. https://blogs.lse.ac.uk/politicsandpolicy/why-artificial-intelligence-is-a-misnomer/.'''
</div>
Whiteley criticizes the use of the term artificial intelligence, noting that while such technologies can be valuable for automating specific tasks, the term John McCarthy used in the 1950s was a “disservice.” He argues that the term anthropomorphizes what is essentially a form of computer-assisted statistical analysis. Much of what we call AI functions as a sophisticated prediction system that processes vast amounts of data to produce answers, without any real understanding of the underlying concepts or theories. Whiteley further distinguishes between algorithms, which follow set procedures to identify patterns and make predictions, and inference, which involves interpreting and explaining why those patterns occur. He concludes that the ultimate goal in the field of AI is to create systems capable of predicting behavior across diverse problems. However, he emphasizes that current AI algorithms remain highly specialized, excelling in narrow tasks but lacking the flexibility and understanding required for true general intelligence.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Zeffiro, Andrea. 2024. “Automating (In)securities: Cybersecurity’s AI Imaginaries.” Paper presented at EASST/4S, 2024. https://nomadit.co.uk/conference/easst-4s2024/p/14156.'''
</div>
Zeffiro interrogates cybersecurity's AI imaginaries through case studies of IBM Watson for Cybersecurity, CrowdStrike's Charlotte AI, and Google's Sec-PaLM, revealing how corporate narratives of AI as "game changer" and "democratizing force" systematically obscure differential vulnerabilities and normative biases. Her analysis challenges the prevalent framing of AI-driven threat detection as technically neutral automation, arguing instead that these systems encode and amplify assumptions about what constitutes risk, who merits protection, and whose insecurities remain invisible. Drawing on critical security studies and science and technology studies, Zeffiro demonstrates how generative AI applications in cybersecurity automate not merely data collection and pattern recognition but also the normative judgments about threat hierarchies embedded in training regimes and performance metrics. Her concept of "automating insecurities" captures this dual process: while AI tools promise enhanced security through real-time threat response with minimal human intervention, they simultaneously institutionalize particular understandings of vulnerability that reflect corporate priorities and market positioning in the "AI arms race." Zeffiro's analysis connects these imaginaries to epistemic claims about AI's inevitability, showing how IBM, CrowdStrike, and Google construct future visions that naturalize their technological approaches while marginalizing alternative security paradigms. By foregrounding what these imaginaries omit—the differential distribution of cyber vulnerabilities across social positions, the political economy of security infrastructure, the discretionary authority embedded in algorithmic triage—Zeffiro positions cybersecurity AI as participating in broader patterns of automation that redistribute power and accountability rather than merely enhancing technical capabilities.
== Past Relation to OSS-Aligned Communities ==
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Carnegie Endowment for International Peace. 2024. ''Beyond Open vs. Closed: Emerging Consensus and Key Questions for Foundation AI Model Governance''. https://carnegieendowment.org/research/2024/07/beyond-open-vs-closed-emerging-consensus-and-key-questions-for-foundation-ai-model-governance?lang=en.'''
</div>
The report dismantles the binary framing—open vs. closed—that has organized foundation model governance debates, replacing it with a multidimensional spectrum where weight release is only one variable among many (architecture, training data, documentation, licensing terms, structured access). Seven consensus points establish that "openness" serves multiple, sometimes conflicting values (transparency, competition, safety, inclusion) and that weight release amplifies both beneficial and harmful potential without symmetry—its irreversibility and resistance to post-release monitoring create a qualitatively different governance problem than closed deployment, even though closed models' theoretical safety advantages are unevenly realized in practice. The report introduces "precautionary friction" (staged/structured release calibrated to marginal risk over a defined baseline) as the operative governance concept, explicitly rejecting both blanket openness and blanket restriction. Seventeen open questions then expose the infrastructure gaps: evaluation science remains embryonic, post-release monitoring is under-theorized, risk thresholds published by labs lack enforcement specificity, and Global South labor and data contributions are structurally undervalued. This source clarifies the claim that software-style "open source" maps poorly onto foundation models and that hybrid, graduated-release frameworks are where policy consensus is actually forming.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Mitra, Bhaskar, Henriette Cramer, and Olya Gurevich. 2024. “Sociotechnical Implications of Generative Artificial Intelligence for Information Access.” Preprint, ''arXiv'', May 19. https://doi.org/10.48550/arXiv.2405.11612.'''
</div>
Bhaskar et al. diagnose “information access” under generative AI as a sociotechnical settlement rather than a neutral upgrade to search: models do not just retrieve, they intermediate credibility, reshape attention, and re-allocate epistemic authority through interfaces that compress provenance and uncertainty. Their framing is especially useful for open, social scholarship because it links familiar problems of access (indexing, ranking, evaluation) to newer constraints created by platform dependence, opaque model behavior, and the enclosure of research pathways behind proprietary tooling and data. Read through the lenses of industry capture and AI imaginaries, the chapter clarifies how promises of universal assistants can normalize monopoly infrastructures while shifting audit burdens onto users and public institutions. It also implicitly strengthens open communities’ insistence on reproducibility: without open benchmarks, inspectable logs, and preservable corpora, “trustworthy information” becomes a brand claim rather than an evaluable property. The ideas bridge directly to libraries, repositories, and information policy by treating curation, metadata, and stewardship as counter-monopoly infrastructure for accountable AI-mediated access.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Open Source Initiative. The Open Source AI Definition 1.0 (2024–2025). https://opensource.org/ai'''
</div>
OSI’s Open Source AI Definition 1.0 operationalizes “open” as a bundle of enforceable freedoms rather than a branding claim, and it does so by porting the open source software tradition into the AI stack where “source” is more than just code. The definition makes the four freedoms—use, study, modify, share—the evaluative core, then adds a crucial precondition: exercising any of these rights requires access to the preferred form for making modifications and the means to use the system. That move is the governance lever: it blocks “open weights” releases from standing in for openness when the artifacts needed to understand or change system behavior are withheld. On OSI’s framing, openness is not satisfied by permissive inference access or a model file alone; it is satisfied when the system is provisioned so that auditability and alteration are practically possible, including transparency sufficient to trace how results were created and where components (notably data sources) come from. The definition is therefore designed as an anti-openwashing instrument: it supplies a community standard that can be applied to legal/technical packaging to distinguish genuinely open AI systems from hybrid offerings that preserve vendor control through restrictions or missing components. OSI explicitly positions this as policy-relevant infrastructure—an interpretive anchor for regulators and OSS communities trying to resist enclosure pressures while preserving permissionless collaboration. This is a community standard, not a journal article; it is nonetheless important for governance, policy, and OSS alignment.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Vake, Domen, Bogdan Šinik, Jernej Vičič, and Aleksandar Tošić. 2025. “Is Open Source the Future of AI? A Data‑Driven Approach.” Preprint, ''arXiv'', January 27. https://arxiv.org/abs/2501.16403'''
</div>
Vake et al. analyze the data of open-source large language models shared on HuggingFace to explore if the open-source community influences the development of LLMs. The authors found that the AI open-source community is expanding rapidly, and it has enhanced the performance of a handful of popular models. However, open-source AI depends on businesses to develop base models and release them openly, but there are few incentives to do so because it risks their intellectual property and competitive edge. Furthermore, AI is different from the development of open-source software because the general public cannot privately run these models. Therefore, the authors conclude that the future of AI development could be similar to the software-as-a-service model, in which the open-source community contributes to model development, while companies generate revenue from model usage.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''White, Matt, Ibrahim Haddad, Cailean Osborne, Xiao-Yang Liu, Ahmed Abdelmonsef, Sachin Varghese, and Arnaud Le Hors. 2024. “The Model Openness Framework: Promoting Completeness and Openness for Reproducibility, Transparency, and Usability in AI.” Preprint, ''arXiv'', March 20. https://doi.org/10.48550/arXiv.2403.13784'''
</div>
White et al.'s Model Openness Framework (MOF) represents an effort to translate open-source software principles into AI research practices, addressing the growing gap between claims of "openness" and actual transparency in AI model development. Developed through the Linux Foundation's AI & Data Foundation, the framework establishes a three-tiered classification system that specifies which components (code, data, documentation, trained weights, evaluation procedures) must be released under open licenses for models to qualify as "Class III: Open Model," "Class II: Open Tooling," or "Class I: Open Science." The authors' intervention addresses what they term "openwashing"—the strategic use of "open source" rhetoric by companies releasing models with restrictive licenses or incomplete artifacts. By codifying 17 critical components for complete model releases, they make visible the specific practices required for reproducibility and scrutiny, challenging the binary conception of openness inherited from software. Their framework reveals that AI "openness" exists on a spectrum of completeness, from minimal weight release to full disclosure of training data, intermediate checkpoints, and development documentation. Positioned within debates about responsible AI development, the MOF represents a community-driven effort to establish norms before they become ossified by corporate practice or regulatory fiat. The authors draw explicitly on open science principles (FAIR data, reproducibility standards) while adapting them to AI's unique characteristics—particularly the centrality of training data and the distinction between model architecture (code) and trained parameters (data).
== Bias and Technological Determinism ==
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Akter, Shahriar, Grace McCarthy, Shahriar Sajib, Katina Michael, Yogesh K. Dwivedi, John D’Ambra, and K. N. Shen. 2021. “Algorithmic Bias in Data-Driven Innovation in the Age of AI.” ''International Journal of Information Management'' 60: 102387. https://doi.org/10.1016/j.ijinfomgt.2021.102387.'''
</div>
Akter and colleagues theorize algorithmic bias as emerging from three distinct but interacting sources—data bias, method bias, and societal bias— positioning bias as structural phenomenon inscribed across the entire data-driven innovation (DDI) lifecycle rather than localized technical artifact amenable to isolated correction. Their case study of Australia's Robo-Debt scheme demonstrates how algorithmic systems inherit and amplify existing inequities and foregrounds "dynamic managerial capability" as essential for addressing bias. The authors challenge purely technical approaches, arguing instead that organizational capacity to recognize, interrogate, and respond to bias across data provenance, algorithmic design, and deployment contexts determines whether DDI produces equitable or discriminatory outcomes. This positions bias mitigation as ongoing institutional work requiring cross-functional expertise rather than one-time technical intervention. Their framework implicitly contests technological determinism by revealing how managerial choices about data collection priorities, acceptable error rates, and stakeholder consultation shape algorithmic outcomes in ways that exceed engineering decisions. The emphasis on societal bias as distinct category acknowledges that algorithms operate within and reproduce broader patterns of structural inequality—assumptions about creditworthiness, employability, or welfare eligibility that reflect historical discrimination. Akter et al.'s intervention thus connects bias scholarship to organizational studies and innovation management, positioning algorithmic fairness not as mathematical property but as emergent from institutional practices, power relations, and the political-economic contexts within which DDI unfolds.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Jarrahi, Mohammad Hossein, Gemma Newlands, Min Kyung Lee, Christine T. Wolf, Eliscia Kinder, and Will Sutherland. 2021. “Algorithmic Management in a Work Context.” ''Big Data & Society'' 8 (2). https://doi.org/10.1177/20539517211020332.'''
</div>
Analyzes algorithmic management as a sociotechnical phenomenon reshaping power, discretion, and information flows in organizations; details opacity at technical and organizational levels. Exposes determinist narratives in “smart” automation of management decisions; shows how design choices redistribute authority and labor—central to a nondeterministic, governance-forward stance.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Sartori, L., & Theodorou, A. 2022. “A sociotechnical perspective for the future of AI: narratives, inequalities, and human control.” ''Ethics and Information Technology'' 24 (1), 4. https://doi.org/10.1007/s10676-022-09624-3'''
</div>
Sartori and Theodorou position AI as a "magnifying glass" that automates and amplifies existing social inequalities rather than introducing bias as a novel technical problem, directly challenging narratives that frame fairness as achievable through post hoc algorithmic adjustment. Their sociotechnical framing insists that intelligent machines operate within specific institutional contexts where historical patterns of discrimination become encoded in data collection, annotation practices, and deployment decisions—a structural account that resists reduction to technical fixes. The authors engage critically with the AI technical community's emphasis on transparency, explainability, accountability, and contestability, acknowledging these as necessary but insufficient responses that risk becoming "panaceas" if divorced from attention to power asymmetries and organizing visions. Their analysis of technological narratives reveals how AI discourse reflects and reproduces traditional lines of social, economic, and political inequality: who gets to articulate AI futures, whose concerns register as legitimate risks, and which imaginaries gain institutional traction. By foregrounding narratives as both reflecting organizing visions and constituting "tangible signs" of inequality, Sartori and Theodorou demonstrate how deterministic framing—treating AI development as inevitable—forecloses deliberation about alternative design pathways. Their call for "diverse approaches" and "richer knowledge about narratives" positions non-determinism as methodological commitment: attending to contingent choices, plural stakeholder perspectives, and varied criteria of success that resist singular optimization logics. This intervention connects bias scholarship to governance debates, arguing that human control requires not just technical interpretability but institutional mechanisms for contestation that acknowledge AI practice as fundamentally interdisciplinary and politically consequential.
== Knowledge Foundations ==
===Diversity===
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Arbuckle, Alyssa. 2020. “How Can We Broaden and Diversify Humanities Knowledge Translation?” ''Pop! Public. Open. Participatory'', no. 2. https://doi.org/10.48404/pop.2020.12'''
</div>
Articulates diversity as a condition for valid public-facing scholarship; emphasizes inclusive modes of knowledge translation and participatory approaches resonant with OSS.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Arthur, Paul L., Lyida Hearn, Lucy Montgomery, Hugh Craig, Alyssa Arbuckle, & Ray Siemens. (2021). “Open Scholarship in Australia: A Review of Needs, Barriers, and Opportunities.” ''Digital Scholarship in the Humanities'' 36 (4), 795–812. https://doi.org/10.1093/llc/fqaa063'''
</div>
Australian context scan identifies structural barriers and opportunities for diverse participation in open scholarship.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Crompton, Constance, Lori Antranikan, Ruth Truong, & Paige Maskell. 2020. “Familiar Wikidata: The Case for Building a Data Source We Can Trust.” ''Pop! Public. Open. Participatory'', no. 2. https://doi.org/10.48404/pop.2020.02'''
</div>
Makes the case for community governance and trust in open data infrastructures to safeguard plural representation and mitigate erasure in knowledge graphs.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Fanning, Katie, Claire Kim, and Jon Saklofske. 2023. “Interactive Inspirations: The Case for Incorporating Joy and Play in Open Social Scholarship.” ''Pop! Public. Open. Participatory'', no. 5. https://doi.org/10.54590/pop.2023.012'''
</div>
Argues that Open Social Scholarship must move beyond simple open access by cultivating "joy and play" as critical, anti-capitalist methodologies for community engagement. They demonstrate this through a prototype parody app and use its practical limitations to expose the structural friction between sustaining non-extractive digital commons and the realities of privatized app ecosystems and precarious academic funding.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Rockwell, Geoffrey, Kaylin Land, and Andrew MacDonald. 2021. “Social Analytics Through Spyral.” ''Pop! Public. Open. Participatory'', no. 3. https://doi.org/10.54590/pop.2021.004 '''
</div>
Demonstrates community-aware analytics for scholarly communities; touches on representational choices and the risks of flattening diverse practices through metrics.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Siemens, Lynne, and the INKE Research Group (2023). “I Stayed for the Community: Collaboration and Community in an Open Social Scholarship Research Project.” ''Pop! Public. Open. Participatory'', no. 5. https://doi.org/10.54590/pop.2023.013'''
</div>
Views the success of open social scholarship as depending heavily on "heritage relationships" and the invisible labor of interpersonal maintenance, treating cross-sector collaboration as a deliberate methodological challenge rather than a natural byproduct of funding. Highlights a structural tension between community-driven qualitative goals and rigid academic metrics, urging institutions to formally recognize and resource the relational infrastructure that sustains Digital Humanities projects.
===Mobilisation===
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Arbuckle, Alyssa, Ray Siemens, Jon Bath, Constance Crompton, Laura Estill, Tanja Niemann, Jon Saklofske, and Lynne Siemens. 2022. “An Open Social Scholarship Path for the Humanities”. ''The Journal of Electronic Publishing'' 25 (2). https://doi.org/10.3998/jep.1973'''
</div>
Defines OSS practices and infrastructures to support translation, engagement, and reciprocal exchange between researchers and publics.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Jensen, Graham. 2023. “Introduction: Digital Knowledge Commons, Scholarly Connection, and the Evolution of Open Scholarship.” ''Open Scholarship Press Curated Volumes: Connection''. https://doi.org/10.21428/47bc126e.0ca461a4'''
</div>
Connects social scholarly tools and commons-based infrastructures to mobilization pathways; highlights interoperability and community practices.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Nelson, Brent, Miguel Dela Pena, and the Prototyping the Digital Archive Team & the INKE Research Group. 2023. “No Journal is an Island: The John Donne Journal and the Possibilities of Open Access.” ''Pop! Public. Open. Participatory'', no. 5. https://doi.org/10.54590/pop.2023.007'''
</div>
Case study of OA pathways as mobilization; addresses circulation, visibility, and engagement with broader publics.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Winter, Caroline. 2023. “Introduction: Open Scholarship Policy in Focus.” ''Open Scholarship Press Curated Volumes: Policy''. https://doi.org/10.21428/47bc126e.5abba88b'''
</div>
Frames policy as a vehicle for knowledge mobilization across sectors; emphasizes provenance, accountability, and public value alignment.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Winter, Caroline, Tyler Fontenot, Luis Meneses, Alyssa Arbuckle, Ray Siemens, and the ETCL and INKE Research Groups. 2020. “Foundations for the Canadian HSS Commons: Exploring the Possibilities of Digital Research Communities.” ''Pop! Public. Open. Participatory'', no. 2. https://doi.org/10.48404/pop.2020.05'''
Maps HSS Commons as mobilization infrastructure; addresses governance mechanisms, provenance, and dialogic engagement in a Canadian context.
</div>
===Platforms===
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Bullard, Julia. 2023. “Describing the HSS Commons: The View from Metadata.” ''Pop! Public. Open. Participatory'', no. 5. https://doi.org/10.54590/pop.2023.004 '''
</div>
Metadata as platform backbone; shows how descriptive schemas shape visibility/legitimacy; connects to interoperability and inclusive description.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Goddard, Lisa. (2021). “Persistent Identifiers as Open Research Infrastructure to Reduce Administrative Burden.” ''Pop! Public. Open. Participatory'', no. 3. https://doi.org/10.54590/pop.2021.006 '''
</div>
PIDs as platform connective tissue; crucial for provenance, traceability, and platform interoperability across repositories/journals.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Jensen, Graham, Alyssa Arbuckle, Caroline Winter, Talya Jesperson, Tyler Fontenot, Ray Siemens, and the ETCL and INKE Research Groups. 2022. “Fostering Digital Communities of Care: Safety, Security, and Trust in the Canadian HSS Commons.” ''IDEAH'' 3 (2). https://ideah.pubpub.org/pub/h7927ugt '''
</div>
Governance and moderation as platform design commitments; aligns with OSS values around safety and reciprocity.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Meneses, Luis. 2020. “Integrating the Social Media Engine with Large-scale Open Access Repositories: A Discussion.” ''Pop! Public. Open. Participatory'', no. 2. https://doi.org/10.48404/pop.2020.04 '''
</div>
Explores platform coupling between OA repositories and social layers; anticipates AI-mediated discovery/recommendation impacts on visibility.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Turin, Mark. 2021. “From Orality to Open: Innovations in Multimedia Monograph Publishing in the Humanities.” ''Pop! Public. Open. Participatory'', no. 3. https://doi.org/10.54590/pop.2021.005 '''
</div>
Platform affordances for multimodal scholarship; how platform standards and workflows enable plural forms and publics.
== Open Social Scholarship ==
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Arbuckle, Alyssa, and John Maxwell. (2019). “Modelling Open Social Scholarship Within the INKE Community.” ''KULA: Knowledge Creation, Dissemination, and Preservation Studies'' 3 (1), 1–8. https://doi.org/10.5334/kula.15'''
</div>
Moves “beyond open access” toward OSS practice by reworking scholarly communication workflows around collaboration, transparency, and community needs. Emphasizes infrastructure choices and governance as sites where values are enacted. Gives concrete criteria for participatory infrastructures and power‑sharing in scholarly communication; helpful to evaluate platform design choices.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Arbuckle, Alyssa, Ray Siemens, Jon Bath, Constance Crompton, Laura Estill, Tanja Niemann, Jon Saklofske, and Lynne Siemens. 2022. “An Open Social Scholarship Path for the Humanities.” ''Journal of Electronic Publishing'' 25 (2). https://doi.org/10.3998/jep.1973'''
</div>
A concise, peer‑reviewed articulation of open social scholarship (OSS) from INKE/ETCL leaders, translating principles into programs of action: public engagement, community training, policy, and infrastructure. Provides a normative baseline to assess whether platforms and practices foster dialogic exchange and mutuality rather than extraction.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Arthur, Paul L., Lyida Hearn, Lucy Montgomery, Hugh Craig, Alyssa Arbuckle, and Ray Siemens. 2021. “Open Scholarship in Australia: A Review of Needs, Barriers, and Opportunities.” ''Digital Scholarship in the Humanities'', 36 (4): 795–812. https://doi.org/10.1093/llc/fqaa063'''
</div>
Peer‑reviewed assessment from CA‑Aus collaborators surfaces structural barriers (policy, incentives, infrastructure) and opportunities for publicly engaged open scholarship. Frames how national policy, incentives, and infrastructure shape whether openness reduces or reproduces inequities.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''El Khatib, Randa, Lindsey Seatter, Tracey El Hajj, Conrad Leibel, Alyssa Arbuckle, Ray Siemens, Caroline Winter, and the ETCL and INKE Research Groups. 2019. “Open Social Scholarship Annotated Bibliography.” ''KULA'' 3 (1): 1–141. https://doi.org/10.5334/kula.58'''
</div>
Field‑defining synthesis of OSS foundations, surveying open access, participatory publishing, crowdsourcing, social knowledge creation, and policy. Establishes terminology and exemplars that connect openness with social responsibility. Defines a master index to map subdomains of openness and identify non‑AI precedents for care, accessibility, and accountability in scholarly infrastructures.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Maxwell, John W. 2015. “Beyond Open Access to Open Publication and Open Scholarship.” ''Scholarly and Research Communication'' 6 (3): 1–10. https://doi.org/10.22230/src.2015v6n3a202'''
</div>
Argues that simply “access” is insufficient; emphasizes usability, participatory review, and community‑responsive publishing workflows. Repositions openness as an ecosystem of practices with embedded care and accountability. Yields criteria for evaluating whether “openness” translates to meaningful, non‑extractive participation and shared authority in knowledge production.
{{Navigation|previous=Introduction|next=AI and Open}}
{{BookCat}}
6mcqjxerd7l35qypyb045y43rrttle3
4641176
4641175
2026-06-25T20:11:06Z
Permareperterra
3495921
Revised "Chun, Jon, and Katherine Elkins"
4641176
wikitext
text/x-wiki
==Histories & Theories of AI==
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Ali, Syed Mustafa, Stephanie Dick, Sarah Dillon, Matthew L. Jones, Jonnie Penn, and Richard Staley. 2023. “Histories of Artificial Intelligence: A Genealogy of Power.” ''BJHS Themes'' 8: 1–18. https://doi.org/10.1017/bjt.2023.15.'''
</div>
The work of these authors seeks to move beyond “conventional origin myths” of AI by contextualizing the academic historical approach within their interdisciplinary backgrounds. As a result, Ali et al. argue that histories of broader processes (like industrialization, colonialism, and social science) can represent the “genealogy” of AI, which is not identified as a specific object but as a grouping of diverse technologies under a loose banner, requiring an equally diverse approach. Although AI is the “flagship of the Information Age”, it was clearly conditioned by the “Management Age”, as these “genealogies” feature four common thematic threads of “hidden labour”, “encoded behaviour”, “disingenuous rhetoric” and “cognitive injustice”. AI is therefore not only situated within the history of computing, but the history of control, the product of the interacting formalist and empiricist views of “intelligence” within Cold War epistemology. In many ways, AI’s refinement of formal abstraction reinforces and impresses Western systems and structures, so these authors do not critique AI with the goal of improvement, but to clarify what AI “is”, “is not”, and perhaps “should not” be.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Anderson, Marc M. 2024. “AI as Philosophical Ideology: A Critical Look Back at John McCarthy’s Program.” ''Philosophy & Technology'' 37 (2): 44. https://doi.org/10.1007/s13347-024-00731-1.'''
</div>
This paper critically analyzes the synthesis of McCarthy’s AI development program, identifying its goals’ nature, purpose, relationship to society, and implications upon morality and social control. Firstly, Anderson considers the most problematic themes of McCarthy’s early and middle writings, then arguing that McCarthy’s later works consolidated his stance by replacing “tentative assumptions” with “statements whose linkages with contemporaneous analytic philosophy are made unequivocally” and thereby present AI as “the outcome of a certain philosophical way of looking at the world”. Here, Anderson emphasizes McCarthy’s biases towards objectivism, scientism, and analytic behaviourism; tendency to enable progress in AI by waiting to identify risks; positioning of philosophy as subordinate “handmaiden” to science; and uneasy presupposition humans have innate knowledge of the world’s object character (which AI will need added). To Anderson, the sum of the “ethical” aspects, “philosophical” aspects, and “competitive” nature of McCarthy’s program give it all the fundamental “characteristics of an ideological program”. This ideology has had deep direct influence, for example by joining AI ethics to consequentialist dilemmas like the “Trolley problem”, and deep indirect influence, for example by influencing a modular and component technical approach. Anderson argues this “ideology” was caused by McCarthy’s motive of making a “servile” and “stripped down model of human mental engagement without emotional qualities”. Overall, Anderson argues McCarthy’s conception of AI as a “perfectly rational abstraction of human thinking” involves severe misconceptions around rationality, and has “come to serve as a blind for increasing techno-corporate control of society” with its propagation of the belief that “AI systems should be controlled as servants”.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Bender, Emily M., Timnit Gebru, Angelina McMillan-Major, and Shmargaret Shmitchell. 2021. “On the Dangers of Stochastic Parrots: Can Language Models Be Too Big? 🦜.” In ''Proceedings of the 2021 ACM Conference on Fairness, Accountability, and Transparency'', 610–23. https://doi.org/10.1145/3442188.3445922.'''
</div>
Bender et al. critically analyze the environmental and social risks of ever larger language models trained with huge uncurated datasets from the web. Their first concern is the environmental costs of training language models, which require increasing energy and compute requirements that further environmental damages that are more likely to fall on marginalized populations. Their social concerns are that language models have the potential to reproduce hegemonic views, reinforce stereotypes, and further reify inequality due to the unrepresentativeness of their training data. Despite the increasing amounts of data ingested in these models, the authors argue that size does not guarantee diversity because there are people who are not on the web (and therefore not included in training data), the content of marginalized people online is less likely to be included in these large datasets and, if it is, it might be filtered out during the data preparation process. Therefore, the authors urge developers to stop using larger training datasets if they cannot be documented. As an alternative, they suggest curating and documenting smaller datasets created for specific purposes, evaluating models by the amount of resources they consume, and developing research that centers the people who are more likely to be adversely affected by the resulting technology.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Berry, David M. 2025. “Synthetic Media and Computational Capitalism: Towards a Critical Theory of Artificial Intelligence.” ''AI & Society'' 40: 5257–5269. https://doi.org/10.1007/s00146-025-02265-2.'''
</div>
Berry develops a critical theory of artificial intelligence centered on what he terms the "algorithmic condition"—a historical moment when computational systems generate cultural content indistinguishable from human production, thereby destabilizing traditional markers of authenticity and authorship. Engaging with Frankfurt School critical theory, particularly concepts of false consciousness and reification, Berry argues that contemporary AI represents a qualitative transformation he calls "the Inversion," where machine-generated works not only replicate but actively reshape the grounds upon which experience and meaning are constituted. This moves beyond mechanical reproduction (Benjamin) or cybernetic feedback (Wiener) toward what Berry theorizes as "post-consciousness," where boundaries between individual and synthetic consciousness become porous. His concept of "diffusionisation" describes how AI systems dissolve cultural forms into probabilistic vector spaces and reconstitute them through latent space manipulation, producing "AI slop"—low-quality synthetic content that infiltrates information ecosystems with garbled meaning. Berry positions this transformation within "computational capitalism," arguing that algorithmic mediation now structures forms of life in ways that demand new critical methods. His "constellational analysis" proposes mapping the interdependencies among technical systems, cultural production, and political-economic structures to resist subsumption into algorithmic logics. Where earlier automation debates focused on task substitution, Berry foregrounds how synthetic media transforms the infrastructure of meaning-making itself, rendering questions of interpretability and embedded bias not as technical problems but as symptoms of deeper epistemic and political reconfigurations under computational conditions.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Chun, Jon and Elkins, Katherine. (2023). “The Crisis of Artificial Intelligence: A New Digital Humanities Curriculum for Human-Centred AI.” ''International Journal of Humanities and Arts Computing'' 17 (2). https://doi.org/10.3366/ijhac.2023.0310.'''
</div>
Chun and Elkins position AI's rapid advancement as precipitating multiple interlocking crises—in higher education, in diversity and inclusion within technology fields, and in the broader socioeconomic fabric—that demand a specifically humanities-oriented pedagogical response. Their intervention challenges the prevalent assumption that AI literacy should emerge from STEM-dominated curricula, arguing instead that Digital Humanities offers distinctive pathways for cultivating critical engagement with computational systems. Where conventional computer science education treats AI as primarily a technical phenomenon requiring engineering skills, Chun and Elkins foreground reflective and collaborative meaning-making, insisting that the most effective AI tools amplify rather than replace human intellectual engagement. Their framework explicitly connects pedagogical design to civic preparation, positioning students not as mere consumers or operators of AI systems but as critically engaged citizens capable of interrogating the social and economic implications of algorithmic mediation. Drawing on theories of human-centered computing, they articulate an AI DH curriculum structured around two core commitments: opening meaningful research avenues for humanities scholars working with computational methods and addressing DEI shortcomings by engaging students traditionally alienated by conventional STEM pathways. Their approach implicitly challenges the epistemic authority claims embedded in AI discourse—the fantasy that technical expertise alone can adjudicate questions about algorithmic deployment—by insisting that humanistic inquiry offers essential resources for navigating AI's transformative effects on knowledge production, labor organization, and cultural representation.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Chung, Hiu-Fung. 2025. “Betting on (Un)Certain Futures: Sociotechnical Imaginaries of AI and Varieties of Techno-Developmentalism in Asia.” ''Information, Communication & Society'', 1–18. https://doi.org/10.1080/1369118X.2025.2535427.'''
</div>
Chung redirects scholarly attention from dominant AI powers—China, the United States—to economically advanced but geographically non-dominant Asian societies: Singapore, Hong Kong, and Taiwan. Mobilizing the concept of "techno-developmentalism" to analyze how developmental states harness technological innovation for political-economic projects, Chung identifies three distinct imaginaries that emerge from specific historical, institutional, and geopolitical conditions. Singapore's "cybernetic pragmatism" deploys AI to legitimize neoliberal authoritarianism, embedding computational governance as a continuation of technocratic rule. Hong Kong's "techno-entrepreneurship" imaginary seeks to refashion financial capitalism through AI-driven innovation, positioning the territory as a global fintech hub amid shifting relationships with mainland China. Taiwan's "defensive survival modality" frames AI development as simultaneously addressing internal socioeconomic instability and external threats from superpower rivalry, particularly cross-strait tensions. Chung's analysis challenges the Global North/South binary that structures much AI governance literature, revealing how small advanced economies navigate strategic coupling with global tech industries while managing profound uncertainties about AI-centric reforms. His discourse analysis of policy documents from the early 2010s through 2024 demonstrates how national imaginaries encode assumptions about automation's effects on labor markets, the appropriate balance between state coordination and market mechanisms, and the role of computational infrastructure in securing geopolitical position. This comparative framework illuminates how different state formations mobilize AI to address divergent crises of legitimacy, capital accumulation, and sovereign security.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''van Es, Karin, and Dennis Nguyen. 2024. “‘Your Friendly AI Assistant’: The Anthropomorphic Self-Representations of ChatGPT and Its Implications for Imagining AI.” ''AI & Society'' 40: 3591–3603. https://doi.org/10.1007/s00146-024-02108-6.'''
</div>
van Es and Nguyen analyze how “social-technical imaginaries” invoked by “self-representations” of GenAI could influence public perception of the technology. These “socio-technical imaginaries” are a category of trending concept, which can exist in contrast, as both utopian and dystopian conceptions of AI are present in public discourse. These are dynamically changeable, often strategically promoted by tech companies to influence regulation, and influenced by a variety of media technologies and ecologies with equally diverse social, cultural, and political implications. The authors identify a range of current “socio-technical imaginaries” of AI. This includes: misconceived “magical thinking”, largely produced by poor terminology; speculative, exaggerative debates on AI capabilities, which distract from actualized and present risks; visual motifs correlating intelligence, efficiency, logic, duty, and trust, which are not inherent to Generative AI; and anthropomorphism, which brings a slew of problems surrounding social biases. To study AI “self-representations”, van Es and Nguyen have ChatGPT generate fifty images and fifty-eight sections of text, responding to several variations of the prompt “create an image of yourself”. The authors then perform an empirical, qualitative-exploratory analysis of this content to examine which “socio-technical imaginaries” dominate the material. These images most significantly emphasized ChatGPT’s alleged “social intelligence”, depicted as a friendly research assistant possessing “real” intellect - ironically often surrounded by books. Anthropomorphism was usually present, with eighty-two percent of images portraying AI as humanoid, and a further six percent as a human brain. Futuristic motifs like holograms, metallic shades, and the cosmos portrayed AI as near-magical. Textual responses expressed these same themes, demonstrating consistent messaging. Taken together, these generated responses encourage overlooking the ethical and legal challenges posed by trending GenAI technologies, “overestimate their capabilities”, and “potentially lead to mistakenly perceive them as trustworthy companions”. This raises questions as to what extent specific guidelines to these responses were programmed by OpenAI, or indicative of popular opinion.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Jones, Matthew L. 2023. “AI in History.” ''American Historical Review'' 128 (3): 1360–67. https://doi.org/10.1093/ahr/rhad361.'''
</div>
Jones explores how evolving approaches to AI research reflect upon the importance of studying artificial intelligence’s history. He believes traditional attempts to produce “symbolic” AI have been proven as misguided, comparing their failures to the traditionally unpopular “empiricist” approach. This approach is now dominant and involves the use of large-scale algorithms to capitalize upon the “unreasonable effectiveness of data” via “machine learning”. However, this shift in trends has also forced the meaning and capabilities of “artificial intelligence” to be reconsidered, now threatening “professions centred on particularity” like history. In response, Jones argues modern AI cannot be considered a “neutral substratum” but as a reflection of human creations - including their best and worst traits. Historians are experts at detecting bias, and this understanding of AI’s historical context is clearly necessary for its appropriate application, so historians should be playing a fundamental role in ensuring AI’s critical use. Jones believes historians can best do this by highlighting the “traces of labour” that can illustrate the “granular complex reality” of AI.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Klein, Lauren, Meredith Martin, André Brock, Maria Antoniak, Melanie Walsh, Jessica Marie Johnson, Lauren Tilton, and David Mimno. 2025. “Provocations from the Humanities for Generative AI Research.” Preprint, ''arXiv'', February 26. https://arxiv.org/abs/2502.19190.'''
</div>
Klein et al. explore the stakes of engaging with AI by juxtaposing the humanistic scholar’s investigation of the ‘human’ with the ‘anti-human’ approach of AI, a dichotomy they contextualize within late-stage capitalism. Klein et al. argue that AI’s generalist, binary approach ‘distorts “culture’ to content’. AI programs thereby conduct a ‘statistical enactment of… ideology’, imposing an objectivist European modernist framework of understanding upon the data. This binary conception of data is highlighted within ideas of ‘pure’ versus ‘toxic’ training data, which dismiss that the material inherently ‘reflects cultures and consists of expressions of those cultures’. Even content not being included ‘biases’ the rest of the data, so the best practices of open scholarship cannot fix the root issue - the only way to resolve the issues caused by ‘bias’ is to target the sources of the underlying structural problems. Klein et al. argue this flawed situation was fueled by ‘corporate spokespeople parroting AI hype’ to research - and that this relationship’s politicization should be a particular source of concern. Klein et al. argue AI can still serve a purpose, however. They propose AI with smaller datasets will produce more accurate information when tailored for specific topics and with input from experts of the humanities. Humanists cannot solely effect change, however, as ‘technical researchers must recognize the institutional asymmetries’ of administrative support and funding available to ensure development of ‘humanistic’ AI is a truly equal and interdisciplinary effort.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''McIntosh, Timothy R., Susnjak, Teo, Liu, Tong, Watters, Paul, and Halgamuge, Malka N.. 2023. “From Google Gemini to OpenAI Q* (Q-Star): A Survey of Reshaping the Generative Artificial Intelligence (AI) Research Landscape.” ''Technologies''. https://doi.org/10.3390/technologies13020051.'''
</div>
McIntosh et al. offer a survey of AI development’s frontiers targeted at fellow experts of the field, focussing on evolving “agentic” AI and its resulting research applications. Covering developments, they primarily employ case studies to demonstrate how multimodal AI could eclipse undynamic LLMs, but various “advanced learning techniques” and developments in model architecture are also outlined. On this topic, a table is presented to quantify the relevance of research fields and subfields of AI development. Agentic AI’s possible applications include aiding research by bolstering academic integrity, its market relevance, and its “creative” purposes. McIntosh et al. even argue that development of AGI with “symbolic reasoning” and “probabilistic inference” could handle issues like climate change, considered as a long-term but significant possibility. Therefore, this work is primarily theoretical, with McIntosh et al. centralizing AI’s idealistic applications. However, they do acknowledge AI must be developed with ethical and social principles, for which interdisciplinary cooperation is necessary.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Mao, Yishu, Vanessa Richter, and Christian Katzenbach. (2025). "Strategising imaginaries: How corporate actors in China, Germany and the US shape AI governance." ''Big Data & Society'' 12 (1). https://doi.org/10.1177/20539517251400727.'''
</div>
Mao, Richter and Katzenbach systematize the concept of "sociotechnical imaginaries" as an analytical framework for understanding how collective visions of AI futures shape governance, investment, and public discourse. Engaging explicitly with science and technology studies scholarship—particularly Jasanoff and Kim's formulation of imaginaries as "collectively held, institutionally stabilized, and publicly performed visions"—they demonstrate how AI's meaning emerges through contested negotiations among stakeholders from industry, government, academia, media, and civil society. Their comparative analysis across the United States, China, and Germany challenges simplistic national characterizations, revealing heterogeneous and often contradictory imaginaries even within single regulatory regimes. Where US discourse fragments across multiple geographic AI hubs, German imaginaries center on EU policy compliance and regulatory frameworks, while Chinese articulations align tightly with party-state directives that minimize local variation. The source argues that these imaginaries function performatively, not merely representing AI's future but actively mobilizing resources, legitimating interventions, and establishing trajectories for development. Their framework illuminates how benchmark cultures, optimization narratives, and investor expectations become embedded in technical choices through discursive processes that precede and exceed engineering decisions. By foregrounding stakeholder co-dependencies and cross-national dynamics, the authors position AI imaginaries as sites where epistemological assumptions about intelligence, automation, and progress become institutionalized through political-economic mechanisms—a contribution that connects discourse analysis to questions of power, accountability, and the material reorganization of labor and knowledge production.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Whiteley, Paul. 2023. “Why Artificial Intelligence Is a Misnomer.” ''London School of Economics and Political Science Politics and Policy Blog'', October 19. https://blogs.lse.ac.uk/politicsandpolicy/why-artificial-intelligence-is-a-misnomer/.'''
</div>
Whiteley criticizes the use of the term artificial intelligence, noting that while such technologies can be valuable for automating specific tasks, the term John McCarthy used in the 1950s was a “disservice.” He argues that the term anthropomorphizes what is essentially a form of computer-assisted statistical analysis. Much of what we call AI functions as a sophisticated prediction system that processes vast amounts of data to produce answers, without any real understanding of the underlying concepts or theories. Whiteley further distinguishes between algorithms, which follow set procedures to identify patterns and make predictions, and inference, which involves interpreting and explaining why those patterns occur. He concludes that the ultimate goal in the field of AI is to create systems capable of predicting behavior across diverse problems. However, he emphasizes that current AI algorithms remain highly specialized, excelling in narrow tasks but lacking the flexibility and understanding required for true general intelligence.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Zeffiro, Andrea. 2024. “Automating (In)securities: Cybersecurity’s AI Imaginaries.” Paper presented at EASST/4S, 2024. https://nomadit.co.uk/conference/easst-4s2024/p/14156.'''
</div>
Zeffiro interrogates cybersecurity's AI imaginaries through case studies of IBM Watson for Cybersecurity, CrowdStrike's Charlotte AI, and Google's Sec-PaLM, revealing how corporate narratives of AI as "game changer" and "democratizing force" systematically obscure differential vulnerabilities and normative biases. Her analysis challenges the prevalent framing of AI-driven threat detection as technically neutral automation, arguing instead that these systems encode and amplify assumptions about what constitutes risk, who merits protection, and whose insecurities remain invisible. Drawing on critical security studies and science and technology studies, Zeffiro demonstrates how generative AI applications in cybersecurity automate not merely data collection and pattern recognition but also the normative judgments about threat hierarchies embedded in training regimes and performance metrics. Her concept of "automating insecurities" captures this dual process: while AI tools promise enhanced security through real-time threat response with minimal human intervention, they simultaneously institutionalize particular understandings of vulnerability that reflect corporate priorities and market positioning in the "AI arms race." Zeffiro's analysis connects these imaginaries to epistemic claims about AI's inevitability, showing how IBM, CrowdStrike, and Google construct future visions that naturalize their technological approaches while marginalizing alternative security paradigms. By foregrounding what these imaginaries omit—the differential distribution of cyber vulnerabilities across social positions, the political economy of security infrastructure, the discretionary authority embedded in algorithmic triage—Zeffiro positions cybersecurity AI as participating in broader patterns of automation that redistribute power and accountability rather than merely enhancing technical capabilities.
== Past Relation to OSS-Aligned Communities ==
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Carnegie Endowment for International Peace. 2024. ''Beyond Open vs. Closed: Emerging Consensus and Key Questions for Foundation AI Model Governance''. https://carnegieendowment.org/research/2024/07/beyond-open-vs-closed-emerging-consensus-and-key-questions-for-foundation-ai-model-governance?lang=en.'''
</div>
The report dismantles the binary framing—open vs. closed—that has organized foundation model governance debates, replacing it with a multidimensional spectrum where weight release is only one variable among many (architecture, training data, documentation, licensing terms, structured access). Seven consensus points establish that "openness" serves multiple, sometimes conflicting values (transparency, competition, safety, inclusion) and that weight release amplifies both beneficial and harmful potential without symmetry—its irreversibility and resistance to post-release monitoring create a qualitatively different governance problem than closed deployment, even though closed models' theoretical safety advantages are unevenly realized in practice. The report introduces "precautionary friction" (staged/structured release calibrated to marginal risk over a defined baseline) as the operative governance concept, explicitly rejecting both blanket openness and blanket restriction. Seventeen open questions then expose the infrastructure gaps: evaluation science remains embryonic, post-release monitoring is under-theorized, risk thresholds published by labs lack enforcement specificity, and Global South labor and data contributions are structurally undervalued. This source clarifies the claim that software-style "open source" maps poorly onto foundation models and that hybrid, graduated-release frameworks are where policy consensus is actually forming.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Mitra, Bhaskar, Henriette Cramer, and Olya Gurevich. 2024. “Sociotechnical Implications of Generative Artificial Intelligence for Information Access.” Preprint, ''arXiv'', May 19. https://doi.org/10.48550/arXiv.2405.11612.'''
</div>
Bhaskar et al. diagnose “information access” under generative AI as a sociotechnical settlement rather than a neutral upgrade to search: models do not just retrieve, they intermediate credibility, reshape attention, and re-allocate epistemic authority through interfaces that compress provenance and uncertainty. Their framing is especially useful for open, social scholarship because it links familiar problems of access (indexing, ranking, evaluation) to newer constraints created by platform dependence, opaque model behavior, and the enclosure of research pathways behind proprietary tooling and data. Read through the lenses of industry capture and AI imaginaries, the chapter clarifies how promises of universal assistants can normalize monopoly infrastructures while shifting audit burdens onto users and public institutions. It also implicitly strengthens open communities’ insistence on reproducibility: without open benchmarks, inspectable logs, and preservable corpora, “trustworthy information” becomes a brand claim rather than an evaluable property. The ideas bridge directly to libraries, repositories, and information policy by treating curation, metadata, and stewardship as counter-monopoly infrastructure for accountable AI-mediated access.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Open Source Initiative. The Open Source AI Definition 1.0 (2024–2025). https://opensource.org/ai'''
</div>
OSI’s Open Source AI Definition 1.0 operationalizes “open” as a bundle of enforceable freedoms rather than a branding claim, and it does so by porting the open source software tradition into the AI stack where “source” is more than just code. The definition makes the four freedoms—use, study, modify, share—the evaluative core, then adds a crucial precondition: exercising any of these rights requires access to the preferred form for making modifications and the means to use the system. That move is the governance lever: it blocks “open weights” releases from standing in for openness when the artifacts needed to understand or change system behavior are withheld. On OSI’s framing, openness is not satisfied by permissive inference access or a model file alone; it is satisfied when the system is provisioned so that auditability and alteration are practically possible, including transparency sufficient to trace how results were created and where components (notably data sources) come from. The definition is therefore designed as an anti-openwashing instrument: it supplies a community standard that can be applied to legal/technical packaging to distinguish genuinely open AI systems from hybrid offerings that preserve vendor control through restrictions or missing components. OSI explicitly positions this as policy-relevant infrastructure—an interpretive anchor for regulators and OSS communities trying to resist enclosure pressures while preserving permissionless collaboration. This is a community standard, not a journal article; it is nonetheless important for governance, policy, and OSS alignment.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Vake, Domen, Bogdan Šinik, Jernej Vičič, and Aleksandar Tošić. 2025. “Is Open Source the Future of AI? A Data‑Driven Approach.” Preprint, ''arXiv'', January 27. https://arxiv.org/abs/2501.16403'''
</div>
Vake et al. analyze the data of open-source large language models shared on HuggingFace to explore if the open-source community influences the development of LLMs. The authors found that the AI open-source community is expanding rapidly, and it has enhanced the performance of a handful of popular models. However, open-source AI depends on businesses to develop base models and release them openly, but there are few incentives to do so because it risks their intellectual property and competitive edge. Furthermore, AI is different from the development of open-source software because the general public cannot privately run these models. Therefore, the authors conclude that the future of AI development could be similar to the software-as-a-service model, in which the open-source community contributes to model development, while companies generate revenue from model usage.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''White, Matt, Ibrahim Haddad, Cailean Osborne, Xiao-Yang Liu, Ahmed Abdelmonsef, Sachin Varghese, and Arnaud Le Hors. 2024. “The Model Openness Framework: Promoting Completeness and Openness for Reproducibility, Transparency, and Usability in AI.” Preprint, ''arXiv'', March 20. https://doi.org/10.48550/arXiv.2403.13784'''
</div>
White et al.'s Model Openness Framework (MOF) represents an effort to translate open-source software principles into AI research practices, addressing the growing gap between claims of "openness" and actual transparency in AI model development. Developed through the Linux Foundation's AI & Data Foundation, the framework establishes a three-tiered classification system that specifies which components (code, data, documentation, trained weights, evaluation procedures) must be released under open licenses for models to qualify as "Class III: Open Model," "Class II: Open Tooling," or "Class I: Open Science." The authors' intervention addresses what they term "openwashing"—the strategic use of "open source" rhetoric by companies releasing models with restrictive licenses or incomplete artifacts. By codifying 17 critical components for complete model releases, they make visible the specific practices required for reproducibility and scrutiny, challenging the binary conception of openness inherited from software. Their framework reveals that AI "openness" exists on a spectrum of completeness, from minimal weight release to full disclosure of training data, intermediate checkpoints, and development documentation. Positioned within debates about responsible AI development, the MOF represents a community-driven effort to establish norms before they become ossified by corporate practice or regulatory fiat. The authors draw explicitly on open science principles (FAIR data, reproducibility standards) while adapting them to AI's unique characteristics—particularly the centrality of training data and the distinction between model architecture (code) and trained parameters (data).
== Bias and Technological Determinism ==
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Akter, Shahriar, Grace McCarthy, Shahriar Sajib, Katina Michael, Yogesh K. Dwivedi, John D’Ambra, and K. N. Shen. 2021. “Algorithmic Bias in Data-Driven Innovation in the Age of AI.” ''International Journal of Information Management'' 60: 102387. https://doi.org/10.1016/j.ijinfomgt.2021.102387.'''
</div>
Akter and colleagues theorize algorithmic bias as emerging from three distinct but interacting sources—data bias, method bias, and societal bias— positioning bias as structural phenomenon inscribed across the entire data-driven innovation (DDI) lifecycle rather than localized technical artifact amenable to isolated correction. Their case study of Australia's Robo-Debt scheme demonstrates how algorithmic systems inherit and amplify existing inequities and foregrounds "dynamic managerial capability" as essential for addressing bias. The authors challenge purely technical approaches, arguing instead that organizational capacity to recognize, interrogate, and respond to bias across data provenance, algorithmic design, and deployment contexts determines whether DDI produces equitable or discriminatory outcomes. This positions bias mitigation as ongoing institutional work requiring cross-functional expertise rather than one-time technical intervention. Their framework implicitly contests technological determinism by revealing how managerial choices about data collection priorities, acceptable error rates, and stakeholder consultation shape algorithmic outcomes in ways that exceed engineering decisions. The emphasis on societal bias as distinct category acknowledges that algorithms operate within and reproduce broader patterns of structural inequality—assumptions about creditworthiness, employability, or welfare eligibility that reflect historical discrimination. Akter et al.'s intervention thus connects bias scholarship to organizational studies and innovation management, positioning algorithmic fairness not as mathematical property but as emergent from institutional practices, power relations, and the political-economic contexts within which DDI unfolds.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Jarrahi, Mohammad Hossein, Gemma Newlands, Min Kyung Lee, Christine T. Wolf, Eliscia Kinder, and Will Sutherland. 2021. “Algorithmic Management in a Work Context.” ''Big Data & Society'' 8 (2). https://doi.org/10.1177/20539517211020332.'''
</div>
Analyzes algorithmic management as a sociotechnical phenomenon reshaping power, discretion, and information flows in organizations; details opacity at technical and organizational levels. Exposes determinist narratives in “smart” automation of management decisions; shows how design choices redistribute authority and labor—central to a nondeterministic, governance-forward stance.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Sartori, L., & Theodorou, A. 2022. “A sociotechnical perspective for the future of AI: narratives, inequalities, and human control.” ''Ethics and Information Technology'' 24 (1), 4. https://doi.org/10.1007/s10676-022-09624-3'''
</div>
Sartori and Theodorou position AI as a "magnifying glass" that automates and amplifies existing social inequalities rather than introducing bias as a novel technical problem, directly challenging narratives that frame fairness as achievable through post hoc algorithmic adjustment. Their sociotechnical framing insists that intelligent machines operate within specific institutional contexts where historical patterns of discrimination become encoded in data collection, annotation practices, and deployment decisions—a structural account that resists reduction to technical fixes. The authors engage critically with the AI technical community's emphasis on transparency, explainability, accountability, and contestability, acknowledging these as necessary but insufficient responses that risk becoming "panaceas" if divorced from attention to power asymmetries and organizing visions. Their analysis of technological narratives reveals how AI discourse reflects and reproduces traditional lines of social, economic, and political inequality: who gets to articulate AI futures, whose concerns register as legitimate risks, and which imaginaries gain institutional traction. By foregrounding narratives as both reflecting organizing visions and constituting "tangible signs" of inequality, Sartori and Theodorou demonstrate how deterministic framing—treating AI development as inevitable—forecloses deliberation about alternative design pathways. Their call for "diverse approaches" and "richer knowledge about narratives" positions non-determinism as methodological commitment: attending to contingent choices, plural stakeholder perspectives, and varied criteria of success that resist singular optimization logics. This intervention connects bias scholarship to governance debates, arguing that human control requires not just technical interpretability but institutional mechanisms for contestation that acknowledge AI practice as fundamentally interdisciplinary and politically consequential.
== Knowledge Foundations ==
===Diversity===
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Arbuckle, Alyssa. 2020. “How Can We Broaden and Diversify Humanities Knowledge Translation?” ''Pop! Public. Open. Participatory'', no. 2. https://doi.org/10.48404/pop.2020.12'''
</div>
Articulates diversity as a condition for valid public-facing scholarship; emphasizes inclusive modes of knowledge translation and participatory approaches resonant with OSS.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Arthur, Paul L., Lyida Hearn, Lucy Montgomery, Hugh Craig, Alyssa Arbuckle, & Ray Siemens. (2021). “Open Scholarship in Australia: A Review of Needs, Barriers, and Opportunities.” ''Digital Scholarship in the Humanities'' 36 (4), 795–812. https://doi.org/10.1093/llc/fqaa063'''
</div>
Australian context scan identifies structural barriers and opportunities for diverse participation in open scholarship.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Crompton, Constance, Lori Antranikan, Ruth Truong, & Paige Maskell. 2020. “Familiar Wikidata: The Case for Building a Data Source We Can Trust.” ''Pop! Public. Open. Participatory'', no. 2. https://doi.org/10.48404/pop.2020.02'''
</div>
Makes the case for community governance and trust in open data infrastructures to safeguard plural representation and mitigate erasure in knowledge graphs.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Fanning, Katie, Claire Kim, and Jon Saklofske. 2023. “Interactive Inspirations: The Case for Incorporating Joy and Play in Open Social Scholarship.” ''Pop! Public. Open. Participatory'', no. 5. https://doi.org/10.54590/pop.2023.012'''
</div>
Argues that Open Social Scholarship must move beyond simple open access by cultivating "joy and play" as critical, anti-capitalist methodologies for community engagement. They demonstrate this through a prototype parody app and use its practical limitations to expose the structural friction between sustaining non-extractive digital commons and the realities of privatized app ecosystems and precarious academic funding.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Rockwell, Geoffrey, Kaylin Land, and Andrew MacDonald. 2021. “Social Analytics Through Spyral.” ''Pop! Public. Open. Participatory'', no. 3. https://doi.org/10.54590/pop.2021.004 '''
</div>
Demonstrates community-aware analytics for scholarly communities; touches on representational choices and the risks of flattening diverse practices through metrics.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Siemens, Lynne, and the INKE Research Group (2023). “I Stayed for the Community: Collaboration and Community in an Open Social Scholarship Research Project.” ''Pop! Public. Open. Participatory'', no. 5. https://doi.org/10.54590/pop.2023.013'''
</div>
Views the success of open social scholarship as depending heavily on "heritage relationships" and the invisible labor of interpersonal maintenance, treating cross-sector collaboration as a deliberate methodological challenge rather than a natural byproduct of funding. Highlights a structural tension between community-driven qualitative goals and rigid academic metrics, urging institutions to formally recognize and resource the relational infrastructure that sustains Digital Humanities projects.
===Mobilisation===
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Arbuckle, Alyssa, Ray Siemens, Jon Bath, Constance Crompton, Laura Estill, Tanja Niemann, Jon Saklofske, and Lynne Siemens. 2022. “An Open Social Scholarship Path for the Humanities”. ''The Journal of Electronic Publishing'' 25 (2). https://doi.org/10.3998/jep.1973'''
</div>
Defines OSS practices and infrastructures to support translation, engagement, and reciprocal exchange between researchers and publics.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Jensen, Graham. 2023. “Introduction: Digital Knowledge Commons, Scholarly Connection, and the Evolution of Open Scholarship.” ''Open Scholarship Press Curated Volumes: Connection''. https://doi.org/10.21428/47bc126e.0ca461a4'''
</div>
Connects social scholarly tools and commons-based infrastructures to mobilization pathways; highlights interoperability and community practices.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Nelson, Brent, Miguel Dela Pena, and the Prototyping the Digital Archive Team & the INKE Research Group. 2023. “No Journal is an Island: The John Donne Journal and the Possibilities of Open Access.” ''Pop! Public. Open. Participatory'', no. 5. https://doi.org/10.54590/pop.2023.007'''
</div>
Case study of OA pathways as mobilization; addresses circulation, visibility, and engagement with broader publics.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Winter, Caroline. 2023. “Introduction: Open Scholarship Policy in Focus.” ''Open Scholarship Press Curated Volumes: Policy''. https://doi.org/10.21428/47bc126e.5abba88b'''
</div>
Frames policy as a vehicle for knowledge mobilization across sectors; emphasizes provenance, accountability, and public value alignment.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Winter, Caroline, Tyler Fontenot, Luis Meneses, Alyssa Arbuckle, Ray Siemens, and the ETCL and INKE Research Groups. 2020. “Foundations for the Canadian HSS Commons: Exploring the Possibilities of Digital Research Communities.” ''Pop! Public. Open. Participatory'', no. 2. https://doi.org/10.48404/pop.2020.05'''
Maps HSS Commons as mobilization infrastructure; addresses governance mechanisms, provenance, and dialogic engagement in a Canadian context.
</div>
===Platforms===
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Bullard, Julia. 2023. “Describing the HSS Commons: The View from Metadata.” ''Pop! Public. Open. Participatory'', no. 5. https://doi.org/10.54590/pop.2023.004 '''
</div>
Metadata as platform backbone; shows how descriptive schemas shape visibility/legitimacy; connects to interoperability and inclusive description.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Goddard, Lisa. (2021). “Persistent Identifiers as Open Research Infrastructure to Reduce Administrative Burden.” ''Pop! Public. Open. Participatory'', no. 3. https://doi.org/10.54590/pop.2021.006 '''
</div>
PIDs as platform connective tissue; crucial for provenance, traceability, and platform interoperability across repositories/journals.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Jensen, Graham, Alyssa Arbuckle, Caroline Winter, Talya Jesperson, Tyler Fontenot, Ray Siemens, and the ETCL and INKE Research Groups. 2022. “Fostering Digital Communities of Care: Safety, Security, and Trust in the Canadian HSS Commons.” ''IDEAH'' 3 (2). https://ideah.pubpub.org/pub/h7927ugt '''
</div>
Governance and moderation as platform design commitments; aligns with OSS values around safety and reciprocity.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Meneses, Luis. 2020. “Integrating the Social Media Engine with Large-scale Open Access Repositories: A Discussion.” ''Pop! Public. Open. Participatory'', no. 2. https://doi.org/10.48404/pop.2020.04 '''
</div>
Explores platform coupling between OA repositories and social layers; anticipates AI-mediated discovery/recommendation impacts on visibility.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Turin, Mark. 2021. “From Orality to Open: Innovations in Multimedia Monograph Publishing in the Humanities.” ''Pop! Public. Open. Participatory'', no. 3. https://doi.org/10.54590/pop.2021.005 '''
</div>
Platform affordances for multimodal scholarship; how platform standards and workflows enable plural forms and publics.
== Open Social Scholarship ==
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Arbuckle, Alyssa, and John Maxwell. (2019). “Modelling Open Social Scholarship Within the INKE Community.” ''KULA: Knowledge Creation, Dissemination, and Preservation Studies'' 3 (1), 1–8. https://doi.org/10.5334/kula.15'''
</div>
Moves “beyond open access” toward OSS practice by reworking scholarly communication workflows around collaboration, transparency, and community needs. Emphasizes infrastructure choices and governance as sites where values are enacted. Gives concrete criteria for participatory infrastructures and power‑sharing in scholarly communication; helpful to evaluate platform design choices.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Arbuckle, Alyssa, Ray Siemens, Jon Bath, Constance Crompton, Laura Estill, Tanja Niemann, Jon Saklofske, and Lynne Siemens. 2022. “An Open Social Scholarship Path for the Humanities.” ''Journal of Electronic Publishing'' 25 (2). https://doi.org/10.3998/jep.1973'''
</div>
A concise, peer‑reviewed articulation of open social scholarship (OSS) from INKE/ETCL leaders, translating principles into programs of action: public engagement, community training, policy, and infrastructure. Provides a normative baseline to assess whether platforms and practices foster dialogic exchange and mutuality rather than extraction.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Arthur, Paul L., Lyida Hearn, Lucy Montgomery, Hugh Craig, Alyssa Arbuckle, and Ray Siemens. 2021. “Open Scholarship in Australia: A Review of Needs, Barriers, and Opportunities.” ''Digital Scholarship in the Humanities'', 36 (4): 795–812. https://doi.org/10.1093/llc/fqaa063'''
</div>
Peer‑reviewed assessment from CA‑Aus collaborators surfaces structural barriers (policy, incentives, infrastructure) and opportunities for publicly engaged open scholarship. Frames how national policy, incentives, and infrastructure shape whether openness reduces or reproduces inequities.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''El Khatib, Randa, Lindsey Seatter, Tracey El Hajj, Conrad Leibel, Alyssa Arbuckle, Ray Siemens, Caroline Winter, and the ETCL and INKE Research Groups. 2019. “Open Social Scholarship Annotated Bibliography.” ''KULA'' 3 (1): 1–141. https://doi.org/10.5334/kula.58'''
</div>
Field‑defining synthesis of OSS foundations, surveying open access, participatory publishing, crowdsourcing, social knowledge creation, and policy. Establishes terminology and exemplars that connect openness with social responsibility. Defines a master index to map subdomains of openness and identify non‑AI precedents for care, accessibility, and accountability in scholarly infrastructures.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Maxwell, John W. 2015. “Beyond Open Access to Open Publication and Open Scholarship.” ''Scholarly and Research Communication'' 6 (3): 1–10. https://doi.org/10.22230/src.2015v6n3a202'''
</div>
Argues that simply “access” is insufficient; emphasizes usability, participatory review, and community‑responsive publishing workflows. Repositions openness as an ecosystem of practices with embedded care and accountability. Yields criteria for evaluating whether “openness” translates to meaningful, non‑extractive participation and shared authority in knowledge production.
{{Navigation|previous=Introduction|next=AI and Open}}
{{BookCat}}
f75gxlj4mez1te50z9z6glaj7ljq53t
4641179
4641176
2026-06-25T21:09:51Z
Permareperterra
3495921
/* Histories & Theories of AI */ If Karin van Es has expressed a specific preference for lower casing please revert change. Otherwise recommend following the Chicago Manual of Style convention for names starting with particles, which is that they are "always capitalized when beginning a sentence or a note". See "8.5: Names with particles or prefixes." https://www-chicagomanualofstyle-org.ezproxy.library.uvic.ca/book/ed18/part2/ch08/psec005.html.
4641179
wikitext
text/x-wiki
==Histories & Theories of AI==
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Ali, Syed Mustafa, Stephanie Dick, Sarah Dillon, Matthew L. Jones, Jonnie Penn, and Richard Staley. 2023. “Histories of Artificial Intelligence: A Genealogy of Power.” ''BJHS Themes'' 8: 1–18. https://doi.org/10.1017/bjt.2023.15.'''
</div>
The work of these authors seeks to move beyond “conventional origin myths” of AI by contextualizing the academic historical approach within their interdisciplinary backgrounds. As a result, Ali et al. argue that histories of broader processes (like industrialization, colonialism, and social science) can represent the “genealogy” of AI, which is not identified as a specific object but as a grouping of diverse technologies under a loose banner, requiring an equally diverse approach. Although AI is the “flagship of the Information Age”, it was clearly conditioned by the “Management Age”, as these “genealogies” feature four common thematic threads of “hidden labour”, “encoded behaviour”, “disingenuous rhetoric” and “cognitive injustice”. AI is therefore not only situated within the history of computing, but the history of control, the product of the interacting formalist and empiricist views of “intelligence” within Cold War epistemology. In many ways, AI’s refinement of formal abstraction reinforces and impresses Western systems and structures, so these authors do not critique AI with the goal of improvement, but to clarify what AI “is”, “is not”, and perhaps “should not” be.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Anderson, Marc M. 2024. “AI as Philosophical Ideology: A Critical Look Back at John McCarthy’s Program.” ''Philosophy & Technology'' 37 (2): 44. https://doi.org/10.1007/s13347-024-00731-1.'''
</div>
This paper critically analyzes the synthesis of McCarthy’s AI development program, identifying its goals’ nature, purpose, relationship to society, and implications upon morality and social control. Firstly, Anderson considers the most problematic themes of McCarthy’s early and middle writings, then arguing that McCarthy’s later works consolidated his stance by replacing “tentative assumptions” with “statements whose linkages with contemporaneous analytic philosophy are made unequivocally” and thereby present AI as “the outcome of a certain philosophical way of looking at the world”. Here, Anderson emphasizes McCarthy’s biases towards objectivism, scientism, and analytic behaviourism; tendency to enable progress in AI by waiting to identify risks; positioning of philosophy as subordinate “handmaiden” to science; and uneasy presupposition humans have innate knowledge of the world’s object character (which AI will need added). To Anderson, the sum of the “ethical” aspects, “philosophical” aspects, and “competitive” nature of McCarthy’s program give it all the fundamental “characteristics of an ideological program”. This ideology has had deep direct influence, for example by joining AI ethics to consequentialist dilemmas like the “Trolley problem”, and deep indirect influence, for example by influencing a modular and component technical approach. Anderson argues this “ideology” was caused by McCarthy’s motive of making a “servile” and “stripped down model of human mental engagement without emotional qualities”. Overall, Anderson argues McCarthy’s conception of AI as a “perfectly rational abstraction of human thinking” involves severe misconceptions around rationality, and has “come to serve as a blind for increasing techno-corporate control of society” with its propagation of the belief that “AI systems should be controlled as servants”.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Bender, Emily M., Timnit Gebru, Angelina McMillan-Major, and Shmargaret Shmitchell. 2021. “On the Dangers of Stochastic Parrots: Can Language Models Be Too Big? 🦜.” In ''Proceedings of the 2021 ACM Conference on Fairness, Accountability, and Transparency'', 610–23. https://doi.org/10.1145/3442188.3445922.'''
</div>
Bender et al. critically analyze the environmental and social risks of ever larger language models trained with huge uncurated datasets from the web. Their first concern is the environmental costs of training language models, which require increasing energy and compute requirements that further environmental damages that are more likely to fall on marginalized populations. Their social concerns are that language models have the potential to reproduce hegemonic views, reinforce stereotypes, and further reify inequality due to the unrepresentativeness of their training data. Despite the increasing amounts of data ingested in these models, the authors argue that size does not guarantee diversity because there are people who are not on the web (and therefore not included in training data), the content of marginalized people online is less likely to be included in these large datasets and, if it is, it might be filtered out during the data preparation process. Therefore, the authors urge developers to stop using larger training datasets if they cannot be documented. As an alternative, they suggest curating and documenting smaller datasets created for specific purposes, evaluating models by the amount of resources they consume, and developing research that centers the people who are more likely to be adversely affected by the resulting technology.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Berry, David M. 2025. “Synthetic Media and Computational Capitalism: Towards a Critical Theory of Artificial Intelligence.” ''AI & Society'' 40: 5257–5269. https://doi.org/10.1007/s00146-025-02265-2.'''
</div>
Berry develops a critical theory of artificial intelligence centered on what he terms the "algorithmic condition"—a historical moment when computational systems generate cultural content indistinguishable from human production, thereby destabilizing traditional markers of authenticity and authorship. Engaging with Frankfurt School critical theory, particularly concepts of false consciousness and reification, Berry argues that contemporary AI represents a qualitative transformation he calls "the Inversion," where machine-generated works not only replicate but actively reshape the grounds upon which experience and meaning are constituted. This moves beyond mechanical reproduction (Benjamin) or cybernetic feedback (Wiener) toward what Berry theorizes as "post-consciousness," where boundaries between individual and synthetic consciousness become porous. His concept of "diffusionisation" describes how AI systems dissolve cultural forms into probabilistic vector spaces and reconstitute them through latent space manipulation, producing "AI slop"—low-quality synthetic content that infiltrates information ecosystems with garbled meaning. Berry positions this transformation within "computational capitalism," arguing that algorithmic mediation now structures forms of life in ways that demand new critical methods. His "constellational analysis" proposes mapping the interdependencies among technical systems, cultural production, and political-economic structures to resist subsumption into algorithmic logics. Where earlier automation debates focused on task substitution, Berry foregrounds how synthetic media transforms the infrastructure of meaning-making itself, rendering questions of interpretability and embedded bias not as technical problems but as symptoms of deeper epistemic and political reconfigurations under computational conditions.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Chun, Jon and Elkins, Katherine. (2023). “The Crisis of Artificial Intelligence: A New Digital Humanities Curriculum for Human-Centred AI.” ''International Journal of Humanities and Arts Computing'' 17 (2). https://doi.org/10.3366/ijhac.2023.0310.'''
</div>
Chun and Elkins position AI's rapid advancement as precipitating multiple interlocking crises—in higher education, in diversity and inclusion within technology fields, and in the broader socioeconomic fabric—that demand a specifically humanities-oriented pedagogical response. Their intervention challenges the prevalent assumption that AI literacy should emerge from STEM-dominated curricula, arguing instead that Digital Humanities offers distinctive pathways for cultivating critical engagement with computational systems. Where conventional computer science education treats AI as primarily a technical phenomenon requiring engineering skills, Chun and Elkins foreground reflective and collaborative meaning-making, insisting that the most effective AI tools amplify rather than replace human intellectual engagement. Their framework explicitly connects pedagogical design to civic preparation, positioning students not as mere consumers or operators of AI systems but as critically engaged citizens capable of interrogating the social and economic implications of algorithmic mediation. Drawing on theories of human-centered computing, they articulate an AI DH curriculum structured around two core commitments: opening meaningful research avenues for humanities scholars working with computational methods and addressing DEI shortcomings by engaging students traditionally alienated by conventional STEM pathways. Their approach implicitly challenges the epistemic authority claims embedded in AI discourse—the fantasy that technical expertise alone can adjudicate questions about algorithmic deployment—by insisting that humanistic inquiry offers essential resources for navigating AI's transformative effects on knowledge production, labor organization, and cultural representation.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Chung, Hiu-Fung. 2025. “Betting on (Un)Certain Futures: Sociotechnical Imaginaries of AI and Varieties of Techno-Developmentalism in Asia.” ''Information, Communication & Society'', 1–18. https://doi.org/10.1080/1369118X.2025.2535427.'''
</div>
Chung redirects scholarly attention from dominant AI powers—China, the United States—to economically advanced but geographically non-dominant Asian societies: Singapore, Hong Kong, and Taiwan. Mobilizing the concept of "techno-developmentalism" to analyze how developmental states harness technological innovation for political-economic projects, Chung identifies three distinct imaginaries that emerge from specific historical, institutional, and geopolitical conditions. Singapore's "cybernetic pragmatism" deploys AI to legitimize neoliberal authoritarianism, embedding computational governance as a continuation of technocratic rule. Hong Kong's "techno-entrepreneurship" imaginary seeks to refashion financial capitalism through AI-driven innovation, positioning the territory as a global fintech hub amid shifting relationships with mainland China. Taiwan's "defensive survival modality" frames AI development as simultaneously addressing internal socioeconomic instability and external threats from superpower rivalry, particularly cross-strait tensions. Chung's analysis challenges the Global North/South binary that structures much AI governance literature, revealing how small advanced economies navigate strategic coupling with global tech industries while managing profound uncertainties about AI-centric reforms. His discourse analysis of policy documents from the early 2010s through 2024 demonstrates how national imaginaries encode assumptions about automation's effects on labor markets, the appropriate balance between state coordination and market mechanisms, and the role of computational infrastructure in securing geopolitical position. This comparative framework illuminates how different state formations mobilize AI to address divergent crises of legitimacy, capital accumulation, and sovereign security.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Van Es, Karin, and Dennis Nguyen. 2024. “‘Your Friendly AI Assistant’: The Anthropomorphic Self-Representations of ChatGPT and Its Implications for Imagining AI.” ''AI & Society'' 40: 3591–3603. https://doi.org/10.1007/s00146-024-02108-6<nowiki/>.'''
</div>
Van Es and Nguyen analyze how “social-technical imaginaries” invoked by “self-representations” of GenAI could influence public perception of the technology. These “socio-technical imaginaries” are a category of trending concept, which can exist in contrast, as both utopian and dystopian conceptions of AI are present in public discourse. These are dynamically changeable, often strategically promoted by tech companies to influence regulation, and influenced by a variety of media technologies and ecologies with equally diverse social, cultural, and political implications. The authors identify a range of current “socio-technical imaginaries” of AI. This includes: misconceived “magical thinking”, largely produced by poor terminology; speculative, exaggerative debates on AI capabilities, which distract from actualized and present risks; visual motifs correlating intelligence, efficiency, logic, duty, and trust, which are not inherent to Generative AI; and anthropomorphism, which brings a slew of problems surrounding social biases. To study AI “self-representations”, van Es and Nguyen have ChatGPT generate fifty images and fifty-eight sections of text, responding to several variations of the prompt “create an image of yourself”. The authors then perform an empirical, qualitative-exploratory analysis of this content to examine which “socio-technical imaginaries” dominate the material. These images most significantly emphasized ChatGPT’s alleged “social intelligence”, depicted as a friendly research assistant possessing “real” intellect - ironically often surrounded by books. Anthropomorphism was usually present, with eighty-two percent of images portraying AI as humanoid, and a further six percent as a human brain. Futuristic motifs like holograms, metallic shades, and the cosmos portrayed AI as near-magical. Textual responses expressed these same themes, demonstrating consistent messaging. Taken together, these generated responses encourage overlooking the ethical and legal challenges posed by trending GenAI technologies, “overestimate their capabilities”, and “potentially lead to mistakenly perceive them as trustworthy companions”. This raises questions as to what extent specific guidelines to these responses were programmed by OpenAI, or indicative of popular opinion.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Jones, Matthew L. 2023. “AI in History.” ''American Historical Review'' 128 (3): 1360–67. https://doi.org/10.1093/ahr/rhad361.'''
</div>
Jones explores how evolving approaches to AI research reflect upon the importance of studying artificial intelligence’s history. He believes traditional attempts to produce “symbolic” AI have been proven as misguided, comparing their failures to the traditionally unpopular “empiricist” approach. This approach is now dominant and involves the use of large-scale algorithms to capitalize upon the “unreasonable effectiveness of data” via “machine learning”. However, this shift in trends has also forced the meaning and capabilities of “artificial intelligence” to be reconsidered, now threatening “professions centred on particularity” like history. In response, Jones argues modern AI cannot be considered a “neutral substratum” but as a reflection of human creations - including their best and worst traits. Historians are experts at detecting bias, and this understanding of AI’s historical context is clearly necessary for its appropriate application, so historians should be playing a fundamental role in ensuring AI’s critical use. Jones believes historians can best do this by highlighting the “traces of labour” that can illustrate the “granular complex reality” of AI.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Klein, Lauren, Meredith Martin, André Brock, Maria Antoniak, Melanie Walsh, Jessica Marie Johnson, Lauren Tilton, and David Mimno. 2025. “Provocations from the Humanities for Generative AI Research.” Preprint, ''arXiv'', February 26. https://arxiv.org/abs/2502.19190.'''
</div>
Klein et al. explore the stakes of engaging with AI by juxtaposing the humanistic scholar’s investigation of the ‘human’ with the ‘anti-human’ approach of AI, a dichotomy they contextualize within late-stage capitalism. Klein et al. argue that AI’s generalist, binary approach ‘distorts “culture’ to content’. AI programs thereby conduct a ‘statistical enactment of… ideology’, imposing an objectivist European modernist framework of understanding upon the data. This binary conception of data is highlighted within ideas of ‘pure’ versus ‘toxic’ training data, which dismiss that the material inherently ‘reflects cultures and consists of expressions of those cultures’. Even content not being included ‘biases’ the rest of the data, so the best practices of open scholarship cannot fix the root issue - the only way to resolve the issues caused by ‘bias’ is to target the sources of the underlying structural problems. Klein et al. argue this flawed situation was fueled by ‘corporate spokespeople parroting AI hype’ to research - and that this relationship’s politicization should be a particular source of concern. Klein et al. argue AI can still serve a purpose, however. They propose AI with smaller datasets will produce more accurate information when tailored for specific topics and with input from experts of the humanities. Humanists cannot solely effect change, however, as ‘technical researchers must recognize the institutional asymmetries’ of administrative support and funding available to ensure development of ‘humanistic’ AI is a truly equal and interdisciplinary effort.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''McIntosh, Timothy R., Susnjak, Teo, Liu, Tong, Watters, Paul, and Halgamuge, Malka N.. 2023. “From Google Gemini to OpenAI Q* (Q-Star): A Survey of Reshaping the Generative Artificial Intelligence (AI) Research Landscape.” ''Technologies''. https://doi.org/10.3390/technologies13020051.'''
</div>
McIntosh et al. offer a survey of AI development’s frontiers targeted at fellow experts of the field, focussing on evolving “agentic” AI and its resulting research applications. Covering developments, they primarily employ case studies to demonstrate how multimodal AI could eclipse undynamic LLMs, but various “advanced learning techniques” and developments in model architecture are also outlined. On this topic, a table is presented to quantify the relevance of research fields and subfields of AI development. Agentic AI’s possible applications include aiding research by bolstering academic integrity, its market relevance, and its “creative” purposes. McIntosh et al. even argue that development of AGI with “symbolic reasoning” and “probabilistic inference” could handle issues like climate change, considered as a long-term but significant possibility. Therefore, this work is primarily theoretical, with McIntosh et al. centralizing AI’s idealistic applications. However, they do acknowledge AI must be developed with ethical and social principles, for which interdisciplinary cooperation is necessary.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Mao, Yishu, Vanessa Richter, and Christian Katzenbach. (2025). "Strategising imaginaries: How corporate actors in China, Germany and the US shape AI governance." ''Big Data & Society'' 12 (1). https://doi.org/10.1177/20539517251400727.'''
</div>
Mao, Richter and Katzenbach systematize the concept of "sociotechnical imaginaries" as an analytical framework for understanding how collective visions of AI futures shape governance, investment, and public discourse. Engaging explicitly with science and technology studies scholarship—particularly Jasanoff and Kim's formulation of imaginaries as "collectively held, institutionally stabilized, and publicly performed visions"—they demonstrate how AI's meaning emerges through contested negotiations among stakeholders from industry, government, academia, media, and civil society. Their comparative analysis across the United States, China, and Germany challenges simplistic national characterizations, revealing heterogeneous and often contradictory imaginaries even within single regulatory regimes. Where US discourse fragments across multiple geographic AI hubs, German imaginaries center on EU policy compliance and regulatory frameworks, while Chinese articulations align tightly with party-state directives that minimize local variation. The source argues that these imaginaries function performatively, not merely representing AI's future but actively mobilizing resources, legitimating interventions, and establishing trajectories for development. Their framework illuminates how benchmark cultures, optimization narratives, and investor expectations become embedded in technical choices through discursive processes that precede and exceed engineering decisions. By foregrounding stakeholder co-dependencies and cross-national dynamics, the authors position AI imaginaries as sites where epistemological assumptions about intelligence, automation, and progress become institutionalized through political-economic mechanisms—a contribution that connects discourse analysis to questions of power, accountability, and the material reorganization of labor and knowledge production.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Whiteley, Paul. 2023. “Why Artificial Intelligence Is a Misnomer.” ''London School of Economics and Political Science Politics and Policy Blog'', October 19. https://blogs.lse.ac.uk/politicsandpolicy/why-artificial-intelligence-is-a-misnomer/.'''
</div>
Whiteley criticizes the use of the term artificial intelligence, noting that while such technologies can be valuable for automating specific tasks, the term John McCarthy used in the 1950s was a “disservice.” He argues that the term anthropomorphizes what is essentially a form of computer-assisted statistical analysis. Much of what we call AI functions as a sophisticated prediction system that processes vast amounts of data to produce answers, without any real understanding of the underlying concepts or theories. Whiteley further distinguishes between algorithms, which follow set procedures to identify patterns and make predictions, and inference, which involves interpreting and explaining why those patterns occur. He concludes that the ultimate goal in the field of AI is to create systems capable of predicting behavior across diverse problems. However, he emphasizes that current AI algorithms remain highly specialized, excelling in narrow tasks but lacking the flexibility and understanding required for true general intelligence.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Zeffiro, Andrea. 2024. “Automating (In)securities: Cybersecurity’s AI Imaginaries.” Paper presented at EASST/4S, 2024. https://nomadit.co.uk/conference/easst-4s2024/p/14156.'''
</div>
Zeffiro interrogates cybersecurity's AI imaginaries through case studies of IBM Watson for Cybersecurity, CrowdStrike's Charlotte AI, and Google's Sec-PaLM, revealing how corporate narratives of AI as "game changer" and "democratizing force" systematically obscure differential vulnerabilities and normative biases. Her analysis challenges the prevalent framing of AI-driven threat detection as technically neutral automation, arguing instead that these systems encode and amplify assumptions about what constitutes risk, who merits protection, and whose insecurities remain invisible. Drawing on critical security studies and science and technology studies, Zeffiro demonstrates how generative AI applications in cybersecurity automate not merely data collection and pattern recognition but also the normative judgments about threat hierarchies embedded in training regimes and performance metrics. Her concept of "automating insecurities" captures this dual process: while AI tools promise enhanced security through real-time threat response with minimal human intervention, they simultaneously institutionalize particular understandings of vulnerability that reflect corporate priorities and market positioning in the "AI arms race." Zeffiro's analysis connects these imaginaries to epistemic claims about AI's inevitability, showing how IBM, CrowdStrike, and Google construct future visions that naturalize their technological approaches while marginalizing alternative security paradigms. By foregrounding what these imaginaries omit—the differential distribution of cyber vulnerabilities across social positions, the political economy of security infrastructure, the discretionary authority embedded in algorithmic triage—Zeffiro positions cybersecurity AI as participating in broader patterns of automation that redistribute power and accountability rather than merely enhancing technical capabilities.
== Past Relation to OSS-Aligned Communities ==
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Carnegie Endowment for International Peace. 2024. ''Beyond Open vs. Closed: Emerging Consensus and Key Questions for Foundation AI Model Governance''. https://carnegieendowment.org/research/2024/07/beyond-open-vs-closed-emerging-consensus-and-key-questions-for-foundation-ai-model-governance?lang=en.'''
</div>
The report dismantles the binary framing—open vs. closed—that has organized foundation model governance debates, replacing it with a multidimensional spectrum where weight release is only one variable among many (architecture, training data, documentation, licensing terms, structured access). Seven consensus points establish that "openness" serves multiple, sometimes conflicting values (transparency, competition, safety, inclusion) and that weight release amplifies both beneficial and harmful potential without symmetry—its irreversibility and resistance to post-release monitoring create a qualitatively different governance problem than closed deployment, even though closed models' theoretical safety advantages are unevenly realized in practice. The report introduces "precautionary friction" (staged/structured release calibrated to marginal risk over a defined baseline) as the operative governance concept, explicitly rejecting both blanket openness and blanket restriction. Seventeen open questions then expose the infrastructure gaps: evaluation science remains embryonic, post-release monitoring is under-theorized, risk thresholds published by labs lack enforcement specificity, and Global South labor and data contributions are structurally undervalued. This source clarifies the claim that software-style "open source" maps poorly onto foundation models and that hybrid, graduated-release frameworks are where policy consensus is actually forming.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Mitra, Bhaskar, Henriette Cramer, and Olya Gurevich. 2024. “Sociotechnical Implications of Generative Artificial Intelligence for Information Access.” Preprint, ''arXiv'', May 19. https://doi.org/10.48550/arXiv.2405.11612.'''
</div>
Bhaskar et al. diagnose “information access” under generative AI as a sociotechnical settlement rather than a neutral upgrade to search: models do not just retrieve, they intermediate credibility, reshape attention, and re-allocate epistemic authority through interfaces that compress provenance and uncertainty. Their framing is especially useful for open, social scholarship because it links familiar problems of access (indexing, ranking, evaluation) to newer constraints created by platform dependence, opaque model behavior, and the enclosure of research pathways behind proprietary tooling and data. Read through the lenses of industry capture and AI imaginaries, the chapter clarifies how promises of universal assistants can normalize monopoly infrastructures while shifting audit burdens onto users and public institutions. It also implicitly strengthens open communities’ insistence on reproducibility: without open benchmarks, inspectable logs, and preservable corpora, “trustworthy information” becomes a brand claim rather than an evaluable property. The ideas bridge directly to libraries, repositories, and information policy by treating curation, metadata, and stewardship as counter-monopoly infrastructure for accountable AI-mediated access.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Open Source Initiative. The Open Source AI Definition 1.0 (2024–2025). https://opensource.org/ai'''
</div>
OSI’s Open Source AI Definition 1.0 operationalizes “open” as a bundle of enforceable freedoms rather than a branding claim, and it does so by porting the open source software tradition into the AI stack where “source” is more than just code. The definition makes the four freedoms—use, study, modify, share—the evaluative core, then adds a crucial precondition: exercising any of these rights requires access to the preferred form for making modifications and the means to use the system. That move is the governance lever: it blocks “open weights” releases from standing in for openness when the artifacts needed to understand or change system behavior are withheld. On OSI’s framing, openness is not satisfied by permissive inference access or a model file alone; it is satisfied when the system is provisioned so that auditability and alteration are practically possible, including transparency sufficient to trace how results were created and where components (notably data sources) come from. The definition is therefore designed as an anti-openwashing instrument: it supplies a community standard that can be applied to legal/technical packaging to distinguish genuinely open AI systems from hybrid offerings that preserve vendor control through restrictions or missing components. OSI explicitly positions this as policy-relevant infrastructure—an interpretive anchor for regulators and OSS communities trying to resist enclosure pressures while preserving permissionless collaboration. This is a community standard, not a journal article; it is nonetheless important for governance, policy, and OSS alignment.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Vake, Domen, Bogdan Šinik, Jernej Vičič, and Aleksandar Tošić. 2025. “Is Open Source the Future of AI? A Data‑Driven Approach.” Preprint, ''arXiv'', January 27. https://arxiv.org/abs/2501.16403'''
</div>
Vake et al. analyze the data of open-source large language models shared on HuggingFace to explore if the open-source community influences the development of LLMs. The authors found that the AI open-source community is expanding rapidly, and it has enhanced the performance of a handful of popular models. However, open-source AI depends on businesses to develop base models and release them openly, but there are few incentives to do so because it risks their intellectual property and competitive edge. Furthermore, AI is different from the development of open-source software because the general public cannot privately run these models. Therefore, the authors conclude that the future of AI development could be similar to the software-as-a-service model, in which the open-source community contributes to model development, while companies generate revenue from model usage.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''White, Matt, Ibrahim Haddad, Cailean Osborne, Xiao-Yang Liu, Ahmed Abdelmonsef, Sachin Varghese, and Arnaud Le Hors. 2024. “The Model Openness Framework: Promoting Completeness and Openness for Reproducibility, Transparency, and Usability in AI.” Preprint, ''arXiv'', March 20. https://doi.org/10.48550/arXiv.2403.13784'''
</div>
White et al.'s Model Openness Framework (MOF) represents an effort to translate open-source software principles into AI research practices, addressing the growing gap between claims of "openness" and actual transparency in AI model development. Developed through the Linux Foundation's AI & Data Foundation, the framework establishes a three-tiered classification system that specifies which components (code, data, documentation, trained weights, evaluation procedures) must be released under open licenses for models to qualify as "Class III: Open Model," "Class II: Open Tooling," or "Class I: Open Science." The authors' intervention addresses what they term "openwashing"—the strategic use of "open source" rhetoric by companies releasing models with restrictive licenses or incomplete artifacts. By codifying 17 critical components for complete model releases, they make visible the specific practices required for reproducibility and scrutiny, challenging the binary conception of openness inherited from software. Their framework reveals that AI "openness" exists on a spectrum of completeness, from minimal weight release to full disclosure of training data, intermediate checkpoints, and development documentation. Positioned within debates about responsible AI development, the MOF represents a community-driven effort to establish norms before they become ossified by corporate practice or regulatory fiat. The authors draw explicitly on open science principles (FAIR data, reproducibility standards) while adapting them to AI's unique characteristics—particularly the centrality of training data and the distinction between model architecture (code) and trained parameters (data).
== Bias and Technological Determinism ==
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Akter, Shahriar, Grace McCarthy, Shahriar Sajib, Katina Michael, Yogesh K. Dwivedi, John D’Ambra, and K. N. Shen. 2021. “Algorithmic Bias in Data-Driven Innovation in the Age of AI.” ''International Journal of Information Management'' 60: 102387. https://doi.org/10.1016/j.ijinfomgt.2021.102387.'''
</div>
Akter and colleagues theorize algorithmic bias as emerging from three distinct but interacting sources—data bias, method bias, and societal bias— positioning bias as structural phenomenon inscribed across the entire data-driven innovation (DDI) lifecycle rather than localized technical artifact amenable to isolated correction. Their case study of Australia's Robo-Debt scheme demonstrates how algorithmic systems inherit and amplify existing inequities and foregrounds "dynamic managerial capability" as essential for addressing bias. The authors challenge purely technical approaches, arguing instead that organizational capacity to recognize, interrogate, and respond to bias across data provenance, algorithmic design, and deployment contexts determines whether DDI produces equitable or discriminatory outcomes. This positions bias mitigation as ongoing institutional work requiring cross-functional expertise rather than one-time technical intervention. Their framework implicitly contests technological determinism by revealing how managerial choices about data collection priorities, acceptable error rates, and stakeholder consultation shape algorithmic outcomes in ways that exceed engineering decisions. The emphasis on societal bias as distinct category acknowledges that algorithms operate within and reproduce broader patterns of structural inequality—assumptions about creditworthiness, employability, or welfare eligibility that reflect historical discrimination. Akter et al.'s intervention thus connects bias scholarship to organizational studies and innovation management, positioning algorithmic fairness not as mathematical property but as emergent from institutional practices, power relations, and the political-economic contexts within which DDI unfolds.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Jarrahi, Mohammad Hossein, Gemma Newlands, Min Kyung Lee, Christine T. Wolf, Eliscia Kinder, and Will Sutherland. 2021. “Algorithmic Management in a Work Context.” ''Big Data & Society'' 8 (2). https://doi.org/10.1177/20539517211020332.'''
</div>
Analyzes algorithmic management as a sociotechnical phenomenon reshaping power, discretion, and information flows in organizations; details opacity at technical and organizational levels. Exposes determinist narratives in “smart” automation of management decisions; shows how design choices redistribute authority and labor—central to a nondeterministic, governance-forward stance.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Sartori, L., & Theodorou, A. 2022. “A sociotechnical perspective for the future of AI: narratives, inequalities, and human control.” ''Ethics and Information Technology'' 24 (1), 4. https://doi.org/10.1007/s10676-022-09624-3'''
</div>
Sartori and Theodorou position AI as a "magnifying glass" that automates and amplifies existing social inequalities rather than introducing bias as a novel technical problem, directly challenging narratives that frame fairness as achievable through post hoc algorithmic adjustment. Their sociotechnical framing insists that intelligent machines operate within specific institutional contexts where historical patterns of discrimination become encoded in data collection, annotation practices, and deployment decisions—a structural account that resists reduction to technical fixes. The authors engage critically with the AI technical community's emphasis on transparency, explainability, accountability, and contestability, acknowledging these as necessary but insufficient responses that risk becoming "panaceas" if divorced from attention to power asymmetries and organizing visions. Their analysis of technological narratives reveals how AI discourse reflects and reproduces traditional lines of social, economic, and political inequality: who gets to articulate AI futures, whose concerns register as legitimate risks, and which imaginaries gain institutional traction. By foregrounding narratives as both reflecting organizing visions and constituting "tangible signs" of inequality, Sartori and Theodorou demonstrate how deterministic framing—treating AI development as inevitable—forecloses deliberation about alternative design pathways. Their call for "diverse approaches" and "richer knowledge about narratives" positions non-determinism as methodological commitment: attending to contingent choices, plural stakeholder perspectives, and varied criteria of success that resist singular optimization logics. This intervention connects bias scholarship to governance debates, arguing that human control requires not just technical interpretability but institutional mechanisms for contestation that acknowledge AI practice as fundamentally interdisciplinary and politically consequential.
== Knowledge Foundations ==
===Diversity===
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Arbuckle, Alyssa. 2020. “How Can We Broaden and Diversify Humanities Knowledge Translation?” ''Pop! Public. Open. Participatory'', no. 2. https://doi.org/10.48404/pop.2020.12'''
</div>
Articulates diversity as a condition for valid public-facing scholarship; emphasizes inclusive modes of knowledge translation and participatory approaches resonant with OSS.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Arthur, Paul L., Lyida Hearn, Lucy Montgomery, Hugh Craig, Alyssa Arbuckle, & Ray Siemens. (2021). “Open Scholarship in Australia: A Review of Needs, Barriers, and Opportunities.” ''Digital Scholarship in the Humanities'' 36 (4), 795–812. https://doi.org/10.1093/llc/fqaa063'''
</div>
Australian context scan identifies structural barriers and opportunities for diverse participation in open scholarship.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Crompton, Constance, Lori Antranikan, Ruth Truong, & Paige Maskell. 2020. “Familiar Wikidata: The Case for Building a Data Source We Can Trust.” ''Pop! Public. Open. Participatory'', no. 2. https://doi.org/10.48404/pop.2020.02'''
</div>
Makes the case for community governance and trust in open data infrastructures to safeguard plural representation and mitigate erasure in knowledge graphs.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Fanning, Katie, Claire Kim, and Jon Saklofske. 2023. “Interactive Inspirations: The Case for Incorporating Joy and Play in Open Social Scholarship.” ''Pop! Public. Open. Participatory'', no. 5. https://doi.org/10.54590/pop.2023.012'''
</div>
Argues that Open Social Scholarship must move beyond simple open access by cultivating "joy and play" as critical, anti-capitalist methodologies for community engagement. They demonstrate this through a prototype parody app and use its practical limitations to expose the structural friction between sustaining non-extractive digital commons and the realities of privatized app ecosystems and precarious academic funding.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Rockwell, Geoffrey, Kaylin Land, and Andrew MacDonald. 2021. “Social Analytics Through Spyral.” ''Pop! Public. Open. Participatory'', no. 3. https://doi.org/10.54590/pop.2021.004 '''
</div>
Demonstrates community-aware analytics for scholarly communities; touches on representational choices and the risks of flattening diverse practices through metrics.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Siemens, Lynne, and the INKE Research Group (2023). “I Stayed for the Community: Collaboration and Community in an Open Social Scholarship Research Project.” ''Pop! Public. Open. Participatory'', no. 5. https://doi.org/10.54590/pop.2023.013'''
</div>
Views the success of open social scholarship as depending heavily on "heritage relationships" and the invisible labor of interpersonal maintenance, treating cross-sector collaboration as a deliberate methodological challenge rather than a natural byproduct of funding. Highlights a structural tension between community-driven qualitative goals and rigid academic metrics, urging institutions to formally recognize and resource the relational infrastructure that sustains Digital Humanities projects.
===Mobilisation===
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Arbuckle, Alyssa, Ray Siemens, Jon Bath, Constance Crompton, Laura Estill, Tanja Niemann, Jon Saklofske, and Lynne Siemens. 2022. “An Open Social Scholarship Path for the Humanities”. ''The Journal of Electronic Publishing'' 25 (2). https://doi.org/10.3998/jep.1973'''
</div>
Defines OSS practices and infrastructures to support translation, engagement, and reciprocal exchange between researchers and publics.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Jensen, Graham. 2023. “Introduction: Digital Knowledge Commons, Scholarly Connection, and the Evolution of Open Scholarship.” ''Open Scholarship Press Curated Volumes: Connection''. https://doi.org/10.21428/47bc126e.0ca461a4'''
</div>
Connects social scholarly tools and commons-based infrastructures to mobilization pathways; highlights interoperability and community practices.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Nelson, Brent, Miguel Dela Pena, and the Prototyping the Digital Archive Team & the INKE Research Group. 2023. “No Journal is an Island: The John Donne Journal and the Possibilities of Open Access.” ''Pop! Public. Open. Participatory'', no. 5. https://doi.org/10.54590/pop.2023.007'''
</div>
Case study of OA pathways as mobilization; addresses circulation, visibility, and engagement with broader publics.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Winter, Caroline. 2023. “Introduction: Open Scholarship Policy in Focus.” ''Open Scholarship Press Curated Volumes: Policy''. https://doi.org/10.21428/47bc126e.5abba88b'''
</div>
Frames policy as a vehicle for knowledge mobilization across sectors; emphasizes provenance, accountability, and public value alignment.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Winter, Caroline, Tyler Fontenot, Luis Meneses, Alyssa Arbuckle, Ray Siemens, and the ETCL and INKE Research Groups. 2020. “Foundations for the Canadian HSS Commons: Exploring the Possibilities of Digital Research Communities.” ''Pop! Public. Open. Participatory'', no. 2. https://doi.org/10.48404/pop.2020.05'''
Maps HSS Commons as mobilization infrastructure; addresses governance mechanisms, provenance, and dialogic engagement in a Canadian context.
</div>
===Platforms===
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Bullard, Julia. 2023. “Describing the HSS Commons: The View from Metadata.” ''Pop! Public. Open. Participatory'', no. 5. https://doi.org/10.54590/pop.2023.004 '''
</div>
Metadata as platform backbone; shows how descriptive schemas shape visibility/legitimacy; connects to interoperability and inclusive description.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Goddard, Lisa. (2021). “Persistent Identifiers as Open Research Infrastructure to Reduce Administrative Burden.” ''Pop! Public. Open. Participatory'', no. 3. https://doi.org/10.54590/pop.2021.006 '''
</div>
PIDs as platform connective tissue; crucial for provenance, traceability, and platform interoperability across repositories/journals.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Jensen, Graham, Alyssa Arbuckle, Caroline Winter, Talya Jesperson, Tyler Fontenot, Ray Siemens, and the ETCL and INKE Research Groups. 2022. “Fostering Digital Communities of Care: Safety, Security, and Trust in the Canadian HSS Commons.” ''IDEAH'' 3 (2). https://ideah.pubpub.org/pub/h7927ugt '''
</div>
Governance and moderation as platform design commitments; aligns with OSS values around safety and reciprocity.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Meneses, Luis. 2020. “Integrating the Social Media Engine with Large-scale Open Access Repositories: A Discussion.” ''Pop! Public. Open. Participatory'', no. 2. https://doi.org/10.48404/pop.2020.04 '''
</div>
Explores platform coupling between OA repositories and social layers; anticipates AI-mediated discovery/recommendation impacts on visibility.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Turin, Mark. 2021. “From Orality to Open: Innovations in Multimedia Monograph Publishing in the Humanities.” ''Pop! Public. Open. Participatory'', no. 3. https://doi.org/10.54590/pop.2021.005 '''
</div>
Platform affordances for multimodal scholarship; how platform standards and workflows enable plural forms and publics.
== Open Social Scholarship ==
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Arbuckle, Alyssa, and John Maxwell. (2019). “Modelling Open Social Scholarship Within the INKE Community.” ''KULA: Knowledge Creation, Dissemination, and Preservation Studies'' 3 (1), 1–8. https://doi.org/10.5334/kula.15'''
</div>
Moves “beyond open access” toward OSS practice by reworking scholarly communication workflows around collaboration, transparency, and community needs. Emphasizes infrastructure choices and governance as sites where values are enacted. Gives concrete criteria for participatory infrastructures and power‑sharing in scholarly communication; helpful to evaluate platform design choices.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Arbuckle, Alyssa, Ray Siemens, Jon Bath, Constance Crompton, Laura Estill, Tanja Niemann, Jon Saklofske, and Lynne Siemens. 2022. “An Open Social Scholarship Path for the Humanities.” ''Journal of Electronic Publishing'' 25 (2). https://doi.org/10.3998/jep.1973'''
</div>
A concise, peer‑reviewed articulation of open social scholarship (OSS) from INKE/ETCL leaders, translating principles into programs of action: public engagement, community training, policy, and infrastructure. Provides a normative baseline to assess whether platforms and practices foster dialogic exchange and mutuality rather than extraction.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Arthur, Paul L., Lyida Hearn, Lucy Montgomery, Hugh Craig, Alyssa Arbuckle, and Ray Siemens. 2021. “Open Scholarship in Australia: A Review of Needs, Barriers, and Opportunities.” ''Digital Scholarship in the Humanities'', 36 (4): 795–812. https://doi.org/10.1093/llc/fqaa063'''
</div>
Peer‑reviewed assessment from CA‑Aus collaborators surfaces structural barriers (policy, incentives, infrastructure) and opportunities for publicly engaged open scholarship. Frames how national policy, incentives, and infrastructure shape whether openness reduces or reproduces inequities.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''El Khatib, Randa, Lindsey Seatter, Tracey El Hajj, Conrad Leibel, Alyssa Arbuckle, Ray Siemens, Caroline Winter, and the ETCL and INKE Research Groups. 2019. “Open Social Scholarship Annotated Bibliography.” ''KULA'' 3 (1): 1–141. https://doi.org/10.5334/kula.58'''
</div>
Field‑defining synthesis of OSS foundations, surveying open access, participatory publishing, crowdsourcing, social knowledge creation, and policy. Establishes terminology and exemplars that connect openness with social responsibility. Defines a master index to map subdomains of openness and identify non‑AI precedents for care, accessibility, and accountability in scholarly infrastructures.
<div style="text-indent: -20px; padding-left: 20px; margin-bottom: -10px">
'''Maxwell, John W. 2015. “Beyond Open Access to Open Publication and Open Scholarship.” ''Scholarly and Research Communication'' 6 (3): 1–10. https://doi.org/10.22230/src.2015v6n3a202'''
</div>
Argues that simply “access” is insufficient; emphasizes usability, participatory review, and community‑responsive publishing workflows. Repositions openness as an ecosystem of practices with embedded care and accountability. Yields criteria for evaluating whether “openness” translates to meaningful, non‑extractive participation and shared authority in knowledge production.
{{Navigation|previous=Introduction|next=AI and Open}}
{{BookCat}}
400ckkon7wjdstnsz2mumcxbht9yu42
Vehicle Identification Numbers (VIN codes)/Audi/VIN Codes
0
483747
4641122
4641109
2026-06-25T13:17:45Z
JustTheFacts33
3434282
/* Motor codes for Electric Vehicles */
4641122
wikitext
text/x-wiki
{{Vehicle Identification Numbers (VIN codes)/Warning}}{{clear}}
===Positions 1–3, World Manufacturer Identifier:===
* WAU - Audi (Audi AG) passenger car
* WA1 - Audi (Audi AG) SUV
* WUA - Audi passenger car - quattro GmbH/Audi Sport GmbH (RS3, RS4, RS5, RS6, RS7, TT RS ['18-'22], R8,<br> S4 Cabriolet ['04-'09], S4 25quattro Special Edition sedan ['06], S8 plus ['16-'18], Non-North American Mkt. RS Q3, Q7 V12 TDI)
* WU1 - Audi SUV - Audi Sport GmbH (RS Q8)
* TRU - Audi Hungary (Audi Hungaria Motor Kft.) passenger car (only used for TT/TTS & '12-'13 TT RS)
* 3U5 - Audi Mexico SUV
===Position 5, Engine Type: ===
{| class="wikitable"
|+Position 5
|-
! VIN !! Size !! Type !! Fuel !! Valvetrain !! Engine Family/Notes/Applications
|-
| A || 1.7L || I4 || Gas || SOHC,<br /> 8 valve || MPI. VW EA827 engine.<br> Audi 4000 4E/4000S 4E ('81-'83)
|-
| A || 1.8L || I4 || Gas || SOHC,<br /> 8 valve || MPI. VW EA827 engine.<br> Audi 4000S ('84)
|-
| A || 2.1L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi Coupe GT ('84)
|-
| A || 2.0L || I4 || Gas || SOHC,<br /> 8 valve || MPI. VW EA827 engine.<br> Audi 80 ('90)
|-
| A || 2.2L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA828 I5 engine. <br> Audi S6 ('95 & '96-'97 in Canada)
|-
| A || 2.8L || 90° V6 || Gas || SOHC,<br /> 12 valve || MPI. Audi EA835 engine - Gen 1. Iron Block. <br> Audi 90 ('95), Cabriolet ('95-'98), A4 2.8 ('96-'97), A6 sedan ('95-'97), A6 wagon ('95-'98)
|-
| A || 2.8L || 90° V6 || Gas || DOHC,<br /> 30 valve || MPI. Audi EA835 engine - Gen 2. Iron Block.<br> Audi A6 sedan 2.8 ('98-'99), A6 Avant 2.8 ('99)
|-
| A || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || Direct injection. Audi-Bentley EA824 engine. 3993cc. 560 hp.<br> Audi RS7 ('17-'18)
|-
| A || 5.2L || 90° V10 || Gas || DOHC,<br /> 40 valve || Direct injection. Dry sump lubrication. Audi EA824 V10 engine. 532 hp.<br> Audi R8 V10 Quattro ('17-'18), R8 V10 RWS ('18), R8 Rwd ('21)
|-
| A || 3.0L || 90° V6 supercharged [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine.<br> Audi Q7 3.0T ('17-'19)
|-
| A || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || 12v Mild Hybrid. Direct injection. Exhaust AVS. Audi EA888 engine - ULEV. TSI. Timing chain. <br> Audi A4 45 TFSI ('21-'23), A4 Allroad 45 TFSI ('21-'23),<br> A5 Coupe/Cabriolet 45 TFSI ('21-'23), A5 Sportback 45 TFSI ('21-'23),<br> Q5 45 TFSI ('21-'23), Q5 Sportback 45 TFSI ('21-'23)
|-
| B || 2.1L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 4000 ('81), Coupe ('81-'83), 5000/5000S ('81-'84)
|-
| B || 1.8L || I4 || Gas || SOHC,<br /> 8 valve || MPI. VW EA827 engine.<br> Audi 4000S ('85-'87) [Pos. 7-8 of VIN is 81]
|-
| B || 2.2L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 4000S Quattro ('84-'85), 4000CS Quattro ('86-'87) [Pos. 7-8 of VIN is 85],<br> 5000S ('85-'86)
|-
| B || 2.0L || I4 || Gas || SOHC,<br /> 8 valve || MPI. VW EA827 engine.<br> Audi 80 ('88-'89), 90 ('88)
|-
| B || 2.3L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 100 ('89), 100 Quattro ('89)
|-
| B || 2.0L || I4 || Gas || SOHC,<br /> 8 valve || MPI. VW EA827 engine.<br> Audi 80 ('90)
|-
| B || 1.8L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA827/EA113 engine. <br> Audi A4 1.8T ('97-'99)
|-
| B || 5.2L || 90° V10 || Gas || DOHC,<br /> 40 valve || Direct injection. Dry sump lubrication. Audi EA824 V10 engine. 602 hp.<br> Audi R8 V10 Plus Quattro ('17-'18), R8 V10 Performance Quattro ('20-'23), R8 GT Rwd ('23)
|-
| B || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || 12v Mild Hybrid. Direct injection. Miller Cycle (B-Cycle). Intake AVS. Audi EA888 engine - ULEV. TSI. Timing chain. Detuned version: 201 hp.<br> Audi A4 40 TFSI ('21-'23), A5 Sportback 40 TFSI ('21-'23), Q5 40 TFSI ('22-'23)
|-
| C || 2.1L || I5 Turbo || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 5000 Turbo ('81-'83)
|-
| C || 2.1L || I5 Turbo [[w:Intercooler|IC]] || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi Quattro Coupe ('82‡ & '83-'85), 5000S Turbo ('84-'85)
|-
| C || 2.3L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 80 ('91-'92), 80 Quattro ('88-'92), 90 ('88-'91), 90 Quattro ('88-'89),<br> 5000S ('87-'88), 5000S Quattro ('88), 100 ('90-'91), 100 Quattro ('90-'91)
|-
| C || 2.2L || I5 Turbo [[w:Intercooler|IC]] || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 200 Turbo ('89), 200 Turbo Quattro ('89)
|-
| C || 2.8L || 90° V6 || Gas || SOHC,<br /> 12 valve || MPI. Audi EA835 engine - Gen 1. Iron Block. <br> Audi A6 sedan ('95-'97), A6 wagon ('96-'98)
|-
| C || 1.8L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA827/EA113 engine. <br> Audi A4 sedan/Avant 1.8T ('00-Mid '05), A4 Cabriolet 1.8T ('03-'06), TT [180 hp] ('00-'06)
|-
| C || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas-Electric Hybrid || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine + electric motor. Lithium-ion Battery Pack.<br> Audi Q5 Hybrid (Early '14)
|-
| C || 1.8L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - PZEV. TSI. Timing chain.<br> Audi A3 Fwd 1.8T ('15)
|-
| C || 3.0L || 90° V6 supercharged [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine.<br> Audi SQ5 ('16-'17)
|-
| C || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. <br> Audi Q3 ('17-'18)
|-
| C || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || 48v Mild Hybrid. Direct injection. Porsche-Audi EA825 engine. 3996cc. 591 hp.<br> Audi RS6 Avant ('21-'23), RS7 ('21-'23)
|-
| C || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || 12v Mild Hybrid. Direct injection. Exhaust AVS. Audi EA888 engine - ULEV. TSI. Timing chain. <br> Audi Q7 45 TFSI ('23)
|-
| D || 2.1L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi Coupe GT ('84)
|-
| D || 2.2L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi Coupe GT ('85-'87)
|-
| D || 2.3L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 80 ('91), 80 Quattro ('90-'91), 90 ('90)
|-
| D || 2.3L || I5 || Gas || DOHC,<br /> 20 valve || MPI. Audi EA828 I5 engine. <br> Audi Coupe Quattro 20V ('90)
|-
| D || 2.2L || I5 Turbo [[w:Intercooler|IC]] || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 5000CS Turbo ('86-'88), 200 Turbo ('90-'91), 200 Turbo Quattro ('90)
|-
| D || 2.8L || 90° V6 || Gas || DOHC,<br /> 30 valve || MPI. Audi EA835 engine - Gen 2. Iron Block.<br> Audi A4 2.8 ('98-'99)
|-
| D || 2.7L || 90° V6 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 30 valve || MPI. Audi EA835 engine - Gen 2. Iron Block.<br> Audi S4 ('00-'02), A6 2.7T ('00-'04), Allroad Quattro 2.7T ('02-'05)
|-
| D || 3.2L || 15° VR6 || Gas || DOHC,<br /> 24 valve || MPI. VW EA390 engine.<br> Audi A3 3.2 ('06-'09), TT 3.2 ('05-'06, '08-'09)
|-
| D || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || 48v Mild Hybrid. Direct injection. Audi-Porsche EA839 engine.<br> Audi A8 3.0T/55 TFSI ('19-'23)
|-
| E || 2.3L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi Coupe GT 2.3 "Special Build" (Late '87)
|-
| E || 2.2L || I5 Turbo [[w:Intercooler|IC]] || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 5000CS Turbo Quattro ('86-'88)
|-
| E || 2.3L || I5 || Gas || DOHC,<br /> 20 valve || MPI. Audi EA828 I5 engine. <br> Audi 90 Quattro 20V ('90-'91), Coupe Quattro 20V ('90-'91)
|-
| E || 2.2L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA828 I5 engine. <br> Audi 200 Turbo Quattro 20V ('91)
|-
| E || 3.6L || 90° V8 || Gas || DOHC,<br /> 32 valve || MPI. Audi V8 engine. Audi V8 Quattro ('90-'91)
|-
| E || 2.8L || 90° V6 || Gas || SOHC,<br /> 12 valve || MPI. Audi EA835 engine - Gen 1. Iron Block. <br> Audi 90 ('95)
|-
| E || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - PZEV. TSI. Timing chain.<br> Audi A3 Fwd 2.0T ('08-'13)
|-
| E || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Exhaust AVS. Audi EA888 engine - SULEV. TSI. Timing chain.<br> Audi A3 2.0T Quattro ('18-'20), TT ('19-'23), Q3 2.0T/45 TFSI ('19-'20), Q3 S Line 45 TFSI ('21-'23)
|-
| E || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || 48v Mild Hybrid. Direct injection. Porsche-Audi EA825 engine. 3996cc. 453 hp.<br> Audi A8 4.0T ('19-'21)
|-
| E || 5.2L || 90° V10 || Gas || DOHC,<br /> 40 valve || Direct injection. Dry sump lubrication. Audi EA824 V10 engine. 562 hp.<br> Audi R8 V10 Quattro ('20), R8 V10 Performance Rwd ('22-'23)
|-
| F || 2.3L || I5 || Gas || DOHC,<br /> 20 valve || MPI. Audi EA828 I5 engine. <br> Audi 90 Quattro 20V ('90-'91), Coupe Quattro 20V ('91)
|-
| F || 3.7L || 90° V8 || Gas || DOHC,<br /> 32 valve || MPI. Audi V8 engine. Audi A8 3.7 ('97-'99)
|-
| F || 3.2L || 15° VR6 || Gas || DOHC,<br /> 24 valve || MPI. VW EA390 engine.<br> Audi TT 3.2 ('04-'05)
|-
| F || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA113 engine. FSI. Timing belt. <br> Audi A3 2.0T ('06-'08), A4 sedan 2.0T (Mid '05-'08), A4 Avant 2.0T (Mid '05-'08),<br> A4 Cabriolet 2.0T ('07-'09), TT ('08-'09), TTS ('09)
|-
| F || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain.<br> Audi A3 2.0T ('08-'11), A3 2.0T Quattro ('12-'13), A4 sedan 2.0T ('09-'12), A4 sedan 2.0T Fwd ('13-'16), A4 sedan 2.0T Quattro w/man. trans. ('13-'16), A4 sedan 2.0T Quattro w/auto. trans. (Early '13),<br> A4 Avant 2.0T ('09-'12), Allroad 2.0T (Early '13), A5 2.0T ('10-'12),<br> A5 Coupe 2.0T Quattro w/man. trans. ('13-'15), A5 Cabriolet 2.0T Fwd ('13-'14),<br> A5 2.0T Quattro w/auto. trans. (Early '13), A6 2.0T ('12-'16), TT ('09-'15), Q3 ('15-'16),<br> Q5 2.0T ('11-Early '13)
|-
| F || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - PZEV. TSI. Timing chain.<br> Audi A3 Fwd 2.0T (Early prod. '12)
|-
| F || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas/E85 || DOHC,<br /> 16 valve || Flex Fuel. Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain.<br> Audi A4 sedan 2.0T Quattro w/auto. trans. ('13-'16), Allroad 2.0T ('13-'16),<br> A5 2.0T Quattro w/auto. trans. ('13-'15), Q5 2.0T ('13-'15)
|-
| F || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - PZEV. TSI. Timing chain.<br> Audi A3 2.0T Quattro ('15)
|-
| F || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. High Output: 288 hp.<br> Audi S3 Quattro ('15)
|-
| F || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || Direct injection. Audi-Bentley EA824 engine. 3993cc. 450 hp.<br> Audi S6 ('17-'18), S7 ('17-'18)
|-
| F || 2.9L || 90° V6 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || 48v Mild Hybrid. Direct injection. Audi-Porsche EA839 engine.<br> Audi S6 ('20-'23), S7 ('20-'23)
|-
| G || 1.6L || I4 || Diesel || SOHC,<br /> 8 valve || Indirect injection. VW EA827 engine. Audi 4000 Diesel ('82)
|-
| G || 2.0L || I5 || Diesel || SOHC,<br /> 10 valve || Indirect injection. Audi 5000 Diesel ('81)
|-
| G || 4.2L || 90° V8 || Gas || DOHC,<br /> 32 valve || MPI. Audi V8 engine. 4172cc.<br> Audi A8 4.2 ('97-'99)
|-
| G || "3.2L" || 90° V6 || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine. 3.1L=3123cc.<br> Audi A4 sedan/Avant 3.2 (Mid '05-'06), A6 3.2 ('05-'06)
|-
| G || 3.0L || 90° V6 supercharged [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine.<br> Audi S4 ('10-'16), S5 Cabriolet ('10-'15, Early '16), S5 coupe ('13-'15), A6 3.0T ('09-'16),<br> A7 3.0T ('12-'16), A8 3.0T ('13-'15), Q5 3.0T ('13-'15), SQ5 ('14-'15), Q7 3.0T ('11-'15)
|-
| G || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain.<br> Audi A5 2.0T w/man. trans. ('16-'17)
|-
| G || 6.3L || 72° W12 || Gas || DOHC,<br /> 48 valve || Direct injection. VW W12 engine. Audi A8 W12 ('16)
|-
| G || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas-Electric Hybrid || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine + electric motor. Lithium-ion Battery Pack.<br> Audi Q5 Hybrid ('16)
|-
| H || 1.6L || I4 Turbo || Diesel || SOHC,<br /> 8 valve || Indirect injection. VW EA827 engine. Audi 4000 Turbo Diesel ('83)
|-
| H || 2.0L || I5 || Diesel || SOHC,<br /> 10 valve || Indirect injection. Audi 5000 Diesel ('82)
|-
| H || 2.0L || I5 Turbo || Diesel || SOHC,<br /> 10 valve || Indirect injection. Audi 5000 Turbo Diesel ('83)
|-
| H || 2.8L || 90° V6 || Gas || DOHC,<br /> 30 valve || MPI. Audi EA835 engine - Gen 2. Iron Block.<br> Audi A4 2.8 ('00-'01), A6 2.8 ('00-'01)
|-
| H || "3.2L" || 90° V6 || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine. 3.1L=3123cc.<br> Audi A4 sedan/Avant 3.2 ('06-'08), A4 Cabriolet 3.2 ('07-'09), A6 3.2 ('06-'09)
|-
| H || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. <br> Audi Q7 2.0T ('17-'19)
|-
| H || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Gas-Electric [[w:Plug-in hybrid|PHEV]] || DOHC,<br /> 24 valve || Direct injection. Audi-Porsche EA839 engine + electric motor. Lithium-ion Battery Pack.<br> Audi A8 60 TFSI e ('20-'21)
|-
| J || 2.8L || 90° V6 || Gas || SOHC,<br /> 12 valve || MPI. Audi EA835 engine - Gen 1. Iron Block. <br> Audi 90 ('93-'94), 100 ('92-'94)
|-
| J || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Diesel || DOHC,<br /> 16 valve || Common-Rail Direct injection. VW EA189 engine.<br> Audi A3 TDI ('10-'13)
|-
| J || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Diesel || DOHC,<br /> 16 valve || Common-Rail Direct injection. SCR. VW EA288 engine.<br> Audi A3 TDI ('15)
|-
| J || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. <br> Audi Q7 45 TFSI ('20-'22)
|-
| K || 2.8L || 90° V6 || Gas || SOHC,<br /> 12 valve || MPI. Audi EA835 engine - Gen 1. Iron Block. <br> Audi 90 ('93-'95), 100 ('92-'94)
|-
| K || 3.2L || 90° V6 || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine. 3197cc. <br> Audi A4 sedan 3.2 ('09), A5 3.2 ('08-'10), A6 3.2 ('10-'11), Q5 3.2 ('09-'12)
|-
| L || 2.8L || 90° V6 || Gas || SOHC,<br /> 12 valve || MPI. Audi EA835 engine - Gen 1. Iron Block. <br> Audi Cabriolet ('94-'95)
|-
| L || 4.2L || 90° V8 || Gas || DOHC,<br /> 40 valve || MPI. Audi V8 engine. 4172cc.<br> Audi A6 4.2 ('00-'04), A8 4.2 ('00-'06)
|-
| L || 4.2L || 90° V8 || Gas || DOHC,<br /> 40 valve || MPI. Audi EA824 engine. 4163cc.<br> Audi S4 sedan/Avant ('04-'08), S4 Cabriolet ('04-'09),<br> A6 4.2 ('05-'06), Allroad Quattro 4.2 ('04-'05)
|-
| M || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Diesel || DOHC,<br /> 24 valve || Direct injection. Audi EA897 engine.<br> Audi A6 TDI ('14-'16), A7 TDI ('14-'16), A8 TDI ('14-'15), Q5 TDI ('14-'15), Q7 TDI ('09-'15)
|-
| M || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Miller Cycle (B-Cycle). Intake AVS. Audi EA888 engine - ULEV. TSI. Timing chain. Detuned version: 188 hp.<br> Audi A4 Ultra 2.0T Fwd ('17-'18), A4 2.0T Fwd ('19-'20)
|-
| N || 5.2L || 90° V10 || Gas || DOHC,<br /> 40 valve || Direct injection. Audi EA824 V10 engine.<br> Audi S6 ('07-'11), S8 ('07-'09)
|-
| N || 5.2L || 90° V10 || Gas || DOHC,<br /> 40 valve || Direct injection. Dry sump lubrication. Audi EA824 V10 engine.<br> Audi R8 ('10-'12, '14-'15)
|-
| N || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Exhaust AVS. Audi EA888 engine - ULEV. TSI. Timing chain. <br> Audi A4 2.0T Fwd/Quattro ('17-'18), A4 2.0T Quattro ('19-'20), A4 Allroad Quattro ('17-'20),<br> A5 Coupe/Cabriolet 2.0T Quattro ('18-'20), A5 Sportback 2.0T Quattro ('18-'20),<br> Q5 2.0T Quattro ('18-'20)
|-
| P || 2.2L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA828 I5 engine. <br> Audi S4 [C4 (4A)] ('92-'93)
|-
| P || 2.7L || 90° V6 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 30 valve || MPI. Audi EA835 engine - Gen 2. Iron Block.<br> Audi Allroad Quattro 2.7T ('01)
|-
| P || 1.4L || I4 Turbo [[w:Intercooler|IC]] || Gas-Electric [[w:Plug-in hybrid|PHEV]] || DOHC,<br /> 16 valve || Direct injection. VW EA211 engine + electric motor. Lithium-ion Battery Pack.<br> Audi A3 Sportback e-tron ('16-'18)
|-
| P || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas-Electric [[w:Plug-in hybrid|PHEV]] || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine + electric motor. Lithium-ion Battery Pack. TSI. Timing chain.<br> SULEV.<br> Audi A7 55 TFSI e ('21-'22)
|-
| R || 2.2L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA828 I5 engine. <br> Audi S4 [C4 (4A)] ('93-'94)
|-
| R || 6.0L || 72° W12 || Gas || DOHC,<br /> 48 valve || MPI. VW W12 engine. Audi A8 W12 ('05-'09)
|-
| R || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || Direct injection. Audi-Bentley EA824 engine. 3993cc. 605 hp.<br> Audi RS7 performance ('16-'18)
|-
| R || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Diesel || DOHC,<br /> 24 valve || Direct injection. Audi EA897 engine. Audi A8 TDI ('16)
|-
| R || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || 48v Mild Hybrid. Direct injection. Porsche-Audi EA825 engine. 3996cc. 591 hp.<br> Audi RS Q8 ('20-'23)
|-
| S || 1.8L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA827/EA113 engine. 180 hp. <br> Audi TT (Early '00)
|-
| S || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || Direct injection. Audi-Bentley EA824 engine. 3993cc.<br> Audi S8 ('16)
|-
| S || 2.5L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || Direct injection. Audi EA855 engine.<br> Audi TT RS ('18-'22)
|-
| S || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || 48v Mild Hybrid. Direct injection. Porsche-Audi EA825 engine. 3996cc. 563 hp.<br> Audi S8 ('20-'23)
|-
| T || 1.8L || I4 Turbo Twin [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA827/EA113 engine. High Output - 225 hp. Single Turbo, Twin Intercoolers. <br> Audi TT ('01-'06)
|-
| T || 3.0L || 90° V6 || Gas || DOHC,<br /> 30 valve || MPI. Audi EA835 engine - Gen 3. Aluminum block.<br> Audi A4 sedan/Avant 3.0 ('02-Mid '05), A4 Cabriolet 3.0 ('03-'06), A6 3.0 ('02-'04)
|-
| T || "3.2L" || 90° V6 || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine. 3.1L=3123cc.<br> Audi A6 3.2 ('05)
|-
| U || 4.2L || 90° V8 || Gas || DOHC,<br /> 40 valve || MPI. Audi V8 engine. 4172cc.<br> Audi S6 Avant ('02-'03), S8 ('01-'03)
|-
| U || 4.2L || 90° V8 || Gas || DOHC,<br /> 32 valve || Direct injection. Audi EA824 engine. 4163cc.<br> Audi RS4 sedan ('07-'08), RS4 Cabriolet ('08)
|-
| U || 4.2L || 90° V8 || Gas || DOHC,<br /> 32 valve || Direct injection. Dry sump lubrication. Audi EA824 engine. 4163cc.<br> Audi R8 ('08-'12, '14-'15)
|-
| U || 5.2L || 90° V10 || Gas || DOHC,<br /> 40 valve || Direct injection. Dry sump lubrication. Audi EA824 V10 engine.<br> Audi R8 V10 coupe w/man. trans. (Early '14) [when U in 5th pos. of VIN follows G in 4th pos. of VIN]
|-
| U || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Miller Cycle (B-Cycle). Intake AVS. Audi EA888 engine - PZEV. TSI. Timing chain. Detuned version: 184 hp.<br> Audi A3 2.0T Fwd ('17)
|-
| U || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Miller Cycle (B-Cycle). Intake AVS. Audi EA888 engine - SULEV. TSI. Timing chain. Detuned version: 184 hp.<br> Audi A3 2.0T Fwd ('18-'20), Q3 40 TFSI ('21-'22)
|-
| U || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Miller Cycle (B-Cycle). Intake AVS. Audi EA888 engine - ULEV. TSI. Timing chain. Detuned version: 184 hp.<br> Audi Q3 40 TFSI ('23)
|-
| U || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || 48v Mild Hybrid. Direct injection. Miller Cycle (B-Cycle). Intake AVS. Audi EA888 engine - SULEV.<br> TSI. Timing chain. 201 hp.<br> Audi A3 40 TFSI ('22-'23)
|-
| V || 4.2L || 90° V8 || Gas || DOHC,<br /> 32 valve || MPI. Audi V8 engine. 4172cc. Audi V8 Quattro ('92-'93)
|-
| V || 4.2L || 90° V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 40 valve || MPI. Audi V8 engine. 4172cc.<br> Audi RS6 (US: '03, Canada: '04)
|-
| V || 4.2L || 90° V8 || Gas || DOHC,<br /> 32 valve || Direct injection. Audi EA824 engine. 4163cc.<br> Audi S5 coupe ('08-'12), A6 4.2 ('07-'11), A8 4.2 ('07-'12), Q7 4.2 ('07-'10)
|-
| V || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Diesel || DOHC,<br /> 24 valve || Direct injection. Audi EA897 engine. Audi Q5 TDI ('16)
|-
| V || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || 48v Mild Hybrid. Direct injection. Audi-Porsche EA839 engine.<br> Audi Q8 3.0T/55 TFSI ('19-'23)
|-
| W || 4.2L || 90° V8 || Gas || DOHC,<br /> 32 valve || MPI. Audi V8 engine. 4172cc. Audi V8 Quattro ('92-'94)
|-
| W || 2.5L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || Direct injection. Audi EA855 engine.<br> Audi RS3 ('17-'20)
|-
| W || 2.9L || 90° V6 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi-Porsche EA839 engine.<br> Audi RS5 coupe ('18-'19, '21-'23), RS5 Sportback ('19, '21-'23)
|-
| W || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || 48v Mild Hybrid. Direct injection. Porsche-Audi EA825 engine. 3996cc. 500 hp.<br> Audi SQ7 ('20-'23), SQ8 ('20-'23)
|-
| X || 1.8L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA827/EA113 engine. 180 hp. <br> Audi TT ('01-'02)
|-
| X || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || 48v Mild Hybrid. Direct injection. Audi-Porsche EA839 engine.<br> Audi Q7 55 TFSI ('20-'23)
|-
| Y || 3.6L || 10.6° VR6 || Gas || DOHC,<br /> 24 valve || Direct injection. VW EA390 engine.<br> Audi Q7 3.6 ('07-'10)
|-
| 1 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA113 engine - ULEV. FSI. Timing belt.<br> Audi TTS ('10-'15)
|-
| 1 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. High Output: 288 hp.<br> Audi S3 Quattro ('16-'20), TTS ('16-'23)
|-
| 2 || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || Direct injection. Audi-Bentley EA824 engine. 3993cc.<br> Audi S6 ('13-'16), S7 ('13-'16), RS7 ('14-'16), A8 4.0T ('13-'15), S8 ('13-'15)
|-
| 2 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas/E85 || DOHC,<br /> 16 valve || Flex Fuel. Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain.<br> Audi A5 2.0T w/auto. trans. ('16-'17), Q5 2.0T ('16-'17)
|-
| 2 || 3.0L || 90° V6 supercharged [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine.<br> Audi A6 3.0T ('17), A7 3.0T ('17)
|-
| 2 || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || 48v Mild Hybrid. Direct injection. Audi-Porsche EA839 engine.<br> Audi A6 3.0T/55 TFSI ('19-'23), A6 Allroad ('20-'23), A7 3.0T/55 TFSI ('19-'23)
|-
| 2 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas-Electric [[w:Plug-in hybrid|PHEV]] || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine + electric motor. Lithium-ion Battery Pack. TSI. Timing chain.<br> Audi Q5 55 TFSI e ('20-'23)
|-
| 3 || 2.5L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || Direct injection. Audi EA855 engine.<br> Audi TT RS ('12-'13)
|-
| 3 || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || Direct injection. Audi-Bentley EA824 engine. 3993cc.<br> Audi A8 4.0T ('16-'18)
|-
| 3 || 3.0L || 90° V6 supercharged [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine. Higher Output: 340 hp.<br> Audi A6 3.0T Competition ('17), A6 3.0T ('18), A7 3.0T Competition ('17), A7 3.0T ('18)
|-
| 3 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || 12v Mild Hybrid. Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. 261 hp.<br> Audi A6 Sport 45 TFSI ('21), A6 45 TFSI ('22-'23)
|-
| 3 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. High Output: 306 hp.<br> Audi S3 Quattro ('22-'23)
|-
| 4 || 6.3L || 72° W12 || Gas || DOHC,<br /> 48 valve || Direct injection. VW W12 engine. Audi A8 W12 ('12-'15)
|-
| 4 || 3.0L || 90° V6 supercharged [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine.<br> Audi S5 coupe ('16-'17), S5 Cabriolet ('16-'17), A8 3.0T ('16-'18)
|-
| 4 || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi-Porsche EA839 engine.<br> Audi S4 ('18-'23), S5 coupe/cabriolet ('18-'23), S5 Sportback ('18-'23), SQ5 ('18-'23),<br> SQ5 Sportback ('21-'23)
|-
| 4 || 2.5L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || Direct injection. Audi EA855 engine. 401 hp.<br> Audi RS3 ('22-'23)
|-
| 5 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Exhaust AVS. Audi EA888 engine - PZEV. TSI. Timing chain.<br> Audi TT ('16-'17)
|-
| 5 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Exhaust AVS. Audi EA888 engine - SULEV. TSI. Timing chain.<br> Audi TT ('18)
|-
| 5 || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || Direct injection. Audi-Bentley EA824 engine. 3993cc. 605 hp.<br> Audi S8 plus ('16-'18)
|-
| 6 || 4.2L || 90° V8 || Gas || DOHC,<br /> 32 valve || Direct injection. Audi EA824 engine. 4163cc.<br> Audi RS5 ('13-'15)
|-
| 7 || 1.8L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - PZEV. TSI. Timing chain.<br> Audi A3 Fwd 1.8T ('16)
|-
| 7 || 3.0L || 90° V6 supercharged [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine.<br> Audi Q5 3.0T ('16-'17)
|-
| 8 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas-Electric Hybrid || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine + electric motor. Lithium-ion Battery Pack.<br> Audi Q5 Hybrid ('13-'15)
|-
| 8 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - PZEV. TSI. Timing chain.<br> Audi A3 2.0T Quattro ('16-'17)
|-
| 8 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - SULEV. TSI. Timing chain.<br> Audi A3 2.0T Quattro ('18)
|-
| 8 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain.<br> Audi A6 2.0T ('17-'18)
|-
| 8 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || 12v Mild Hybrid. Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. 248 hp.<br> Audi A6 2.0T/45 TFSI ('19-'21)
|}
‡1982 Audi Quattro: 3-4 cars were imported to the US for marketing purposes and as press cars. They remained in the US after those uses ended and transitioned into private ownership. These cars carry US-style VINs rather than European-style VINs. 3 VINs have been found. Their serial numbers (last 6 digits of VIN) are 900565, 900586, and 900648. The Audi Quattro was officially sold in the US for the 1983-1985 model years.
====Motor codes for Electric Vehicles====
{| class="wikitable"
|+Position 5
|-
! VIN !! Motor Designation !! Fuel !! Drive Wheels !! Battery Size !! Application/Notes
|-
| A ||APA250 (Front) / AKA320 (Rear)|| Electricity || All ||95 Kwh (gross) / 83.6 Kwh (net) || Audi e-tron quattro ('19), e-tron Sportback quattro ('20)
|-
| A ||APA250 (Front) / AKA320 (Rear)|| Electricity || All ||95 Kwh (gross) / 86.5 Kwh (net) || Audi e-tron quattro ('21-'23), e-tron Sportback quattro ('21-'23)
|-
| A ||APA250 (Front) / AKA320 (Rear)|| Electricity || All ||114 Kwh (gross) / 106 Kwh (net) || Audi Q8 e-tron quattro ('24), Q8 e-tron Sportback quattro ('24)
|-
| C ||APA320 (1 Front) / ATA250 (2 Rear)|| Electricity || All ||95 Kwh (gross) / 86.5 Kwh (net) || Audi e-tron S quattro ('22-'23), e-tron S Sportback quattro ('22-'23)
|-
| C ||APA320 (1 Front) / ATA250 (2 Rear)|| Electricity || All ||114 Kwh (gross) / 106 Kwh (net) || Audi SQ8 e-tron quattro ('24), SQ8 e-tron Sportback quattro ('24)
|-
| C ||APP310 (Rear) || Electricity || Rear ||82 Kwh (gross) / 77 Kwh (net) || Audi Q4 e-tron 40 ('23-Mid '24)
|-
| H ||V662 (Front) Code EBGA / V663 (Rear) (Higher output-Code EBEA)|| Electricity || All ||93.4 Kwh (gross) / 83.7 Kwh (net) || Audi RS e-tron GT quattro ('22-'24)
|-
| J ||V662 (Front) Code EBGA / V663 (Rear) Code EBFA|| Electricity || All ||93.4 Kwh (gross) / 83.7 Kwh (net) || Audi e-tron GT quattro ('22-'24)
|-
| U ||HASCO Magna asynchronous motor (Front) / APP550 (Rear) || Electricity || All ||82 Kwh (gross) / 77 Kwh (net) || Audi Q4 e-tron 55 quattro (Mid '24), Q4 e-tron Sportback 55 quattro (Mid '24)
|-
| 2 ||HASCO Magna asynchronous motor (Front) / APP310 (Rear) || Electricity || All ||82 Kwh (gross) / 77 Kwh (net) || Audi Q4 e-tron 50 quattro ('22-Mid '24), Q4 e-tron Sportback 50 quattro ('22-Mid '24)
|}
HASCO Magna=HASCO Magna Electric Drive Systems Co., Ltd.
===Position 6, Restraint Systems:===
*0 = Active (Manual) 3-point Seat Belts only
*5 = Driver-side Airbag, Driver and Passenger Active (Manual) 3-point Seat Belts
*8 = Driver and Passenger Front Airbags
*2 = Active (Manual) belts plus Driver and Passenger Front Airbags & Front Side Airbags ('00-'06 TT)
*4 = Active (Manual) belts plus Driver and Passenger Front Airbags & Front and Rear Side Airbags & Sideguard Side Curtain Airbags ('04-'07 A8)
*5 = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front and Rear Side Airbags & Sideguard Side Curtain Airbags (A3, A4, A6, Allroad)
*6 = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front Side Airbags & Sideguard Side Curtain Airbags ('06-'09 A3, A4, A6, Allroad)
*3 = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front Side Airbags & Front Knee Airbags ('08-'09 TT, R8, '09 TTS)
*4 = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front Side Airbags ('03-'09 A4 Cabriolet, '04-'09 S4 Cabriolet, '08 RS4 Cabriolet)
*7 = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front Side Airbags & Sideguard Side Curtain Airbags
*9 = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front and Rear Side Airbags & Sideguard Side Curtain Airbags (Except '08-'09 A8/S8)
*9 = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front and Rear Side Airbags & Sideguard Side Curtain Airbags & Front Knee Airbags ('08-'09 A8/S8)
*A = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front Side Airbags & Front Knee Airbags ('10- A5/S5 Cabriolet, '10- TT/TTS, '12-'13 TT RS, '10- R8)
*A = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front Side Airbags & Sideguard Side Curtain Airbags ('10- A3, '10- A4/S4, '10-'11 A5/S5 Coupe, '10- A6/S6, '12- A7, '10- Q5, '10- Q7)
*B = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front and Rear Side Airbags & Sideguard Side Curtain Airbags ('10- A3, '10- A4/S4, '10- A6/S6, '12- A7, '10- Q5, '10- Q7)
*A = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front Side Airbags & Sideguard Side Curtain Airbags & Front Knee Airbags ('12- A5/S5 Coupe)
*A = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front and Rear Side Airbags & Sideguard Side Curtain Airbags & Front Knee Airbags ('10-' A8)
===Position 7-8, Model Line:===
1981-2009:
*8P = A3 ('06-'09)
*81 = 4000 Fwd ('81-'87)
*85 = 4000 Quattro ('84-'87), Coupe ('81-'83), Coupe GT ('84-'87), Quattro ('82‡ & '83-'85)
*89 = 80/90 ('88-'89)
*8A = 80 ('90-'92), 90 ('90-'91)
*8C = 90 ('93-'95)
*8B = Coupe Quattro ('90-'91)
*8G = Cabriolet ('94-'98)
*8D = A4 ('96-'01), S4 ('00-'02)
*8E = A4 ('02-'08), S4 ('04-'08), RS4 ('07-'08)
*8H = A4 Cabriolet ('03-'09), S4 Cabriolet ('04-'09), RS4 Cabriolet ('08)
*8K = A4 ('09)
*8T = A5 coupe ('08-'09), S5 coupe ('08-'09)
*43 = 5000 ('81-'83)
*44 = 5000 ('84-'88), 100/200 ('89-'91)
*4A = 100/S4 ('92-'94), A6 sedan ('95-'97), A6 wagon ('95-'98), S6 ('95 & '96-'97 in Canada)
*4B = A6 sedan ('98-'04), A6 Avant wagon ('99-'04), Allroad ('01-'05), S6 ('02-'03), RS6 (US: '03, Canada: '04)
*4F = A6 ('05-'09), S6 ('07-'09)
*44 = V8 Quattro ('90)
*4A = V8 Quattro ('91-'94)
*4D = A8 ('97-'03), S8 ('01-'03)
*4E = A8 ('04-'09), S8 ('07-'09)
*8N = TT ('00-'06)
*8J = TT ('08-'09), TTS ('09)
*42 = R8 ('08-'09)
*8R = Q5 ('09)
*4L = Q7 ('07-'09)
2010-:
*FM (Type 8P) = A3 ('10-'13)
*FF (Type 8V) = A3 ('15-'20), S3 ('15-'20), RS3 ('17-'20), A3 Sportback e-tron [PHEV] '16-'18
*GY (Type 8Y) = A3/S3/RS3 ('22-)
*FL (Type 8K) = A4 ('10-'16), Allroad ('13-'16), S4 ('10-'16)
*F4 (Type 8W) = A4 ('17-'25), A4 Allroad ('17-'25), S4 ('18-'25)
*FR (Type 8T) = A5 Coupe ('10-'17), S5 Coupe ('10-'17), RS5 Coupe ('13-'15)
*FH (Type 8F) = A5 Cabriolet ('10-'17), S5 Cabriolet ('10-'17), RS5 Cabriolet ('13-'15)
*F5 = A5 ('18-'25), S5 ('18-'25), RS5 ('18-'19, '21-'25) [Coupe/Cabriolet: '18-'24, Sportback: '18-'25]
*FU = A5/S5 ('25-)
*FB (Type 4F) = A6 ('10-'11), S6 ('10-'11)
*FC (Type 4G) = A6 ('12-'18), S6 ('13-'18)
*FC (Type 4G) = A7 ('12-'18), S7 ('13-'18), RS7 ('14-'18)
*F2 (Type 4A) = A6 ('19-'25), S6 ('20-'25), RS6 Avant ('21-'26), A6 Allroad ('20-'26)
*F2 (Type 4K) = A7 ('19-'25), S7 ('20-'25), RS7 ('21-'26)
*FN = A6 ('26-)
*GH = A6 e-tron, S6 e-tron ('25-)
*FA (Type 4E) = A8 ('10)
*FD (Type 4H) = A8 ('11-'18), S8 ('13-'16), S8 plus ('16-'18)
*F8 (Type 4N) = A8 ('19-'26), S8 ('20-'26)
*FW (Type F8) = e-tron GT ('22-'24), RS e-tron GT ('22-'24), S e-tron GT ('25-), RS e-tron GT performance ('25-)
*FK (Type 8J) = TT ('10-'15), TTS ('10-'15), TT RS ('12-'13)
*FV (Type FV or 8S) = TT ('16-'23), TTS ('16-'23), TT RS ('18-'22)
*FG (Type 42) = R8 ('10-'12, '14-'15)
*FX (Type 4S) = R8 ('17-'18, '20-'23)
*FS (Type 8U) = Q3 ('15-'18)
*F3 = Q3 ('19-'25)
*FJ = Q3 ('26-)
*FZ (Type F4) = Q4 e-tron, Q4 e-tron Sportback ('22-)
*FP (Type 8R) = Q5 ('10-'17), SQ5 ('14-'17)
*FY = Q5 ('18-'25), SQ5 ('18-'25), Q5 Sportback ('21-'25), SQ5 Sportback ('21-'25)
*GU = Q5 ('25-'26), SQ5 ('25-'26), Q5 Sportback ('25-'26), SQ5 Sportback ('25-'26)
*GF = Q6 e-tron, SQ6 e-tron, Q6 e-tron Sportback, SQ6 e-tron Sportback ('25-)
*FE (Type 4L) = Q7 ('10-'15)
*F7 (Type 4M) = Q7 ('17-), SQ7 ('20-)
*F1 (Type 4M) = Q8 ('19-), SQ8 ('20-), RS Q8 ('20-)
*GE = e-tron ('19, '21-'23), e-tron S ('22-'23), e-tron Sportback ('20-'23), e-tron S Sportback ('22-'23),<br> Q8 e-tron ('24), SQ8 e-tron ('24), Q8 e-tron Sportback ('24), SQ8 e-tron Sportback ('24)
===Position 9, Check Digit===
[[Vehicle Identification Numbers (VIN codes)/Check digit |Check digit]]
Check Digit in 9th position of VIN was always used in US & Canada. In Europe, Check Digit in 9th position of VIN was adopted for 2002 model year. Prior to the 2002 model year, a letter Z was used in the 9th position of the VIN in Europe.
===Position 10, Model Year: ===
[[Vehicle Identification Numbers (VIN codes)/Model year|Model year]]
===Position 11, Production Plant:===
* A: Ingolstadt, Germany
* B: Brussels, Belgium
* D: Bratislava, Slovakia
* E: Emden, Germany
* K: Rheine, Germany (Karmann plant: Cabriolet ['98], A4 Cabriolet ['03-'09], S4 Cabriolet ['04-'09], RS4 Cabriolet ['08]
* N: Neckarsulm, Germany
* P: Zwickau, Germany
* R: Martorell, Spain
* 1: Gyor, Hungary
* 2: San Jose Chiapa, Puebla state, Mexico
* 7: Heilbronn, Germany
Other plant codes for non-North American models:
* G: Graz, Austria (Steyr-Daimler-Puch plant: V8L)
* U: Uitenhage, South Africa
* X: Poznan, Poland
* Z: Zuffenhausen, Germany (Porsche plant: RS2 Avant)
* 3: Changchun, China (FAW-VW plant)
* 4: Sao Jose dos Pinhais, Parana state, Brazil (Curitiba plant)
* 9: Sarajevo, Bosnia and Herzegovina (Volkswagen Sarajevo d.o.o. plant)
'''Positions 12–17, Serial Number'''
{{BookCat}}
kzhcayna06mzskonywwgpn1x5lmqb74
4641128
4641122
2026-06-25T14:08:22Z
JustTheFacts33
3434282
/* Position 5, Engine Type: */
4641128
wikitext
text/x-wiki
{{Vehicle Identification Numbers (VIN codes)/Warning}}{{clear}}
===Positions 1–3, World Manufacturer Identifier:===
* WAU - Audi (Audi AG) passenger car
* WA1 - Audi (Audi AG) SUV
* WUA - Audi passenger car - quattro GmbH/Audi Sport GmbH (RS3, RS4, RS5, RS6, RS7, TT RS ['18-'22], R8,<br> S4 Cabriolet ['04-'09], S4 25quattro Special Edition sedan ['06], S8 plus ['16-'18], Non-North American Mkt. RS Q3, Q7 V12 TDI)
* WU1 - Audi SUV - Audi Sport GmbH (RS Q8)
* TRU - Audi Hungary (Audi Hungaria Motor Kft.) passenger car (only used for TT/TTS & '12-'13 TT RS)
* 3U5 - Audi Mexico SUV
===Position 5, Engine Type: ===
{| class="wikitable"
|+Position 5
|-
! VIN !! Size !! Type !! Fuel !! Valvetrain !! Engine Family/Notes/Applications
|-
| A || 1.7L || I4 || Gas || SOHC,<br /> 8 valve || MPI. VW EA827 engine.<br> Audi 4000 4E/4000S 4E ('81-'83)
|-
| A || 1.8L || I4 || Gas || SOHC,<br /> 8 valve || MPI. VW EA827 engine.<br> Audi 4000S ('84)
|-
| A || 2.1L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi Coupe GT ('84)
|-
| A || 2.0L || I4 || Gas || SOHC,<br /> 8 valve || MPI. VW EA827 engine.<br> Audi 80 ('90)
|-
| A || 2.2L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA828 I5 engine. <br> Audi S6 ('95 & '96-'97 in Canada)
|-
| A || 2.8L || 90° V6 || Gas || SOHC,<br /> 12 valve || MPI. Audi EA835 engine - Gen 1. Iron Block. <br> Audi 90 ('95), Cabriolet ('95-'98), A4 2.8 ('96-'97), A6 sedan ('95-'97), A6 wagon ('95-'98)
|-
| A || 2.8L || 90° V6 || Gas || DOHC,<br /> 30 valve || MPI. Audi EA835 engine - Gen 2. Iron Block.<br> Audi A6 sedan 2.8 ('98-'99), A6 Avant 2.8 ('99)
|-
| A || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || Direct injection. Audi-Bentley EA824 engine. 3993cc. 560 hp.<br> Audi RS7 ('17-'18)
|-
| A || 5.2L || 90° V10 || Gas || DOHC,<br /> 40 valve || Direct injection. Dry sump lubrication. Audi EA824 V10 engine. 532 hp.<br> Audi R8 V10 Quattro ('17-'18), R8 V10 RWS ('18), R8 Rwd ('21)
|-
| A || 3.0L || 90° V6 supercharged [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine.<br> Audi Q7 3.0T ('17-'19)
|-
| A || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || 12v Mild Hybrid. Direct injection. Exhaust AVS. Audi EA888 engine - ULEV. TSI. Timing chain. 261 hp. <br> Audi A4 45 TFSI ('21-'24), A4 Allroad 45 TFSI ('21-'24),<br> A5 Coupe/Cabriolet 45 TFSI ('21-'24), A5 Sportback 45 TFSI ('21-'24),<br> Q5 45 TFSI ('21-'24), Q5 Sportback 45 TFSI ('21-'24)
|-
| B || 2.1L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 4000 ('81), Coupe ('81-'83), 5000/5000S ('81-'84)
|-
| B || 1.8L || I4 || Gas || SOHC,<br /> 8 valve || MPI. VW EA827 engine.<br> Audi 4000S ('85-'87) [Pos. 7-8 of VIN is 81]
|-
| B || 2.2L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 4000S Quattro ('84-'85), 4000CS Quattro ('86-'87) [Pos. 7-8 of VIN is 85],<br> 5000S ('85-'86)
|-
| B || 2.0L || I4 || Gas || SOHC,<br /> 8 valve || MPI. VW EA827 engine.<br> Audi 80 ('88-'89), 90 ('88)
|-
| B || 2.3L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 100 ('89), 100 Quattro ('89)
|-
| B || 2.0L || I4 || Gas || SOHC,<br /> 8 valve || MPI. VW EA827 engine.<br> Audi 80 ('90)
|-
| B || 1.8L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA827/EA113 engine. <br> Audi A4 1.8T ('97-'99)
|-
| B || 5.2L || 90° V10 || Gas || DOHC,<br /> 40 valve || Direct injection. Dry sump lubrication. Audi EA824 V10 engine. 602 hp.<br> Audi R8 V10 Plus Quattro ('17-'18), R8 V10 Performance Quattro ('20-'23), R8 GT Rwd ('23)
|-
| B || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || 12v Mild Hybrid. Direct injection. Miller Cycle (B-Cycle). Intake AVS. Audi EA888 engine - ULEV. TSI. Timing chain. Detuned version: 201 hp.<br> Audi A4 40 TFSI ('21-'24), A5 Sportback 40 TFSI ('21-'24), Q5 40 TFSI ('22-'24)
|-
| C || 2.1L || I5 Turbo || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 5000 Turbo ('81-'83)
|-
| C || 2.1L || I5 Turbo [[w:Intercooler|IC]] || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi Quattro Coupe ('82‡ & '83-'85), 5000S Turbo ('84-'85)
|-
| C || 2.3L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 80 ('91-'92), 80 Quattro ('88-'92), 90 ('88-'91), 90 Quattro ('88-'89),<br> 5000S ('87-'88), 5000S Quattro ('88), 100 ('90-'91), 100 Quattro ('90-'91)
|-
| C || 2.2L || I5 Turbo [[w:Intercooler|IC]] || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 200 Turbo ('89), 200 Turbo Quattro ('89)
|-
| C || 2.8L || 90° V6 || Gas || SOHC,<br /> 12 valve || MPI. Audi EA835 engine - Gen 1. Iron Block. <br> Audi A6 sedan ('95-'97), A6 wagon ('96-'98)
|-
| C || 1.8L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA827/EA113 engine. <br> Audi A4 sedan/Avant 1.8T ('00-Mid '05), A4 Cabriolet 1.8T ('03-'06), TT [180 hp] ('00-'06)
|-
| C || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas-Electric Hybrid || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine + electric motor. Lithium-ion Battery Pack.<br> Audi Q5 Hybrid (Early '14)
|-
| C || 1.8L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - PZEV. TSI. Timing chain.<br> Audi A3 Fwd 1.8T ('15)
|-
| C || 3.0L || 90° V6 supercharged [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine.<br> Audi SQ5 ('16-'17)
|-
| C || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. <br> Audi Q3 ('17-'18)
|-
| C || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || 48v Mild Hybrid. Direct injection. Porsche-Audi EA825 engine. 3996cc. 591 hp.<br> Audi RS6 Avant ('21-'23), RS7 ('21-'23)
|-
| C || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || 12v Mild Hybrid. Direct injection. Exhaust AVS. Audi EA888 engine - ULEV. TSI. Timing chain. 261 hp. <br> Audi Q7 45 TFSI ('23-'24)
|-
| D || 2.1L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi Coupe GT ('84)
|-
| D || 2.2L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi Coupe GT ('85-'87)
|-
| D || 2.3L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 80 ('91), 80 Quattro ('90-'91), 90 ('90)
|-
| D || 2.3L || I5 || Gas || DOHC,<br /> 20 valve || MPI. Audi EA828 I5 engine. <br> Audi Coupe Quattro 20V ('90)
|-
| D || 2.2L || I5 Turbo [[w:Intercooler|IC]] || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 5000CS Turbo ('86-'88), 200 Turbo ('90-'91), 200 Turbo Quattro ('90)
|-
| D || 2.8L || 90° V6 || Gas || DOHC,<br /> 30 valve || MPI. Audi EA835 engine - Gen 2. Iron Block.<br> Audi A4 2.8 ('98-'99)
|-
| D || 2.7L || 90° V6 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 30 valve || MPI. Audi EA835 engine - Gen 2. Iron Block.<br> Audi S4 ('00-'02), A6 2.7T ('00-'04), Allroad Quattro 2.7T ('02-'05)
|-
| D || 3.2L || 15° VR6 || Gas || DOHC,<br /> 24 valve || MPI. VW EA390 engine.<br> Audi A3 3.2 ('06-'09), TT 3.2 ('05-'06, '08-'09)
|-
| D || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || 48v Mild Hybrid. Direct injection. Audi-Porsche EA839 engine.<br> Audi A8 3.0T/55 TFSI ('19-'24)
|-
| D || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || 48v Mild Hybrid. Direct injection. Porsche-Audi EA825 engine. 3996cc. 621 hp.<br> Audi RS6 Avant performance ('24), RS7 performance ('24)
|-
| E || 2.3L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi Coupe GT 2.3 "Special Build" (Late '87)
|-
| E || 2.2L || I5 Turbo [[w:Intercooler|IC]] || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 5000CS Turbo Quattro ('86-'88)
|-
| E || 2.3L || I5 || Gas || DOHC,<br /> 20 valve || MPI. Audi EA828 I5 engine. <br> Audi 90 Quattro 20V ('90-'91), Coupe Quattro 20V ('90-'91)
|-
| E || 2.2L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA828 I5 engine. <br> Audi 200 Turbo Quattro 20V ('91)
|-
| E || 3.6L || 90° V8 || Gas || DOHC,<br /> 32 valve || MPI. Audi V8 engine. Audi V8 Quattro ('90-'91)
|-
| E || 2.8L || 90° V6 || Gas || SOHC,<br /> 12 valve || MPI. Audi EA835 engine - Gen 1. Iron Block. <br> Audi 90 ('95)
|-
| E || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - PZEV. TSI. Timing chain.<br> Audi A3 Fwd 2.0T ('08-'13)
|-
| E || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Exhaust AVS. Audi EA888 engine - SULEV. TSI. Timing chain.<br> Audi A3 2.0T Quattro ('18-'20), TT ('19-'23), Q3 2.0T/45 TFSI ('19-'20), Q3 S Line 45 TFSI ('21-'24)
|-
| E || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || 48v Mild Hybrid. Direct injection. Porsche-Audi EA825 engine. 3996cc. 453 hp.<br> Audi A8 4.0T ('19-'21)
|-
| E || 5.2L || 90° V10 || Gas || DOHC,<br /> 40 valve || Direct injection. Dry sump lubrication. Audi EA824 V10 engine. 562 hp.<br> Audi R8 V10 Quattro ('20), R8 V10 Performance Rwd ('22-'23)
|-
| F || 2.3L || I5 || Gas || DOHC,<br /> 20 valve || MPI. Audi EA828 I5 engine. <br> Audi 90 Quattro 20V ('90-'91), Coupe Quattro 20V ('91)
|-
| F || 3.7L || 90° V8 || Gas || DOHC,<br /> 32 valve || MPI. Audi V8 engine. Audi A8 3.7 ('97-'99)
|-
| F || 3.2L || 15° VR6 || Gas || DOHC,<br /> 24 valve || MPI. VW EA390 engine.<br> Audi TT 3.2 ('04-'05)
|-
| F || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA113 engine. FSI. Timing belt. <br> Audi A3 2.0T ('06-'08), A4 sedan 2.0T (Mid '05-'08), A4 Avant 2.0T (Mid '05-'08),<br> A4 Cabriolet 2.0T ('07-'09), TT ('08-'09), TTS ('09)
|-
| F || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain.<br> Audi A3 2.0T ('08-'11), A3 2.0T Quattro ('12-'13), A4 sedan 2.0T ('09-'12), A4 sedan 2.0T Fwd ('13-'16), A4 sedan 2.0T Quattro w/man. trans. ('13-'16), A4 sedan 2.0T Quattro w/auto. trans. (Early '13),<br> A4 Avant 2.0T ('09-'12), Allroad 2.0T (Early '13), A5 2.0T ('10-'12),<br> A5 Coupe 2.0T Quattro w/man. trans. ('13-'15), A5 Cabriolet 2.0T Fwd ('13-'14),<br> A5 2.0T Quattro w/auto. trans. (Early '13), A6 2.0T ('12-'16), TT ('09-'15), Q3 ('15-'16),<br> Q5 2.0T ('11-Early '13)
|-
| F || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - PZEV. TSI. Timing chain.<br> Audi A3 Fwd 2.0T (Early prod. '12)
|-
| F || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas/E85 || DOHC,<br /> 16 valve || Flex Fuel. Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain.<br> Audi A4 sedan 2.0T Quattro w/auto. trans. ('13-'16), Allroad 2.0T ('13-'16),<br> A5 2.0T Quattro w/auto. trans. ('13-'15), Q5 2.0T ('13-'15)
|-
| F || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - PZEV. TSI. Timing chain.<br> Audi A3 2.0T Quattro ('15)
|-
| F || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. High Output: 288 hp.<br> Audi S3 Quattro ('15)
|-
| F || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || Direct injection. Audi-Bentley EA824 engine. 3993cc. 450 hp.<br> Audi S6 ('17-'18), S7 ('17-'18)
|-
| F || 2.9L || 90° V6 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || 48v Mild Hybrid. Direct injection. Audi-Porsche EA839 engine.<br> Audi S6 ('20-'24), S7 ('20-'24)
|-
| G || 1.6L || I4 || Diesel || SOHC,<br /> 8 valve || Indirect injection. VW EA827 engine. Audi 4000 Diesel ('82)
|-
| G || 2.0L || I5 || Diesel || SOHC,<br /> 10 valve || Indirect injection. Audi 5000 Diesel ('81)
|-
| G || 4.2L || 90° V8 || Gas || DOHC,<br /> 32 valve || MPI. Audi V8 engine. 4172cc.<br> Audi A8 4.2 ('97-'99)
|-
| G || "3.2L" || 90° V6 || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine. 3.1L=3123cc.<br> Audi A4 sedan/Avant 3.2 (Mid '05-'06), A6 3.2 ('05-'06)
|-
| G || 3.0L || 90° V6 supercharged [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine.<br> Audi S4 ('10-'16), S5 Cabriolet ('10-'15, Early '16), S5 coupe ('13-'15), A6 3.0T ('09-'16),<br> A7 3.0T ('12-'16), A8 3.0T ('13-'15), Q5 3.0T ('13-'15), SQ5 ('14-'15), Q7 3.0T ('11-'15)
|-
| G || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain.<br> Audi A5 2.0T w/man. trans. ('16-'17)
|-
| G || 6.3L || 72° W12 || Gas || DOHC,<br /> 48 valve || Direct injection. VW W12 engine. Audi A8 W12 ('16)
|-
| G || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas-Electric Hybrid || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine + electric motor. Lithium-ion Battery Pack.<br> Audi Q5 Hybrid ('16)
|-
| H || 1.6L || I4 Turbo || Diesel || SOHC,<br /> 8 valve || Indirect injection. VW EA827 engine. Audi 4000 Turbo Diesel ('83)
|-
| H || 2.0L || I5 || Diesel || SOHC,<br /> 10 valve || Indirect injection. Audi 5000 Diesel ('82)
|-
| H || 2.0L || I5 Turbo || Diesel || SOHC,<br /> 10 valve || Indirect injection. Audi 5000 Turbo Diesel ('83)
|-
| H || 2.8L || 90° V6 || Gas || DOHC,<br /> 30 valve || MPI. Audi EA835 engine - Gen 2. Iron Block.<br> Audi A4 2.8 ('00-'01), A6 2.8 ('00-'01)
|-
| H || "3.2L" || 90° V6 || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine. 3.1L=3123cc.<br> Audi A4 sedan/Avant 3.2 ('06-'08), A4 Cabriolet 3.2 ('07-'09), A6 3.2 ('06-'09)
|-
| H || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. <br> Audi Q7 2.0T ('17-'19)
|-
| H || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Gas-Electric [[w:Plug-in hybrid|PHEV]] || DOHC,<br /> 24 valve || Direct injection. Audi-Porsche EA839 engine + electric motor. Lithium-ion Battery Pack.<br> Audi A8 60 TFSI e ('20-'21)
|-
| J || 2.8L || 90° V6 || Gas || SOHC,<br /> 12 valve || MPI. Audi EA835 engine - Gen 1. Iron Block. <br> Audi 90 ('93-'94), 100 ('92-'94)
|-
| J || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Diesel || DOHC,<br /> 16 valve || Common-Rail Direct injection. VW EA189 engine.<br> Audi A3 TDI ('10-'13)
|-
| J || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Diesel || DOHC,<br /> 16 valve || Common-Rail Direct injection. SCR. VW EA288 engine.<br> Audi A3 TDI ('15)
|-
| J || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. 248 hp. <br> Audi Q7 45 TFSI ('20-'22)
|-
| K || 2.8L || 90° V6 || Gas || SOHC,<br /> 12 valve || MPI. Audi EA835 engine - Gen 1. Iron Block. <br> Audi 90 ('93-'95), 100 ('92-'94)
|-
| K || 3.2L || 90° V6 || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine. 3197cc. <br> Audi A4 sedan 3.2 ('09), A5 3.2 ('08-'10), A6 3.2 ('10-'11), Q5 3.2 ('09-'12)
|-
| L || 2.8L || 90° V6 || Gas || SOHC,<br /> 12 valve || MPI. Audi EA835 engine - Gen 1. Iron Block. <br> Audi Cabriolet ('94-'95)
|-
| L || 4.2L || 90° V8 || Gas || DOHC,<br /> 40 valve || MPI. Audi V8 engine. 4172cc.<br> Audi A6 4.2 ('00-'04), A8 4.2 ('00-'06)
|-
| L || 4.2L || 90° V8 || Gas || DOHC,<br /> 40 valve || MPI. Audi EA824 engine. 4163cc.<br> Audi S4 sedan/Avant ('04-'08), S4 Cabriolet ('04-'09),<br> A6 4.2 ('05-'06), Allroad Quattro 4.2 ('04-'05)
|-
| M || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Diesel || DOHC,<br /> 24 valve || Direct injection. Audi EA897 engine.<br> Audi A6 TDI ('14-'16), A7 TDI ('14-'16), A8 TDI ('14-'15), Q5 TDI ('14-'15), Q7 TDI ('09-'15)
|-
| M || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Miller Cycle (B-Cycle). Intake AVS. Audi EA888 engine - ULEV. TSI. Timing chain. Detuned version: 188 hp.<br> Audi A4 Ultra 2.0T Fwd ('17-'18), A4 2.0T Fwd ('19-'20)
|-
| N || 5.2L || 90° V10 || Gas || DOHC,<br /> 40 valve || Direct injection. Audi EA824 V10 engine.<br> Audi S6 ('07-'11), S8 ('07-'09)
|-
| N || 5.2L || 90° V10 || Gas || DOHC,<br /> 40 valve || Direct injection. Dry sump lubrication. Audi EA824 V10 engine.<br> Audi R8 ('10-'12, '14-'15)
|-
| N || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Exhaust AVS. Audi EA888 engine - ULEV. TSI. Timing chain. <br> Audi A4 2.0T Fwd/Quattro ('17-'18), A4 2.0T Quattro ('19-'20), A4 Allroad Quattro ('17-'20),<br> A5 Coupe/Cabriolet 2.0T Quattro ('18-'20), A5 Sportback 2.0T Quattro ('18-'20),<br> Q5 2.0T Quattro ('18-'20)
|-
| P || 2.2L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA828 I5 engine. <br> Audi S4 [C4 (4A)] ('92-'93)
|-
| P || 2.7L || 90° V6 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 30 valve || MPI. Audi EA835 engine - Gen 2. Iron Block.<br> Audi Allroad Quattro 2.7T ('01)
|-
| P || 1.4L || I4 Turbo [[w:Intercooler|IC]] || Gas-Electric [[w:Plug-in hybrid|PHEV]] || DOHC,<br /> 16 valve || Direct injection. VW EA211 engine + electric motor. Lithium-ion Battery Pack.<br> Audi A3 Sportback e-tron ('16-'18)
|-
| P || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas-Electric [[w:Plug-in hybrid|PHEV]] || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine + electric motor. Lithium-ion Battery Pack. TSI. Timing chain.<br> SULEV.<br> Audi A7 55 TFSI e ('21-'22)
|-
| R || 2.2L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA828 I5 engine. <br> Audi S4 [C4 (4A)] ('93-'94)
|-
| R || 6.0L || 72° W12 || Gas || DOHC,<br /> 48 valve || MPI. VW W12 engine. Audi A8 W12 ('05-'09)
|-
| R || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || Direct injection. Audi-Bentley EA824 engine. 3993cc. 605 hp.<br> Audi RS7 performance ('16-'18)
|-
| R || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Diesel || DOHC,<br /> 24 valve || Direct injection. Audi EA897 engine. Audi A8 TDI ('16)
|-
| R || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || 48v Mild Hybrid. Direct injection. Porsche-Audi EA825 engine. 3996cc. 591 hp.<br> Audi RS Q8 ('20-'24)
|-
| S || 1.8L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA827/EA113 engine. 180 hp. <br> Audi TT (Early '00)
|-
| S || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || Direct injection. Audi-Bentley EA824 engine. 3993cc.<br> Audi S8 ('16)
|-
| S || 2.5L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || Direct injection. Audi EA855 engine.<br> Audi TT RS ('18-'22)
|-
| S || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || 48v Mild Hybrid. Direct injection. Porsche-Audi EA825 engine. 3996cc. 563 hp.<br> Audi S8 ('20-'24)
|-
| T || 1.8L || I4 Turbo Twin [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA827/EA113 engine. High Output - 225 hp. Single Turbo, Twin Intercoolers. <br> Audi TT ('01-'06)
|-
| T || 3.0L || 90° V6 || Gas || DOHC,<br /> 30 valve || MPI. Audi EA835 engine - Gen 3. Aluminum block.<br> Audi A4 sedan/Avant 3.0 ('02-Mid '05), A4 Cabriolet 3.0 ('03-'06), A6 3.0 ('02-'04)
|-
| T || "3.2L" || 90° V6 || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine. 3.1L=3123cc.<br> Audi A6 3.2 ('05)
|-
| U || 4.2L || 90° V8 || Gas || DOHC,<br /> 40 valve || MPI. Audi V8 engine. 4172cc.<br> Audi S6 Avant ('02-'03), S8 ('01-'03)
|-
| U || 4.2L || 90° V8 || Gas || DOHC,<br /> 32 valve || Direct injection. Audi EA824 engine. 4163cc.<br> Audi RS4 sedan ('07-'08), RS4 Cabriolet ('08)
|-
| U || 4.2L || 90° V8 || Gas || DOHC,<br /> 32 valve || Direct injection. Dry sump lubrication. Audi EA824 engine. 4163cc.<br> Audi R8 ('08-'12, '14-'15)
|-
| U || 5.2L || 90° V10 || Gas || DOHC,<br /> 40 valve || Direct injection. Dry sump lubrication. Audi EA824 V10 engine.<br> Audi R8 V10 coupe w/man. trans. (Early '14) [when U in 5th pos. of VIN follows G in 4th pos. of VIN]
|-
| U || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Miller Cycle (B-Cycle). Intake AVS. Audi EA888 engine - PZEV. TSI. Timing chain. Detuned version: 184 hp.<br> Audi A3 2.0T Fwd ('17)
|-
| U || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Miller Cycle (B-Cycle). Intake AVS. Audi EA888 engine - SULEV. TSI. Timing chain. Detuned version: 184 hp.<br> Audi A3 2.0T Fwd ('18-'20), Q3 40 TFSI ('21-'22)
|-
| U || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Miller Cycle (B-Cycle). Intake AVS. Audi EA888 engine - ULEV. TSI. Timing chain. Detuned version: 184 hp.<br> Audi Q3 40 TFSI ('23-'24)
|-
| U || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || 48v Mild Hybrid. Direct injection. Miller Cycle (B-Cycle). Intake AVS. Audi EA888 engine - SULEV.<br> TSI. Timing chain. 201 hp.<br> Audi A3 40 TFSI ('22-'24)
|-
| V || 4.2L || 90° V8 || Gas || DOHC,<br /> 32 valve || MPI. Audi V8 engine. 4172cc. Audi V8 Quattro ('92-'93)
|-
| V || 4.2L || 90° V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 40 valve || MPI. Audi V8 engine. 4172cc.<br> Audi RS6 (US: '03, Canada: '04)
|-
| V || 4.2L || 90° V8 || Gas || DOHC,<br /> 32 valve || Direct injection. Audi EA824 engine. 4163cc.<br> Audi S5 coupe ('08-'12), A6 4.2 ('07-'11), A8 4.2 ('07-'12), Q7 4.2 ('07-'10)
|-
| V || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Diesel || DOHC,<br /> 24 valve || Direct injection. Audi EA897 engine. Audi Q5 TDI ('16)
|-
| V || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || 48v Mild Hybrid. Direct injection. Audi-Porsche EA839 engine.<br> Audi Q8 3.0T/55 TFSI ('19-'24)
|-
| W || 4.2L || 90° V8 || Gas || DOHC,<br /> 32 valve || MPI. Audi V8 engine. 4172cc. Audi V8 Quattro ('92-'94)
|-
| W || 2.5L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || Direct injection. Audi EA855 engine.<br> Audi RS3 ('17-'20)
|-
| W || 2.9L || 90° V6 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi-Porsche EA839 engine.<br> Audi RS5 coupe ('18-'19, '21-'24), RS5 Sportback ('19, '21-'24)
|-
| W || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || 48v Mild Hybrid. Direct injection. Porsche-Audi EA825 engine. 3996cc. 500 hp.<br> Audi SQ7 ('20-'24), SQ8 ('20-'24)
|-
| X || 1.8L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA827/EA113 engine. 180 hp. <br> Audi TT ('01-'02)
|-
| X || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || 48v Mild Hybrid. Direct injection. Audi-Porsche EA839 engine.<br> Audi Q7 55 TFSI ('20-'24)
|-
| Y || 3.6L || 10.6° VR6 || Gas || DOHC,<br /> 24 valve || Direct injection. VW EA390 engine.<br> Audi Q7 3.6 ('07-'10)
|-
| 1 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA113 engine - ULEV. FSI. Timing belt.<br> Audi TTS ('10-'15)
|-
| 1 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. High Output: 288 hp.<br> Audi S3 Quattro ('16-'20), TTS ('16-'23)
|-
| 2 || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || Direct injection. Audi-Bentley EA824 engine. 3993cc.<br> Audi S6 ('13-'16), S7 ('13-'16), RS7 ('14-'16), A8 4.0T ('13-'15), S8 ('13-'15)
|-
| 2 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas/E85 || DOHC,<br /> 16 valve || Flex Fuel. Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain.<br> Audi A5 2.0T w/auto. trans. ('16-'17), Q5 2.0T ('16-'17)
|-
| 2 || 3.0L || 90° V6 supercharged [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine.<br> Audi A6 3.0T ('17), A7 3.0T ('17)
|-
| 2 || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || 48v Mild Hybrid. Direct injection. Audi-Porsche EA839 engine.<br> Audi A6 3.0T/55 TFSI ('19-'24), A6 Allroad ('20-'24), A7 3.0T/55 TFSI ('19-'24)
|-
| 2 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas-Electric [[w:Plug-in hybrid|PHEV]] || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine + electric motor. Lithium-ion Battery Pack. TSI. Timing chain.<br> Audi Q5 55 TFSI e ('20-'24)
|-
| 3 || 2.5L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || Direct injection. Audi EA855 engine.<br> Audi TT RS ('12-'13)
|-
| 3 || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || Direct injection. Audi-Bentley EA824 engine. 3993cc.<br> Audi A8 4.0T ('16-'18)
|-
| 3 || 3.0L || 90° V6 supercharged [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine. Higher Output: 340 hp.<br> Audi A6 3.0T Competition ('17), A6 3.0T ('18), A7 3.0T Competition ('17), A7 3.0T ('18)
|-
| 3 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || 12v Mild Hybrid. Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. 261 hp.<br> Audi A6 Sport 45 TFSI ('21), A6 45 TFSI ('22-'24)
|-
| 3 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. High Output: 306 hp.<br> Audi S3 Quattro ('22-'24)
|-
| 4 || 6.3L || 72° W12 || Gas || DOHC,<br /> 48 valve || Direct injection. VW W12 engine. Audi A8 W12 ('12-'15)
|-
| 4 || 3.0L || 90° V6 supercharged [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine.<br> Audi S5 coupe ('16-'17), S5 Cabriolet ('16-'17), A8 3.0T ('16-'18)
|-
| 4 || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi-Porsche EA839 engine.<br> Audi S4 ('18-'24), S5 coupe/cabriolet ('18-'24), S5 Sportback ('18-'24), SQ5 ('18-'24),<br> SQ5 Sportback ('21-'24)
|-
| 4 || 2.5L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || Direct injection. Audi EA855 engine. 401 hp.<br> Audi RS3 ('22-'24)
|-
| 5 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Exhaust AVS. Audi EA888 engine - PZEV. TSI. Timing chain.<br> Audi TT ('16-'17)
|-
| 5 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Exhaust AVS. Audi EA888 engine - SULEV. TSI. Timing chain.<br> Audi TT ('18)
|-
| 5 || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || Direct injection. Audi-Bentley EA824 engine. 3993cc. 605 hp.<br> Audi S8 plus ('16-'18)
|-
| 6 || 4.2L || 90° V8 || Gas || DOHC,<br /> 32 valve || Direct injection. Audi EA824 engine. 4163cc.<br> Audi RS5 ('13-'15)
|-
| 7 || 1.8L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - PZEV. TSI. Timing chain.<br> Audi A3 Fwd 1.8T ('16)
|-
| 7 || 3.0L || 90° V6 supercharged [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine.<br> Audi Q5 3.0T ('16-'17)
|-
| 8 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas-Electric Hybrid || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine + electric motor. Lithium-ion Battery Pack.<br> Audi Q5 Hybrid ('13-'15)
|-
| 8 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - PZEV. TSI. Timing chain.<br> Audi A3 2.0T Quattro ('16-'17)
|-
| 8 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - SULEV. TSI. Timing chain.<br> Audi A3 2.0T Quattro ('18)
|-
| 8 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain.<br> Audi A6 2.0T ('17-'18)
|-
| 8 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || 12v Mild Hybrid. Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. 248 hp.<br> Audi A6 2.0T/45 TFSI ('19-'21)
|}
‡1982 Audi Quattro: 3-4 cars were imported to the US for marketing purposes and as press cars. They remained in the US after those uses ended and transitioned into private ownership. These cars carry US-style VINs rather than European-style VINs. 3 VINs have been found. Their serial numbers (last 6 digits of VIN) are 900565, 900586, and 900648. The Audi Quattro was officially sold in the US for the 1983-1985 model years.
====Motor codes for Electric Vehicles====
{| class="wikitable"
|+Position 5
|-
! VIN !! Motor Designation !! Fuel !! Drive Wheels !! Battery Size !! Application/Notes
|-
| A ||APA250 (Front) / AKA320 (Rear)|| Electricity || All ||95 Kwh (gross) / 83.6 Kwh (net) || Audi e-tron quattro ('19), e-tron Sportback quattro ('20)
|-
| A ||APA250 (Front) / AKA320 (Rear)|| Electricity || All ||95 Kwh (gross) / 86.5 Kwh (net) || Audi e-tron quattro ('21-'23), e-tron Sportback quattro ('21-'23)
|-
| A ||APA250 (Front) / AKA320 (Rear)|| Electricity || All ||114 Kwh (gross) / 106 Kwh (net) || Audi Q8 e-tron quattro ('24), Q8 e-tron Sportback quattro ('24)
|-
| C ||APA320 (1 Front) / ATA250 (2 Rear)|| Electricity || All ||95 Kwh (gross) / 86.5 Kwh (net) || Audi e-tron S quattro ('22-'23), e-tron S Sportback quattro ('22-'23)
|-
| C ||APA320 (1 Front) / ATA250 (2 Rear)|| Electricity || All ||114 Kwh (gross) / 106 Kwh (net) || Audi SQ8 e-tron quattro ('24), SQ8 e-tron Sportback quattro ('24)
|-
| C ||APP310 (Rear) || Electricity || Rear ||82 Kwh (gross) / 77 Kwh (net) || Audi Q4 e-tron 40 ('23-Mid '24)
|-
| H ||V662 (Front) Code EBGA / V663 (Rear) (Higher output-Code EBEA)|| Electricity || All ||93.4 Kwh (gross) / 83.7 Kwh (net) || Audi RS e-tron GT quattro ('22-'24)
|-
| J ||V662 (Front) Code EBGA / V663 (Rear) Code EBFA|| Electricity || All ||93.4 Kwh (gross) / 83.7 Kwh (net) || Audi e-tron GT quattro ('22-'24)
|-
| U ||HASCO Magna asynchronous motor (Front) / APP550 (Rear) || Electricity || All ||82 Kwh (gross) / 77 Kwh (net) || Audi Q4 e-tron 55 quattro (Mid '24), Q4 e-tron Sportback 55 quattro (Mid '24)
|-
| 2 ||HASCO Magna asynchronous motor (Front) / APP310 (Rear) || Electricity || All ||82 Kwh (gross) / 77 Kwh (net) || Audi Q4 e-tron 50 quattro ('22-Mid '24), Q4 e-tron Sportback 50 quattro ('22-Mid '24)
|}
HASCO Magna=HASCO Magna Electric Drive Systems Co., Ltd.
===Position 6, Restraint Systems:===
*0 = Active (Manual) 3-point Seat Belts only
*5 = Driver-side Airbag, Driver and Passenger Active (Manual) 3-point Seat Belts
*8 = Driver and Passenger Front Airbags
*2 = Active (Manual) belts plus Driver and Passenger Front Airbags & Front Side Airbags ('00-'06 TT)
*4 = Active (Manual) belts plus Driver and Passenger Front Airbags & Front and Rear Side Airbags & Sideguard Side Curtain Airbags ('04-'07 A8)
*5 = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front and Rear Side Airbags & Sideguard Side Curtain Airbags (A3, A4, A6, Allroad)
*6 = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front Side Airbags & Sideguard Side Curtain Airbags ('06-'09 A3, A4, A6, Allroad)
*3 = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front Side Airbags & Front Knee Airbags ('08-'09 TT, R8, '09 TTS)
*4 = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front Side Airbags ('03-'09 A4 Cabriolet, '04-'09 S4 Cabriolet, '08 RS4 Cabriolet)
*7 = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front Side Airbags & Sideguard Side Curtain Airbags
*9 = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front and Rear Side Airbags & Sideguard Side Curtain Airbags (Except '08-'09 A8/S8)
*9 = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front and Rear Side Airbags & Sideguard Side Curtain Airbags & Front Knee Airbags ('08-'09 A8/S8)
*A = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front Side Airbags & Front Knee Airbags ('10- A5/S5 Cabriolet, '10- TT/TTS, '12-'13 TT RS, '10- R8)
*A = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front Side Airbags & Sideguard Side Curtain Airbags ('10- A3, '10- A4/S4, '10-'11 A5/S5 Coupe, '10- A6/S6, '12- A7, '10- Q5, '10- Q7)
*B = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front and Rear Side Airbags & Sideguard Side Curtain Airbags ('10- A3, '10- A4/S4, '10- A6/S6, '12- A7, '10- Q5, '10- Q7)
*A = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front Side Airbags & Sideguard Side Curtain Airbags & Front Knee Airbags ('12- A5/S5 Coupe)
*A = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front and Rear Side Airbags & Sideguard Side Curtain Airbags & Front Knee Airbags ('10-' A8)
===Position 7-8, Model Line:===
1981-2009:
*8P = A3 ('06-'09)
*81 = 4000 Fwd ('81-'87)
*85 = 4000 Quattro ('84-'87), Coupe ('81-'83), Coupe GT ('84-'87), Quattro ('82‡ & '83-'85)
*89 = 80/90 ('88-'89)
*8A = 80 ('90-'92), 90 ('90-'91)
*8C = 90 ('93-'95)
*8B = Coupe Quattro ('90-'91)
*8G = Cabriolet ('94-'98)
*8D = A4 ('96-'01), S4 ('00-'02)
*8E = A4 ('02-'08), S4 ('04-'08), RS4 ('07-'08)
*8H = A4 Cabriolet ('03-'09), S4 Cabriolet ('04-'09), RS4 Cabriolet ('08)
*8K = A4 ('09)
*8T = A5 coupe ('08-'09), S5 coupe ('08-'09)
*43 = 5000 ('81-'83)
*44 = 5000 ('84-'88), 100/200 ('89-'91)
*4A = 100/S4 ('92-'94), A6 sedan ('95-'97), A6 wagon ('95-'98), S6 ('95 & '96-'97 in Canada)
*4B = A6 sedan ('98-'04), A6 Avant wagon ('99-'04), Allroad ('01-'05), S6 ('02-'03), RS6 (US: '03, Canada: '04)
*4F = A6 ('05-'09), S6 ('07-'09)
*44 = V8 Quattro ('90)
*4A = V8 Quattro ('91-'94)
*4D = A8 ('97-'03), S8 ('01-'03)
*4E = A8 ('04-'09), S8 ('07-'09)
*8N = TT ('00-'06)
*8J = TT ('08-'09), TTS ('09)
*42 = R8 ('08-'09)
*8R = Q5 ('09)
*4L = Q7 ('07-'09)
2010-:
*FM (Type 8P) = A3 ('10-'13)
*FF (Type 8V) = A3 ('15-'20), S3 ('15-'20), RS3 ('17-'20), A3 Sportback e-tron [PHEV] '16-'18
*GY (Type 8Y) = A3/S3/RS3 ('22-)
*FL (Type 8K) = A4 ('10-'16), Allroad ('13-'16), S4 ('10-'16)
*F4 (Type 8W) = A4 ('17-'25), A4 Allroad ('17-'25), S4 ('18-'25)
*FR (Type 8T) = A5 Coupe ('10-'17), S5 Coupe ('10-'17), RS5 Coupe ('13-'15)
*FH (Type 8F) = A5 Cabriolet ('10-'17), S5 Cabriolet ('10-'17), RS5 Cabriolet ('13-'15)
*F5 = A5 ('18-'25), S5 ('18-'25), RS5 ('18-'19, '21-'25) [Coupe/Cabriolet: '18-'24, Sportback: '18-'25]
*FU = A5/S5 ('25-)
*FB (Type 4F) = A6 ('10-'11), S6 ('10-'11)
*FC (Type 4G) = A6 ('12-'18), S6 ('13-'18)
*FC (Type 4G) = A7 ('12-'18), S7 ('13-'18), RS7 ('14-'18)
*F2 (Type 4A) = A6 ('19-'25), S6 ('20-'25), RS6 Avant ('21-'26), A6 Allroad ('20-'26)
*F2 (Type 4K) = A7 ('19-'25), S7 ('20-'25), RS7 ('21-'26)
*FN = A6 ('26-)
*GH = A6 e-tron, S6 e-tron ('25-)
*FA (Type 4E) = A8 ('10)
*FD (Type 4H) = A8 ('11-'18), S8 ('13-'16), S8 plus ('16-'18)
*F8 (Type 4N) = A8 ('19-'26), S8 ('20-'26)
*FW (Type F8) = e-tron GT ('22-'24), RS e-tron GT ('22-'24), S e-tron GT ('25-), RS e-tron GT performance ('25-)
*FK (Type 8J) = TT ('10-'15), TTS ('10-'15), TT RS ('12-'13)
*FV (Type FV or 8S) = TT ('16-'23), TTS ('16-'23), TT RS ('18-'22)
*FG (Type 42) = R8 ('10-'12, '14-'15)
*FX (Type 4S) = R8 ('17-'18, '20-'23)
*FS (Type 8U) = Q3 ('15-'18)
*F3 = Q3 ('19-'25)
*FJ = Q3 ('26-)
*FZ (Type F4) = Q4 e-tron, Q4 e-tron Sportback ('22-)
*FP (Type 8R) = Q5 ('10-'17), SQ5 ('14-'17)
*FY = Q5 ('18-'25), SQ5 ('18-'25), Q5 Sportback ('21-'25), SQ5 Sportback ('21-'25)
*GU = Q5 ('25-'26), SQ5 ('25-'26), Q5 Sportback ('25-'26), SQ5 Sportback ('25-'26)
*GF = Q6 e-tron, SQ6 e-tron, Q6 e-tron Sportback, SQ6 e-tron Sportback ('25-)
*FE (Type 4L) = Q7 ('10-'15)
*F7 (Type 4M) = Q7 ('17-), SQ7 ('20-)
*F1 (Type 4M) = Q8 ('19-), SQ8 ('20-), RS Q8 ('20-)
*GE = e-tron ('19, '21-'23), e-tron S ('22-'23), e-tron Sportback ('20-'23), e-tron S Sportback ('22-'23),<br> Q8 e-tron ('24), SQ8 e-tron ('24), Q8 e-tron Sportback ('24), SQ8 e-tron Sportback ('24)
===Position 9, Check Digit===
[[Vehicle Identification Numbers (VIN codes)/Check digit |Check digit]]
Check Digit in 9th position of VIN was always used in US & Canada. In Europe, Check Digit in 9th position of VIN was adopted for 2002 model year. Prior to the 2002 model year, a letter Z was used in the 9th position of the VIN in Europe.
===Position 10, Model Year: ===
[[Vehicle Identification Numbers (VIN codes)/Model year|Model year]]
===Position 11, Production Plant:===
* A: Ingolstadt, Germany
* B: Brussels, Belgium
* D: Bratislava, Slovakia
* E: Emden, Germany
* K: Rheine, Germany (Karmann plant: Cabriolet ['98], A4 Cabriolet ['03-'09], S4 Cabriolet ['04-'09], RS4 Cabriolet ['08]
* N: Neckarsulm, Germany
* P: Zwickau, Germany
* R: Martorell, Spain
* 1: Gyor, Hungary
* 2: San Jose Chiapa, Puebla state, Mexico
* 7: Heilbronn, Germany
Other plant codes for non-North American models:
* G: Graz, Austria (Steyr-Daimler-Puch plant: V8L)
* U: Uitenhage, South Africa
* X: Poznan, Poland
* Z: Zuffenhausen, Germany (Porsche plant: RS2 Avant)
* 3: Changchun, China (FAW-VW plant)
* 4: Sao Jose dos Pinhais, Parana state, Brazil (Curitiba plant)
* 9: Sarajevo, Bosnia and Herzegovina (Volkswagen Sarajevo d.o.o. plant)
'''Positions 12–17, Serial Number'''
{{BookCat}}
mzya79noxgpn2cxevvzon6c2px7y0ih
4641137
4641128
2026-06-25T15:47:07Z
JustTheFacts33
3434282
/* Position 5, Engine Type: */
4641137
wikitext
text/x-wiki
{{Vehicle Identification Numbers (VIN codes)/Warning}}{{clear}}
===Positions 1–3, World Manufacturer Identifier:===
* WAU - Audi (Audi AG) passenger car
* WA1 - Audi (Audi AG) SUV
* WUA - Audi passenger car - quattro GmbH/Audi Sport GmbH (RS3, RS4, RS5, RS6, RS7, TT RS ['18-'22], R8,<br> S4 Cabriolet ['04-'09], S4 25quattro Special Edition sedan ['06], S8 plus ['16-'18], Non-North American Mkt. RS Q3, Q7 V12 TDI)
* WU1 - Audi SUV - Audi Sport GmbH (RS Q8)
* TRU - Audi Hungary (Audi Hungaria Motor Kft.) passenger car (only used for TT/TTS & '12-'13 TT RS)
* 3U5 - Audi Mexico SUV
===Position 5, Engine Type: ===
{| class="wikitable"
|+Position 5
|-
! VIN !! Size !! Type !! Fuel !! Valvetrain !! Engine Family/Notes/Applications
|-
| A || 1.7L || I4 || Gas || SOHC,<br /> 8 valve || MPI. VW EA827 engine.<br> Audi 4000 4E/4000S 4E ('81-'83)
|-
| A || 1.8L || I4 || Gas || SOHC,<br /> 8 valve || MPI. VW EA827 engine.<br> Audi 4000S ('84)
|-
| A || 2.1L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi Coupe GT ('84)
|-
| A || 2.0L || I4 || Gas || SOHC,<br /> 8 valve || MPI. VW EA827 engine.<br> Audi 80 ('90)
|-
| A || 2.2L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA828 I5 engine. <br> Audi S6 ('95 & '96-'97 in Canada)
|-
| A || 2.8L || 90° V6 || Gas || SOHC,<br /> 12 valve || MPI. Audi EA835 engine - Gen 1. Iron Block. <br> Audi 90 ('95), Cabriolet ('95-'98), A4 2.8 ('96-'97), A6 sedan ('95-'97), A6 wagon ('95-'98)
|-
| A || 2.8L || 90° V6 || Gas || DOHC,<br /> 30 valve || MPI. Audi EA835 engine - Gen 2. Iron Block.<br> Audi A6 sedan 2.8 ('98-'99), A6 Avant 2.8 ('99)
|-
| A || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || Direct injection. Audi-Bentley EA824 engine. 3993cc. 560 hp.<br> Audi RS7 ('17-'18)
|-
| A || 5.2L || 90° V10 || Gas || DOHC,<br /> 40 valve || Direct injection. Dry sump lubrication. Audi EA824 V10 engine. 532 hp.<br> Audi R8 V10 Quattro ('17-'18), R8 V10 RWS ('18), R8 Rwd ('21)
|-
| A || 3.0L || 90° V6 supercharged [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine.<br> Audi Q7 3.0T ('17-'19)
|-
| A || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || 12v Mild Hybrid. Direct injection. Exhaust AVS. Audi EA888 engine - ULEV. TSI. Timing chain. 261 hp. <br> Audi A4 45 TFSI ('21-'25), A4 Allroad 45 TFSI ('21-'25),<br> A5 Coupe/Cabriolet 45 TFSI ('21-'24), A5 Sportback 45 TFSI ('21-'25),<br> Q5 45 TFSI [FY] ('21-'25), Q5 Sportback 45 TFSI [FY] ('21-'25)
|-
| B || 2.1L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 4000 ('81), Coupe ('81-'83), 5000/5000S ('81-'84)
|-
| B || 1.8L || I4 || Gas || SOHC,<br /> 8 valve || MPI. VW EA827 engine.<br> Audi 4000S ('85-'87) [Pos. 7-8 of VIN is 81]
|-
| B || 2.2L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 4000S Quattro ('84-'85), 4000CS Quattro ('86-'87) [Pos. 7-8 of VIN is 85],<br> 5000S ('85-'86)
|-
| B || 2.0L || I4 || Gas || SOHC,<br /> 8 valve || MPI. VW EA827 engine.<br> Audi 80 ('88-'89), 90 ('88)
|-
| B || 2.3L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 100 ('89), 100 Quattro ('89)
|-
| B || 2.0L || I4 || Gas || SOHC,<br /> 8 valve || MPI. VW EA827 engine.<br> Audi 80 ('90)
|-
| B || 1.8L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA827/EA113 engine. <br> Audi A4 1.8T ('97-'99)
|-
| B || 5.2L || 90° V10 || Gas || DOHC,<br /> 40 valve || Direct injection. Dry sump lubrication. Audi EA824 V10 engine. 602 hp.<br> Audi R8 V10 Plus Quattro ('17-'18), R8 V10 Performance Quattro ('20-'23), R8 GT Rwd ('23)
|-
| B || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || 12v Mild Hybrid. Direct injection. Miller Cycle (B-Cycle). Intake AVS. Audi EA888 engine - ULEV. TSI. Timing chain. Detuned version: 201 hp.<br> Audi A4 40 TFSI ('21-'25), A5 Sportback 40 TFSI ('21-'25), Q5 40 TFSI [FY] ('22-'25)
|-
| C || 2.1L || I5 Turbo || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 5000 Turbo ('81-'83)
|-
| C || 2.1L || I5 Turbo [[w:Intercooler|IC]] || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi Quattro Coupe ('82‡ & '83-'85), 5000S Turbo ('84-'85)
|-
| C || 2.3L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 80 ('91-'92), 80 Quattro ('88-'92), 90 ('88-'91), 90 Quattro ('88-'89),<br> 5000S ('87-'88), 5000S Quattro ('88), 100 ('90-'91), 100 Quattro ('90-'91)
|-
| C || 2.2L || I5 Turbo [[w:Intercooler|IC]] || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 200 Turbo ('89), 200 Turbo Quattro ('89)
|-
| C || 2.8L || 90° V6 || Gas || SOHC,<br /> 12 valve || MPI. Audi EA835 engine - Gen 1. Iron Block. <br> Audi A6 sedan ('95-'97), A6 wagon ('96-'98)
|-
| C || 1.8L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA827/EA113 engine. <br> Audi A4 sedan/Avant 1.8T ('00-Mid '05), A4 Cabriolet 1.8T ('03-'06), TT [180 hp] ('00-'06)
|-
| C || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas-Electric Hybrid || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine + electric motor. Lithium-ion Battery Pack.<br> Audi Q5 Hybrid (Early '14)
|-
| C || 1.8L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - PZEV. TSI. Timing chain.<br> Audi A3 Fwd 1.8T ('15)
|-
| C || 3.0L || 90° V6 supercharged [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine.<br> Audi SQ5 ('16-'17)
|-
| C || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. <br> Audi Q3 ('17-'18)
|-
| C || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || 48v Mild Hybrid. Direct injection. Porsche-Audi EA825 engine. 3996cc. 591 hp.<br> Audi RS6 Avant ('21-'23), RS7 ('21-'23)
|-
| C || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || 12v Mild Hybrid. Direct injection. Exhaust AVS. Audi EA888 engine - ULEV. TSI. Timing chain. 261 hp. <br> Audi Q7 45 TFSI ('23-'25)
|-
| D || 2.1L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi Coupe GT ('84)
|-
| D || 2.2L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi Coupe GT ('85-'87)
|-
| D || 2.3L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 80 ('91), 80 Quattro ('90-'91), 90 ('90)
|-
| D || 2.3L || I5 || Gas || DOHC,<br /> 20 valve || MPI. Audi EA828 I5 engine. <br> Audi Coupe Quattro 20V ('90)
|-
| D || 2.2L || I5 Turbo [[w:Intercooler|IC]] || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 5000CS Turbo ('86-'88), 200 Turbo ('90-'91), 200 Turbo Quattro ('90)
|-
| D || 2.8L || 90° V6 || Gas || DOHC,<br /> 30 valve || MPI. Audi EA835 engine - Gen 2. Iron Block.<br> Audi A4 2.8 ('98-'99)
|-
| D || 2.7L || 90° V6 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 30 valve || MPI. Audi EA835 engine - Gen 2. Iron Block.<br> Audi S4 ('00-'02), A6 2.7T ('00-'04), Allroad Quattro 2.7T ('02-'05)
|-
| D || 3.2L || 15° VR6 || Gas || DOHC,<br /> 24 valve || MPI. VW EA390 engine.<br> Audi A3 3.2 ('06-'09), TT 3.2 ('05-'06, '08-'09)
|-
| D || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || 48v Mild Hybrid. Direct injection. Audi-Porsche EA839 engine.<br> Audi A8 3.0T/55 TFSI ('19-'25)
|-
| D || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || 48v Mild Hybrid. Direct injection. Porsche-Audi EA825 engine. 3996cc. 621 hp.<br> Audi RS6 Avant performance ('24-'25), RS7 performance ('24-'25)
|-
| E || 2.3L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi Coupe GT 2.3 "Special Build" (Late '87)
|-
| E || 2.2L || I5 Turbo [[w:Intercooler|IC]] || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 5000CS Turbo Quattro ('86-'88)
|-
| E || 2.3L || I5 || Gas || DOHC,<br /> 20 valve || MPI. Audi EA828 I5 engine. <br> Audi 90 Quattro 20V ('90-'91), Coupe Quattro 20V ('90-'91)
|-
| E || 2.2L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA828 I5 engine. <br> Audi 200 Turbo Quattro 20V ('91)
|-
| E || 3.6L || 90° V8 || Gas || DOHC,<br /> 32 valve || MPI. Audi V8 engine. Audi V8 Quattro ('90-'91)
|-
| E || 2.8L || 90° V6 || Gas || SOHC,<br /> 12 valve || MPI. Audi EA835 engine - Gen 1. Iron Block. <br> Audi 90 ('95)
|-
| E || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - PZEV. TSI. Timing chain.<br> Audi A3 Fwd 2.0T ('08-'13)
|-
| E || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Exhaust AVS. Audi EA888 engine - SULEV. TSI. Timing chain.<br> Audi A3 2.0T Quattro ('18-'20), TT ('19-'23), Q3 2.0T/45 TFSI ('19-'20), Q3 S Line 45 TFSI ('21-'25)
|-
| E || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || 48v Mild Hybrid. Direct injection. Porsche-Audi EA825 engine. 3996cc. 453 hp.<br> Audi A8 4.0T ('19-'21)
|-
| E || 5.2L || 90° V10 || Gas || DOHC,<br /> 40 valve || Direct injection. Dry sump lubrication. Audi EA824 V10 engine. 562 hp.<br> Audi R8 V10 Quattro ('20), R8 V10 Performance Rwd ('22-'23)
|-
| F || 2.3L || I5 || Gas || DOHC,<br /> 20 valve || MPI. Audi EA828 I5 engine. <br> Audi 90 Quattro 20V ('90-'91), Coupe Quattro 20V ('91)
|-
| F || 3.7L || 90° V8 || Gas || DOHC,<br /> 32 valve || MPI. Audi V8 engine. Audi A8 3.7 ('97-'99)
|-
| F || 3.2L || 15° VR6 || Gas || DOHC,<br /> 24 valve || MPI. VW EA390 engine.<br> Audi TT 3.2 ('04-'05)
|-
| F || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA113 engine. FSI. Timing belt. <br> Audi A3 2.0T ('06-'08), A4 sedan 2.0T (Mid '05-'08), A4 Avant 2.0T (Mid '05-'08),<br> A4 Cabriolet 2.0T ('07-'09), TT ('08-'09), TTS ('09)
|-
| F || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain.<br> Audi A3 2.0T ('08-'11), A3 2.0T Quattro ('12-'13), A4 sedan 2.0T ('09-'12), A4 sedan 2.0T Fwd ('13-'16), A4 sedan 2.0T Quattro w/man. trans. ('13-'16), A4 sedan 2.0T Quattro w/auto. trans. (Early '13),<br> A4 Avant 2.0T ('09-'12), Allroad 2.0T (Early '13), A5 2.0T ('10-'12),<br> A5 Coupe 2.0T Quattro w/man. trans. ('13-'15), A5 Cabriolet 2.0T Fwd ('13-'14),<br> A5 2.0T Quattro w/auto. trans. (Early '13), A6 2.0T ('12-'16), TT ('09-'15), Q3 ('15-'16),<br> Q5 2.0T ('11-Early '13)
|-
| F || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - PZEV. TSI. Timing chain.<br> Audi A3 Fwd 2.0T (Early prod. '12)
|-
| F || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas/E85 || DOHC,<br /> 16 valve || Flex Fuel. Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain.<br> Audi A4 sedan 2.0T Quattro w/auto. trans. ('13-'16), Allroad 2.0T ('13-'16),<br> A5 2.0T Quattro w/auto. trans. ('13-'15), Q5 2.0T ('13-'15)
|-
| F || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - PZEV. TSI. Timing chain.<br> Audi A3 2.0T Quattro ('15)
|-
| F || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. High Output: 288 hp.<br> Audi S3 Quattro ('15)
|-
| F || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || Direct injection. Audi-Bentley EA824 engine. 3993cc. 450 hp.<br> Audi S6 ('17-'18), S7 ('17-'18)
|-
| F || 2.9L || 90° V6 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || 48v Mild Hybrid. Direct injection. Audi-Porsche EA839 engine.<br> Audi S6 ('20-'25), S7 ('20-'25)
|-
| G || 1.6L || I4 || Diesel || SOHC,<br /> 8 valve || Indirect injection. VW EA827 engine. Audi 4000 Diesel ('82)
|-
| G || 2.0L || I5 || Diesel || SOHC,<br /> 10 valve || Indirect injection. Audi 5000 Diesel ('81)
|-
| G || 4.2L || 90° V8 || Gas || DOHC,<br /> 32 valve || MPI. Audi V8 engine. 4172cc.<br> Audi A8 4.2 ('97-'99)
|-
| G || "3.2L" || 90° V6 || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine. 3.1L=3123cc.<br> Audi A4 sedan/Avant 3.2 (Mid '05-'06), A6 3.2 ('05-'06)
|-
| G || 3.0L || 90° V6 supercharged [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine.<br> Audi S4 ('10-'16), S5 Cabriolet ('10-'15, Early '16), S5 coupe ('13-'15), A6 3.0T ('09-'16),<br> A7 3.0T ('12-'16), A8 3.0T ('13-'15), Q5 3.0T ('13-'15), SQ5 ('14-'15), Q7 3.0T ('11-'15)
|-
| G || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain.<br> Audi A5 2.0T w/man. trans. ('16-'17)
|-
| G || 6.3L || 72° W12 || Gas || DOHC,<br /> 48 valve || Direct injection. VW W12 engine. Audi A8 W12 ('16)
|-
| G || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas-Electric Hybrid || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine + electric motor. Lithium-ion Battery Pack.<br> Audi Q5 Hybrid ('16)
|-
| H || 1.6L || I4 Turbo || Diesel || SOHC,<br /> 8 valve || Indirect injection. VW EA827 engine. Audi 4000 Turbo Diesel ('83)
|-
| H || 2.0L || I5 || Diesel || SOHC,<br /> 10 valve || Indirect injection. Audi 5000 Diesel ('82)
|-
| H || 2.0L || I5 Turbo || Diesel || SOHC,<br /> 10 valve || Indirect injection. Audi 5000 Turbo Diesel ('83)
|-
| H || 2.8L || 90° V6 || Gas || DOHC,<br /> 30 valve || MPI. Audi EA835 engine - Gen 2. Iron Block.<br> Audi A4 2.8 ('00-'01), A6 2.8 ('00-'01)
|-
| H || "3.2L" || 90° V6 || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine. 3.1L=3123cc.<br> Audi A4 sedan/Avant 3.2 ('06-'08), A4 Cabriolet 3.2 ('07-'09), A6 3.2 ('06-'09)
|-
| H || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. <br> Audi Q7 2.0T ('17-'19)
|-
| H || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Gas-Electric [[w:Plug-in hybrid|PHEV]] || DOHC,<br /> 24 valve || Direct injection. Audi-Porsche EA839 engine + electric motor. Lithium-ion Battery Pack.<br> Audi A8 60 TFSI e ('20-'21)
|-
| J || 2.8L || 90° V6 || Gas || SOHC,<br /> 12 valve || MPI. Audi EA835 engine - Gen 1. Iron Block. <br> Audi 90 ('93-'94), 100 ('92-'94)
|-
| J || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Diesel || DOHC,<br /> 16 valve || Common-Rail Direct injection. VW EA189 engine.<br> Audi A3 TDI ('10-'13)
|-
| J || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Diesel || DOHC,<br /> 16 valve || Common-Rail Direct injection. SCR. VW EA288 engine.<br> Audi A3 TDI ('15)
|-
| J || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. 248 hp. <br> Audi Q7 45 TFSI ('20-'22)
|-
| K || 2.8L || 90° V6 || Gas || SOHC,<br /> 12 valve || MPI. Audi EA835 engine - Gen 1. Iron Block. <br> Audi 90 ('93-'95), 100 ('92-'94)
|-
| K || 3.2L || 90° V6 || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine. 3197cc. <br> Audi A4 sedan 3.2 ('09), A5 3.2 ('08-'10), A6 3.2 ('10-'11), Q5 3.2 ('09-'12)
|-
| L || 2.8L || 90° V6 || Gas || SOHC,<br /> 12 valve || MPI. Audi EA835 engine - Gen 1. Iron Block. <br> Audi Cabriolet ('94-'95)
|-
| L || 4.2L || 90° V8 || Gas || DOHC,<br /> 40 valve || MPI. Audi V8 engine. 4172cc.<br> Audi A6 4.2 ('00-'04), A8 4.2 ('00-'06)
|-
| L || 4.2L || 90° V8 || Gas || DOHC,<br /> 40 valve || MPI. Audi EA824 engine. 4163cc.<br> Audi S4 sedan/Avant ('04-'08), S4 Cabriolet ('04-'09),<br> A6 4.2 ('05-'06), Allroad Quattro 4.2 ('04-'05)
|-
| M || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Diesel || DOHC,<br /> 24 valve || Direct injection. Audi EA897 engine.<br> Audi A6 TDI ('14-'16), A7 TDI ('14-'16), A8 TDI ('14-'15), Q5 TDI ('14-'15), Q7 TDI ('09-'15)
|-
| M || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Miller Cycle (B-Cycle). Intake AVS. Audi EA888 engine - ULEV. TSI. Timing chain. Detuned version: 188 hp.<br> Audi A4 Ultra 2.0T Fwd ('17-'18), A4 2.0T Fwd ('19-'20)
|-
| N || 5.2L || 90° V10 || Gas || DOHC,<br /> 40 valve || Direct injection. Audi EA824 V10 engine.<br> Audi S6 ('07-'11), S8 ('07-'09)
|-
| N || 5.2L || 90° V10 || Gas || DOHC,<br /> 40 valve || Direct injection. Dry sump lubrication. Audi EA824 V10 engine.<br> Audi R8 ('10-'12, '14-'15)
|-
| N || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Exhaust AVS. Audi EA888 engine - ULEV. TSI. Timing chain. <br> Audi A4 2.0T Fwd/Quattro ('17-'18), A4 2.0T Quattro ('19-'20), A4 Allroad Quattro ('17-'20),<br> A5 Coupe/Cabriolet 2.0T Quattro ('18-'20), A5 Sportback 2.0T Quattro ('18-'20),<br> Q5 2.0T Quattro ('18-'20)
|-
| P || 2.2L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA828 I5 engine. <br> Audi S4 [C4 (4A)] ('92-'93)
|-
| P || 2.7L || 90° V6 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 30 valve || MPI. Audi EA835 engine - Gen 2. Iron Block.<br> Audi Allroad Quattro 2.7T ('01)
|-
| P || 1.4L || I4 Turbo [[w:Intercooler|IC]] || Gas-Electric [[w:Plug-in hybrid|PHEV]] || DOHC,<br /> 16 valve || Direct injection. VW EA211 engine + electric motor. Lithium-ion Battery Pack.<br> Audi A3 Sportback e-tron ('16-'18)
|-
| P || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas-Electric [[w:Plug-in hybrid|PHEV]] || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine + electric motor. Lithium-ion Battery Pack. TSI. Timing chain.<br> SULEV.<br> Audi A7 55 TFSI e ('21-'22)
|-
| R || 2.2L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA828 I5 engine. <br> Audi S4 [C4 (4A)] ('93-'94)
|-
| R || 6.0L || 72° W12 || Gas || DOHC,<br /> 48 valve || MPI. VW W12 engine. Audi A8 W12 ('05-'09)
|-
| R || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || Direct injection. Audi-Bentley EA824 engine. 3993cc. 605 hp.<br> Audi RS7 performance ('16-'18)
|-
| R || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Diesel || DOHC,<br /> 24 valve || Direct injection. Audi EA897 engine. Audi A8 TDI ('16)
|-
| R || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || 48v Mild Hybrid. Direct injection. Porsche-Audi EA825 engine. 3996cc. 591 hp.<br> Audi RS Q8 ('20-'24)
|-
| R || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || 48v Mild Hybrid. Direct injection. Porsche-Audi EA825 engine. 3996cc. 631 hp.<br> Audi RS Q8 performance ('25)
|-
| S || 1.8L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA827/EA113 engine. 180 hp. <br> Audi TT (Early '00)
|-
| S || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || Direct injection. Audi-Bentley EA824 engine. 3993cc.<br> Audi S8 ('16)
|-
| S || 2.5L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || Direct/Port injection. Audi EA855 Evo engine.<br> Audi TT RS ('18-'22)
|-
| S || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || 48v Mild Hybrid. Direct injection. Porsche-Audi EA825 engine. 3996cc. 563 hp.<br> Audi S8 ('20-'25)
|-
| T || 1.8L || I4 Turbo Twin [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA827/EA113 engine. High Output - 225 hp. Single Turbo, Twin Intercoolers. <br> Audi TT ('01-'06)
|-
| T || 3.0L || 90° V6 || Gas || DOHC,<br /> 30 valve || MPI. Audi EA835 engine - Gen 3. Aluminum block.<br> Audi A4 sedan/Avant 3.0 ('02-Mid '05), A4 Cabriolet 3.0 ('03-'06), A6 3.0 ('02-'04)
|-
| T || "3.2L" || 90° V6 || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine. 3.1L=3123cc.<br> Audi A6 3.2 ('05)
|-
| U || 4.2L || 90° V8 || Gas || DOHC,<br /> 40 valve || MPI. Audi V8 engine. 4172cc.<br> Audi S6 Avant ('02-'03), S8 ('01-'03)
|-
| U || 4.2L || 90° V8 || Gas || DOHC,<br /> 32 valve || Direct injection. Audi EA824 engine. 4163cc.<br> Audi RS4 sedan ('07-'08), RS4 Cabriolet ('08)
|-
| U || 4.2L || 90° V8 || Gas || DOHC,<br /> 32 valve || Direct injection. Dry sump lubrication. Audi EA824 engine. 4163cc.<br> Audi R8 ('08-'12, '14-'15)
|-
| U || 5.2L || 90° V10 || Gas || DOHC,<br /> 40 valve || Direct injection. Dry sump lubrication. Audi EA824 V10 engine.<br> Audi R8 V10 coupe w/man. trans. (Early '14) [when U in 5th pos. of VIN follows G in 4th pos. of VIN]
|-
| U || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Miller Cycle (B-Cycle). Intake AVS. Audi EA888 engine - PZEV. TSI. Timing chain. Detuned version: 184 hp.<br> Audi A3 2.0T Fwd ('17)
|-
| U || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Miller Cycle (B-Cycle). Intake AVS. Audi EA888 engine - SULEV. TSI. Timing chain. Detuned version: 184 hp.<br> Audi A3 2.0T Fwd ('18-'20), Q3 40 TFSI ('21-'22)
|-
| U || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Miller Cycle (B-Cycle). Intake AVS. Audi EA888 engine - ULEV. TSI. Timing chain. Detuned version: 184 hp.<br> Audi Q3 40 TFSI ('23-'24 & '25 in Canada)
|-
| U || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || 48v Mild Hybrid. Direct injection. Miller Cycle (B-Cycle). Intake AVS. Audi EA888 engine - SULEV.<br> TSI. Timing chain. 201 hp.<br> Audi A3 40 TFSI ('22-'25)
|-
| V || 4.2L || 90° V8 || Gas || DOHC,<br /> 32 valve || MPI. Audi V8 engine. 4172cc. Audi V8 Quattro ('92-'93)
|-
| V || 4.2L || 90° V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 40 valve || MPI. Audi V8 engine. 4172cc.<br> Audi RS6 (US: '03, Canada: '04)
|-
| V || 4.2L || 90° V8 || Gas || DOHC,<br /> 32 valve || Direct injection. Audi EA824 engine. 4163cc.<br> Audi S5 coupe ('08-'12), A6 4.2 ('07-'11), A8 4.2 ('07-'12), Q7 4.2 ('07-'10)
|-
| V || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Diesel || DOHC,<br /> 24 valve || Direct injection. Audi EA897 engine. Audi Q5 TDI ('16)
|-
| V || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || 48v Mild Hybrid. Direct injection. Audi-Porsche EA839 engine.<br> Audi Q8 3.0T/55 TFSI ('19-'25), Q7 55 TFSI ('25)
|-
| W || 4.2L || 90° V8 || Gas || DOHC,<br /> 32 valve || MPI. Audi V8 engine. 4172cc. Audi V8 Quattro ('92-'94)
|-
| W || 2.5L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || Direct/Port injection. Audi EA855 Evo engine.<br> Audi RS3 ('17-'20)
|-
| W || 2.9L || 90° V6 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi-Porsche EA839 engine.<br> Audi RS5 coupe ('18-'19, '21-'24), RS5 Sportback ('19, '21-'25)
|-
| W || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || 48v Mild Hybrid. Direct injection. Porsche-Audi EA825 engine. 3996cc. 500 hp.<br> Audi SQ7 ('20-'25), SQ8 ('20-'25)
|-
| W || 2.5L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || Direct/Port injection. Audi EA855 Evo engine. 394 hp.<br> Audi RS3 ('25)
|-
| X || 1.8L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA827/EA113 engine. 180 hp. <br> Audi TT ('01-'02)
|-
| X || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || 48v Mild Hybrid. Direct injection. Audi-Porsche EA839 engine.<br> Audi Q7 55 TFSI ('20-'24)
|-
| Y || 3.6L || 10.6° VR6 || Gas || DOHC,<br /> 24 valve || Direct injection. VW EA390 engine.<br> Audi Q7 3.6 ('07-'10)
|-
| 1 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA113 engine - ULEV. FSI. Timing belt.<br> Audi TTS ('10-'15)
|-
| 1 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. High Output: 288 hp.<br> Audi S3 Quattro ('16-'20), TTS ('16-'23)
|-
| 2 || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || Direct injection. Audi-Bentley EA824 engine. 3993cc.<br> Audi S6 ('13-'16), S7 ('13-'16), RS7 ('14-'16), A8 4.0T ('13-'15), S8 ('13-'15)
|-
| 2 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas/E85 || DOHC,<br /> 16 valve || Flex Fuel. Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain.<br> Audi A5 2.0T w/auto. trans. ('16-'17), Q5 2.0T ('16-'17)
|-
| 2 || 3.0L || 90° V6 supercharged [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine.<br> Audi A6 3.0T ('17), A7 3.0T ('17)
|-
| 2 || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || 48v Mild Hybrid. Direct injection. Audi-Porsche EA839 engine.<br> Audi A6 3.0T/55 TFSI ('19-'25), A6 Allroad ('20-'25), A7 3.0T/55 TFSI ('19-'25)
|-
| 2 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas-Electric [[w:Plug-in hybrid|PHEV]] || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine + electric motor. Lithium-ion Battery Pack. TSI. Timing chain.<br> Audi Q5 55 TFSI e [FY] ('20-'25)
|-
| 3 || 2.5L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || Direct injection. Audi EA855 engine.<br> Audi TT RS ('12-'13)
|-
| 3 || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || Direct injection. Audi-Bentley EA824 engine. 3993cc.<br> Audi A8 4.0T ('16-'18)
|-
| 3 || 3.0L || 90° V6 supercharged [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine. Higher Output: 340 hp.<br> Audi A6 3.0T Competition ('17), A6 3.0T ('18), A7 3.0T Competition ('17), A7 3.0T ('18)
|-
| 3 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || 12v Mild Hybrid. Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. 261 hp.<br> Audi A6 Sport 45 TFSI ('21), A6 45 TFSI ('22-'25)
|-
| 3 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. High Output: 306 hp.<br> Audi S3 Quattro ('22-'24)
|-
| 4 || 6.3L || 72° W12 || Gas || DOHC,<br /> 48 valve || Direct injection. VW W12 engine. Audi A8 W12 ('12-'15)
|-
| 4 || 3.0L || 90° V6 supercharged [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine.<br> Audi S5 coupe ('16-'17), S5 Cabriolet ('16-'17), A8 3.0T ('16-'18)
|-
| 4 || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi-Porsche EA839 engine.<br> Audi S4 ('18-'25), S5 coupe/cabriolet ('18-'24), S5 Sportback ('18-'25), SQ5 [FY] ('18-'25),<br> SQ5 Sportback [FY] ('21-'25)
|-
| 4 || 2.5L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || Direct/Port injection. Audi EA855 Evo engine. 401 hp.<br> Audi RS3 ('22-'24)
|-
| 5 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Exhaust AVS. Audi EA888 engine - PZEV. TSI. Timing chain.<br> Audi TT ('16-'17)
|-
| 5 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Exhaust AVS. Audi EA888 engine - SULEV. TSI. Timing chain.<br> Audi TT ('18)
|-
| 5 || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || Direct injection. Audi-Bentley EA824 engine. 3993cc. 605 hp.<br> Audi S8 plus ('16-'18)
|-
| 5 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. High Output: 328 hp.<br> Audi S3 Quattro ('25)
|-
| 6 || 4.2L || 90° V8 || Gas || DOHC,<br /> 32 valve || Direct injection. Audi EA824 engine. 4163cc.<br> Audi RS5 ('13-'15)
|-
| 7 || 1.8L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - PZEV. TSI. Timing chain.<br> Audi A3 Fwd 1.8T ('16)
|-
| 7 || 3.0L || 90° V6 supercharged [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine.<br> Audi Q5 3.0T ('16-'17)
|-
| 8 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas-Electric Hybrid || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine + electric motor. Lithium-ion Battery Pack.<br> Audi Q5 Hybrid ('13-'15)
|-
| 8 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - PZEV. TSI. Timing chain.<br> Audi A3 2.0T Quattro ('16-'17)
|-
| 8 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - SULEV. TSI. Timing chain.<br> Audi A3 2.0T Quattro ('18)
|-
| 8 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain.<br> Audi A6 2.0T ('17-'18)
|-
| 8 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || 12v Mild Hybrid. Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. 248 hp.<br> Audi A6 2.0T/45 TFSI ('19-'21)
|}
‡1982 Audi Quattro: 3-4 cars were imported to the US for marketing purposes and as press cars. They remained in the US after those uses ended and transitioned into private ownership. These cars carry US-style VINs rather than European-style VINs. 3 VINs have been found. Their serial numbers (last 6 digits of VIN) are 900565, 900586, and 900648. The Audi Quattro was officially sold in the US for the 1983-1985 model years.
====Motor codes for Electric Vehicles====
{| class="wikitable"
|+Position 5
|-
! VIN !! Motor Designation !! Fuel !! Drive Wheels !! Battery Size !! Application/Notes
|-
| A ||APA250 (Front) / AKA320 (Rear)|| Electricity || All ||95 Kwh (gross) / 83.6 Kwh (net) || Audi e-tron quattro ('19), e-tron Sportback quattro ('20)
|-
| A ||APA250 (Front) / AKA320 (Rear)|| Electricity || All ||95 Kwh (gross) / 86.5 Kwh (net) || Audi e-tron quattro ('21-'23), e-tron Sportback quattro ('21-'23)
|-
| A ||APA250 (Front) / AKA320 (Rear)|| Electricity || All ||114 Kwh (gross) / 106 Kwh (net) || Audi Q8 e-tron quattro ('24), Q8 e-tron Sportback quattro ('24)
|-
| C ||APA320 (1 Front) / ATA250 (2 Rear)|| Electricity || All ||95 Kwh (gross) / 86.5 Kwh (net) || Audi e-tron S quattro ('22-'23), e-tron S Sportback quattro ('22-'23)
|-
| C ||APA320 (1 Front) / ATA250 (2 Rear)|| Electricity || All ||114 Kwh (gross) / 106 Kwh (net) || Audi SQ8 e-tron quattro ('24), SQ8 e-tron Sportback quattro ('24)
|-
| C ||APP310 (Rear) || Electricity || Rear ||82 Kwh (gross) / 77 Kwh (net) || Audi Q4 e-tron 40 ('23-Mid '24)
|-
| H ||V662 (Front) Code EBGA / V663 (Rear) (Higher output-Code EBEA)|| Electricity || All ||93.4 Kwh (gross) / 83.7 Kwh (net) || Audi RS e-tron GT quattro ('22-'24)
|-
| J ||V662 (Front) Code EBGA / V663 (Rear) Code EBFA|| Electricity || All ||93.4 Kwh (gross) / 83.7 Kwh (net) || Audi e-tron GT quattro ('22-'24)
|-
| U ||HASCO Magna asynchronous motor (Front) / APP550 (Rear) || Electricity || All ||82 Kwh (gross) / 77 Kwh (net) || Audi Q4 e-tron 55 quattro (Mid '24), Q4 e-tron Sportback 55 quattro (Mid '24)
|-
| 2 ||HASCO Magna asynchronous motor (Front) / APP310 (Rear) || Electricity || All ||82 Kwh (gross) / 77 Kwh (net) || Audi Q4 e-tron 50 quattro ('22-Mid '24), Q4 e-tron Sportback 50 quattro ('22-Mid '24)
|}
HASCO Magna=HASCO Magna Electric Drive Systems Co., Ltd.
===Position 6, Restraint Systems:===
*0 = Active (Manual) 3-point Seat Belts only
*5 = Driver-side Airbag, Driver and Passenger Active (Manual) 3-point Seat Belts
*8 = Driver and Passenger Front Airbags
*2 = Active (Manual) belts plus Driver and Passenger Front Airbags & Front Side Airbags ('00-'06 TT)
*4 = Active (Manual) belts plus Driver and Passenger Front Airbags & Front and Rear Side Airbags & Sideguard Side Curtain Airbags ('04-'07 A8)
*5 = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front and Rear Side Airbags & Sideguard Side Curtain Airbags (A3, A4, A6, Allroad)
*6 = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front Side Airbags & Sideguard Side Curtain Airbags ('06-'09 A3, A4, A6, Allroad)
*3 = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front Side Airbags & Front Knee Airbags ('08-'09 TT, R8, '09 TTS)
*4 = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front Side Airbags ('03-'09 A4 Cabriolet, '04-'09 S4 Cabriolet, '08 RS4 Cabriolet)
*7 = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front Side Airbags & Sideguard Side Curtain Airbags
*9 = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front and Rear Side Airbags & Sideguard Side Curtain Airbags (Except '08-'09 A8/S8)
*9 = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front and Rear Side Airbags & Sideguard Side Curtain Airbags & Front Knee Airbags ('08-'09 A8/S8)
*A = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front Side Airbags & Front Knee Airbags ('10- A5/S5 Cabriolet, '10- TT/TTS, '12-'13 TT RS, '10- R8)
*A = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front Side Airbags & Sideguard Side Curtain Airbags ('10- A3, '10- A4/S4, '10-'11 A5/S5 Coupe, '10- A6/S6, '12- A7, '10- Q5, '10- Q7)
*B = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front and Rear Side Airbags & Sideguard Side Curtain Airbags ('10- A3, '10- A4/S4, '10- A6/S6, '12- A7, '10- Q5, '10- Q7)
*A = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front Side Airbags & Sideguard Side Curtain Airbags & Front Knee Airbags ('12- A5/S5 Coupe)
*A = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front and Rear Side Airbags & Sideguard Side Curtain Airbags & Front Knee Airbags ('10-' A8)
===Position 7-8, Model Line:===
1981-2009:
*8P = A3 ('06-'09)
*81 = 4000 Fwd ('81-'87)
*85 = 4000 Quattro ('84-'87), Coupe ('81-'83), Coupe GT ('84-'87), Quattro ('82‡ & '83-'85)
*89 = 80/90 ('88-'89)
*8A = 80 ('90-'92), 90 ('90-'91)
*8C = 90 ('93-'95)
*8B = Coupe Quattro ('90-'91)
*8G = Cabriolet ('94-'98)
*8D = A4 ('96-'01), S4 ('00-'02)
*8E = A4 ('02-'08), S4 ('04-'08), RS4 ('07-'08)
*8H = A4 Cabriolet ('03-'09), S4 Cabriolet ('04-'09), RS4 Cabriolet ('08)
*8K = A4 ('09)
*8T = A5 coupe ('08-'09), S5 coupe ('08-'09)
*43 = 5000 ('81-'83)
*44 = 5000 ('84-'88), 100/200 ('89-'91)
*4A = 100/S4 ('92-'94), A6 sedan ('95-'97), A6 wagon ('95-'98), S6 ('95 & '96-'97 in Canada)
*4B = A6 sedan ('98-'04), A6 Avant wagon ('99-'04), Allroad ('01-'05), S6 ('02-'03), RS6 (US: '03, Canada: '04)
*4F = A6 ('05-'09), S6 ('07-'09)
*44 = V8 Quattro ('90)
*4A = V8 Quattro ('91-'94)
*4D = A8 ('97-'03), S8 ('01-'03)
*4E = A8 ('04-'09), S8 ('07-'09)
*8N = TT ('00-'06)
*8J = TT ('08-'09), TTS ('09)
*42 = R8 ('08-'09)
*8R = Q5 ('09)
*4L = Q7 ('07-'09)
2010-:
*FM (Type 8P) = A3 ('10-'13)
*FF (Type 8V) = A3 ('15-'20), S3 ('15-'20), RS3 ('17-'20), A3 Sportback e-tron [PHEV] '16-'18
*GY (Type 8Y) = A3/S3/RS3 ('22-)
*FL (Type 8K) = A4 ('10-'16), Allroad ('13-'16), S4 ('10-'16)
*F4 (Type 8W) = A4 ('17-'25), A4 Allroad ('17-'25), S4 ('18-'25)
*FR (Type 8T) = A5 Coupe ('10-'17), S5 Coupe ('10-'17), RS5 Coupe ('13-'15)
*FH (Type 8F) = A5 Cabriolet ('10-'17), S5 Cabriolet ('10-'17), RS5 Cabriolet ('13-'15)
*F5 = A5 ('18-'25), S5 ('18-'25), RS5 ('18-'19, '21-'25) [Coupe/Cabriolet: '18-'24, Sportback: '18-'25]
*FU = A5/S5 ('25-)
*FB (Type 4F) = A6 ('10-'11), S6 ('10-'11)
*FC (Type 4G) = A6 ('12-'18), S6 ('13-'18)
*FC (Type 4G) = A7 ('12-'18), S7 ('13-'18), RS7 ('14-'18)
*F2 (Type 4A) = A6 ('19-'25), S6 ('20-'25), RS6 Avant ('21-'26), A6 Allroad ('20-'26)
*F2 (Type 4K) = A7 ('19-'25), S7 ('20-'25), RS7 ('21-'26)
*FN = A6 ('26-)
*GH = A6 e-tron, S6 e-tron ('25-)
*FA (Type 4E) = A8 ('10)
*FD (Type 4H) = A8 ('11-'18), S8 ('13-'16), S8 plus ('16-'18)
*F8 (Type 4N) = A8 ('19-'26), S8 ('20-'26)
*FW (Type F8) = e-tron GT ('22-'24), RS e-tron GT ('22-'24), S e-tron GT ('25-), RS e-tron GT performance ('25-)
*FK (Type 8J) = TT ('10-'15), TTS ('10-'15), TT RS ('12-'13)
*FV (Type FV or 8S) = TT ('16-'23), TTS ('16-'23), TT RS ('18-'22)
*FG (Type 42) = R8 ('10-'12, '14-'15)
*FX (Type 4S) = R8 ('17-'18, '20-'23)
*FS (Type 8U) = Q3 ('15-'18)
*F3 = Q3 ('19-'25)
*FJ = Q3 ('26-)
*FZ (Type F4) = Q4 e-tron, Q4 e-tron Sportback ('22-)
*FP (Type 8R) = Q5 ('10-'17), SQ5 ('14-'17)
*FY = Q5 ('18-'25), SQ5 ('18-'25), Q5 Sportback ('21-'25), SQ5 Sportback ('21-'25)
*GU = Q5 ('25-'26), SQ5 ('25-'26), Q5 Sportback ('25-'26), SQ5 Sportback ('25-'26)
*GF = Q6 e-tron, SQ6 e-tron, Q6 e-tron Sportback, SQ6 e-tron Sportback ('25-)
*FE (Type 4L) = Q7 ('10-'15)
*F7 (Type 4M) = Q7 ('17-), SQ7 ('20-)
*F1 (Type 4M) = Q8 ('19-), SQ8 ('20-), RS Q8 ('20-)
*GE = e-tron ('19, '21-'23), e-tron S ('22-'23), e-tron Sportback ('20-'23), e-tron S Sportback ('22-'23),<br> Q8 e-tron ('24), SQ8 e-tron ('24), Q8 e-tron Sportback ('24), SQ8 e-tron Sportback ('24)
===Position 9, Check Digit===
[[Vehicle Identification Numbers (VIN codes)/Check digit |Check digit]]
Check Digit in 9th position of VIN was always used in US & Canada. In Europe, Check Digit in 9th position of VIN was adopted for 2002 model year. Prior to the 2002 model year, a letter Z was used in the 9th position of the VIN in Europe.
===Position 10, Model Year: ===
[[Vehicle Identification Numbers (VIN codes)/Model year|Model year]]
===Position 11, Production Plant:===
* A: Ingolstadt, Germany
* B: Brussels, Belgium
* D: Bratislava, Slovakia
* E: Emden, Germany
* K: Rheine, Germany (Karmann plant: Cabriolet ['98], A4 Cabriolet ['03-'09], S4 Cabriolet ['04-'09], RS4 Cabriolet ['08]
* N: Neckarsulm, Germany
* P: Zwickau, Germany
* R: Martorell, Spain
* 1: Gyor, Hungary
* 2: San Jose Chiapa, Puebla state, Mexico
* 7: Heilbronn, Germany
Other plant codes for non-North American models:
* G: Graz, Austria (Steyr-Daimler-Puch plant: V8L)
* U: Uitenhage, South Africa
* X: Poznan, Poland
* Z: Zuffenhausen, Germany (Porsche plant: RS2 Avant)
* 3: Changchun, China (FAW-VW plant)
* 4: Sao Jose dos Pinhais, Parana state, Brazil (Curitiba plant)
* 9: Sarajevo, Bosnia and Herzegovina (Volkswagen Sarajevo d.o.o. plant)
'''Positions 12–17, Serial Number'''
{{BookCat}}
0j0s44tdohf92r1eh8lqpjxtxrmz4fu
4641182
4641137
2026-06-25T21:23:42Z
JustTheFacts33
3434282
/* Position 5, Engine Type: */
4641182
wikitext
text/x-wiki
{{Vehicle Identification Numbers (VIN codes)/Warning}}{{clear}}
===Positions 1–3, World Manufacturer Identifier:===
* WAU - Audi (Audi AG) passenger car
* WA1 - Audi (Audi AG) SUV
* WUA - Audi passenger car - quattro GmbH/Audi Sport GmbH (RS3, RS4, RS5, RS6, RS7, TT RS ['18-'22], R8,<br> S4 Cabriolet ['04-'09], S4 25quattro Special Edition sedan ['06], S8 plus ['16-'18], Non-North American Mkt. RS Q3, Q7 V12 TDI)
* WU1 - Audi SUV - Audi Sport GmbH (RS Q8)
* TRU - Audi Hungary (Audi Hungaria Motor Kft.) passenger car (only used for TT/TTS & '12-'13 TT RS)
* 3U5 - Audi Mexico SUV
===Position 5, Engine Type: ===
{| class="wikitable"
|+Position 5
|-
! VIN !! Size !! Type !! Fuel !! Valvetrain !! Engine Family/Notes/Applications
|-
| A || 1.7L || I4 || Gas || SOHC,<br /> 8 valve || MPI. VW EA827 engine.<br> Audi 4000 4E/4000S 4E ('81-'83)
|-
| A || 1.8L || I4 || Gas || SOHC,<br /> 8 valve || MPI. VW EA827 engine.<br> Audi 4000S ('84)
|-
| A || 2.1L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi Coupe GT ('84)
|-
| A || 2.0L || I4 || Gas || SOHC,<br /> 8 valve || MPI. VW EA827 engine.<br> Audi 80 ('90)
|-
| A || 2.2L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA828 I5 engine. <br> Audi S6 ('95 & '96-'97 in Canada)
|-
| A || 2.8L || 90° V6 || Gas || SOHC,<br /> 12 valve || MPI. Audi EA835 engine - Gen 1. Iron Block. <br> Audi 90 ('95), Cabriolet ('95-'98), A4 2.8 ('96-'97), A6 sedan ('95-'97), A6 wagon ('95-'98)
|-
| A || 2.8L || 90° V6 || Gas || DOHC,<br /> 30 valve || MPI. Audi EA835 engine - Gen 2. Iron Block.<br> Audi A6 sedan 2.8 ('98-'99), A6 Avant 2.8 ('99)
|-
| A || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || Direct injection. Audi-Bentley EA824 engine. 3993cc. 560 hp.<br> Audi RS7 ('17-'18)
|-
| A || 5.2L || 90° V10 || Gas || DOHC,<br /> 40 valve || Direct injection. Dry sump lubrication. Audi EA824 V10 engine. 532 hp.<br> Audi R8 V10 Quattro ('17-'18), R8 V10 RWS ('18), R8 Rwd ('21)
|-
| A || 3.0L || 90° V6 supercharged [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine.<br> Audi Q7 3.0T ('17-'19)
|-
| A || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || 12v Mild Hybrid. Direct injection. Exhaust AVS. Audi EA888 engine - ULEV. TSI. Timing chain. 261 hp. <br> Audi A4 45 TFSI ('21-'25), A4 Allroad 45 TFSI ('21-'25),<br> A5 Coupe/Cabriolet 45 TFSI ('21-'24), A5 Sportback 45 TFSI ('21-'25),<br> Q5 45 TFSI [FY] ('21-'25), Q5 Sportback 45 TFSI [FY] ('21-'25)
|-
| A || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Exhaust AVS. Audi EA888 engine - SULEV. TSI. Timing chain. 268 hp. <br> Audi Q5 [GU] (Mid '25), Q5 Sportback [GU] (Mid '25)
|-
| B || 2.1L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 4000 ('81), Coupe ('81-'83), 5000/5000S ('81-'84)
|-
| B || 1.8L || I4 || Gas || SOHC,<br /> 8 valve || MPI. VW EA827 engine.<br> Audi 4000S ('85-'87) [Pos. 7-8 of VIN is 81]
|-
| B || 2.2L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 4000S Quattro ('84-'85), 4000CS Quattro ('86-'87) [Pos. 7-8 of VIN is 85],<br> 5000S ('85-'86)
|-
| B || 2.0L || I4 || Gas || SOHC,<br /> 8 valve || MPI. VW EA827 engine.<br> Audi 80 ('88-'89), 90 ('88)
|-
| B || 2.3L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 100 ('89), 100 Quattro ('89)
|-
| B || 2.0L || I4 || Gas || SOHC,<br /> 8 valve || MPI. VW EA827 engine.<br> Audi 80 ('90)
|-
| B || 1.8L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA827/EA113 engine. <br> Audi A4 1.8T ('97-'99)
|-
| B || 5.2L || 90° V10 || Gas || DOHC,<br /> 40 valve || Direct injection. Dry sump lubrication. Audi EA824 V10 engine. 602 hp.<br> Audi R8 V10 Plus Quattro ('17-'18), R8 V10 Performance Quattro ('20-'23), R8 GT Rwd ('23)
|-
| B || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || 12v Mild Hybrid. Direct injection. Miller Cycle (B-Cycle). Intake AVS. Audi EA888 engine - ULEV. TSI. Timing chain. Detuned version: 201 hp.<br> Audi A4 40 TFSI ('21-'25), A5 Sportback 40 TFSI ('21-'25), Q5 40 TFSI [FY] ('22-'25)
|-
| B || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Exhaust AVS. Audi EA888 engine - ULEV. TSI. Timing chain. 268 hp. <br> Audi A5 [B10] (Mid '25)
|-
| C || 2.1L || I5 Turbo || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 5000 Turbo ('81-'83)
|-
| C || 2.1L || I5 Turbo [[w:Intercooler|IC]] || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi Quattro Coupe ('82‡ & '83-'85), 5000S Turbo ('84-'85)
|-
| C || 2.3L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 80 ('91-'92), 80 Quattro ('88-'92), 90 ('88-'91), 90 Quattro ('88-'89),<br> 5000S ('87-'88), 5000S Quattro ('88), 100 ('90-'91), 100 Quattro ('90-'91)
|-
| C || 2.2L || I5 Turbo [[w:Intercooler|IC]] || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 200 Turbo ('89), 200 Turbo Quattro ('89)
|-
| C || 2.8L || 90° V6 || Gas || SOHC,<br /> 12 valve || MPI. Audi EA835 engine - Gen 1. Iron Block. <br> Audi A6 sedan ('95-'97), A6 wagon ('96-'98)
|-
| C || 1.8L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA827/EA113 engine. <br> Audi A4 sedan/Avant 1.8T ('00-Mid '05), A4 Cabriolet 1.8T ('03-'06), TT [180 hp] ('00-'06)
|-
| C || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas-Electric Hybrid || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine + electric motor. Lithium-ion Battery Pack.<br> Audi Q5 Hybrid (Early '14)
|-
| C || 1.8L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - PZEV. TSI. Timing chain.<br> Audi A3 Fwd 1.8T ('15)
|-
| C || 3.0L || 90° V6 supercharged [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine.<br> Audi SQ5 ('16-'17)
|-
| C || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. <br> Audi Q3 ('17-'18)
|-
| C || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || 48v Mild Hybrid. Direct injection. Porsche-Audi EA825 engine. 3996cc. 591 hp.<br> Audi RS6 Avant ('21-'23), RS7 ('21-'23)
|-
| C || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || 12v Mild Hybrid. Direct injection. Exhaust AVS. Audi EA888 engine - ULEV. TSI. Timing chain. 261 hp. <br> Audi Q7 45 TFSI ('23-'25)
|-
| D || 2.1L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi Coupe GT ('84)
|-
| D || 2.2L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi Coupe GT ('85-'87)
|-
| D || 2.3L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 80 ('91), 80 Quattro ('90-'91), 90 ('90)
|-
| D || 2.3L || I5 || Gas || DOHC,<br /> 20 valve || MPI. Audi EA828 I5 engine. <br> Audi Coupe Quattro 20V ('90)
|-
| D || 2.2L || I5 Turbo [[w:Intercooler|IC]] || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 5000CS Turbo ('86-'88), 200 Turbo ('90-'91), 200 Turbo Quattro ('90)
|-
| D || 2.8L || 90° V6 || Gas || DOHC,<br /> 30 valve || MPI. Audi EA835 engine - Gen 2. Iron Block.<br> Audi A4 2.8 ('98-'99)
|-
| D || 2.7L || 90° V6 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 30 valve || MPI. Audi EA835 engine - Gen 2. Iron Block.<br> Audi S4 ('00-'02), A6 2.7T ('00-'04), Allroad Quattro 2.7T ('02-'05)
|-
| D || 3.2L || 15° VR6 || Gas || DOHC,<br /> 24 valve || MPI. VW EA390 engine.<br> Audi A3 3.2 ('06-'09), TT 3.2 ('05-'06, '08-'09)
|-
| D || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || 48v Mild Hybrid. Direct injection. Audi-Porsche EA839 engine.<br> Audi A8 3.0T/55 TFSI ('19-'25)
|-
| D || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || 48v Mild Hybrid. Direct injection. Porsche-Audi EA825 engine. 3996cc. 621 hp.<br> Audi RS6 Avant performance ('24-'25), RS7 performance ('24-'25)
|-
| E || 2.3L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi Coupe GT 2.3 "Special Build" (Late '87)
|-
| E || 2.2L || I5 Turbo [[w:Intercooler|IC]] || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 5000CS Turbo Quattro ('86-'88)
|-
| E || 2.3L || I5 || Gas || DOHC,<br /> 20 valve || MPI. Audi EA828 I5 engine. <br> Audi 90 Quattro 20V ('90-'91), Coupe Quattro 20V ('90-'91)
|-
| E || 2.2L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA828 I5 engine. <br> Audi 200 Turbo Quattro 20V ('91)
|-
| E || 3.6L || 90° V8 || Gas || DOHC,<br /> 32 valve || MPI. Audi V8 engine. Audi V8 Quattro ('90-'91)
|-
| E || 2.8L || 90° V6 || Gas || SOHC,<br /> 12 valve || MPI. Audi EA835 engine - Gen 1. Iron Block. <br> Audi 90 ('95)
|-
| E || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - PZEV. TSI. Timing chain.<br> Audi A3 Fwd 2.0T ('08-'13)
|-
| E || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Exhaust AVS. Audi EA888 engine - SULEV. TSI. Timing chain.<br> Audi A3 2.0T Quattro ('18-'20), TT ('19-'23), Q3 2.0T/45 TFSI ('19-'20), Q3 S Line 45 TFSI ('21-'25)
|-
| E || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || 48v Mild Hybrid. Direct injection. Porsche-Audi EA825 engine. 3996cc. 453 hp.<br> Audi A8 4.0T ('19-'21)
|-
| E || 5.2L || 90° V10 || Gas || DOHC,<br /> 40 valve || Direct injection. Dry sump lubrication. Audi EA824 V10 engine. 562 hp.<br> Audi R8 V10 Quattro ('20), R8 V10 Performance Rwd ('22-'23)
|-
| F || 2.3L || I5 || Gas || DOHC,<br /> 20 valve || MPI. Audi EA828 I5 engine. <br> Audi 90 Quattro 20V ('90-'91), Coupe Quattro 20V ('91)
|-
| F || 3.7L || 90° V8 || Gas || DOHC,<br /> 32 valve || MPI. Audi V8 engine. Audi A8 3.7 ('97-'99)
|-
| F || 3.2L || 15° VR6 || Gas || DOHC,<br /> 24 valve || MPI. VW EA390 engine.<br> Audi TT 3.2 ('04-'05)
|-
| F || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA113 engine. FSI. Timing belt. <br> Audi A3 2.0T ('06-'08), A4 sedan 2.0T (Mid '05-'08), A4 Avant 2.0T (Mid '05-'08),<br> A4 Cabriolet 2.0T ('07-'09), TT ('08-'09), TTS ('09)
|-
| F || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain.<br> Audi A3 2.0T ('08-'11), A3 2.0T Quattro ('12-'13), A4 sedan 2.0T ('09-'12), A4 sedan 2.0T Fwd ('13-'16), A4 sedan 2.0T Quattro w/man. trans. ('13-'16), A4 sedan 2.0T Quattro w/auto. trans. (Early '13),<br> A4 Avant 2.0T ('09-'12), Allroad 2.0T (Early '13), A5 2.0T ('10-'12),<br> A5 Coupe 2.0T Quattro w/man. trans. ('13-'15), A5 Cabriolet 2.0T Fwd ('13-'14),<br> A5 2.0T Quattro w/auto. trans. (Early '13), A6 2.0T ('12-'16), TT ('09-'15), Q3 ('15-'16),<br> Q5 2.0T ('11-Early '13)
|-
| F || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - PZEV. TSI. Timing chain.<br> Audi A3 Fwd 2.0T (Early prod. '12)
|-
| F || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas/E85 || DOHC,<br /> 16 valve || Flex Fuel. Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain.<br> Audi A4 sedan 2.0T Quattro w/auto. trans. ('13-'16), Allroad 2.0T ('13-'16),<br> A5 2.0T Quattro w/auto. trans. ('13-'15), Q5 2.0T ('13-'15)
|-
| F || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - PZEV. TSI. Timing chain.<br> Audi A3 2.0T Quattro ('15)
|-
| F || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. High Output: 288 hp.<br> Audi S3 Quattro ('15)
|-
| F || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || Direct injection. Audi-Bentley EA824 engine. 3993cc. 450 hp.<br> Audi S6 ('17-'18), S7 ('17-'18)
|-
| F || 2.9L || 90° V6 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || 48v Mild Hybrid. Direct injection. Audi-Porsche EA839 engine.<br> Audi S6 ('20-'25), S7 ('20-'25)
|-
| G || 1.6L || I4 || Diesel || SOHC,<br /> 8 valve || Indirect injection. VW EA827 engine. Audi 4000 Diesel ('82)
|-
| G || 2.0L || I5 || Diesel || SOHC,<br /> 10 valve || Indirect injection. Audi 5000 Diesel ('81)
|-
| G || 4.2L || 90° V8 || Gas || DOHC,<br /> 32 valve || MPI. Audi V8 engine. 4172cc.<br> Audi A8 4.2 ('97-'99)
|-
| G || "3.2L" || 90° V6 || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine. 3.1L=3123cc.<br> Audi A4 sedan/Avant 3.2 (Mid '05-'06), A6 3.2 ('05-'06)
|-
| G || 3.0L || 90° V6 supercharged [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine.<br> Audi S4 ('10-'16), S5 Cabriolet ('10-'15, Early '16), S5 coupe ('13-'15), A6 3.0T ('09-'16),<br> A7 3.0T ('12-'16), A8 3.0T ('13-'15), Q5 3.0T ('13-'15), SQ5 ('14-'15), Q7 3.0T ('11-'15)
|-
| G || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain.<br> Audi A5 2.0T w/man. trans. ('16-'17)
|-
| G || 6.3L || 72° W12 || Gas || DOHC,<br /> 48 valve || Direct injection. VW W12 engine. Audi A8 W12 ('16)
|-
| G || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas-Electric Hybrid || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine + electric motor. Lithium-ion Battery Pack.<br> Audi Q5 Hybrid ('16)
|-
| H || 1.6L || I4 Turbo || Diesel || SOHC,<br /> 8 valve || Indirect injection. VW EA827 engine. Audi 4000 Turbo Diesel ('83)
|-
| H || 2.0L || I5 || Diesel || SOHC,<br /> 10 valve || Indirect injection. Audi 5000 Diesel ('82)
|-
| H || 2.0L || I5 Turbo || Diesel || SOHC,<br /> 10 valve || Indirect injection. Audi 5000 Turbo Diesel ('83)
|-
| H || 2.8L || 90° V6 || Gas || DOHC,<br /> 30 valve || MPI. Audi EA835 engine - Gen 2. Iron Block.<br> Audi A4 2.8 ('00-'01), A6 2.8 ('00-'01)
|-
| H || "3.2L" || 90° V6 || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine. 3.1L=3123cc.<br> Audi A4 sedan/Avant 3.2 ('06-'08), A4 Cabriolet 3.2 ('07-'09), A6 3.2 ('06-'09)
|-
| H || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. <br> Audi Q7 2.0T ('17-'19)
|-
| H || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Gas-Electric [[w:Plug-in hybrid|PHEV]] || DOHC,<br /> 24 valve || Direct injection. Audi-Porsche EA839 engine + electric motor. Lithium-ion Battery Pack.<br> Audi A8 60 TFSI e ('20-'21)
|-
| J || 2.8L || 90° V6 || Gas || SOHC,<br /> 12 valve || MPI. Audi EA835 engine - Gen 1. Iron Block. <br> Audi 90 ('93-'94), 100 ('92-'94)
|-
| J || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Diesel || DOHC,<br /> 16 valve || Common-Rail Direct injection. VW EA189 engine.<br> Audi A3 TDI ('10-'13)
|-
| J || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Diesel || DOHC,<br /> 16 valve || Common-Rail Direct injection. SCR. VW EA288 engine.<br> Audi A3 TDI ('15)
|-
| J || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. 248 hp. <br> Audi Q7 45 TFSI ('20-'22)
|-
| K || 2.8L || 90° V6 || Gas || SOHC,<br /> 12 valve || MPI. Audi EA835 engine - Gen 1. Iron Block. <br> Audi 90 ('93-'95), 100 ('92-'94)
|-
| K || 3.2L || 90° V6 || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine. 3197cc. <br> Audi A4 sedan 3.2 ('09), A5 3.2 ('08-'10), A6 3.2 ('10-'11), Q5 3.2 ('09-'12)
|-
| L || 2.8L || 90° V6 || Gas || SOHC,<br /> 12 valve || MPI. Audi EA835 engine - Gen 1. Iron Block. <br> Audi Cabriolet ('94-'95)
|-
| L || 4.2L || 90° V8 || Gas || DOHC,<br /> 40 valve || MPI. Audi V8 engine. 4172cc.<br> Audi A6 4.2 ('00-'04), A8 4.2 ('00-'06)
|-
| L || 4.2L || 90° V8 || Gas || DOHC,<br /> 40 valve || MPI. Audi EA824 engine. 4163cc.<br> Audi S4 sedan/Avant ('04-'08), S4 Cabriolet ('04-'09),<br> A6 4.2 ('05-'06), Allroad Quattro 4.2 ('04-'05)
|-
| M || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Diesel || DOHC,<br /> 24 valve || Direct injection. Audi EA897 engine.<br> Audi A6 TDI ('14-'16), A7 TDI ('14-'16), A8 TDI ('14-'15), Q5 TDI ('14-'15), Q7 TDI ('09-'15)
|-
| M || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Miller Cycle (B-Cycle). Intake AVS. Audi EA888 engine - ULEV. TSI. Timing chain. Detuned version: 188 hp.<br> Audi A4 Ultra 2.0T Fwd ('17-'18), A4 2.0T Fwd ('19-'20)
|-
| N || 5.2L || 90° V10 || Gas || DOHC,<br /> 40 valve || Direct injection. Audi EA824 V10 engine.<br> Audi S6 ('07-'11), S8 ('07-'09)
|-
| N || 5.2L || 90° V10 || Gas || DOHC,<br /> 40 valve || Direct injection. Dry sump lubrication. Audi EA824 V10 engine.<br> Audi R8 ('10-'12, '14-'15)
|-
| N || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Exhaust AVS. Audi EA888 engine - ULEV. TSI. Timing chain. <br> Audi A4 2.0T Fwd/Quattro ('17-'18), A4 2.0T Quattro ('19-'20), A4 Allroad Quattro ('17-'20),<br> A5 Coupe/Cabriolet 2.0T Quattro ('18-'20), A5 Sportback 2.0T Quattro ('18-'20),<br> Q5 2.0T Quattro ('18-'20)
|-
| P || 2.2L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA828 I5 engine. <br> Audi S4 [C4 (4A)] ('92-'93)
|-
| P || 2.7L || 90° V6 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 30 valve || MPI. Audi EA835 engine - Gen 2. Iron Block.<br> Audi Allroad Quattro 2.7T ('01)
|-
| P || 1.4L || I4 Turbo [[w:Intercooler|IC]] || Gas-Electric [[w:Plug-in hybrid|PHEV]] || DOHC,<br /> 16 valve || Direct injection. VW EA211 engine + electric motor. Lithium-ion Battery Pack.<br> Audi A3 Sportback e-tron ('16-'18)
|-
| P || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas-Electric [[w:Plug-in hybrid|PHEV]] || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine + electric motor. Lithium-ion Battery Pack. TSI. Timing chain.<br> SULEV.<br> Audi A7 55 TFSI e ('21-'22)
|-
| R || 2.2L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA828 I5 engine. <br> Audi S4 [C4 (4A)] ('93-'94)
|-
| R || 6.0L || 72° W12 || Gas || DOHC,<br /> 48 valve || MPI. VW W12 engine. Audi A8 W12 ('05-'09)
|-
| R || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || Direct injection. Audi-Bentley EA824 engine. 3993cc. 605 hp.<br> Audi RS7 performance ('16-'18)
|-
| R || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Diesel || DOHC,<br /> 24 valve || Direct injection. Audi EA897 engine. Audi A8 TDI ('16)
|-
| R || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || 48v Mild Hybrid. Direct injection. Porsche-Audi EA825 engine. 3996cc. 591 hp.<br> Audi RS Q8 ('20-'24)
|-
| R || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || 48v Mild Hybrid. Direct injection. Porsche-Audi EA825 engine. 3996cc. 631 hp.<br> Audi RS Q8 performance ('25)
|-
| S || 1.8L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA827/EA113 engine. 180 hp. <br> Audi TT (Early '00)
|-
| S || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || Direct injection. Audi-Bentley EA824 engine. 3993cc.<br> Audi S8 ('16)
|-
| S || 2.5L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || Direct/Port injection. Audi EA855 Evo engine.<br> Audi TT RS ('18-'22)
|-
| S || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || 48v Mild Hybrid. Direct injection. Porsche-Audi EA825 engine. 3996cc. 563 hp.<br> Audi S8 ('20-'25)
|-
| T || 1.8L || I4 Turbo Twin [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA827/EA113 engine. High Output - 225 hp. Single Turbo, Twin Intercoolers. <br> Audi TT ('01-'06)
|-
| T || 3.0L || 90° V6 || Gas || DOHC,<br /> 30 valve || MPI. Audi EA835 engine - Gen 3. Aluminum block.<br> Audi A4 sedan/Avant 3.0 ('02-Mid '05), A4 Cabriolet 3.0 ('03-'06), A6 3.0 ('02-'04)
|-
| T || "3.2L" || 90° V6 || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine. 3.1L=3123cc.<br> Audi A6 3.2 ('05)
|-
| U || 4.2L || 90° V8 || Gas || DOHC,<br /> 40 valve || MPI. Audi V8 engine. 4172cc.<br> Audi S6 Avant ('02-'03), S8 ('01-'03)
|-
| U || 4.2L || 90° V8 || Gas || DOHC,<br /> 32 valve || Direct injection. Audi EA824 engine. 4163cc.<br> Audi RS4 sedan ('07-'08), RS4 Cabriolet ('08)
|-
| U || 4.2L || 90° V8 || Gas || DOHC,<br /> 32 valve || Direct injection. Dry sump lubrication. Audi EA824 engine. 4163cc.<br> Audi R8 ('08-'12, '14-'15)
|-
| U || 5.2L || 90° V10 || Gas || DOHC,<br /> 40 valve || Direct injection. Dry sump lubrication. Audi EA824 V10 engine.<br> Audi R8 V10 coupe w/man. trans. (Early '14) [when U in 5th pos. of VIN follows G in 4th pos. of VIN]
|-
| U || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Miller Cycle (B-Cycle). Intake AVS. Audi EA888 engine - PZEV. TSI. Timing chain. Detuned version: 184 hp.<br> Audi A3 2.0T Fwd ('17)
|-
| U || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Miller Cycle (B-Cycle). Intake AVS. Audi EA888 engine - SULEV. TSI. Timing chain. Detuned version: 184 hp.<br> Audi A3 2.0T Fwd ('18-'20), Q3 40 TFSI ('21-'22)
|-
| U || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Miller Cycle (B-Cycle). Intake AVS. Audi EA888 engine - ULEV. TSI. Timing chain. Detuned version: 184 hp.<br> Audi Q3 40 TFSI ('23-'24 & '25 in Canada)
|-
| U || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || 48v Mild Hybrid. Direct injection. Miller Cycle (B-Cycle). Intake AVS. Audi EA888 engine - SULEV.<br> TSI. Timing chain. 201 hp.<br> Audi A3 40 TFSI ('22-'25)
|-
| V || 4.2L || 90° V8 || Gas || DOHC,<br /> 32 valve || MPI. Audi V8 engine. 4172cc. Audi V8 Quattro ('92-'93)
|-
| V || 4.2L || 90° V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 40 valve || MPI. Audi V8 engine. 4172cc.<br> Audi RS6 (US: '03, Canada: '04)
|-
| V || 4.2L || 90° V8 || Gas || DOHC,<br /> 32 valve || Direct injection. Audi EA824 engine. 4163cc.<br> Audi S5 coupe ('08-'12), A6 4.2 ('07-'11), A8 4.2 ('07-'12), Q7 4.2 ('07-'10)
|-
| V || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Diesel || DOHC,<br /> 24 valve || Direct injection. Audi EA897 engine. Audi Q5 TDI ('16)
|-
| V || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || 48v Mild Hybrid. Direct injection. Audi-Porsche EA839 engine.<br> Audi Q8 3.0T/55 TFSI ('19-'25), Q7 55 TFSI ('25)
|-
| W || 4.2L || 90° V8 || Gas || DOHC,<br /> 32 valve || MPI. Audi V8 engine. 4172cc. Audi V8 Quattro ('92-'94)
|-
| W || 2.5L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || Direct/Port injection. Audi EA855 Evo engine.<br> Audi RS3 ('17-'20)
|-
| W || 2.9L || 90° V6 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi-Porsche EA839 engine.<br> Audi RS5 coupe ('18-'19, '21-'24), RS5 Sportback ('19, '21-'25)
|-
| W || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || 48v Mild Hybrid. Direct injection. Porsche-Audi EA825 engine. 3996cc. 500 hp.<br> Audi SQ7 ('20-'25), SQ8 ('20-'25)
|-
| W || 2.5L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || Direct/Port injection. Audi EA855 Evo engine. 394 hp.<br> Audi RS3 ('25)
|-
| X || 1.8L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA827/EA113 engine. 180 hp. <br> Audi TT ('01-'02)
|-
| X || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || 48v Mild Hybrid. Direct injection. Audi-Porsche EA839 engine.<br> Audi Q7 55 TFSI ('20-'24)
|-
| Y || 3.6L || 10.6° VR6 || Gas || DOHC,<br /> 24 valve || Direct injection. VW EA390 engine.<br> Audi Q7 3.6 ('07-'10)
|-
| 1 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA113 engine - ULEV. FSI. Timing belt.<br> Audi TTS ('10-'15)
|-
| 1 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. High Output: 288 hp.<br> Audi S3 Quattro ('16-'20), TTS ('16-'23)
|-
| 2 || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || Direct injection. Audi-Bentley EA824 engine. 3993cc.<br> Audi S6 ('13-'16), S7 ('13-'16), RS7 ('14-'16), A8 4.0T ('13-'15), S8 ('13-'15)
|-
| 2 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas/E85 || DOHC,<br /> 16 valve || Flex Fuel. Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain.<br> Audi A5 2.0T w/auto. trans. ('16-'17), Q5 2.0T ('16-'17)
|-
| 2 || 3.0L || 90° V6 supercharged [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine.<br> Audi A6 3.0T ('17), A7 3.0T ('17)
|-
| 2 || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || 48v Mild Hybrid. Direct injection. Audi-Porsche EA839 engine.<br> Audi A6 3.0T/55 TFSI ('19-'25), A6 Allroad ('20-'25), A7 3.0T/55 TFSI ('19-'25)
|-
| 2 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas-Electric [[w:Plug-in hybrid|PHEV]] || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine + electric motor. Lithium-ion Battery Pack. TSI. Timing chain.<br> Audi Q5 55 TFSI e [FY] ('20-'25)
|-
| 3 || 2.5L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || Direct injection. Audi EA855 engine.<br> Audi TT RS ('12-'13)
|-
| 3 || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || Direct injection. Audi-Bentley EA824 engine. 3993cc.<br> Audi A8 4.0T ('16-'18)
|-
| 3 || 3.0L || 90° V6 supercharged [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine. Higher Output: 340 hp.<br> Audi A6 3.0T Competition ('17), A6 3.0T ('18), A7 3.0T Competition ('17), A7 3.0T ('18)
|-
| 3 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || 12v Mild Hybrid. Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. 261 hp.<br> Audi A6 Sport 45 TFSI ('21), A6 45 TFSI ('22-'25)
|-
| 3 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. High Output: 306 hp.<br> Audi S3 Quattro ('22-'24)
|-
| 4 || 6.3L || 72° W12 || Gas || DOHC,<br /> 48 valve || Direct injection. VW W12 engine. Audi A8 W12 ('12-'15)
|-
| 4 || 3.0L || 90° V6 supercharged [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine.<br> Audi S5 coupe ('16-'17), S5 Cabriolet ('16-'17), A8 3.0T ('16-'18)
|-
| 4 || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi-Porsche EA839 engine.<br> Audi S4 ('18-'25), S5 coupe/cabriolet ('18-'24), S5 Sportback ('18-'25), SQ5 [FY] ('18-'25),<br> SQ5 Sportback [FY] ('21-'25)
|-
| 4 || 2.5L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || Direct/Port injection. Audi EA855 Evo engine. 401 hp.<br> Audi RS3 ('22-'24)
|-
| 5 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Exhaust AVS. Audi EA888 engine - PZEV. TSI. Timing chain.<br> Audi TT ('16-'17)
|-
| 5 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Exhaust AVS. Audi EA888 engine - SULEV. TSI. Timing chain.<br> Audi TT ('18)
|-
| 5 || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || Direct injection. Audi-Bentley EA824 engine. 3993cc. 605 hp.<br> Audi S8 plus ('16-'18)
|-
| 5 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. High Output: 328 hp.<br> Audi S3 Quattro ('25)
|-
| 5 || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi-Porsche EA839 engine.<br> Audi S5 [B10] (Mid '25), SQ5 [GU] (Mid '25), SQ5 Sportback [GU] (Mid '25)
|-
| 6 || 4.2L || 90° V8 || Gas || DOHC,<br /> 32 valve || Direct injection. Audi EA824 engine. 4163cc.<br> Audi RS5 ('13-'15)
|-
| 7 || 1.8L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - PZEV. TSI. Timing chain.<br> Audi A3 Fwd 1.8T ('16)
|-
| 7 || 3.0L || 90° V6 supercharged [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine.<br> Audi Q5 3.0T ('16-'17)
|-
| 8 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas-Electric Hybrid || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine + electric motor. Lithium-ion Battery Pack.<br> Audi Q5 Hybrid ('13-'15)
|-
| 8 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - PZEV. TSI. Timing chain.<br> Audi A3 2.0T Quattro ('16-'17)
|-
| 8 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - SULEV. TSI. Timing chain.<br> Audi A3 2.0T Quattro ('18)
|-
| 8 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain.<br> Audi A6 2.0T ('17-'18)
|-
| 8 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || 12v Mild Hybrid. Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. 248 hp.<br> Audi A6 2.0T/45 TFSI ('19-'21)
|}
‡1982 Audi Quattro: 3-4 cars were imported to the US for marketing purposes and as press cars. They remained in the US after those uses ended and transitioned into private ownership. These cars carry US-style VINs rather than European-style VINs. 3 VINs have been found. Their serial numbers (last 6 digits of VIN) are 900565, 900586, and 900648. The Audi Quattro was officially sold in the US for the 1983-1985 model years.
====Motor codes for Electric Vehicles====
{| class="wikitable"
|+Position 5
|-
! VIN !! Motor Designation !! Fuel !! Drive Wheels !! Battery Size !! Application/Notes
|-
| A ||APA250 (Front) / AKA320 (Rear)|| Electricity || All ||95 Kwh (gross) / 83.6 Kwh (net) || Audi e-tron quattro ('19), e-tron Sportback quattro ('20)
|-
| A ||APA250 (Front) / AKA320 (Rear)|| Electricity || All ||95 Kwh (gross) / 86.5 Kwh (net) || Audi e-tron quattro ('21-'23), e-tron Sportback quattro ('21-'23)
|-
| A ||APA250 (Front) / AKA320 (Rear)|| Electricity || All ||114 Kwh (gross) / 106 Kwh (net) || Audi Q8 e-tron quattro ('24), Q8 e-tron Sportback quattro ('24)
|-
| C ||APA320 (1 Front) / ATA250 (2 Rear)|| Electricity || All ||95 Kwh (gross) / 86.5 Kwh (net) || Audi e-tron S quattro ('22-'23), e-tron S Sportback quattro ('22-'23)
|-
| C ||APA320 (1 Front) / ATA250 (2 Rear)|| Electricity || All ||114 Kwh (gross) / 106 Kwh (net) || Audi SQ8 e-tron quattro ('24), SQ8 e-tron Sportback quattro ('24)
|-
| C ||APP310 (Rear) || Electricity || Rear ||82 Kwh (gross) / 77 Kwh (net) || Audi Q4 e-tron 40 ('23-Mid '24)
|-
| H ||V662 (Front) Code EBGA / V663 (Rear) (Higher output-Code EBEA)|| Electricity || All ||93.4 Kwh (gross) / 83.7 Kwh (net) || Audi RS e-tron GT quattro ('22-'24)
|-
| J ||V662 (Front) Code EBGA / V663 (Rear) Code EBFA|| Electricity || All ||93.4 Kwh (gross) / 83.7 Kwh (net) || Audi e-tron GT quattro ('22-'24)
|-
| U ||HASCO Magna asynchronous motor (Front) / APP550 (Rear) || Electricity || All ||82 Kwh (gross) / 77 Kwh (net) || Audi Q4 e-tron 55 quattro (Mid '24), Q4 e-tron Sportback 55 quattro (Mid '24)
|-
| 2 ||HASCO Magna asynchronous motor (Front) / APP310 (Rear) || Electricity || All ||82 Kwh (gross) / 77 Kwh (net) || Audi Q4 e-tron 50 quattro ('22-Mid '24), Q4 e-tron Sportback 50 quattro ('22-Mid '24)
|}
HASCO Magna=HASCO Magna Electric Drive Systems Co., Ltd.
===Position 6, Restraint Systems:===
*0 = Active (Manual) 3-point Seat Belts only
*5 = Driver-side Airbag, Driver and Passenger Active (Manual) 3-point Seat Belts
*8 = Driver and Passenger Front Airbags
*2 = Active (Manual) belts plus Driver and Passenger Front Airbags & Front Side Airbags ('00-'06 TT)
*4 = Active (Manual) belts plus Driver and Passenger Front Airbags & Front and Rear Side Airbags & Sideguard Side Curtain Airbags ('04-'07 A8)
*5 = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front and Rear Side Airbags & Sideguard Side Curtain Airbags (A3, A4, A6, Allroad)
*6 = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front Side Airbags & Sideguard Side Curtain Airbags ('06-'09 A3, A4, A6, Allroad)
*3 = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front Side Airbags & Front Knee Airbags ('08-'09 TT, R8, '09 TTS)
*4 = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front Side Airbags ('03-'09 A4 Cabriolet, '04-'09 S4 Cabriolet, '08 RS4 Cabriolet)
*7 = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front Side Airbags & Sideguard Side Curtain Airbags
*9 = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front and Rear Side Airbags & Sideguard Side Curtain Airbags (Except '08-'09 A8/S8)
*9 = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front and Rear Side Airbags & Sideguard Side Curtain Airbags & Front Knee Airbags ('08-'09 A8/S8)
*A = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front Side Airbags & Front Knee Airbags ('10- A5/S5 Cabriolet, '10- TT/TTS, '12-'13 TT RS, '10- R8)
*A = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front Side Airbags & Sideguard Side Curtain Airbags ('10- A3, '10- A4/S4, '10-'11 A5/S5 Coupe, '10- A6/S6, '12- A7, '10- Q5, '10- Q7)
*B = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front and Rear Side Airbags & Sideguard Side Curtain Airbags ('10- A3, '10- A4/S4, '10- A6/S6, '12- A7, '10- Q5, '10- Q7)
*A = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front Side Airbags & Sideguard Side Curtain Airbags & Front Knee Airbags ('12- A5/S5 Coupe)
*A = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front and Rear Side Airbags & Sideguard Side Curtain Airbags & Front Knee Airbags ('10-' A8)
===Position 7-8, Model Line:===
1981-2009:
*8P = A3 ('06-'09)
*81 = 4000 Fwd ('81-'87)
*85 = 4000 Quattro ('84-'87), Coupe ('81-'83), Coupe GT ('84-'87), Quattro ('82‡ & '83-'85)
*89 = 80/90 ('88-'89)
*8A = 80 ('90-'92), 90 ('90-'91)
*8C = 90 ('93-'95)
*8B = Coupe Quattro ('90-'91)
*8G = Cabriolet ('94-'98)
*8D = A4 ('96-'01), S4 ('00-'02)
*8E = A4 ('02-'08), S4 ('04-'08), RS4 ('07-'08)
*8H = A4 Cabriolet ('03-'09), S4 Cabriolet ('04-'09), RS4 Cabriolet ('08)
*8K = A4 ('09)
*8T = A5 coupe ('08-'09), S5 coupe ('08-'09)
*43 = 5000 ('81-'83)
*44 = 5000 ('84-'88), 100/200 ('89-'91)
*4A = 100/S4 ('92-'94), A6 sedan ('95-'97), A6 wagon ('95-'98), S6 ('95 & '96-'97 in Canada)
*4B = A6 sedan ('98-'04), A6 Avant wagon ('99-'04), Allroad ('01-'05), S6 ('02-'03), RS6 (US: '03, Canada: '04)
*4F = A6 ('05-'09), S6 ('07-'09)
*44 = V8 Quattro ('90)
*4A = V8 Quattro ('91-'94)
*4D = A8 ('97-'03), S8 ('01-'03)
*4E = A8 ('04-'09), S8 ('07-'09)
*8N = TT ('00-'06)
*8J = TT ('08-'09), TTS ('09)
*42 = R8 ('08-'09)
*8R = Q5 ('09)
*4L = Q7 ('07-'09)
2010-:
*FM (Type 8P) = A3 ('10-'13)
*FF (Type 8V) = A3 ('15-'20), S3 ('15-'20), RS3 ('17-'20), A3 Sportback e-tron [PHEV] '16-'18
*GY (Type 8Y) = A3/S3/RS3 ('22-)
*FL (Type 8K) = A4 ('10-'16), Allroad ('13-'16), S4 ('10-'16)
*F4 (Type 8W) = A4 ('17-'25), A4 Allroad ('17-'25), S4 ('18-'25)
*FR (Type 8T) = A5 Coupe ('10-'17), S5 Coupe ('10-'17), RS5 Coupe ('13-'15)
*FH (Type 8F) = A5 Cabriolet ('10-'17), S5 Cabriolet ('10-'17), RS5 Cabriolet ('13-'15)
*F5 = A5 ('18-'25), S5 ('18-'25), RS5 ('18-'19, '21-'25) [Coupe/Cabriolet: '18-'24, Sportback: '18-'25]
*FU = A5/S5 ('25-)
*FB (Type 4F) = A6 ('10-'11), S6 ('10-'11)
*FC (Type 4G) = A6 ('12-'18), S6 ('13-'18)
*FC (Type 4G) = A7 ('12-'18), S7 ('13-'18), RS7 ('14-'18)
*F2 (Type 4A) = A6 ('19-'25), S6 ('20-'25), RS6 Avant ('21-'26), A6 Allroad ('20-'26)
*F2 (Type 4K) = A7 ('19-'25), S7 ('20-'25), RS7 ('21-'26)
*FN = A6 ('26-)
*GH = A6 e-tron, S6 e-tron ('25-)
*FA (Type 4E) = A8 ('10)
*FD (Type 4H) = A8 ('11-'18), S8 ('13-'16), S8 plus ('16-'18)
*F8 (Type 4N) = A8 ('19-'26), S8 ('20-'26)
*FW (Type F8) = e-tron GT ('22-'24), RS e-tron GT ('22-'24), S e-tron GT ('25-), RS e-tron GT performance ('25-)
*FK (Type 8J) = TT ('10-'15), TTS ('10-'15), TT RS ('12-'13)
*FV (Type FV or 8S) = TT ('16-'23), TTS ('16-'23), TT RS ('18-'22)
*FG (Type 42) = R8 ('10-'12, '14-'15)
*FX (Type 4S) = R8 ('17-'18, '20-'23)
*FS (Type 8U) = Q3 ('15-'18)
*F3 = Q3 ('19-'25)
*FJ = Q3 ('26-)
*FZ (Type F4) = Q4 e-tron, Q4 e-tron Sportback ('22-)
*FP (Type 8R) = Q5 ('10-'17), SQ5 ('14-'17)
*FY = Q5 ('18-'25), SQ5 ('18-'25), Q5 Sportback ('21-'25), SQ5 Sportback ('21-'25)
*GU = Q5 ('25-'26), SQ5 ('25-'26), Q5 Sportback ('25-'26), SQ5 Sportback ('25-'26)
*GF = Q6 e-tron, SQ6 e-tron, Q6 e-tron Sportback, SQ6 e-tron Sportback ('25-)
*FE (Type 4L) = Q7 ('10-'15)
*F7 (Type 4M) = Q7 ('17-), SQ7 ('20-)
*F1 (Type 4M) = Q8 ('19-), SQ8 ('20-), RS Q8 ('20-)
*GE = e-tron ('19, '21-'23), e-tron S ('22-'23), e-tron Sportback ('20-'23), e-tron S Sportback ('22-'23),<br> Q8 e-tron ('24), SQ8 e-tron ('24), Q8 e-tron Sportback ('24), SQ8 e-tron Sportback ('24)
===Position 9, Check Digit===
[[Vehicle Identification Numbers (VIN codes)/Check digit |Check digit]]
Check Digit in 9th position of VIN was always used in US & Canada. In Europe, Check Digit in 9th position of VIN was adopted for 2002 model year. Prior to the 2002 model year, a letter Z was used in the 9th position of the VIN in Europe.
===Position 10, Model Year: ===
[[Vehicle Identification Numbers (VIN codes)/Model year|Model year]]
===Position 11, Production Plant:===
* A: Ingolstadt, Germany
* B: Brussels, Belgium
* D: Bratislava, Slovakia
* E: Emden, Germany
* K: Rheine, Germany (Karmann plant: Cabriolet ['98], A4 Cabriolet ['03-'09], S4 Cabriolet ['04-'09], RS4 Cabriolet ['08]
* N: Neckarsulm, Germany
* P: Zwickau, Germany
* R: Martorell, Spain
* 1: Gyor, Hungary
* 2: San Jose Chiapa, Puebla state, Mexico
* 7: Heilbronn, Germany
Other plant codes for non-North American models:
* G: Graz, Austria (Steyr-Daimler-Puch plant: V8L)
* U: Uitenhage, South Africa
* X: Poznan, Poland
* Z: Zuffenhausen, Germany (Porsche plant: RS2 Avant)
* 3: Changchun, China (FAW-VW plant)
* 4: Sao Jose dos Pinhais, Parana state, Brazil (Curitiba plant)
* 9: Sarajevo, Bosnia and Herzegovina (Volkswagen Sarajevo d.o.o. plant)
'''Positions 12–17, Serial Number'''
{{BookCat}}
ccstb6zosgcwmt41sm1u7obqe3igzuj
4641187
4641182
2026-06-25T22:04:30Z
JustTheFacts33
3434282
/* Motor codes for Electric Vehicles */
4641187
wikitext
text/x-wiki
{{Vehicle Identification Numbers (VIN codes)/Warning}}{{clear}}
===Positions 1–3, World Manufacturer Identifier:===
* WAU - Audi (Audi AG) passenger car
* WA1 - Audi (Audi AG) SUV
* WUA - Audi passenger car - quattro GmbH/Audi Sport GmbH (RS3, RS4, RS5, RS6, RS7, TT RS ['18-'22], R8,<br> S4 Cabriolet ['04-'09], S4 25quattro Special Edition sedan ['06], S8 plus ['16-'18], Non-North American Mkt. RS Q3, Q7 V12 TDI)
* WU1 - Audi SUV - Audi Sport GmbH (RS Q8)
* TRU - Audi Hungary (Audi Hungaria Motor Kft.) passenger car (only used for TT/TTS & '12-'13 TT RS)
* 3U5 - Audi Mexico SUV
===Position 5, Engine Type: ===
{| class="wikitable"
|+Position 5
|-
! VIN !! Size !! Type !! Fuel !! Valvetrain !! Engine Family/Notes/Applications
|-
| A || 1.7L || I4 || Gas || SOHC,<br /> 8 valve || MPI. VW EA827 engine.<br> Audi 4000 4E/4000S 4E ('81-'83)
|-
| A || 1.8L || I4 || Gas || SOHC,<br /> 8 valve || MPI. VW EA827 engine.<br> Audi 4000S ('84)
|-
| A || 2.1L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi Coupe GT ('84)
|-
| A || 2.0L || I4 || Gas || SOHC,<br /> 8 valve || MPI. VW EA827 engine.<br> Audi 80 ('90)
|-
| A || 2.2L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA828 I5 engine. <br> Audi S6 ('95 & '96-'97 in Canada)
|-
| A || 2.8L || 90° V6 || Gas || SOHC,<br /> 12 valve || MPI. Audi EA835 engine - Gen 1. Iron Block. <br> Audi 90 ('95), Cabriolet ('95-'98), A4 2.8 ('96-'97), A6 sedan ('95-'97), A6 wagon ('95-'98)
|-
| A || 2.8L || 90° V6 || Gas || DOHC,<br /> 30 valve || MPI. Audi EA835 engine - Gen 2. Iron Block.<br> Audi A6 sedan 2.8 ('98-'99), A6 Avant 2.8 ('99)
|-
| A || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || Direct injection. Audi-Bentley EA824 engine. 3993cc. 560 hp.<br> Audi RS7 ('17-'18)
|-
| A || 5.2L || 90° V10 || Gas || DOHC,<br /> 40 valve || Direct injection. Dry sump lubrication. Audi EA824 V10 engine. 532 hp.<br> Audi R8 V10 Quattro ('17-'18), R8 V10 RWS ('18), R8 Rwd ('21)
|-
| A || 3.0L || 90° V6 supercharged [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine.<br> Audi Q7 3.0T ('17-'19)
|-
| A || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || 12v Mild Hybrid. Direct injection. Exhaust AVS. Audi EA888 engine - ULEV. TSI. Timing chain. 261 hp. <br> Audi A4 45 TFSI ('21-'25), A4 Allroad 45 TFSI ('21-'25),<br> A5 Coupe/Cabriolet 45 TFSI ('21-'24), A5 Sportback 45 TFSI ('21-'25),<br> Q5 45 TFSI [FY] ('21-'25), Q5 Sportback 45 TFSI [FY] ('21-'25)
|-
| A || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Exhaust AVS. Audi EA888 engine - SULEV. TSI. Timing chain. 268 hp. <br> Audi Q5 [GU] (Mid '25), Q5 Sportback [GU] (Mid '25)
|-
| B || 2.1L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 4000 ('81), Coupe ('81-'83), 5000/5000S ('81-'84)
|-
| B || 1.8L || I4 || Gas || SOHC,<br /> 8 valve || MPI. VW EA827 engine.<br> Audi 4000S ('85-'87) [Pos. 7-8 of VIN is 81]
|-
| B || 2.2L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 4000S Quattro ('84-'85), 4000CS Quattro ('86-'87) [Pos. 7-8 of VIN is 85],<br> 5000S ('85-'86)
|-
| B || 2.0L || I4 || Gas || SOHC,<br /> 8 valve || MPI. VW EA827 engine.<br> Audi 80 ('88-'89), 90 ('88)
|-
| B || 2.3L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 100 ('89), 100 Quattro ('89)
|-
| B || 2.0L || I4 || Gas || SOHC,<br /> 8 valve || MPI. VW EA827 engine.<br> Audi 80 ('90)
|-
| B || 1.8L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA827/EA113 engine. <br> Audi A4 1.8T ('97-'99)
|-
| B || 5.2L || 90° V10 || Gas || DOHC,<br /> 40 valve || Direct injection. Dry sump lubrication. Audi EA824 V10 engine. 602 hp.<br> Audi R8 V10 Plus Quattro ('17-'18), R8 V10 Performance Quattro ('20-'23), R8 GT Rwd ('23)
|-
| B || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || 12v Mild Hybrid. Direct injection. Miller Cycle (B-Cycle). Intake AVS. Audi EA888 engine - ULEV. TSI. Timing chain. Detuned version: 201 hp.<br> Audi A4 40 TFSI ('21-'25), A5 Sportback 40 TFSI ('21-'25), Q5 40 TFSI [FY] ('22-'25)
|-
| B || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Exhaust AVS. Audi EA888 engine - ULEV. TSI. Timing chain. 268 hp. <br> Audi A5 [B10] (Mid '25)
|-
| C || 2.1L || I5 Turbo || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 5000 Turbo ('81-'83)
|-
| C || 2.1L || I5 Turbo [[w:Intercooler|IC]] || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi Quattro Coupe ('82‡ & '83-'85), 5000S Turbo ('84-'85)
|-
| C || 2.3L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 80 ('91-'92), 80 Quattro ('88-'92), 90 ('88-'91), 90 Quattro ('88-'89),<br> 5000S ('87-'88), 5000S Quattro ('88), 100 ('90-'91), 100 Quattro ('90-'91)
|-
| C || 2.2L || I5 Turbo [[w:Intercooler|IC]] || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 200 Turbo ('89), 200 Turbo Quattro ('89)
|-
| C || 2.8L || 90° V6 || Gas || SOHC,<br /> 12 valve || MPI. Audi EA835 engine - Gen 1. Iron Block. <br> Audi A6 sedan ('95-'97), A6 wagon ('96-'98)
|-
| C || 1.8L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA827/EA113 engine. <br> Audi A4 sedan/Avant 1.8T ('00-Mid '05), A4 Cabriolet 1.8T ('03-'06), TT [180 hp] ('00-'06)
|-
| C || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas-Electric Hybrid || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine + electric motor. Lithium-ion Battery Pack.<br> Audi Q5 Hybrid (Early '14)
|-
| C || 1.8L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - PZEV. TSI. Timing chain.<br> Audi A3 Fwd 1.8T ('15)
|-
| C || 3.0L || 90° V6 supercharged [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine.<br> Audi SQ5 ('16-'17)
|-
| C || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. <br> Audi Q3 ('17-'18)
|-
| C || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || 48v Mild Hybrid. Direct injection. Porsche-Audi EA825 engine. 3996cc. 591 hp.<br> Audi RS6 Avant ('21-'23), RS7 ('21-'23)
|-
| C || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || 12v Mild Hybrid. Direct injection. Exhaust AVS. Audi EA888 engine - ULEV. TSI. Timing chain. 261 hp. <br> Audi Q7 45 TFSI ('23-'25)
|-
| D || 2.1L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi Coupe GT ('84)
|-
| D || 2.2L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi Coupe GT ('85-'87)
|-
| D || 2.3L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 80 ('91), 80 Quattro ('90-'91), 90 ('90)
|-
| D || 2.3L || I5 || Gas || DOHC,<br /> 20 valve || MPI. Audi EA828 I5 engine. <br> Audi Coupe Quattro 20V ('90)
|-
| D || 2.2L || I5 Turbo [[w:Intercooler|IC]] || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 5000CS Turbo ('86-'88), 200 Turbo ('90-'91), 200 Turbo Quattro ('90)
|-
| D || 2.8L || 90° V6 || Gas || DOHC,<br /> 30 valve || MPI. Audi EA835 engine - Gen 2. Iron Block.<br> Audi A4 2.8 ('98-'99)
|-
| D || 2.7L || 90° V6 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 30 valve || MPI. Audi EA835 engine - Gen 2. Iron Block.<br> Audi S4 ('00-'02), A6 2.7T ('00-'04), Allroad Quattro 2.7T ('02-'05)
|-
| D || 3.2L || 15° VR6 || Gas || DOHC,<br /> 24 valve || MPI. VW EA390 engine.<br> Audi A3 3.2 ('06-'09), TT 3.2 ('05-'06, '08-'09)
|-
| D || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || 48v Mild Hybrid. Direct injection. Audi-Porsche EA839 engine.<br> Audi A8 3.0T/55 TFSI ('19-'25)
|-
| D || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || 48v Mild Hybrid. Direct injection. Porsche-Audi EA825 engine. 3996cc. 621 hp.<br> Audi RS6 Avant performance ('24-'25), RS7 performance ('24-'25)
|-
| E || 2.3L || I5 || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi Coupe GT 2.3 "Special Build" (Late '87)
|-
| E || 2.2L || I5 Turbo [[w:Intercooler|IC]] || Gas || SOHC,<br /> 10 valve || MPI. Audi EA828 I5 engine. <br> Audi 5000CS Turbo Quattro ('86-'88)
|-
| E || 2.3L || I5 || Gas || DOHC,<br /> 20 valve || MPI. Audi EA828 I5 engine. <br> Audi 90 Quattro 20V ('90-'91), Coupe Quattro 20V ('90-'91)
|-
| E || 2.2L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA828 I5 engine. <br> Audi 200 Turbo Quattro 20V ('91)
|-
| E || 3.6L || 90° V8 || Gas || DOHC,<br /> 32 valve || MPI. Audi V8 engine. Audi V8 Quattro ('90-'91)
|-
| E || 2.8L || 90° V6 || Gas || SOHC,<br /> 12 valve || MPI. Audi EA835 engine - Gen 1. Iron Block. <br> Audi 90 ('95)
|-
| E || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - PZEV. TSI. Timing chain.<br> Audi A3 Fwd 2.0T ('08-'13)
|-
| E || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Exhaust AVS. Audi EA888 engine - SULEV. TSI. Timing chain.<br> Audi A3 2.0T Quattro ('18-'20), TT ('19-'23), Q3 2.0T/45 TFSI ('19-'20), Q3 S Line 45 TFSI ('21-'25)
|-
| E || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || 48v Mild Hybrid. Direct injection. Porsche-Audi EA825 engine. 3996cc. 453 hp.<br> Audi A8 4.0T ('19-'21)
|-
| E || 5.2L || 90° V10 || Gas || DOHC,<br /> 40 valve || Direct injection. Dry sump lubrication. Audi EA824 V10 engine. 562 hp.<br> Audi R8 V10 Quattro ('20), R8 V10 Performance Rwd ('22-'23)
|-
| F || 2.3L || I5 || Gas || DOHC,<br /> 20 valve || MPI. Audi EA828 I5 engine. <br> Audi 90 Quattro 20V ('90-'91), Coupe Quattro 20V ('91)
|-
| F || 3.7L || 90° V8 || Gas || DOHC,<br /> 32 valve || MPI. Audi V8 engine. Audi A8 3.7 ('97-'99)
|-
| F || 3.2L || 15° VR6 || Gas || DOHC,<br /> 24 valve || MPI. VW EA390 engine.<br> Audi TT 3.2 ('04-'05)
|-
| F || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA113 engine. FSI. Timing belt. <br> Audi A3 2.0T ('06-'08), A4 sedan 2.0T (Mid '05-'08), A4 Avant 2.0T (Mid '05-'08),<br> A4 Cabriolet 2.0T ('07-'09), TT ('08-'09), TTS ('09)
|-
| F || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain.<br> Audi A3 2.0T ('08-'11), A3 2.0T Quattro ('12-'13), A4 sedan 2.0T ('09-'12), A4 sedan 2.0T Fwd ('13-'16), A4 sedan 2.0T Quattro w/man. trans. ('13-'16), A4 sedan 2.0T Quattro w/auto. trans. (Early '13),<br> A4 Avant 2.0T ('09-'12), Allroad 2.0T (Early '13), A5 2.0T ('10-'12),<br> A5 Coupe 2.0T Quattro w/man. trans. ('13-'15), A5 Cabriolet 2.0T Fwd ('13-'14),<br> A5 2.0T Quattro w/auto. trans. (Early '13), A6 2.0T ('12-'16), TT ('09-'15), Q3 ('15-'16),<br> Q5 2.0T ('11-Early '13)
|-
| F || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - PZEV. TSI. Timing chain.<br> Audi A3 Fwd 2.0T (Early prod. '12)
|-
| F || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas/E85 || DOHC,<br /> 16 valve || Flex Fuel. Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain.<br> Audi A4 sedan 2.0T Quattro w/auto. trans. ('13-'16), Allroad 2.0T ('13-'16),<br> A5 2.0T Quattro w/auto. trans. ('13-'15), Q5 2.0T ('13-'15)
|-
| F || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - PZEV. TSI. Timing chain.<br> Audi A3 2.0T Quattro ('15)
|-
| F || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. High Output: 288 hp.<br> Audi S3 Quattro ('15)
|-
| F || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || Direct injection. Audi-Bentley EA824 engine. 3993cc. 450 hp.<br> Audi S6 ('17-'18), S7 ('17-'18)
|-
| F || 2.9L || 90° V6 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || 48v Mild Hybrid. Direct injection. Audi-Porsche EA839 engine.<br> Audi S6 ('20-'25), S7 ('20-'25)
|-
| G || 1.6L || I4 || Diesel || SOHC,<br /> 8 valve || Indirect injection. VW EA827 engine. Audi 4000 Diesel ('82)
|-
| G || 2.0L || I5 || Diesel || SOHC,<br /> 10 valve || Indirect injection. Audi 5000 Diesel ('81)
|-
| G || 4.2L || 90° V8 || Gas || DOHC,<br /> 32 valve || MPI. Audi V8 engine. 4172cc.<br> Audi A8 4.2 ('97-'99)
|-
| G || "3.2L" || 90° V6 || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine. 3.1L=3123cc.<br> Audi A4 sedan/Avant 3.2 (Mid '05-'06), A6 3.2 ('05-'06)
|-
| G || 3.0L || 90° V6 supercharged [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine.<br> Audi S4 ('10-'16), S5 Cabriolet ('10-'15, Early '16), S5 coupe ('13-'15), A6 3.0T ('09-'16),<br> A7 3.0T ('12-'16), A8 3.0T ('13-'15), Q5 3.0T ('13-'15), SQ5 ('14-'15), Q7 3.0T ('11-'15)
|-
| G || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain.<br> Audi A5 2.0T w/man. trans. ('16-'17)
|-
| G || 6.3L || 72° W12 || Gas || DOHC,<br /> 48 valve || Direct injection. VW W12 engine. Audi A8 W12 ('16)
|-
| G || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas-Electric Hybrid || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine + electric motor. Lithium-ion Battery Pack.<br> Audi Q5 Hybrid ('16)
|-
| H || 1.6L || I4 Turbo || Diesel || SOHC,<br /> 8 valve || Indirect injection. VW EA827 engine. Audi 4000 Turbo Diesel ('83)
|-
| H || 2.0L || I5 || Diesel || SOHC,<br /> 10 valve || Indirect injection. Audi 5000 Diesel ('82)
|-
| H || 2.0L || I5 Turbo || Diesel || SOHC,<br /> 10 valve || Indirect injection. Audi 5000 Turbo Diesel ('83)
|-
| H || 2.8L || 90° V6 || Gas || DOHC,<br /> 30 valve || MPI. Audi EA835 engine - Gen 2. Iron Block.<br> Audi A4 2.8 ('00-'01), A6 2.8 ('00-'01)
|-
| H || "3.2L" || 90° V6 || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine. 3.1L=3123cc.<br> Audi A4 sedan/Avant 3.2 ('06-'08), A4 Cabriolet 3.2 ('07-'09), A6 3.2 ('06-'09)
|-
| H || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. <br> Audi Q7 2.0T ('17-'19)
|-
| H || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Gas-Electric [[w:Plug-in hybrid|PHEV]] || DOHC,<br /> 24 valve || Direct injection. Audi-Porsche EA839 engine + electric motor. Lithium-ion Battery Pack.<br> Audi A8 60 TFSI e ('20-'21)
|-
| J || 2.8L || 90° V6 || Gas || SOHC,<br /> 12 valve || MPI. Audi EA835 engine - Gen 1. Iron Block. <br> Audi 90 ('93-'94), 100 ('92-'94)
|-
| J || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Diesel || DOHC,<br /> 16 valve || Common-Rail Direct injection. VW EA189 engine.<br> Audi A3 TDI ('10-'13)
|-
| J || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Diesel || DOHC,<br /> 16 valve || Common-Rail Direct injection. SCR. VW EA288 engine.<br> Audi A3 TDI ('15)
|-
| J || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. 248 hp. <br> Audi Q7 45 TFSI ('20-'22)
|-
| K || 2.8L || 90° V6 || Gas || SOHC,<br /> 12 valve || MPI. Audi EA835 engine - Gen 1. Iron Block. <br> Audi 90 ('93-'95), 100 ('92-'94)
|-
| K || 3.2L || 90° V6 || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine. 3197cc. <br> Audi A4 sedan 3.2 ('09), A5 3.2 ('08-'10), A6 3.2 ('10-'11), Q5 3.2 ('09-'12)
|-
| L || 2.8L || 90° V6 || Gas || SOHC,<br /> 12 valve || MPI. Audi EA835 engine - Gen 1. Iron Block. <br> Audi Cabriolet ('94-'95)
|-
| L || 4.2L || 90° V8 || Gas || DOHC,<br /> 40 valve || MPI. Audi V8 engine. 4172cc.<br> Audi A6 4.2 ('00-'04), A8 4.2 ('00-'06)
|-
| L || 4.2L || 90° V8 || Gas || DOHC,<br /> 40 valve || MPI. Audi EA824 engine. 4163cc.<br> Audi S4 sedan/Avant ('04-'08), S4 Cabriolet ('04-'09),<br> A6 4.2 ('05-'06), Allroad Quattro 4.2 ('04-'05)
|-
| M || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Diesel || DOHC,<br /> 24 valve || Direct injection. Audi EA897 engine.<br> Audi A6 TDI ('14-'16), A7 TDI ('14-'16), A8 TDI ('14-'15), Q5 TDI ('14-'15), Q7 TDI ('09-'15)
|-
| M || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Miller Cycle (B-Cycle). Intake AVS. Audi EA888 engine - ULEV. TSI. Timing chain. Detuned version: 188 hp.<br> Audi A4 Ultra 2.0T Fwd ('17-'18), A4 2.0T Fwd ('19-'20)
|-
| N || 5.2L || 90° V10 || Gas || DOHC,<br /> 40 valve || Direct injection. Audi EA824 V10 engine.<br> Audi S6 ('07-'11), S8 ('07-'09)
|-
| N || 5.2L || 90° V10 || Gas || DOHC,<br /> 40 valve || Direct injection. Dry sump lubrication. Audi EA824 V10 engine.<br> Audi R8 ('10-'12, '14-'15)
|-
| N || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Exhaust AVS. Audi EA888 engine - ULEV. TSI. Timing chain. <br> Audi A4 2.0T Fwd/Quattro ('17-'18), A4 2.0T Quattro ('19-'20), A4 Allroad Quattro ('17-'20),<br> A5 Coupe/Cabriolet 2.0T Quattro ('18-'20), A5 Sportback 2.0T Quattro ('18-'20),<br> Q5 2.0T Quattro ('18-'20)
|-
| P || 2.2L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA828 I5 engine. <br> Audi S4 [C4 (4A)] ('92-'93)
|-
| P || 2.7L || 90° V6 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 30 valve || MPI. Audi EA835 engine - Gen 2. Iron Block.<br> Audi Allroad Quattro 2.7T ('01)
|-
| P || 1.4L || I4 Turbo [[w:Intercooler|IC]] || Gas-Electric [[w:Plug-in hybrid|PHEV]] || DOHC,<br /> 16 valve || Direct injection. VW EA211 engine + electric motor. Lithium-ion Battery Pack.<br> Audi A3 Sportback e-tron ('16-'18)
|-
| P || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas-Electric [[w:Plug-in hybrid|PHEV]] || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine + electric motor. Lithium-ion Battery Pack. TSI. Timing chain.<br> SULEV.<br> Audi A7 55 TFSI e ('21-'22)
|-
| R || 2.2L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA828 I5 engine. <br> Audi S4 [C4 (4A)] ('93-'94)
|-
| R || 6.0L || 72° W12 || Gas || DOHC,<br /> 48 valve || MPI. VW W12 engine. Audi A8 W12 ('05-'09)
|-
| R || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || Direct injection. Audi-Bentley EA824 engine. 3993cc. 605 hp.<br> Audi RS7 performance ('16-'18)
|-
| R || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Diesel || DOHC,<br /> 24 valve || Direct injection. Audi EA897 engine. Audi A8 TDI ('16)
|-
| R || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || 48v Mild Hybrid. Direct injection. Porsche-Audi EA825 engine. 3996cc. 591 hp.<br> Audi RS Q8 ('20-'24)
|-
| R || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || 48v Mild Hybrid. Direct injection. Porsche-Audi EA825 engine. 3996cc. 631 hp.<br> Audi RS Q8 performance ('25)
|-
| S || 1.8L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA827/EA113 engine. 180 hp. <br> Audi TT (Early '00)
|-
| S || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || Direct injection. Audi-Bentley EA824 engine. 3993cc.<br> Audi S8 ('16)
|-
| S || 2.5L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || Direct/Port injection. Audi EA855 Evo engine.<br> Audi TT RS ('18-'22)
|-
| S || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || 48v Mild Hybrid. Direct injection. Porsche-Audi EA825 engine. 3996cc. 563 hp.<br> Audi S8 ('20-'25)
|-
| T || 1.8L || I4 Turbo Twin [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA827/EA113 engine. High Output - 225 hp. Single Turbo, Twin Intercoolers. <br> Audi TT ('01-'06)
|-
| T || 3.0L || 90° V6 || Gas || DOHC,<br /> 30 valve || MPI. Audi EA835 engine - Gen 3. Aluminum block.<br> Audi A4 sedan/Avant 3.0 ('02-Mid '05), A4 Cabriolet 3.0 ('03-'06), A6 3.0 ('02-'04)
|-
| T || "3.2L" || 90° V6 || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine. 3.1L=3123cc.<br> Audi A6 3.2 ('05)
|-
| U || 4.2L || 90° V8 || Gas || DOHC,<br /> 40 valve || MPI. Audi V8 engine. 4172cc.<br> Audi S6 Avant ('02-'03), S8 ('01-'03)
|-
| U || 4.2L || 90° V8 || Gas || DOHC,<br /> 32 valve || Direct injection. Audi EA824 engine. 4163cc.<br> Audi RS4 sedan ('07-'08), RS4 Cabriolet ('08)
|-
| U || 4.2L || 90° V8 || Gas || DOHC,<br /> 32 valve || Direct injection. Dry sump lubrication. Audi EA824 engine. 4163cc.<br> Audi R8 ('08-'12, '14-'15)
|-
| U || 5.2L || 90° V10 || Gas || DOHC,<br /> 40 valve || Direct injection. Dry sump lubrication. Audi EA824 V10 engine.<br> Audi R8 V10 coupe w/man. trans. (Early '14) [when U in 5th pos. of VIN follows G in 4th pos. of VIN]
|-
| U || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Miller Cycle (B-Cycle). Intake AVS. Audi EA888 engine - PZEV. TSI. Timing chain. Detuned version: 184 hp.<br> Audi A3 2.0T Fwd ('17)
|-
| U || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Miller Cycle (B-Cycle). Intake AVS. Audi EA888 engine - SULEV. TSI. Timing chain. Detuned version: 184 hp.<br> Audi A3 2.0T Fwd ('18-'20), Q3 40 TFSI ('21-'22)
|-
| U || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Miller Cycle (B-Cycle). Intake AVS. Audi EA888 engine - ULEV. TSI. Timing chain. Detuned version: 184 hp.<br> Audi Q3 40 TFSI ('23-'24 & '25 in Canada)
|-
| U || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || 48v Mild Hybrid. Direct injection. Miller Cycle (B-Cycle). Intake AVS. Audi EA888 engine - SULEV.<br> TSI. Timing chain. 201 hp.<br> Audi A3 40 TFSI ('22-'25)
|-
| V || 4.2L || 90° V8 || Gas || DOHC,<br /> 32 valve || MPI. Audi V8 engine. 4172cc. Audi V8 Quattro ('92-'93)
|-
| V || 4.2L || 90° V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 40 valve || MPI. Audi V8 engine. 4172cc.<br> Audi RS6 (US: '03, Canada: '04)
|-
| V || 4.2L || 90° V8 || Gas || DOHC,<br /> 32 valve || Direct injection. Audi EA824 engine. 4163cc.<br> Audi S5 coupe ('08-'12), A6 4.2 ('07-'11), A8 4.2 ('07-'12), Q7 4.2 ('07-'10)
|-
| V || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Diesel || DOHC,<br /> 24 valve || Direct injection. Audi EA897 engine. Audi Q5 TDI ('16)
|-
| V || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || 48v Mild Hybrid. Direct injection. Audi-Porsche EA839 engine.<br> Audi Q8 3.0T/55 TFSI ('19-'25), Q7 55 TFSI ('25)
|-
| W || 4.2L || 90° V8 || Gas || DOHC,<br /> 32 valve || MPI. Audi V8 engine. 4172cc. Audi V8 Quattro ('92-'94)
|-
| W || 2.5L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || Direct/Port injection. Audi EA855 Evo engine.<br> Audi RS3 ('17-'20)
|-
| W || 2.9L || 90° V6 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi-Porsche EA839 engine.<br> Audi RS5 coupe ('18-'19, '21-'24), RS5 Sportback ('19, '21-'25)
|-
| W || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || 48v Mild Hybrid. Direct injection. Porsche-Audi EA825 engine. 3996cc. 500 hp.<br> Audi SQ7 ('20-'25), SQ8 ('20-'25)
|-
| W || 2.5L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || Direct/Port injection. Audi EA855 Evo engine. 394 hp.<br> Audi RS3 ('25)
|-
| X || 1.8L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || MPI. Audi EA827/EA113 engine. 180 hp. <br> Audi TT ('01-'02)
|-
| X || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || 48v Mild Hybrid. Direct injection. Audi-Porsche EA839 engine.<br> Audi Q7 55 TFSI ('20-'24)
|-
| Y || 3.6L || 10.6° VR6 || Gas || DOHC,<br /> 24 valve || Direct injection. VW EA390 engine.<br> Audi Q7 3.6 ('07-'10)
|-
| 1 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA113 engine - ULEV. FSI. Timing belt.<br> Audi TTS ('10-'15)
|-
| 1 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. High Output: 288 hp.<br> Audi S3 Quattro ('16-'20), TTS ('16-'23)
|-
| 2 || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || Direct injection. Audi-Bentley EA824 engine. 3993cc.<br> Audi S6 ('13-'16), S7 ('13-'16), RS7 ('14-'16), A8 4.0T ('13-'15), S8 ('13-'15)
|-
| 2 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas/E85 || DOHC,<br /> 16 valve || Flex Fuel. Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain.<br> Audi A5 2.0T w/auto. trans. ('16-'17), Q5 2.0T ('16-'17)
|-
| 2 || 3.0L || 90° V6 supercharged [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine.<br> Audi A6 3.0T ('17), A7 3.0T ('17)
|-
| 2 || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || 48v Mild Hybrid. Direct injection. Audi-Porsche EA839 engine.<br> Audi A6 3.0T/55 TFSI ('19-'25), A6 Allroad ('20-'25), A7 3.0T/55 TFSI ('19-'25)
|-
| 2 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas-Electric [[w:Plug-in hybrid|PHEV]] || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine + electric motor. Lithium-ion Battery Pack. TSI. Timing chain.<br> Audi Q5 55 TFSI e [FY] ('20-'25)
|-
| 3 || 2.5L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || Direct injection. Audi EA855 engine.<br> Audi TT RS ('12-'13)
|-
| 3 || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || Direct injection. Audi-Bentley EA824 engine. 3993cc.<br> Audi A8 4.0T ('16-'18)
|-
| 3 || 3.0L || 90° V6 supercharged [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine. Higher Output: 340 hp.<br> Audi A6 3.0T Competition ('17), A6 3.0T ('18), A7 3.0T Competition ('17), A7 3.0T ('18)
|-
| 3 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || 12v Mild Hybrid. Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. 261 hp.<br> Audi A6 Sport 45 TFSI ('21), A6 45 TFSI ('22-'25)
|-
| 3 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. High Output: 306 hp.<br> Audi S3 Quattro ('22-'24)
|-
| 4 || 6.3L || 72° W12 || Gas || DOHC,<br /> 48 valve || Direct injection. VW W12 engine. Audi A8 W12 ('12-'15)
|-
| 4 || 3.0L || 90° V6 supercharged [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine.<br> Audi S5 coupe ('16-'17), S5 Cabriolet ('16-'17), A8 3.0T ('16-'18)
|-
| 4 || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi-Porsche EA839 engine.<br> Audi S4 ('18-'25), S5 coupe/cabriolet ('18-'24), S5 Sportback ('18-'25), SQ5 [FY] ('18-'25),<br> SQ5 Sportback [FY] ('21-'25)
|-
| 4 || 2.5L || I5 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 20 valve || Direct/Port injection. Audi EA855 Evo engine. 401 hp.<br> Audi RS3 ('22-'24)
|-
| 5 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Exhaust AVS. Audi EA888 engine - PZEV. TSI. Timing chain.<br> Audi TT ('16-'17)
|-
| 5 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Exhaust AVS. Audi EA888 engine - SULEV. TSI. Timing chain.<br> Audi TT ('18)
|-
| 5 || 4.0L || V8 Twin Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 32 valve || Direct injection. Audi-Bentley EA824 engine. 3993cc. 605 hp.<br> Audi S8 plus ('16-'18)
|-
| 5 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. High Output: 328 hp.<br> Audi S3 Quattro ('25)
|-
| 5 || 3.0L || 90° V6 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi-Porsche EA839 engine.<br> Audi S5 [B10] (Mid '25), SQ5 [GU] (Mid '25), SQ5 Sportback [GU] (Mid '25)
|-
| 6 || 4.2L || 90° V8 || Gas || DOHC,<br /> 32 valve || Direct injection. Audi EA824 engine. 4163cc.<br> Audi RS5 ('13-'15)
|-
| 7 || 1.8L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - PZEV. TSI. Timing chain.<br> Audi A3 Fwd 1.8T ('16)
|-
| 7 || 3.0L || 90° V6 supercharged [[w:Intercooler|IC]] || Gas || DOHC,<br /> 24 valve || Direct injection. Audi EA837 engine.<br> Audi Q5 3.0T ('16-'17)
|-
| 8 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas-Electric Hybrid || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine + electric motor. Lithium-ion Battery Pack.<br> Audi Q5 Hybrid ('13-'15)
|-
| 8 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - PZEV. TSI. Timing chain.<br> Audi A3 2.0T Quattro ('16-'17)
|-
| 8 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - SULEV. TSI. Timing chain.<br> Audi A3 2.0T Quattro ('18)
|-
| 8 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain.<br> Audi A6 2.0T ('17-'18)
|-
| 8 || 2.0L || I4 Turbo [[w:Intercooler|IC]] || Gas || DOHC,<br /> 16 valve || 12v Mild Hybrid. Direct injection. Audi EA888 engine - ULEV. TSI. Timing chain. 248 hp.<br> Audi A6 2.0T/45 TFSI ('19-'21)
|}
‡1982 Audi Quattro: 3-4 cars were imported to the US for marketing purposes and as press cars. They remained in the US after those uses ended and transitioned into private ownership. These cars carry US-style VINs rather than European-style VINs. 3 VINs have been found. Their serial numbers (last 6 digits of VIN) are 900565, 900586, and 900648. The Audi Quattro was officially sold in the US for the 1983-1985 model years.
====Motor codes for Electric Vehicles====
{| class="wikitable"
|+Position 5
|-
! VIN !! Motor Designation !! Fuel !! Drive Wheels !! Battery Size !! Application/Notes
|-
| A ||APA250 (Front) / AKA320 (Rear)|| Electricity || All ||95 Kwh (gross) / 83.6 Kwh (net) || Audi e-tron quattro ('19), e-tron Sportback quattro ('20)
|-
| A ||APA250 (Front) / AKA320 (Rear)|| Electricity || All ||95 Kwh (gross) / 86.5 Kwh (net) || Audi e-tron quattro ('21-'23), e-tron Sportback quattro ('21-'23)
|-
| A ||APA250 (Front) / AKA320 (Rear)|| Electricity || All ||114 Kwh (gross) / 106 Kwh (net) || Audi Q8 e-tron quattro ('24), Q8 e-tron Sportback quattro ('24)
|-
| C ||APA320 (1 Front) / ATA250 (2 Rear)|| Electricity || All ||95 Kwh (gross) / 86.5 Kwh (net) || Audi e-tron S quattro ('22-'23), e-tron S Sportback quattro ('22-'23)
|-
| C ||APA320 (1 Front) / ATA250 (2 Rear)|| Electricity || All ||114 Kwh (gross) / 106 Kwh (net) || Audi SQ8 e-tron quattro ('24), SQ8 e-tron Sportback quattro ('24)
|-
| C ||APP310 (Rear) || Electricity || Rear ||82 Kwh (gross) / 77 Kwh (net) || Audi Q4 e-tron 40 ('23-Mid '24)
|-
| H ||V662 (Front) Code EBGA / V663 (Rear) (Higher output-Code EBEA)|| Electricity || All ||93.4 Kwh (gross) / 83.7 Kwh (net) || Audi RS e-tron GT quattro ('22-'24)
|-
| J ||V662 (Front) Code EBGA / V663 (Rear) Code EBFA|| Electricity || All ||93.4 Kwh (gross) / 83.7 Kwh (net) || Audi e-tron GT quattro ('22-'24)
|-
| U ||HASCO Magna asynchronous motor (Front) / APP550 (Rear) || Electricity || All ||82 Kwh (gross) / 77 Kwh (net) || Audi Q4 e-tron 55 quattro (Mid '24-'25), Q4 e-tron Sportback 55 quattro (Mid '24-'25)
|-
| 2 ||HASCO Magna asynchronous motor (Front) / APP310 (Rear) || Electricity || All ||82 Kwh (gross) / 77 Kwh (net) || Audi Q4 e-tron 50 quattro ('22-Mid '24), Q4 e-tron Sportback 50 quattro ('22-Mid '24)
|-
| 5 ||APP550 (Rear) || Electricity || Rear ||82 Kwh (gross) / 77 Kwh (net) || Audi Q4 e-tron 45 ('25)
|-
| 8 || (Front) / (Rear) || Electricity || All ||105 Kwh (gross) / 97 Kwh (net) || Audi RS e-tron GT performance quattro ('25)
|-
| 9 || (Front) / (Rear) || Electricity || All ||105 Kwh (gross) / 97 Kwh (net) || Audi S e-tron GT quattro ('25)
|}
HASCO Magna=HASCO Magna Electric Drive Systems Co., Ltd.
===Position 6, Restraint Systems:===
*0 = Active (Manual) 3-point Seat Belts only
*5 = Driver-side Airbag, Driver and Passenger Active (Manual) 3-point Seat Belts
*8 = Driver and Passenger Front Airbags
*2 = Active (Manual) belts plus Driver and Passenger Front Airbags & Front Side Airbags ('00-'06 TT)
*4 = Active (Manual) belts plus Driver and Passenger Front Airbags & Front and Rear Side Airbags & Sideguard Side Curtain Airbags ('04-'07 A8)
*5 = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front and Rear Side Airbags & Sideguard Side Curtain Airbags (A3, A4, A6, Allroad)
*6 = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front Side Airbags & Sideguard Side Curtain Airbags ('06-'09 A3, A4, A6, Allroad)
*3 = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front Side Airbags & Front Knee Airbags ('08-'09 TT, R8, '09 TTS)
*4 = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front Side Airbags ('03-'09 A4 Cabriolet, '04-'09 S4 Cabriolet, '08 RS4 Cabriolet)
*7 = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front Side Airbags & Sideguard Side Curtain Airbags
*9 = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front and Rear Side Airbags & Sideguard Side Curtain Airbags (Except '08-'09 A8/S8)
*9 = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front and Rear Side Airbags & Sideguard Side Curtain Airbags & Front Knee Airbags ('08-'09 A8/S8)
*A = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front Side Airbags & Front Knee Airbags ('10- A5/S5 Cabriolet, '10- TT/TTS, '12-'13 TT RS, '10- R8)
*A = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front Side Airbags & Sideguard Side Curtain Airbags ('10- A3, '10- A4/S4, '10-'11 A5/S5 Coupe, '10- A6/S6, '12- A7, '10- Q5, '10- Q7)
*B = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front and Rear Side Airbags & Sideguard Side Curtain Airbags ('10- A3, '10- A4/S4, '10- A6/S6, '12- A7, '10- Q5, '10- Q7)
*A = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front Side Airbags & Sideguard Side Curtain Airbags & Front Knee Airbags ('12- A5/S5 Coupe)
*A = Active (Manual) belts plus Driver and Passenger Front Advanced Airbags & Front and Rear Side Airbags & Sideguard Side Curtain Airbags & Front Knee Airbags ('10-' A8)
===Position 7-8, Model Line:===
1981-2009:
*8P = A3 ('06-'09)
*81 = 4000 Fwd ('81-'87)
*85 = 4000 Quattro ('84-'87), Coupe ('81-'83), Coupe GT ('84-'87), Quattro ('82‡ & '83-'85)
*89 = 80/90 ('88-'89)
*8A = 80 ('90-'92), 90 ('90-'91)
*8C = 90 ('93-'95)
*8B = Coupe Quattro ('90-'91)
*8G = Cabriolet ('94-'98)
*8D = A4 ('96-'01), S4 ('00-'02)
*8E = A4 ('02-'08), S4 ('04-'08), RS4 ('07-'08)
*8H = A4 Cabriolet ('03-'09), S4 Cabriolet ('04-'09), RS4 Cabriolet ('08)
*8K = A4 ('09)
*8T = A5 coupe ('08-'09), S5 coupe ('08-'09)
*43 = 5000 ('81-'83)
*44 = 5000 ('84-'88), 100/200 ('89-'91)
*4A = 100/S4 ('92-'94), A6 sedan ('95-'97), A6 wagon ('95-'98), S6 ('95 & '96-'97 in Canada)
*4B = A6 sedan ('98-'04), A6 Avant wagon ('99-'04), Allroad ('01-'05), S6 ('02-'03), RS6 (US: '03, Canada: '04)
*4F = A6 ('05-'09), S6 ('07-'09)
*44 = V8 Quattro ('90)
*4A = V8 Quattro ('91-'94)
*4D = A8 ('97-'03), S8 ('01-'03)
*4E = A8 ('04-'09), S8 ('07-'09)
*8N = TT ('00-'06)
*8J = TT ('08-'09), TTS ('09)
*42 = R8 ('08-'09)
*8R = Q5 ('09)
*4L = Q7 ('07-'09)
2010-:
*FM (Type 8P) = A3 ('10-'13)
*FF (Type 8V) = A3 ('15-'20), S3 ('15-'20), RS3 ('17-'20), A3 Sportback e-tron [PHEV] '16-'18
*GY (Type 8Y) = A3/S3/RS3 ('22-)
*FL (Type 8K) = A4 ('10-'16), Allroad ('13-'16), S4 ('10-'16)
*F4 (Type 8W) = A4 ('17-'25), A4 Allroad ('17-'25), S4 ('18-'25)
*FR (Type 8T) = A5 Coupe ('10-'17), S5 Coupe ('10-'17), RS5 Coupe ('13-'15)
*FH (Type 8F) = A5 Cabriolet ('10-'17), S5 Cabriolet ('10-'17), RS5 Cabriolet ('13-'15)
*F5 = A5 ('18-'25), S5 ('18-'25), RS5 ('18-'19, '21-'25) [Coupe/Cabriolet: '18-'24, Sportback: '18-'25]
*FU = A5/S5 ('25-)
*FB (Type 4F) = A6 ('10-'11), S6 ('10-'11)
*FC (Type 4G) = A6 ('12-'18), S6 ('13-'18)
*FC (Type 4G) = A7 ('12-'18), S7 ('13-'18), RS7 ('14-'18)
*F2 (Type 4A) = A6 ('19-'25), S6 ('20-'25), RS6 Avant ('21-'26), A6 Allroad ('20-'26)
*F2 (Type 4K) = A7 ('19-'25), S7 ('20-'25), RS7 ('21-'26)
*FN = A6 ('26-)
*GH = A6 e-tron, S6 e-tron ('25-)
*FA (Type 4E) = A8 ('10)
*FD (Type 4H) = A8 ('11-'18), S8 ('13-'16), S8 plus ('16-'18)
*F8 (Type 4N) = A8 ('19-'26), S8 ('20-'26)
*FW (Type F8) = e-tron GT ('22-'24), RS e-tron GT ('22-'24), S e-tron GT ('25-), RS e-tron GT performance ('25-)
*FK (Type 8J) = TT ('10-'15), TTS ('10-'15), TT RS ('12-'13)
*FV (Type FV or 8S) = TT ('16-'23), TTS ('16-'23), TT RS ('18-'22)
*FG (Type 42) = R8 ('10-'12, '14-'15)
*FX (Type 4S) = R8 ('17-'18, '20-'23)
*FS (Type 8U) = Q3 ('15-'18)
*F3 = Q3 ('19-'25)
*FJ = Q3 ('26-)
*FZ (Type F4) = Q4 e-tron, Q4 e-tron Sportback ('22-)
*FP (Type 8R) = Q5 ('10-'17), SQ5 ('14-'17)
*FY = Q5 ('18-'25), SQ5 ('18-'25), Q5 Sportback ('21-'25), SQ5 Sportback ('21-'25)
*GU = Q5 ('25-'26), SQ5 ('25-'26), Q5 Sportback ('25-'26), SQ5 Sportback ('25-'26)
*GF = Q6 e-tron, SQ6 e-tron, Q6 e-tron Sportback, SQ6 e-tron Sportback ('25-)
*FE (Type 4L) = Q7 ('10-'15)
*F7 (Type 4M) = Q7 ('17-), SQ7 ('20-)
*F1 (Type 4M) = Q8 ('19-), SQ8 ('20-), RS Q8 ('20-)
*GE = e-tron ('19, '21-'23), e-tron S ('22-'23), e-tron Sportback ('20-'23), e-tron S Sportback ('22-'23),<br> Q8 e-tron ('24), SQ8 e-tron ('24), Q8 e-tron Sportback ('24), SQ8 e-tron Sportback ('24)
===Position 9, Check Digit===
[[Vehicle Identification Numbers (VIN codes)/Check digit |Check digit]]
Check Digit in 9th position of VIN was always used in US & Canada. In Europe, Check Digit in 9th position of VIN was adopted for 2002 model year. Prior to the 2002 model year, a letter Z was used in the 9th position of the VIN in Europe.
===Position 10, Model Year: ===
[[Vehicle Identification Numbers (VIN codes)/Model year|Model year]]
===Position 11, Production Plant:===
* A: Ingolstadt, Germany
* B: Brussels, Belgium
* D: Bratislava, Slovakia
* E: Emden, Germany
* K: Rheine, Germany (Karmann plant: Cabriolet ['98], A4 Cabriolet ['03-'09], S4 Cabriolet ['04-'09], RS4 Cabriolet ['08]
* N: Neckarsulm, Germany
* P: Zwickau, Germany
* R: Martorell, Spain
* 1: Gyor, Hungary
* 2: San Jose Chiapa, Puebla state, Mexico
* 7: Heilbronn, Germany
Other plant codes for non-North American models:
* G: Graz, Austria (Steyr-Daimler-Puch plant: V8L)
* U: Uitenhage, South Africa
* X: Poznan, Poland
* Z: Zuffenhausen, Germany (Porsche plant: RS2 Avant)
* 3: Changchun, China (FAW-VW plant)
* 4: Sao Jose dos Pinhais, Parana state, Brazil (Curitiba plant)
* 9: Sarajevo, Bosnia and Herzegovina (Volkswagen Sarajevo d.o.o. plant)
'''Positions 12–17, Serial Number'''
{{BookCat}}
op06o3lpizqh4rqisf4bk7cdzyspst6
Wikibooks:Reading room/Administrative Assistance/Archives/2026/June
4
483978
4641172
4641057
2026-06-25T19:04:13Z
Pppery
3090521
-
4641172
wikitext
text/x-wiki
{{talk archive}}
== GSTFILLING reported by MathXplore ==
* {{userlinks|GSTFILLING}}
Spam <!-- USERREPORTED:/GSTFILLING/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 12:29, 5 June 2026 (UTC)
:{{done}} —[[User:Atcovi|Atcovi]] [[User talk:Atcovi|(Talk]] - [[Special:Contributions/Atcovi|Contribs)]] 12:45, 5 June 2026 (UTC)
== ~2026-29002-30 reported by MathXplore ==
* {{userlinks|~2026-29002-30}}
Abusing multiple accounts: [[Special:Contributions/Babywacko]] <!-- USERREPORTED:/~2026-29002-30/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 12:20, 9 June 2026 (UTC)
: {{done}}. [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 15:42, 9 June 2026 (UTC)
0tk2dvmke8bbftxl1yxqvgtk1t9fmww
4641224
4641172
2026-06-26T08:10:14Z
ArchiverBot
1227662
Bot: Archiving 1 thread from [[Wikibooks:Reading room/Administrative Assistance]]
4641224
wikitext
text/x-wiki
{{talk archive}}
== GSTFILLING reported by MathXplore ==
* {{userlinks|GSTFILLING}}
Spam <!-- USERREPORTED:/GSTFILLING/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 12:29, 5 June 2026 (UTC)
:{{done}} —[[User:Atcovi|Atcovi]] [[User talk:Atcovi|(Talk]] - [[Special:Contributions/Atcovi|Contribs)]] 12:45, 5 June 2026 (UTC)
== ~2026-29002-30 reported by MathXplore ==
* {{userlinks|~2026-29002-30}}
Abusing multiple accounts: [[Special:Contributions/Babywacko]] <!-- USERREPORTED:/~2026-29002-30/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 12:20, 9 June 2026 (UTC)
: {{done}}. [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 15:42, 9 June 2026 (UTC)
== ShaneWarne1 reported by MathXplore ==
* {{userlinks|ShaneWarne1}}
Spam <!-- USERREPORTED:/ShaneWarne1/ --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 12:45, 11 June 2026 (UTC)
: Globally locked by M7. [[User:Codename Noreste|<span style="color:#0024FF">Codename Noreste</span>]] ([[User talk:Codename Noreste|discuss]] • [[Special:Contributions/Codename Noreste|contribs]]) 22:12, 11 June 2026 (UTC)
m2hxebqh4lkltzaqr2vxje7ggzqkqpy
User talk:Anvian9
3
484007
4641190
4640987
2026-06-25T22:39:28Z
ChaoticKappa
3175379
/* Test */ Reply
4641190
wikitext
text/x-wiki
== Test ==
yoyo [[User:Anvian9|Anvian9]] ([[User talk:Anvian9|discuss]] • [[Special:Contributions/Anvian9|contribs]]) 06:46, 23 June 2026 (UTC)
:Test successful. [[User:ChaoticKappa|ChaoticKappa]] ([[User talk:ChaoticKappa|discuss]] • [[Special:Contributions/ChaoticKappa|contribs]]) 22:39, 25 June 2026 (UTC)
7sf8xn1spc4vgfsewvjwpomvcxidz55
Chess Opening Theory/1. e4/1...Nf6/2. e5/2...Nd5/3. c4/3...Nb6/4. a4
0
484008
4641204
4641004
2026-06-26T01:00:06Z
JackBot
396820
Formatting, [[Special:UncategorizedPages]]
4641204
wikitext
text/x-wiki
== 4.a4 ==
4.a4 is an excellent, yet widely unknown move in the Two Pawns Attack. This is the great move as a4 cuts off the b6 Knight practically for the entire game. White's main ideas after 4...a5 can be to centralize with 5.d4 where White has tremendous control of the Center, or White can play the hyperaggressive [[/5. Ra3| '''5. Ra3''']] which plans to swing the Rook to g3 where it can attack Black's bare Kingside, as the Knight has moved onto Black's Queenside making Black's Kingside permanently weaker.
{{BookCat}}
95cejlzjjpyz2ocp23qizq8vqq6tg6j
User:Noeiel17/sandbox
2
484011
4641196
4641037
2026-06-25T23:03:26Z
Noeiel17
3495772
4641196
wikitext
text/x-wiki
{{User sandbox}}
{{status|0%}}
Welcome to the '''Fuzhou Dialect''' wikibook, a free textbook on the Fuzhou dialect, often also referred to as Fuzhounese. To use this book, your web browser must first be configured to [[Chinese (Mandarin)/Displaying Chinese Characters|display Chinese characters]]. If the characters in the box below appear as blank boxes or garbage such as �?�?, your browser is not properly configured.
{| align="center" cellpadding="6" cellspacing="0" border="1"
| style="background-color:#eeeeee;" |{{lang|zh-hans|如果汝會講福州話,請對手!}}
|}
== Introduction==
*[[Fuzhou Dialect/Preface|Preface]] {{stage short|0%}}
*[[Fuzhou Dialect/About Fuzhounese|About Fuzhounese]] {{stage short|0%}}
==Pronunciation / 發音==
*[[Fuzhou Dialect/Initial Sounds|Initial Sounds]] {{stage short|0%}}
*[[Fuzhou Dialect/Final Sounds|Final Sounds (Rimes)]] {{stage short|0%}}
*[[Fuzhou Dialect/Tones|Tones]] {{stage short|0%}}
*[[Fuzhou Dialect/Tone Sandhi|Tone Sandhi]] {{stage short|0%}}
*[[Fuzhou Dialect/Rime Changes|Rime Changes]] {{stage short|0%}}
*[[Fuzhou Dialect/Initial Assimilation|Initial Assimilation]] {{stage short|0%}}
{{Category 4 Language}}
k0x6zy07022w0vcmdhy0ogij7y1wv91
4641197
4641196
2026-06-25T23:03:44Z
Noeiel17
3495772
4641197
wikitext
text/x-wiki
{{User sandbox}}
{{status|0%}}
Welcome to the '''Fuzhou Dialect''' wikibook, a free textbook on the Fuzhou dialect, often also referred to as Fuzhounese. To use this book, your web browser must first be configured to [[Chinese (Mandarin)/Displaying Chinese Characters|display Chinese characters]]. If the characters in the box below appear as blank boxes or garbage such as �?�?, your browser is not properly configured.
{| align="center" cellpadding="6" cellspacing="0" border="1"
| style="background-color:#eeeeee;" |{{lang|zh-hans|如果汝會講福州話,請對手!}}
|}
== Introduction==
*[[Fuzhou Dialect/Preface|Preface]] {{stage short|0%}}
*[[Fuzhou Dialect/About Fuzhounese|About Fuzhounese]] {{stage short|0%}}
==Pronunciation==
*[[Fuzhou Dialect/Initial Sounds|Initial Sounds]] {{stage short|0%}}
*[[Fuzhou Dialect/Final Sounds|Final Sounds (Rimes)]] {{stage short|0%}}
*[[Fuzhou Dialect/Tones|Tones]] {{stage short|0%}}
*[[Fuzhou Dialect/Tone Sandhi|Tone Sandhi]] {{stage short|0%}}
*[[Fuzhou Dialect/Rime Changes|Rime Changes]] {{stage short|0%}}
*[[Fuzhou Dialect/Initial Assimilation|Initial Assimilation]] {{stage short|0%}}
{{Category 4 Language}}
4vq90un2a14vy4b8x6h6t8z91x1zbtm
Cookbook:Algerian White Chicken Vermicelli Soup (Chorba Beida)
102
484018
4641178
4641069
2026-06-25T20:42:04Z
SvnnyBvnny
3282535
4641178
wikitext
text/x-wiki
{{recipesummary
| category = Soup recipes
| time = 1 hour
| difficulty = 2
}}
{{recipe}} | [[Cookbook:Cuisine of Algeria|Algerian Cuisine]]
'''Chorba Beida''' (Arabic: شربة بيضاء, meaning "white soup"), also known as "'''jari beida'''", is a traditional Algerian soup characterized by its pale broth, delicate flavor and velvety texture. It is typically prepared with [[Cookbook:Chicken|chicken]], [[Cookbook:Onion|onion]], [[Cookbook:Chickpea|chickpeas]], and [[Cookbook:Vermicelli|vermicelli]] and is finished with a mixture of [[Cookbook:Egg|egg yolk]] and [[Cookbook:Lemon|lemon juice]], which gives the soup its distinctive creamy consistency. Chorba beida is especially associated with the city of Algiers and is commonly served during [[Cookbook:Ramadan|Ramadan]] or on special family occasions. Regional and household variations exist, with some recipes incorporating different herbs, spices or cuts of meat. The following recipe describes a common version prepared with chicken, chickpeas and vermicelli.
==Ingredients==
===For the soup===
* 500 g [[Cookbook:Chicken|chicken]] (thighs, drumsticks or breast) (cut into pieces)
* 1 large [[Cookbook:Onion|onion]] (finely chopped)
* 1 tbsp neutral oil
* 1 tbsp [[Cookbook:Butter|butter]] or ''smen''
* 1 [[Cookbook:Cinnamon|cinnamon]] stick
* ½ tsp ground white pepper
* [[Cookbook:Salt|Salt]] (to taste)
* 1 L water or chicken stock
* 1 handful [[Cookbook:Chickpea|chickpeas]] (soaked overnight)
* 50 g [[Cookbook:Vermicelli|vermicelli]]
===For the binder===
* 1 [[Cookbook:Egg|egg yolk]]
* Juice of 1 [[Cookbook:Lemon|lemon]]
* 2 tbsp [[Cookbook:Parsley|parsley]] (finely chopped)
==Procedure==
* Heat the oil and butter (or ''smen'') in a large pot over medium heat.
* Add the onion and cook until translucent.
* Add the chicken, cinnamon stick, white pepper and salt. Cook for several minutes, stirring occasionally, until the chicken is lightly browned.
* Pour in the water or chicken stock and add the soaked chickpeas.
* Bring to a boil, then reduce the heat, cover and simmer for 40–50 minutes or until the chicken is tender and the chickpeas are cooked.
* Remove the chicken from the pot. Discard the bones and shred the meat into small pieces.
* Add the vermicelli to the broth and cook for 5–7 minutes until tender.
* In a bowl, whisk together the egg yolk, lemon juice and parsley.
* Gradually add a ladleful of hot broth to the egg mixture while whisking continuously.
* Reduce the soup to very low heat and slowly stir the egg mixture into the pot.
* Return the shredded chicken to the soup and stir well.
* Serve immediately.
==Notes, tips, and variations==
* Ground cinnamon is generally avoided, as it darkens the broth and alters the soup's characteristic pale appearance.
* Chorba Beida is commonly accompanied by [[Cookbook:Bourek|bourek]] or other savory pastries during Ramadan.
* The soup should not be allowed to boil after the egg mixture has been added, as this may cause curdling.
[[Category:Algerian recipes]] [[Category:Soup recipes]] [[Category:Recipes using chicken]]
[[Category:Recipes using egg]] [[Category:Recipes using lemon]] [[Category:Ramadan recipes]]
bb8b6bm1l8myz1xrxpdmi43i8pxkavq
4641207
4641178
2026-06-26T01:23:05Z
Kittycataclysm
3371989
incomplete flag
4641207
wikitext
text/x-wiki
{{Incomplete recipe|reason=procedure not correctly formatted, ingredients not in correct order, missing/incorrect categories}}{{recipesummary
| category = Soup recipes
| time = 1 hour
| difficulty = 2
}}
{{recipe}} | [[Cookbook:Cuisine of Algeria|Algerian Cuisine]]
'''Chorba Beida''' (Arabic: شربة بيضاء, meaning "white soup"), also known as "'''jari beida'''", is a traditional Algerian soup characterized by its pale broth, delicate flavor and velvety texture. It is typically prepared with [[Cookbook:Chicken|chicken]], [[Cookbook:Onion|onion]], [[Cookbook:Chickpea|chickpeas]], and [[Cookbook:Vermicelli|vermicelli]] and is finished with a mixture of [[Cookbook:Egg|egg yolk]] and [[Cookbook:Lemon|lemon juice]], which gives the soup its distinctive creamy consistency. Chorba beida is especially associated with the city of Algiers and is commonly served during [[Cookbook:Ramadan|Ramadan]] or on special family occasions. Regional and household variations exist, with some recipes incorporating different herbs, spices or cuts of meat. The following recipe describes a common version prepared with chicken, chickpeas and vermicelli.
==Ingredients==
===For the soup===
* 500 g [[Cookbook:Chicken|chicken]] (thighs, drumsticks or breast) (cut into pieces)
* 1 large [[Cookbook:Onion|onion]] (finely chopped)
* 1 tbsp neutral oil
* 1 tbsp [[Cookbook:Butter|butter]] or ''smen''
* 1 [[Cookbook:Cinnamon|cinnamon]] stick
* ½ tsp ground white pepper
* [[Cookbook:Salt|Salt]] (to taste)
* 1 L water or chicken stock
* 1 handful [[Cookbook:Chickpea|chickpeas]] (soaked overnight)
* 50 g [[Cookbook:Vermicelli|vermicelli]]
===For the binder===
* 1 [[Cookbook:Egg|egg yolk]]
* Juice of 1 [[Cookbook:Lemon|lemon]]
* 2 tbsp [[Cookbook:Parsley|parsley]] (finely chopped)
==Procedure==
* Heat the oil and butter (or ''smen'') in a large pot over medium heat.
* Add the onion and cook until translucent.
* Add the chicken, cinnamon stick, white pepper and salt. Cook for several minutes, stirring occasionally, until the chicken is lightly browned.
* Pour in the water or chicken stock and add the soaked chickpeas.
* Bring to a boil, then reduce the heat, cover and simmer for 40–50 minutes or until the chicken is tender and the chickpeas are cooked.
* Remove the chicken from the pot. Discard the bones and shred the meat into small pieces.
* Add the vermicelli to the broth and cook for 5–7 minutes until tender.
* In a bowl, whisk together the egg yolk, lemon juice and parsley.
* Gradually add a ladleful of hot broth to the egg mixture while whisking continuously.
* Reduce the soup to very low heat and slowly stir the egg mixture into the pot.
* Return the shredded chicken to the soup and stir well.
* Serve immediately.
==Notes, tips, and variations==
* Ground cinnamon is generally avoided, as it darkens the broth and alters the soup's characteristic pale appearance.
* Chorba Beida is commonly accompanied by [[Cookbook:Bourek|bourek]] or other savory pastries during Ramadan.
* The soup should not be allowed to boil after the egg mixture has been added, as this may cause curdling.
[[Category:Algerian recipes]] [[Category:Soup recipes]] [[Category:Recipes using chicken]]
[[Category:Recipes using egg]] [[Category:Recipes using lemon]] [[Category:Ramadan recipes]]
42m8rb5cyger52zbzyih6ckhyof10tl
User talk:Vantagemdm1
3
484027
4641118
2026-06-25T12:27:57Z
MathXplore
3097823
Notifying author of speedy deletion nomination
4641118
wikitext
text/x-wiki
== I have added a tag to a page you created ==
Hi! I'm MathXplore, and I recently reviewed your page, [[:User:Vantagemdm1]]. I have added a tag to the page, because it <strong>may meet the [[Wikibooks:Deletion policy#Speedy deletions|criteria for speedy deletion]].</strong> This means that it can be deleted at any time. The reason I provided was: <blockquote><strong>Out of scope</strong></blockquote> If you believe that your page should not be deleted, please post a message on [[User talk:Vantagemdm1|the page's talk page]] explaining why. <strong>If your reasoning is convincing, your page may be saved.</strong> If you have any questions or concerns, please [[User talk:MathXplore|let me know]]. Thank you! <!-- Substituted from User:JJPMaster/CurateThisPage/authorMsg --> [[User:MathXplore|MathXplore]] ([[User talk:MathXplore|discuss]] • [[Special:Contributions/MathXplore|contribs]]) 12:27, 25 June 2026 (UTC)
tdd5vmvidaf7nlztrx6myb46zoig0ux
Atomic Chess Opening Theory
0
484028
4641139
2026-06-25T16:42:30Z
~2026-36603-30
3609843
I decided to start creating a theory of atomic chess openings.
4641139
wikitext
text/x-wiki
{{Chess diagram
| tright
| Initial position in Atomic Chess
|=
|rd|nd|bd|qd|kd|bd|nd|rd
|pd|pd|pd|pd|pd|pd|pd|pd
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
|pl|pl|pl|pl|pl|pl|pl|pl
|rl|nl|bl|ql|kl|bl|nl|rl
| Atomic Chess starts with the standard chess setup.
}}
== Starting position ==
This is the starting position, the way the pieces are laid out when you first set them up at the start of a game of chess. White moves first, so they have the first choice of how to proceed.
n1bmka71dp7zg4yqiu83xm4aqhw7ad7
Atomic Chess Opening Theory/1.Nf3
0
484029
4641145
2026-06-25T17:06:29Z
~2026-36603-30
3609843
Created page with "{{Chess diagram | tright | 1.Nf3 |= |rd|nd|bd|qd|kd|bd|nd|rd |pd|pd|pd|pd|pd|pd|pd|pd | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |nl| | |pl|pl|pl|pl|pl|pl|pl|pl |rl|nl|bl|ql|kl|bl| |rl | Most popular first move in atomic chess }} == 1.Nf3 == Most popular first move in atomic chess. On the next move (2.Ne5 or 2.Ng5) there is a threat of attack on the f7-square. === Black responses === * 1...f6! * 1...e5 * 1...d6"
4641145
wikitext
text/x-wiki
{{Chess diagram
| tright
| 1.Nf3
|=
|rd|nd|bd|qd|kd|bd|nd|rd
|pd|pd|pd|pd|pd|pd|pd|pd
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | |nl| |
|pl|pl|pl|pl|pl|pl|pl|pl
|rl|nl|bl|ql|kl|bl| |rl
| Most popular first move in atomic chess
}}
== 1.Nf3 ==
Most popular first move in atomic chess.
On the next move (2.Ne5 or 2.Ng5) there is a threat of attack on the f7-square.
=== Black responses ===
* 1...f6!
* 1...e5
* 1...d6
1ukbliplk1e9fc6w0sn4q1qrojxr1k9
4641147
4641145
2026-06-25T17:19:25Z
~2026-36603-30
3609843
Redirected page to [[Atomic Chess Opening Theory/1. Nf3]]
4641147
wikitext
text/x-wiki
#REDIRECT [[Atomic Chess Opening Theory/1. Nf3]]
8bd0wo78wj1uwo873f4yq96l89jb85a
Atomic Chess Opening Theory/1. Nf3
0
484030
4641146
2026-06-25T17:17:17Z
~2026-36603-30
3609843
Created page with "{{Chess diagram | tright | 1.Nf3 |= |rd|nd|bd|qd|kd|bd|nd|rd |pd|pd|pd|pd|pd|pd|pd|pd | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |nl| | |pl|pl|pl|pl|pl|pl|pl|pl |rl|nl|bl|ql|kl|bl| |rl | Most popular first move in atomic chess }} == 1.Nf3 == Most popular first move in atomic chess. On the next move (2.Ne5 or 2.Ng5) there is a threat of attack on the f7-square. === Black responses === * 1...f6! * 1...e5 * 1...d6"
4641146
wikitext
text/x-wiki
{{Chess diagram
| tright
| 1.Nf3
|=
|rd|nd|bd|qd|kd|bd|nd|rd
|pd|pd|pd|pd|pd|pd|pd|pd
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | |nl| |
|pl|pl|pl|pl|pl|pl|pl|pl
|rl|nl|bl|ql|kl|bl| |rl
| Most popular first move in atomic chess
}}
== 1.Nf3 ==
Most popular first move in atomic chess.
On the next move (2.Ne5 or 2.Ng5) there is a threat of attack on the f7-square.
=== Black responses ===
* 1...f6!
* 1...e5
* 1...d6
1ukbliplk1e9fc6w0sn4q1qrojxr1k9
4641149
4641146
2026-06-25T17:27:41Z
~2026-36603-30
3609843
4641149
wikitext
text/x-wiki
{{Chess diagram
| tright
| 1. Nf3
|=
|rd|nd|bd|qd|kd|bd|nd|rd
|pd|pd|pd|pd|pd|pd|pd|pd
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | |nl| |
|pl|pl|pl|pl|pl|pl|pl|pl
|rl|nl|bl|ql|kl|bl| |rl
| Most popular first move in atomic chess
}}
== 1. Nf3 ==
Most popular first move in atomic chess.
On the next move (2. Ne5 or 2. Ng5) there is a threat of attack on the f7-square.
=== Black responses ===
* 1...f6!
* 1...e5
* 1...d6
hj8i425knmehwmbqfdykra6arh7w5fe
4641170
4641149
2026-06-25T18:43:27Z
AtomicChess
3609849
4641170
wikitext
text/x-wiki
{{Chess diagram
| tright
| 1. Nf3
|=
|rd|nd|bd|qd|kd|bd|nd|rd
|pd|pd|pd|pd|pd|pd|pd|pd
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | |nl| |
|pl|pl|pl|pl|pl|pl|pl|pl
|rl|nl|bl|ql|kl|bl| |rl
| Most popular first move in atomic chess
}}
== 1. Nf3 ==
Most popular first move in atomic chess.
On the next move (2. Ne5 or 2. Ng5) there is a threat of attack on the f7-square.
=== Black responses ===
* '''1...f6!''' - defend e5 and g5 squares
* '''1...e5'''
* '''1...d6'''
ds7pek34i126oy3s0yo40ntaq5s0gnu
Atomic Chess Opening Theory/1. Nf3/1...f6
0
484031
4641148
2026-06-25T17:26:54Z
~2026-36603-30
3609843
Created page with "{{Chess diagram | tright | 1. Nf3 f6 |= |rd|nd|bd|qd|kd|bd|nd|rd |pd|pd|pd|pd|pd| |pd|pd | | | | | |pd| | | | | | | | | | | | | | | | | | | | | | | |nl| | |pl|pl|pl|pl|pl|pl|pl|pl |rl|nl|bl|ql|kl|bl| |rl | only way to defend e5 and g5 squares }} == 1...f6 == this move defend e5 and g5 squares === White responses === * '''1. e3''' * '''1. Nc3''' - 2N * '''1. e4''' * '''1. d4''' * '''1. Na3'''"
4641148
wikitext
text/x-wiki
{{Chess diagram
| tright
| 1. Nf3 f6
|=
|rd|nd|bd|qd|kd|bd|nd|rd
|pd|pd|pd|pd|pd| |pd|pd
| | | | | |pd| |
| | | | | | | |
| | | | | | | |
| | | | | |nl| |
|pl|pl|pl|pl|pl|pl|pl|pl
|rl|nl|bl|ql|kl|bl| |rl
| only way to defend e5 and g5 squares
}}
== 1...f6 ==
this move defend e5 and g5 squares
=== White responses ===
* '''1. e3'''
* '''1. Nc3''' - 2N
* '''1. e4'''
* '''1. d4'''
* '''1. Na3'''
cmb6jehjoqyvx4kmj34cweemz9w9075
4641166
4641148
2026-06-25T18:28:10Z
AtomicChess
3609849
/* White responses */
4641166
wikitext
text/x-wiki
{{Chess diagram
| tright
| 1. Nf3 f6
|=
|rd|nd|bd|qd|kd|bd|nd|rd
|pd|pd|pd|pd|pd| |pd|pd
| | | | | |pd| |
| | | | | | | |
| | | | | | | |
| | | | | |nl| |
|pl|pl|pl|pl|pl|pl|pl|pl
|rl|nl|bl|ql|kl|bl| |rl
| only way to defend e5 and g5 squares
}}
== 1...f6 ==
this move defend e5 and g5 squares
=== White responses ===
* '''1. e3'''
* '''1. Nc3''' - 2N
* '''1. Nd4'''
* '''1. e4'''
* '''1. d4'''
* '''1. Na3'''
2d9v7df6pwqcb55uk5lfkccmw9q8phq
Atomic Chess Opening Theory/1. Nf3/1...f6/2. Nc3
0
484038
4641164
2026-06-25T18:24:55Z
AtomicChess
3609849
Created page with "{{Chess diagram | tright | 1. Nf3 f6 2. Nc3 |= |rd|nd|bd|qd|kd|bd|nd|rd |pd|pd|pd|pd|pd| |pd|pd | | | | | |pd| | | | | | | | | | | | | | | | | | | | |nl| | |nl| | |pl|pl|pl|pl|pl|pl|pl|pl |rl| |bl|ql|kl|bl| |rl | 2N }} == 2.Nf3 - 2N == 2N is one of most popular openings. White treat to attack c7 square from b5 or d5. === Black responses === * '''2...c6''' defend b5 and d5 squares * '''2...Nh6''' create a countertreat (Ng4 to attack f2..."
4641164
wikitext
text/x-wiki
{{Chess diagram
| tright
| 1. Nf3 f6 2. Nc3
|=
|rd|nd|bd|qd|kd|bd|nd|rd
|pd|pd|pd|pd|pd| |pd|pd
| | | | | |pd| |
| | | | | | | |
| | | | | | | |
| | |nl| | |nl| |
|pl|pl|pl|pl|pl|pl|pl|pl
|rl| |bl|ql|kl|bl| |rl
| 2N
}}
== 2.Nf3 - 2N ==
2N is one of most popular openings.
White treat to attack c7 square from b5 or d5.
=== Black responses ===
* '''2...c6''' defend b5 and d5 squares
* '''2...Nh6''' create a countertreat (Ng4 to attack f2 square)
* '''2...e6''' defend d5 square and open bishop but keep b5 square defenseless
04ocvhcfsk4o3sdsdfd68x4e45wccb1
Atomic Chess Opening Theory/1. Nf3/1...f6/1. Nd4
0
484039
4641167
2026-06-25T18:38:44Z
AtomicChess
3609849
Created page with "{{Chess diagram | tright | 1. Nf3 f6 2. Nd4 |= |rd|nd|bd|qd|kd|bd|nd|rd |pd|pd|pd|pd|pd| |pd|pd | | | | | |pd| | | | | | | | | | | | | |nl| | | | | | | | | | | | |pl|pl|pl|pl|pl|pl|pl|pl |rl|nl|bl|ql|kl|bl| |rl | treat to attack e7 and g7 squares from f5 }} == 2. Nd4 == White treat to attack e7 and g7 squares from f5 and also treat Nb5. === Black responses === * '''2...Nh6!''' - defence f5 square and create countertreat (Ng4)"
4641167
wikitext
text/x-wiki
{{Chess diagram
| tright
| 1. Nf3 f6 2. Nd4
|=
|rd|nd|bd|qd|kd|bd|nd|rd
|pd|pd|pd|pd|pd| |pd|pd
| | | | | |pd| |
| | | | | | | |
| | | |nl| | | |
| | | | | | | |
|pl|pl|pl|pl|pl|pl|pl|pl
|rl|nl|bl|ql|kl|bl| |rl
| treat to attack e7 and g7 squares from f5
}}
== 2. Nd4 ==
White treat to attack e7 and g7 squares from f5 and also treat Nb5.
=== Black responses ===
* '''2...Nh6!''' - defence f5 square and create countertreat (Ng4)
iaw97yvwo998h1hd7afro9fx6cygtic
4641169
4641167
2026-06-25T18:42:21Z
AtomicChess
3609849
Redirected page to [[Atomic Chess Opening Theory/1. Nf3/1...f6/2. Nd4]]
4641169
wikitext
text/x-wiki
#REDIRECT [[Atomic Chess Opening Theory/1. Nf3/1...f6/2. Nd4]]
82c43c2xkviiur4c8e12s7p2e4ocfyb
Atomic Chess Opening Theory/1. Nf3/1...f6/2. Nd4
0
484040
4641168
2026-06-25T18:40:41Z
AtomicChess
3609849
Created page with "{{Chess diagram | tright | 1. Nf3 f6 2. Nd4 |= |rd|nd|bd|qd|kd|bd|nd|rd |pd|pd|pd|pd|pd| |pd|pd | | | | | |pd| | | | | | | | | | | | | |nl| | | | | | | | | | | | |pl|pl|pl|pl|pl|pl|pl|pl |rl|nl|bl|ql|kl|bl| |rl | treat to attack e7 and g7 squares from f5 }} == 2. Nd4 == White treat to attack e7 and g7 squares from f5 and also treat Nb5. === Black responses === * '''2...Nh6!''' - defence f5 square and create countertreat (Ng4)"
4641168
wikitext
text/x-wiki
{{Chess diagram
| tright
| 1. Nf3 f6 2. Nd4
|=
|rd|nd|bd|qd|kd|bd|nd|rd
|pd|pd|pd|pd|pd| |pd|pd
| | | | | |pd| |
| | | | | | | |
| | | |nl| | | |
| | | | | | | |
|pl|pl|pl|pl|pl|pl|pl|pl
|rl|nl|bl|ql|kl|bl| |rl
| treat to attack e7 and g7 squares from f5
}}
== 2. Nd4 ==
White treat to attack e7 and g7 squares from f5 and also treat Nb5.
=== Black responses ===
* '''2...Nh6!''' - defence f5 square and create countertreat (Ng4)
iaw97yvwo998h1hd7afro9fx6cygtic
Cookbook:Gingersnaps
102
484041
4641181
2026-06-25T21:11:44Z
WhatamIdoing
483040
Created page with "__NOTOC__ {{recipesummary | category = Cookie recipes | yield = 24 cookies | time = About 1 hour | difficulty = 2 }} {{recipe}} == Ingredients == {| class="wikitable" style="background: none" !Ingredient !Count !Volume !Weight |- |[[Cookbook:Butter|Butter]] |1½ sticks |3/4 [[Cookbook:Cup|cup]] |175 grams 6 oz. |- |[[Cookbook:Sugar|White sugar]] | |2/3 cup |130 [[Cookbook:Gram|g]] |- |[[Cookbook:Eggs|Eggs]] |1 [[Cookbook:Each|ea.]] | | |- |Cookbook:Molasses|Molasses..."
4641181
wikitext
text/x-wiki
__NOTOC__
{{recipesummary
| category = Cookie recipes
| yield = 24 cookies
| time = About 1 hour
| difficulty = 2
}}
{{recipe}}
== Ingredients ==
{| class="wikitable" style="background: none"
!Ingredient
!Count
!Volume
!Weight
|-
|[[Cookbook:Butter|Butter]]
|1½ sticks
|3/4 [[Cookbook:Cup|cup]]
|175 grams
6 oz.
|-
|[[Cookbook:Sugar|White sugar]]
|
|2/3 cup
|130 [[Cookbook:Gram|g]]
|-
|[[Cookbook:Eggs|Eggs]]
|1 [[Cookbook:Each|ea.]]
|
|
|-
|[[Cookbook:Molasses|Molasses]]
|
|¼ cup
|85 g
|-
|[[Cookbook:Cinnamon|Cinnamon]]
|
|1 teaspoon
|5 g
|-
|[[Cookbook:Ginger|Ginger]] (ground)
|
|1 teaspoon
|5 g
|-
|[[Cookbook:Salt|Salt]]
|
|¼ teaspoon
|1 g
|-
|[[Cookbook:Baking Soda|Baking soda]]
|
|2 teaspoons
|10 g
|-
|All-purpose [[Cookbook:Flour|flour]]
|
|2 cups
|240 [[Cookbook:Gram|g]]
|}
== Procedure ==
# Preheat the oven to [[Cookbook:Oven Temperatures|375 °F (190 °C, gas mark 5, moderately hot)]]. Line a baking pan with [[Cookbook:Parchment Paper|parchment baking paper]], or lightly grease it.
# Cream the butter and the sugar together.
# Beat in the egg.
# Stir in everything else.
# Shape walnut-sized balls of dough, and roll them in your hands to make them smooth. This can be done with a medium-size [[Cookbook:Cookie scoop|cookie scoop]], with two teaspoons, or by rolling a lump of dough into an inch-thick rope of dough, and then pinching off an appropriate length of the dough. If the dough is sticky, then put it in the refrigerator to chill for an hour (or 15 minutes in the freezer).
# Put some plain white sugar in a small bowl, and roll it around until it is completely covered in sugar. Place the sugared ball of dough on the cookie sheet.
# Bake at [[Cookbook:Oven Temperatures|375 °F (190 °C, gas mark 5, moderately hot)]] for 10 minutes. The cookies will be very soft and fragile when they first come out of the oven. Let them rest for a moment, and then use a flat spatula to move them to a [[Cookbook:Cooling Rack|wire cooling rack]] until they have finished cooling.
== Notes and tips ==
* You can substitute vegetable shortening or artificially flavored butter-flavored shortening for some or all of the butter.
* Molasses is a very dark brown syrup. The most common brands in the US are Grandma's and Brer Rabbit, but any brand of molasses will do. Do not use blackstrap molasses, which is too bitter (check the ingredients label), and do not use sulphured molasses, which will have a chemical flavor.
* The raw dough can be frozen. The best way is to shape individual balls of dough that you made in step #4, and then freeze them before rolling it in sugar. They will thaw out faster than a large lump. When they are mostly defrosted, continue with step #5.
ki581ecewgy16h0tc8h58egd6givyfw
4641206
4641181
2026-06-26T01:20:51Z
Kittycataclysm
3371989
style, format, language, links
4641206
wikitext
text/x-wiki
__NOTOC__
{{recipesummary
| category = Cookie recipes
| yield = 24 cookies
| time = About 1 hour
| difficulty = 2
}}
{{recipe}}
== Ingredients ==
{| class="wikitable" style="background: none"
!Ingredient
!Count
!Volume
!Weight
|-
|[[Cookbook:Butter|Butter]]
|1½ sticks
|¾ [[Cookbook:Cup|cup]]
|175 grams (6 oz)
|-
|[[Cookbook:White Sugar|White sugar]]
|
|⅔ cup
|130 [[Cookbook:Gram|g]]
|-
|[[Cookbook:Eggs|Eggs]]
|1 [[Cookbook:Each|ea.]]
|
|
|-
|[[Cookbook:Molasses|Molasses]]
|
|¼ cup
|85 g
|-
|Ground [[Cookbook:Cinnamon|cinnamon]]
|
|1 [[Cookbook:Teaspoon|teaspoon]]
|5 g
|-
|Ground [[Cookbook:Ginger|ginger]]
|
|1 teaspoon
|5 g
|-
|[[Cookbook:Salt|Salt]]
|
|¼ teaspoon
|1 g
|-
|[[Cookbook:Baking Soda|Baking soda]]
|
|2 teaspoons
|10 g
|-
|[[Cookbook:All-purpose flour|All-purpose flour]]
|
|2 cups
|240 [[Cookbook:Gram|g]]
|}
== Procedure ==
# Preheat the oven to [[Cookbook:Oven Temperatures|375 °F (190 °C, gas mark 5, moderately hot)]]. Line a [[Cookbook:Baking Sheet|baking sheet]] with [[Cookbook:Parchment Paper|parchment baking paper]], or lightly grease it.
# [[Cookbook:Creaming|Cream]] the butter and the sugar together.
# Beat in the egg, then the molasses until fully incorporated.
# Combine the cinnamon, ginger, salt, baking soda, and flour to make a dry mix. Stir the dry mix into the batter until it comes together into a dough.
# Portion out walnut-sized balls of dough using a medium-size [[Cookbook:Cookie scoop|cookie scoop]] or two teaspoons; alternatively, roll a lump of dough into an inch-thick rope of dough, and then pinch off an appropriate length of the dough. Roll each ball in your hands to make smooth. If the dough is sticky, put it in the refrigerator to chill for an hour (or in the freezer for 15 minutes).
# Put some plain white sugar in a small bowl, and roll each dough ball around until it is completely covered in sugar. Place the dough balls on the cookie sheet, spacing them out evenly.
# Bake in the preheated oven for 10 minutes. The cookies will be very soft and fragile when they first come out of the oven. Let them rest for a moment, and then use a flat spatula to move them to a [[Cookbook:Cooling Rack|wire cooling rack]] until they have finished cooling.
== Notes, tips, and variations ==
* You can substitute vegetable [[Cookbook:Shortening|shortening]] or artificially butter-flavored shortening for some or all of the butter.
* Molasses is a very dark brown syrup. The most common brands in the US are Grandma's and Brer Rabbit, but any brand of molasses will do. Do not use blackstrap molasses, which is too bitter (check the ingredients label), and do not use sulphured molasses, which will have a chemical flavor.
* The raw dough can be frozen. The best way is to shape the individual balls of dough, then freeze them before rolling in sugar. The dough will thaw out faster this way than if frozen in a large lump. When the dough balls are mostly defrosted, proceed to rolling them in sugar.
[[Category:Recipes for cookies]]
[[Category:Recipes using butter]]
[[Category:Recipes using egg]]
[[Category:Recipes using molasses]]
[[Category:Recipes using granulated sugar]]
[[Category:Recipes using ground cinnamon]]
[[Category:Recipes using ground ginger]]
[[Category:Recipes using salt]]
[[Category:Recipes using baking soda]]
[[Category:Recipes using all-purpose flour]]
ei6rct2tynwlu4saai294ka28zzysux
4641208
4641206
2026-06-26T02:15:07Z
WhatamIdoing
483040
Add
4641208
wikitext
text/x-wiki
__NOTOC__
{{recipesummary
| category = Cookie recipes
| yield = 24 cookies
| time = About 1 hour
| difficulty = 2
}}
{{recipe}}
This recipe makes a soft gingersnap cookie. These are gingersnaps for people who don't really like gingersnap cookies.
== Ingredients ==
{| class="wikitable" style="background: none"
!Ingredient
!Count
!Volume
!Weight
|-
|[[Cookbook:Butter|Butter]]
|1½ sticks
|¾ [[Cookbook:Cup|cup]]
|175 grams (6 oz)
|-
|[[Cookbook:White Sugar|White sugar]]
|
|⅔ cup
|130 [[Cookbook:Gram|g]]
|-
|[[Cookbook:Eggs|Eggs]]
|1 [[Cookbook:Each|ea.]]
|
|
|-
|[[Cookbook:Molasses|Molasses]]
|
|¼ cup
|85 g
|-
|Ground [[Cookbook:Cinnamon|cinnamon]]
|
|1 [[Cookbook:Teaspoon|teaspoon]]
|5 g
|-
|Ground [[Cookbook:Ginger|ginger]]
|
|1 teaspoon
|5 g
|-
|[[Cookbook:Salt|Salt]]
|
|¼ teaspoon
|1 g
|-
|[[Cookbook:Baking Soda|Baking soda]]
|
|2 teaspoons
|10 g
|-
|[[Cookbook:All-purpose flour|All-purpose flour]]
|
|2 cups
|240 [[Cookbook:Gram|g]]
|}
== Procedure ==
# Preheat the oven to [[Cookbook:Oven Temperatures|375 °F (190 °C, gas mark 5, moderately hot)]]. Line a [[Cookbook:Baking Sheet|baking sheet]] with [[Cookbook:Parchment Paper|parchment baking paper]], or lightly grease it.
# [[Cookbook:Creaming|Cream]] the butter and the sugar together.
# Beat in the egg, then the molasses until fully incorporated.
# Combine the cinnamon, ginger, salt, baking soda, and flour to make a dry mix. Stir the dry mix into the batter until it comes together into a dough.
# Portion out walnut-sized balls of dough using a medium-size [[Cookbook:Cookie scoop|cookie scoop]] or two teaspoons; alternatively, roll a lump of dough into an inch-thick rope of dough, and then pinch off an appropriate length of the dough. Roll each ball in your hands to make smooth. If the dough is sticky, put it in the refrigerator to chill for an hour (or in the freezer for 15 minutes).
# Put some plain white sugar in a small bowl, and roll each dough ball around until it is completely covered in sugar. Place the dough balls on the cookie sheet, spacing them out evenly.
# Bake in the preheated oven for 10 minutes. The cookies will be very soft and fragile when they first come out of the oven. Let them rest for a moment, and then use a flat spatula to move them to a [[Cookbook:Cooling Rack|wire cooling rack]] until they have finished cooling.
== Notes, tips, and variations ==
* You can substitute vegetable [[Cookbook:Shortening|shortening]] or artificially butter-flavored shortening for some or all of the butter.
* Molasses is a very dark brown syrup. The most common brands in the US are Grandma's and Brer Rabbit, but any brand of molasses will do. Do not use blackstrap molasses, which is too bitter (check the ingredients label), and do not use sulphured molasses, which will have a chemical flavor. If you have to use blackstrap molasses, try substituting honey or a mild-flavored syrup for part of the blackstrap molasses.
* The raw dough can be frozen. The best way is to shape the individual balls of dough, then freeze them before rolling in sugar. The dough will thaw out faster this way than if frozen in a large lump. When the dough balls are mostly defrosted, proceed to rolling them in sugar.
[[Category:Recipes for cookies]]
[[Category:Recipes using butter]]
[[Category:Recipes using egg]]
[[Category:Recipes using molasses]]
[[Category:Recipes using granulated sugar]]
[[Category:Recipes using ground cinnamon]]
[[Category:Recipes using ground ginger]]
[[Category:Recipes using salt]]
[[Category:Recipes using baking soda]]
[[Category:Recipes using all-purpose flour]]
fgvclznp2ivbmiaovlpmxg5d1y9kbo2
Typewriting
0
484043
4641214
2026-06-26T05:34:13Z
Kai Burghardt
153973
save first draft for collaboration
4641214
wikitext
text/x-wiki
{{new book}}<!-- delete {{new book}} on ≥ 2026‑07‑11 -->
{{displaytitle|title=𝚃𝚢𝚙𝚎𝚠𝚛𝚒𝚝𝚒𝚗𝚐}}
Typewriters are machines that can be used to print texts on paper.
Today, typewriters are obsolete technology;
they are uneconomic and have been superseded by electronic devices.
== about ==
{{IPA notice}}<!-- transcription of word platen -->
{{reading level|intermediate}}
In the heyday of typewriters hundreds of books were written on typewriting.
Unfortunately, when typewriters fell out of favor many people simply threw them away.
It may be difficult to find and get a copy.
This collaboratively edited Wikibook attempts to address the demand.
Typewriter enthusiasts around the world have created and shared thousands upon thousands of instructional videos.
We are glad you are considering reading an easily searchable textbook instead or to supplement video instructions.
; learning objective
: skillful use of non‐specialized typewriters <!-- stenographic typewriters used by court reporters, Braille typewriters used by blind people --> designed to type up general documents in English
; target audience
: seeing and hearing adults
; not covered in this Wikibook
: This book is {{em|not}} <!-- the {{em}} template is used so a text search for a straight/typewriter apostrophe yields more relevant results --> about touchtyping, the skill of typing without looking at the keys (sometimes by layman also called {{em|typewriting}}), because it is a largely transferable skill (cmp. [[#legacy|§ legacy]]). This book does not provide product guidance, choosing the right typewriter that suits your needs. Only very mundane “artistic” use is described, not like “ASCII art” or similar.
; structure
: top‐down: general instructions, then delve into details; <!-- in the spirit of Wikibooks ain’t paper --> a lot of information is repeated multiple times so you may refer to sections in a handbook manner; {{em|strictly}} continuous reading from stem to stern should not be necessary
; guidelines for co‐authors
: there are hundreds upon hundreds of (printed) books on typewriting, what makes this book different is extensive hyperlinking; note that Wikibooks holds back on interwiki (and interbook) linking, this book has to be self‐contained; write one sentence per physical line to facilitate readable diffs
<!-- limit = 3 corresponds to <h3> [h3 being inclusive] -->{{TOC|limit=3}}{{clear}}
== typewriting ==
This section provides some background information.
Feel free to [[#supplies|skip it entirely]].
Note, similar to {{em|computer}}, a {{em|typewriter}} can refer to a person {{em|using}} a machine called {{em|typewriter}};
however, {{em|this}} use is – just like the word {{em|computer}} referring to a person – deemed archaic.
=== legacy ===
<!-- This section is about the legacy left {{em|by the machine}}. The habits people adopted and still show – such as writing abbreviations without intervening spaces {{mono|e.g.}} are not considered legacy for the purposes of this section. -->
* To this day ({{as of|2026|alt=2026 {{abbr|CE|common era}}}}) {{em|almost all computer keyboards}} use a {{em|staggered}} keyboard layout{{noprint|1={{hover info|the specific physical arrangement of keys}}}}, even though
** there is no mechanical need for that (there are no levers),
** there is not any consumer demand (anymore) to ease the transition {{em|from a typewriter}} to a computer keyboard,
** nor is it natural for humans’ fingers to move laterally.
* Although there is no chance that levers collide and and get jammed, the predominant key mappings{{noprint|1={{hover info|the assignment of keys to characters or functions}}}} are based on the typewriter keyboard mapping. {{em|One}} of the considerations for the predominant typewriter “QWERTY” key mapping is that when typing fast {{em|physically}} near type bars may get [[#jam|jammed]], hence pulling apart common character combinations reduced the chance of jams.
* On computer keyboards the {{key press|shift}} key is still called {{key press|shift}} even though it does not shift anything. On actual typewriters the {{key press|shift}} key {{em|actually moves}} the basket – the entirety of the assembly holding the type bars together – or carriage – the unit that holds the paper.
* Key tops are labeled as if there was only one key mapping. In fact the keyboard mapping can be changed electronically, the key labeled {{key press|D}} producing an {{code|A}} is no problem. There is no {{em|mechanical}} connection between the key {{key press|D}} producing a {{code|D}}.
=== preference ===
Few authors of novels – and not necessarily just those who grew up in the prime days of typewriters – claim they used typewriters because it facilitated and matched their authoring workflow.
A {{em|typescript}} (typewritten manuscript) has the benefit that a publisher can perform {{abbr|OCR|optical character recognition}}, the computerized extraction of text from scanned images.
== supplies ==
Typewriters need paper and ink, and not just any paper and ink.
(Preparing masters for hectography – a small batch replication method – is also possible, but <!-- currently --> not explained in this book.)
=== paper ===
==== color ====
Should you want to be able to correct typing mistakes with correction fluids or tapes, use {{em|white}} paper because the correction fluid or tape is {{em|primarily}} available in white.
Thus correcting typing mistakes on 100% recycling paper results in unsightly bright white spots, unnecessarily {{em|drawing}} the attention to the fact that you typed something wrong and had to correct it.
Other methods to correct typing mistakes are not as sensitive to the paper’s color;
still you get the best photocopies with white paper.
==== grammage ====
Typewriters can print on paper that has a certain range of grammage.
{{em|Grammage}} refers to the mass per area.
* If the paper is too thin, glyphs with eyes such as {{code|D}} or {{code|o}} may punch holes into the sheet. Less than about 75 {{abbr|gsm|grams per square meter}} is too thin. It is possible to “just” type lightly, but this tends to produce quite faint lettering, too.
* If the paper is too thick, the paper might not {{em|reliably}} advance. Consider anything in the neighborhood of 300 {{abbr|gsm|grams per square meter}} too much. You {{em|can}} still help push and hold your paper with a hand, e. g. for one‐time prints like business or place cards, however, the typewriter’s platen‐roller also {{em|curls}} the paper.
The most abundant retail paper has a grammage of 80 {{abbr|gsm|grams per square meter}} or 90 {{abbr|gsm|grams per square meter}}, so it is easy to obtain.
If you intend to produce carbon copies, choose the thinner paper of the two.
==== dimensions ====
{{anchor|maximum length}}
There is no actual {{em|maximum length}} – length referring to the secondary writing direction (for Latin‐based scripts like English usually downward).
Otherwise, there are maximum and minimum dimensions for sheets.
{{anchor|maximum width}}
The {{em|maximum width}} is dictated by the paper feed slot.
Keep in mind that the typewriter may not be able to type all the way to the (physically imposed) margins, neither is there usually any need.
{{anchor|minimum size}}
The {{em|minimum size}} needs to be tested.
If the paper is too small, it does not advance reliably, maybe even gets skewed because there is no sufficient grip.
It is recommended to simply write on a large sheet and {{em|cut it down}} to the desired size when finished.
Another method is to use a backing sheet, a larger paper, and secure the smaller one with paperclips.
=== ink ===
{{noprint|1={{wikipedia|ink ribbon}}}}
The necessary ink is stored on ribbons.
There are two types, the typewriter accepting only one of them:
* plastic film on one side coated with carbon (at least {{em|originally}}; different mixtures were {{em|in use since}}, yet it is {{em|still}} referred to as “carbon”)
* textile ribbons tinctured with ink
Both are available with either correctable or indelible ink{{noprint|1={{hover info|indelible ink is typically employed if documents need to be tamper‐evident and remain easily legible in several decades}}}}.
And to add insult to injury, there are various ribbon widths.
{{helpful hint
| title = privacy
| hint = Because of the gaps left on (correctable) carbon tapes, typed texts can usually be reconstructed, albeit without spaces and formatting.<!-- Textile ribbons {{em|may}} suffer from the same problem only upon first use. -->
}}
The plastic film comes in easy to install cartridges.
Since the carbon is transferred from the film to the paper, there are gaps:
this means the film is single use only.
Have replacement ready.
{{helpful hint
| title = re‐inking
| hint = Ensure the ink dries before winding it up. Moisture and poor ventilation, i. e. when wound up, facilitate grow of {{em|mold}}, another disadvantage.
}}
Textile ribbons deplete gradually.
They can be re‐inked (either automatically via a “sponge” or manually, although {{abbr|DIY|do it yourself}} can get pretty messy).
Unfortunately, textile ribbons also wear out.
=== accessories ===
Unavailable [[#characters|characters]] are augmented by hand.
Have a pen that matches the ink color and character line thickness.
To plan ahead [[#tabulation|tables]] or similar you may find graph paper – paper with a 5 mm grid printed on it – useful;
today, of course, you can use a computer and a text editor.
{{noprint|1={{wikipedia|correction fluid|correction tape|typewriter eraser}}}}<!-- omitted from print because URLs get printed in full, too, wasting a lot of space -->
Nobody is perfect.
Have correction fluid, correction tape, or razor/scalpel to [[#mistakes|delete typing mistakes]].
You can also use a special eraser, yet this produces detritus to be kept out of the machine.
Choose according to your requirements and preferences.
Alternatively, many electric typewriters can be equipped with a far more convenient correction tape.
There are two types:
* If a carbon‑C tape – {{em|C}} stands for {{em|correctable}} – is used, the ink can be removed with a lift‐off tape. This tape is comparable to adhesive tape.
* If {{em|indelible}} ink is used, there are whiteout tapes. They simply cover up the incorrect character; it is still there.
== operation ==
Typewriters are {{em|mechanical}} machines.
Some things may not work as smoothly as it used when the original manufacturer delivered them.
You may need to start with {{delink|[[#maintenance|maintenance]]}}.
=== environment ===
* A typewriter takes up space. Ensure the carriage can move all the way from left to right and you can still comfortably access the controls.
* The inertia of the carriage as it advances to the next character position may rock “light”‐weight portable typewriters enough to make them move on a smooth surface. Ensure you cannot easily push your typewriter sideways with your hand. Possibly place the typewriter on rubber like a place mat. Some rubber mat may be recommended anyway to decouple mechanical vibrations to some degree
* There are exceptionally {{em|quiet}} typewriters (“noiseless”), but in general typewriters are annoyingly '''loud'''. For prolonged work consider wearing ear protection. This may also aid your ability to concentrate. The sound is nonetheless valuable feedback that you have [[#strokes|{{em|properly}} struck a key]].
=== preparation ===
Some models feature a carriage lock.
The carriage lock ensures the carriage does not move back and forth during transport.
The carriage invariably locks {{em|at the center}} position.
The carriage lock lever is at a hard to reach location to prevent accidental locking, e. g. near the feet.
It may take a while to find it.
=== loading the ribbon ===
For stencils loading a ribbon is not necessary, maybe you even need to remove the ribbon if the typewriter does not allow to select a stencil mode.
# Remove the cover. In some models you shift the frame toward you. In others you have to lift the cover. In some sophisticated models the cover is hinged and you need to push a latch pin.
# Load the ribbon as explained below.
# Install the cover.
==== spools ====
The ink ribbon’s ends are attached to two spools.
# To facilitate even wear, you may want to label the spool: place a sticker on what shall be designated the top, indicate the winding/unwinding direction and maybe write the loading date. If you are a power user – someone who writes a lot with his typewriter on a regular basis – and do not intend to unload the ink ribbon, you can skip this step.
# There are two reel tables with pins the size of the spools’ central hole. Unwind the ribbon a bit and place both spools on the pin so that the ribbon wind/unwind {{em|on the far side}}, the side that is closer to the roller‐platen. Do not twist the ribbon. If the correct spools are used, the pins should stick out at the top. If not, rotate the spools a bit and {{em|lightly}} push them down. You may feel that the spools snap.
# Except in {{em|very}} old typewriters, there are two arms extending from the reel table with vertical slits. They can be moved laterally. These are part of the reverser mechanism. Place the ribbon in the slits. When reaching either end of the ribbon, the typewriter keeps pulling the ribbon: in consequence the tension exerted by the ribbon on the arm triggers a ribbon feed reversal.
# Thread the ribbon into the ribbon carrier ({{abbr|a. k. a.|also known as}} shaker or vibrator), the window that raises and falls down as you type characters. Using both hands, grab a short segment of the ribbon in the middle. Like flossing your teeth, use your thumbs to stretch this segment. Move it between the ribbon carrier and typing mask. In models that swivel the carriage (instead of shifting the basket, the assmbly unit that holds all the type bars), you may have better access by [[#caps lock|using the {{key press|caps lock}}]].
# When descending the ribbon, switch from pushing to pulling: pull the lower edge of the ribbon and guide the ribbon downward so the lower teeth of the ribbon carrier become covered.
# Finally push down the upper edge past the gap and gently pull it toward you. Now straighten the ribbon so the upper teeth are covered, too.
# Turn either spool to remove {{em|excess}} slack. A {{em|little}} bit of slack is harmless. Note that {{em|one}} of the spools can only be rotated in one direction. This is correct.
==== cartridges ====
{{empty section}}
=== margins ===
Typewriters almost always have at least one margin delimiter.
The margin controls the area in the primary writing direction – the line length – you can write on.
The right‐hand margin is the imaginary vertical line on the paper not to be crossed when typing a line.
The left‐hand margin is the imaginary vertical line on the paper at which you start typing, more specifically on the right‐hand side of the line.
{{helpful hint
| title = standardization
| hint = {{abbr|ISO|International Organization for Standardization}} standard 838 expects that the margin to be punched with holes has a width of {{nowrap|20 mm – 25 mm}} {{nowrap|(ca. ¾ in – 1 in)}}.
}}
==== pitch ====
Today, margin requirements are usually expressed as a length.
However, you will not find a ruler on your typewriter marked in, say, millimeters.
{{noprint|1={{wikipedia|pitch (typewriter)}}}}
There {{em|are}} few typewriters that advance horizontally only so much as the character really needs, e. g. an I (eye) and l (ell) is narrow, whereas M advances a lot more.
By far most typewriters have a fixed {{em|pitch}}:
each character occupies exactly the same width as the other (“monospace”).
Horizontal pitch is expressed in {{em|character per inch}} (cpi), vertical pitch in {{em|lines per inch}} (lpi).
One inch is 25.4 {{abbr|mm|millimeters}}.
Take a ruler and align the zero mark with the zero mark on (any) ruler on the typewriter.
If the ruler marks inches, you can read the {{abbr|cpi|character per inch}} value directly at the 1" mark.
For rulers with a millimeter scale, read the character count at 127 {{abbr|mm|millimeters}} and divide it by 5.
The most common pitches are 10 or 12 {{abbr|cpi|characters per inch}}.
Some typewriters allow switching between the two, especially if the typeface is exchangeable.
{{editor note|§ Calculating the margins: needs more details, is not easy to understand. Refactor this.}}
Knowing your machine’s pitch allows you to {{em|calculate}}
# the sheet’s width expressed in character positions,
# the margin widths expressed in character positions, and thus
# how many character positions you need to subtract.
{{example
| 1 = DIN 5008
| 2 = For example,
* an {{abbr|ISO|International Organization for Standardization}} standard 216 size A4 sheet (210 {{abbr|mm|millimeters}} × 297 {{abbr|mm|millimeters}})
* is to be printed with a 10 {{abbr|cpi|character per inch}} (“pica”) machine
* leaving 25 {{abbr|mm|millimeters}} of margin on the left‐hand side and
* 20 {{abbr|mm|millimeters}} of margin on the right‐hand side.
# 210 {{abbr|mm|millimeters}} × 10 {{abbr|cpi|character per inch}} = 210 {{abbr|mm|millimeters}} × 10 {{abbr|ch|characters}} ÷ 25.4 {{abbr|mm|millimeters}} ≈ 82.68 {{abbr|ch|characters}}
#  25 {{abbr|mm|millimeters}} × 10 {{abbr|cpi|character per inch}} =  25 {{abbr|mm|millimeters}} × 10 {{abbr|ch|characters}} ÷ 25.4 {{abbr|mm|millimeters}} ≈  9.84 {{abbr|ch|characters}}
#  20 {{abbr|mm|millimeters}} × 10 {{abbr|cpi|character per inch}} =  20 {{abbr|mm|millimeters}} × 10 {{abbr|ch|characters}} ÷ 25.4 {{abbr|mm|millimeters}} ≈  7.87 {{abbr|ch|characters}}
# 82.68 {{abbr|ch|characters}} − 10 {{abbr|ch|characters}} − 8 {{abbr|ch|characters}} ≈  64.68 {{abbr|ch|characters}}
Some models feature an adjustable paper guide:
This is an edge in the paper feed slot you can move laterally.
It has a pointy mark indicating the position on the ruler.
Using the calculated information you set the paper guide preferably at −10 {{abbr|ch|characters}}.
If not available, shift all values by a constant, preferably a multiple of 10.
}}
==== adjustment ====
Knowing the required margins expressed as a character count you can adjust them.
Some typewriters have an “automatic” margin function.
You press some magic button and simultaneously move the carriage to the first or last position a character should appear.
{{anchor|margin tabs}}
More often than not you need to set the margins yourself.
For that – depending on the model – depress or lift the margin tabs.
The margin tabs are located close to the margin ruler, a numbered scale, in non‐electric typewriters at the far end of the carriage or anywhere close to the platen‐roller.
You may see an arrow, triangular arrow heading pointing toward the numbered ruler, or just a vertical line.
In some models it is not necessary to actually push the tab down,
* if you are adjusting the left‐hand margin in the leftward direction, and
* if you are adjusting the right‐hand margin in the rightward direction.
You can simply push them laterally.
# Move the carriage to a central position. The margins cannot be adjusted past the current position lest unless [[#margin release|released]]. To move the carriage rightward you can just push it. For leftward movement you can – beside repeatedly hitting {{key press|space}} – find a carriage release lever.
# Move the margin tabs.
==== margin release ====
In normal operations the carriage cannot be moved beyond the currently set margins.
However, there is a {{em|margin release}}:
The {{key press|margin release}} may be labeled {{key press|⇼}}, {{key press|∷}} or just {{key press|MR}}.
Press the margin release key to move past either margin.
When you {{em|were}} stopped by the right‐hand margin, you may {{em|hear}} that the carriage {{em|advanced}} upon pressing the margin release key.
Once you have passed either margin, let go of the margin release.
You only need to press the margin release key
* to move {{em|rightward}} across the {{em|right‐hand}} margin, or
* to move {{em|leftward}} across the {{em|left‐hand}} margin.
The opposite direction,
* moving {{em|rightward}} across the {{em|left‐hand}} margin, and
* moving {{em|leftward}} across the {{em|right‐hand}} margin
is always “allowed”.
Essentially, the margin release is “reset” whenever you enter the designated text area.
=== loading paper ===
You need to feed your typewriter with paper.
Typewriters take sheets.
There are
* no sprockets to advance continuous paper with perforated borders that can be teared away, so
* continuous paper may slowly veer to either side because it is not perfectly aligned.
To some degree you can label envelopes for letters, too.
# Possibly wash your hands if you just loaded the ribbon. You do not want to get ink blots on the paper before you even started.
# Move the carriage to a center position. Usually this {{em|should not matter}}, but in some machines the paper may get stuck. To move the carriage rightward you can just push it. For leftward movement you can – beside repeatedly hitting {{key press|space}} – find a release lever.
# Usually you type on one sheet at a time. However, if applicable, prepare the stack of paper. For carbon copies place one carbon sheet {{em|between}} each paper. The black side faces the sheet to print on. The characters on the top sheet get their ink from the ribbon. Ensure all sheets have the same orientation in case you are using papers with a letterhead already printed on it. Align the borders by tapping the stack edge first on the tabletop. Be careful as to not to crinkle the carbon sheets.
# Insert the paper(s). There is a slot on the far side of the platen{{noprint|1={{hover info|{{word|en|platen}} is prononuced {{IPA|/ˈplætən/}}, like “platten”}}}}. If you are using paper that has a letterhead already printed on it, the front page should face away from you and the top is fed first. For plain blank paper the direction does not matter. If there are any carbon sheets, their black sides have to face the platen.
# Disengage the line spacer. The line spacer defines how much you advance in the secondary writing direction. It is either a lever on the carriage next to some single‐digit marks, or you can pull out the platen‐roller knob (usually the left one).
# Turn the knob of the platen‐roller. There are usually two knobs, one on each side. The right‐hand platen knob is turned clockwise, the left‐hand platen knob counter‐clockwise. As you twist either knob, the paper should be drawn into the machine now. If not, you may be using too thick paper, or you need to ensure the paper release is disengaged. As the paper emerges on the other side, you may need to guide it below the paper bail. Return the bail bar back to its normal position.
# Turn either knob so that roughly 50% of the paper is not in yet, 50% of the paper already sticks out front. In some models you have to {{em|lift the paper bail}}, that is the bar sometimes with numbered marks and possibly rollers sitting on top of the already written on paper. In some models the paper slips right under it {{em|without further ado}}, in others you have to push it there.
# Ideally you notice that the edges of the paper, the one in the back and the one in front of it, {{em|align}} perfectly. Should the paper not be aligned perfectly, pinch the papers (both back and front) at the top edge. Engage the paper release. You can now move the paper freely. Shift them individually so the corners align. If your typewriter does not have a paper guide at its feed slot, pay also attention the paper bail: you probably want the paper’s edge to appear at a certain mark. Now pinch the the papers together again and gently pull up (against the roller‐platen). Cautiously disengage the paper release. When disengaged, let go of the paper. One last visual check: while the line snap is disengaged twist the platen knob back and forth, so at the top the front and rear end alternate. If you notice any raggedness, repeat this step.
# Turn the roller‐platen back to the first line you want to write in. Note, while it is possible to write at the very top of the sheet, writing all the way to the bottom of the page is not possible: some paper has to remain in the machine for sufficient grip, otherwise it gets out of place and your text lines become bent. If you need text to appear all the way to the bottom, use larger paper and cut it down when finished.
# Engage the line spacer, and optionally erect the paper stand. The paper stand is one or two bars you can lift behind the paper feed.
{{choice
| 1 = {{anchor|side}} Single‐sided vs. double‐sided
| 2 =
Because of the {{em|embossing}} it creates on the other side, typewritten documents are usually {{em|single‐sided}} for {{em|purely esthetic<!-- alt. US spelling, see [[wikt:esthetic]] --> reasons}}. In some instances the front {{em|and back}} are always printed on, e. g. a post card or a last will and testament (not exceeding two pages) so as to not raise any doubt that it was {{em|one}} document. (As a side bar, in some jurisdictions a will has to {{em|be handwritten}} or else certified by a notary public.) It is apparent that the thicker the paper, the less pronounced the imprint and thus more acceptable to write on both sides.
}}
=== typing ===
{{helpful hint
| title = hyphenation rules
| hint = It is a sin to hyphenate across pages. In justified composition, at most two or three subsequent lines may be hyphenated.
}}
==== line ====
In most models, as you approach the right‐hand margin you will hear a bell ring.
Latin script typewriters are usually adjusted to ring the bell when you can still type at most 6 – 8 {{abbr|ch|characters}}.
This is a good point in time to consider wrapping the line.
If the margin is not too thin, it is generally acceptable to print {{em|punctuation}} like hyphens and periods past it;
use the [[#margin release|margin release]].
{{XWarning|With {{em|some}} models the carriage simply stops advancing once you reach the right‐hand margin. Before you know it you are typing multiple characters on top of each other. More sophisticated models arrest the type bars.}}
The carriage return lever performs two actions at once, return the carriage and advance to the next line.
It is the biggest lever you can find, attached at the left‐hand end of the carriage.
Push the lever rightward till the carriage is stopped by the left‐hand margin.
{{anchor|enter}}
Electric typewriters do not have a carriage return lever, but a new line {{key press|enter}} key.
Unlike the non‐electric counterparts, electric typewriters block typing any new letters while the carriage or type head returns to the starting position.
You should feel increased resistance if you try pressing any printing keys.
{{anchor|line spacer}}
The {{em|line spacer}} defines by how much you want to advance the paper when starting a new line.
It usually has at least three settings: 1, 1½ and 2.
These are {{em|factors}} to a reasonable line height, e. g. ⅙ {{abbr|in|inch}}.
This line height includes a little bit of leading – that is {{em|lead}} as in the chemical element.
To select the line height factor you may find a wheel or lever.
{{choice
| 1 = {{anchor|lh}} What line spacer setting should I use (for the main text body)?
| 2 =
If you intend to [[#superscript|superscript]] or [[#subscript|subscript]] text inside a paragraph, it may be wise to use the 150% setting. By using double spacing, you can insert words you forgot typing using the space between lines. Alternatively, if sufficiently wide, the margin can be utilized to supply missing words (in combination with some insertion mark).
Because of the uniform width of characters, typewritten texts are said to be more difficult to read in comparison to texts set with a proportional font. Consider adding vertical space just to aid legibility. On the other hand, it is a matter of practice; for instance hanzi (“Chinese characters”) are placed in uniform square boxes and nobody is complaining about that.
}}
The line spacer can be disengaged.
Some typewriters integrate disengaging the line spacer as a setting 0 (zero).
==== strokes ====
Users of electric typewriters simply touch the keys.
Just ensure it is switched on.
With mechanical typewriters the user has to muster the necessary force all on his own.
[[Image: Typewriter, portrait, office, workplace, interior, desk, lady Fortepan 5050.jpg|thumb|reasonable typing position]]
A proper stroke is resolute – quick attack and quick release.
Try a faint touch, try slow motion, it will not print.
The keys travel quite far in comparison to electric typewriters.
You want to apply all force in the {{em|downward}} direction.
Therefore sit upright and have the typewriter just a bit above lap height.
Moreover, should your finger slip they may get entangled between the keys.
For small face characters like the period ({{code|.}}), comma ({{code|,}}), colon ({{code|:}}) and semicolon ({{code|;}}) a {{em|light}} tap is sufficient;
especially if the period or comma are hit with full force you may inadvertently print the top area, too, creating bit of an angry vibe, period!
Furthermore, it {{em|may}} punch a [[#side|hole in the paper]] or even damage the ribbon.
If you are producing carbon copies, it is of import to strike keys with more force than usual.
An electric typewriter is therefore ideal for such a job.
Typing [[#mistakes|mistakes]] need to be corrected separately, in the original and each and every copy.
{{helpful hint
| title = performance
| hint = Typing speed is measured in {{em|strokes per minute}}, pressing {{key press|shift}} being counted, too, {{em|in addition}} to the actual letter key.
}}
{{anchor|jam}}
If you are typing {{em|fast}} on a typewriter using type bars – the levers that strike the paper – as opposed to type heads, you may be {{em|stopped}} by one bar holding up another one thus blocking the typing window.
This {{em|jam}} requires manual intervention.
Ensure you pull down the type bar {{em|closest}} to you first so as to not accidentally bend the levers.
If one letter, one type bar persistently does not seem to return, you may have the idea that you needed to lubricate the machine.
However, oiling the segment – the solid arced block with slits holding the type bars – may be {{em|inadvisable}} because it is {{em|hard to clean}};
over time accumulating dust in combination with oil produces icky goo making the type bars {{em|even harder}} to fall back.
{{clear}}
==== capital letters ====
There are {{em|very few}} typewriters that have {{em|two}} sets of keys:
one for majuscules{{noprint|1={{hover info|the typographic term for upper‐case letters}}}} and one for minuscules{{noprint|1={{hover info|the typographic term for lower‐case letters}}}}.
The predominant pattern, however, has only one set of keys.
By default the letter keys produce minuscules.
You need to press either {{key press|shift}} key.
They may be unlabeled.
One is left of the {{key press|Z}}, the other one at the far right in the same row.
Unlike keyboards for electronic devices – including electric typewriters – you do not need to ensure the {{key press|shift}} key is pressed {{em|before}} hitting the letter key.
You can press {{key press|shift}} and the desired letter in sync, {{em|simultaneously}}.
In mechanical typewriters both mechanisms are independent from each other.
{{anchor|caps lock}}
{{noprint|1=[[File: Wagenheber einer Schreibmaschine.webm|thumb|{{key press|caps lock}} in action]]}}<!-- omitted from print because it is a video -->
In modern typography, headings are set with a {{em|larger}} font{{noprint|1={{hover info|set of glyphs following a common design}}}} size and possibly {{em|heavier}} weight{{noprint|1={{hover info|thin and thick lines}}}}.
Some premium typewriters have exchangeable type heads, but more often than not you are “stuck” with a {{em|single}} font size and weight.
If [[#underlining|underlining]] or similar is insufficient, you may want to type a title in all‐caps.
# To facilitate this, typewriters frequently feature a {{key press|caps lock}} key. It is the key immediately above {{em|the left}} {{key press|shift}} key and may also be unlabeled or called {{key press|shift lock}}. If you press {{key press|caps lock}} you will feel a snap. It often moves in unison with all {{key press|shift}} keys.
# Now you can type upper‐case letters {{em|without}} pressing {{key press|shift}}. However, note that digit and punctuation keys also produce {{em|their shifted}} meaning. All‐caps titles may benefit from added horizontal spacing, but only a little bit; one whole space character is already too much, so you need to [[#space out|use the semi‐step mechanism]].
# {{key press|Caps lock}} is a “one‐way” key: To unlock the {{key press|caps lock}} you press either {{key press|shift}} key. Unlike computer keyboards, pressing {{key press|caps lock}} when it is already “activated” will {{em|not reverse}} its effects.
Historically, telegrams were often written in all‐caps, some typewriters even had {{em|only}} upper‐case letters.
An orator may appreciate if his speech is written all‐caps, as he may find it easier to read.
=== mistakes ===
# {{em|Assess}} the situation. A number of mistakes can be corrected by clever use of the typewriter. Let’s say you meant to type capital {{code|E}} but – just for purpose of giving an example – typed a capital {{code|F}}. To remedy the situation, simply go back and type the {{code|E}}. It may not look perfect – in particular if the {{code|F}} dons a serif at its foot – but it works.
# Either flag the mistake – put a small adhesive slip on the original – to postpone it, or {{em|apply}} the correction immediately as described in the subsections.
# If there are too many mistakes on a page, consider taking a break and {{em|starting over}}. There is no satisfaction in a poorly typed page.
==== errors ====
There are correction fluids and tapes available.
# For convenient access of the mistyped part, advance the paper by a couple lines first.
# Now simply cover the incorrectly typed characters.
# If applicable, ensure the paint is dried. Make it a habit and {{em|always}} give it a gentle blow, regardless whether it is really necessary.
# Return to the first elided position and – hopefully – type the {{em|correct}} character(s).
For {{em|bulk corrections}} or if the paper is not in the correction fluid’s or tape’s color (i. e. not white), type the correction on a separate piece of paper, cut it out and glue it in the proper place.
Evidently, this correction needs to be postponed till the page is finished.
If your typewriter is equipped with a lift‐off tape, press the {{key press|⌫}} key and now type {{em|the incorrect}} character as printed.
While the erase function is enabled, the lift‐off tape is raised, not the carbon film.
After having typed one printing character, the erase function is disabled.
The type head stays at its current position so you can immediately type {{em|the correct}} character.
{{helpful hint
| title = {{abbr|CC|carbon copy}} perfection
| hint = The thickness of the copy papers and carbon sheets add up to the roller‐platen diameter. Expect more slippage than usual. Avoid unnecessary scrolling.
}}
If you are making {{abbr|CCs|carbon copies}} and want to correct a mistake with the typewriter, consider advancing the stack by a couple lines and temporarily inserting scrap sheets between every copy and its corresponding carbon paper.
Return to the correct line and the correcting character gets printed on the scrap sheets.
Before continuing writing, remove the scrap sheets.
This ordeal ensures the newly printed characters are perfectly aligned with the line and everything, something hard to achieve if you {{em|reloaded}} the paper.
{{anchor|x-ing}}
A {{em|fast}} method to rectify mistakes is {{em|overprinting}} incorrect parts:
Return the carriage or type head to the position of the first incorrect character.
Repeatedly strike {{key press|x}} or {{key press|/}} while the cursor is above incorrectly typed characters.
As convenient this method is, it is particularly ugly.
However, it is generally an acceptable compromise {{em|for carbon‐copied}} documents, amending each copy individually being awfully time‐consuming and risking damage.
Of course, ugliness is of no concern for {{em|drafts}} or other one‐time use documents.
==== omissions ====
If you {{em|forgot typing {{em|one}} character}}, you can use the semi‐step mechanics.
Many typewriters actually advance by one character cell in two steps.
Return to the character position preceding the insertion position.
Press {{em|and hold}} the space bar.
Now type the character to be inserted.
You may furthermore want to consider to [[#superscript|superscript]] the character.
Temporarily scroll back by one half line.
{{helpful hint
| title = paragraphs
| hint = Paragraph breaks are either indicated by vertical blank space, or by indenting the first line but without vertical space. Do not indent the first line {{em|and}} add vertical blank space at the same time. Outdenting (“negative” indentation) is rarely done with typewriters.
}}
=== tabulation ===
To facilitate the creation of lists and tables or just to quickly indent the first line of a paragraph, some typewriters are equipped with a fast‐forward key.
There are two mechanisms:
* The user can define {{em|tabulator stops}} and pressing <!-- {{key press|TAB}} not listed because it features arrows in both directions --> {{key press|⇥}} jumps to the next tab stop. This gives the users maximum flexibility, yet the mechanics are also pretty heavy. This kind is usually only found in desk typewriters.
* Pressing <!-- {{key press|TAB}} not listed because it dons arrows in both directions --> {{key press|⇥}} advances to the next character position divisible by 10 ± some offset. 10 is the most common value and cannot be changed. This mechanism is sometimes present in “light‐weight” portable typewriters.
Either mechanism is suitable to create {{em|left‐aligned}} itemizations.
Aligning the radix mark (i. e. in English the decimal point) of numbers of varying length still requires manual alignment.
To set and reset tabulator stops, there are either {{em|two}} keys – {{key press|CL}} to clear, {{key press|SET}} to set a tabulator stop – or there is a tabulator control lever or swivel key.
It is labeled with a plus and minus sign, or unlabeled but plus and minus signs are found next to it on the typewriter frame.
* By pushing the control in the direction of the plus sign, you {{em|set}} a tabulator stop {{em|at}} the current position.
* By pushing the control in the direction of the minus sign, you {{em|cancel}} the tabulator stop {{em|at}} the current position (if any is set).
To type an itemization using the tabulation mechanics, proceed as follows:
# Clear all tabulator stops. Some typewriters have a small lever on the carriage to clear all tabulator stops at once. Others require you to return the carriage, press {{em|and hold}} the {{key press|CL}} key or the tabulator control lever in the direction of the minus sign, and press <!-- {{key press|TAB}} not listed because shows arrows in both directions --> {{key press|⇥}}. The carriage scoots to the right‐hand margin canceling all tabulator stops. To verify your success, if you return the carriage and press {{key press|⇥}}, the carriage should glide all the way to the right‐hand [[#margins|margin]] now.
# Advance to the position where the carriage should stop. Push the tabulator control in the direction of the plus sign and release. Repeat this step as required. Because tabulation stops are “stored” as {{em|little}} pins, it may be recommended to keep stops {{em|at most}} 5 to 15 character positions apart. The heavy carriage {{em|smashing}} with all its mass into a tabultion stop pin is quite some stress. Of course you can always simply use one hand and slow down the carriage as you tab.
# Type the itemization and use the {{key press|⇥}} key to advance to the beginning of the next cell. You {{em|can amend}} tabulator stops as you go, e. g. because table cells are merged or split up.
Even without a neat tabulation mechanism, some typewriters feature a “slow” forward {{key press|↠}} key (sounding like “automatic (gun‑)fire”).
With some practice you get used to its pace and can jump forward quickly.
=== unloading paper ===
When you have finished typing up the current page:
# Optionally proofread the page and fix any mistakes while you can. {{em|Reloading}} the page following {{em|exactly}} the same line rhythm is difficult, so this is the last chance to fix any mistakes.
# Engage the paper release. It is usually a lever found on the carriage. This removes pressure from the rollers beneath the roller‐platen. The paper can move freely now.
# Pull the stack of sheets out of the machine and lay them in the working area of your desk.
# Disengage the paper release for subsequent operation.
# If applicable, separate any carbon sheets. Be careful as to not to crinkle them.
# If applicable, make amendments you postponed, e. g. filling in missing [[#characters|characters]].
# If you are super‐organized, you place the finished pages in a tray collecting all pages of one document.
=== end of work ===
# {{anchor|flat spot prevention}} Engage the paper release. Prolonged pressure to the rollers at one point may make them flat. Flat spots convey the paper poorly. On the other hand, this puts stress on the paper release spring so it may wear out and actually decrease the pressure the rollers exercise. Rest assured, springs as well as rollers can be replaced; replacement rollers are now marketed as parts for electronic printers.
# Select the easiest setting for everything else, for instance disengage {{key press|caps lock}}.
# The ink in the ink ribbon is adjusted to not dry out for several months. It is not necessary to remove the ribbon after each use. Moreover, unloading exposes the ribbon to the risk of damage. Unloading the ribbon is essentially [[#loading the ribbon|loading the ribbon]] in reverse. Carbon films and correction tapes can stay indefinitely.
# Dust accumulation is bad. Return the carriage to a center position and cover the typewriter e. g. with a nonfuzzy towel. Portable typewriters intended for travel come with a lid turning the typewriter–lid unit into a suitcase.
== glossary ==
=== procedures ===
; {{anchor|form}} forms
: To fill out forms you need to disable the line advance snap. This allows to freely align the form vertically. Depending on the model you just pull the paper drum knob, turn a wheel or lever. It may be integrated in the line advance length selector and labeled 0 (zero). For form fields of limited length, be sure to consult the ruler to count the characters you can type, maybe necessitating condensing the intended entry.
; {{anchor|hanging punctuation}} hanging punctuation
: Justified composition may produce an unsteady right‐hand margin: commas, hyphens and periods are predominantly white characters. Despite the justified composition the right‐hand margin optically appears to be ragged. The solution is to insert a half‐space within the line.
; {{anchor|hectography}} hectography
: Typewriters that accommodate for dual‐[[#colors|colored]] ribbons usually also have a blank setting. If not remove the ribbon.
; {{anchor|letterspacing}} letterspacing
: Type one space character between every character. That also means to type an intervening space you hit {{key press|space}} {{em|three}} times in a row. See [[#space out|§ space out]] for the favored more sophisticated method.
; {{anchor|dashed lines}} lines, dashed, horizontal, vertical or diagonal
: A vertical dashed line can be achieved by putting straight apostrophes ({{code|'}}) beneath each other. A horizontal dashed line is achieved by repeatedly typing dashes ({{code|-}}). {{em|If}} their angle/orientation is right, diagonal dashed lines can be achieved with the accents {{code|´}} and {{code|`}}. Because of the varying line lengths of these characters and not worth mentioning the spacing between them, diagrams employing dashed lines in multiple directions may look inconsistent.
; {{anchor|dotted lines}} lines, dotted, horizontal, vertical, or diagonal
: For horizontal dotted lines, repeatedly type the period ({{code|.}}). For vertical dotted lines, type period, use the {{key press|backspace}}, advance the line feed by half a line and type a period again. Alternatively hold the spacer and type periods as you advance the roller‐platen. Repeat as appropriate. For a denser vertical line you can also employ the colon ({{code|:}}).
; {{anchor|solid lines}} lines, solid, horizontal or vertical
: Some typewriters have a groove in the typing mask. Place a pen here and move the carriage for horizontal lines (hold the carriage release for that), or {{em|retreat}} the paper for vertical lines ({{em|advancing}} the paper can make it difficult to see where to stop).
; {{anchor|perforation}} perforation
: To perforate thin enough paper – e. g. a reply form beneath a letter body or phone number strips to tear from a bulletin board posting – use [[#dotted lines|dotted lines]] with {{em|even less}} spacing. Due to their small face area it is usually not necessary to apply extra force when typing. Consider selecting the non‐printing stencil mode or removing the ribbon since the ink is usually not necessary.
; {{anchor|space out}} space out
: Many typewriters actually advance in {{em|two}} steps. Upon pressing any printing key (including {{key press|space}}, excluding “dead” keys) the carriage (or type head) advances by one half character width, and once {{em|all}} keys are released the carriage advances {{em|another}} half character width. This semi‐step mechanics can be utilized to add horizontal space, esp. desirable in [[#caps lock|all‐caps titles]]. First, type a character as usual. Next hit {{em|and hold}} the {{key press|spacer}}. This “adds” just {{em|one half}} of space. Now type the next character. Release the {{key press|spacer}} and strike it as usual. Repeat these steps as appropriate. Should this mechanism not supported by your typewriter, resort to [[#letterspacing|letterspacing]]. Letterspacing, however, adds {{em|too much}} horizontal space.
=== markup ===
Markup options are severely limited, yet they are {{em|not}} none.
; {{anchor|bold}} bold
: To some degree bold text can be produced by typing the same letters again. Use the {{key press|backspace}} to return to the starting position. On the other hand this may increase the likelihood of punching through the paper (e. g. creating holes). You can always simply manually retrace the character with a pen after you have finished typing the page.
; {{anchor|colors}} colors
: There are dual‐colored ribbons and typewriters that allow selecting between the top and bottom portion of the ribbon. Note that carbon copies remain monochrome regardless.
; {{anchor|double underlining}} double underlining
: Advance either one whole or just one half line. Use the equal <!-- no link to [[#equal sign]] because it would be awfully inconvenient --> sign {{code|1==}} to produce double underlines. Hit and hold {{code|1==}}, depress the space bar and hit {{code|1==}} again, release both keys and repeat as appropriate. If you have advanced {{em|just one half line}}, you may want to skip underlining for descenders ({{code|g}}, {{code|j}}, {{code|p}}, {{code|q}}, {{code|y}}, and possibly parentheses, {{code|f}} and the capital {{code|Q}}, too).
: Alternatively, use the same method as [[#underlining|underlining]] twice, with vertical displacement applied to the second time. The vertical distance between the underlines may be considered too wide, though.
; {{anchor|overlining}} overlining
: See [[#underlining|underlining]] except that the underline is produced for the preceding line and you may want to skip any inch signs ({{code|"}}). Keep in mind that overlining may be confused for underlining.
; {{anchor|strike|strikethrough}} strikethrough
: The underscore used for [[#underlining|underlining]] cannot necessarily be aligned properly. Instead use the hyphen‐dash. However, the dash is too short, you need to hit and hold the dash, then hold the space bar and hit the dash {{em|again}}. Now release both keys and repeat as appropriate.
; {{anchor|subscript}} subscript
: Advance the paper by half a line. This requires turning the roller‐drum manually; the lever advances the paper by at least one whole line and you may accidentally move the carriage, too. When you are done, turn the roller‐platen back by half a line. In {{em|proper}} typesetting the [[#typeface|font]] size has to be reduced, too, but this cannot be achieved with a typewriter.
; {{anchor|superscript}} superscript
: See [[#subscript|§ subscript]], taking into consideration that you roll back the paper by half a line {{em|upward}}.
; {{anchor|typeface}} typefaces
: There are typewriters that have replaceable type heads; spheres or discs are common forms. In other typewriters the typeface is an integral part. If the typeface conveys meaning – such as variable names in mathematics and sciences – consider writing them with a pen by hand.
; {{anchor|underlining}} underlining
: Many typewriters feature an underscore character ({{code|_}}). This character is wide enough so repeately striking it creates one {{em|continuous}} underline. You may want to consider skipping descenders ({{code|g}}, {{code|j}}, {{code|p}}, {{code|q}}, {{code|y}}, and possibly parentheses, {{code|f}} and the capital {{code|Q}}, too). See also [[#double underlining|double underlining]] and [[#solid lines|solid lines]].
; {{anchor|zig‐zag underlining}} underlining, zig‐zag
: A zig‐zag underline may be achieved by stringing [[#caret|carets ({{code|^}})]] together in the next line at a semi‐step.
{{helpful hint
| title = symbol curiosity
| hint = In {{abbr|Nazi|National Socialist}} Germany typewriters with dedicated “lightning‐bolt” {{abbr|SS|Schutzstaffel}} types were in use. Few even featured a {{key press|࿕}} key (rotated by π∕4).
}}
=== characters ===
Through clever combination and positioning, you can type more characters than 40‐something keys/types provide, sort of.
These are all {{em|workarounds}} and do {{em|not}} meet the quality standards in {{em|professional}} typography.
{{CompactTOC8
| name = character name
| center = yes
| a = [[#CHARACTER-A|A]]
| b = [[#CHARACTER-B|B]]
| c = [[#CHARACTER-C|C]]
| d = [[#CHARACTER-D|D]]
| e = [[#CHARACTER-E|E]]
| f = [[#CHARACTER-F|F]]
| g = G
| h = [[#CHARACTER-H|H]]
| i = [[#CHARACTER-I|I]]
| j = J
| k = K
| l = [[#CHARACTER-L|L]]
| m = [[#CHARACTER-M|M]]
| n = N
| o = [[#CHARACTER-O|O]]
| p = [[#CHARACTER-P|P]]
| q = [[#CHARACTER-Q|Q]]
| r = [[#CHARACTER-R|R]]
| s = [[#CHARACTER-S|S]]
| t = [[#CHARACTER-T|T]]
| u = [[#CHARACTER-U|U]]
| v = V
| w = W
| x = X
| y = Y
| z = [[#CHARACTER-Z|Z]]
}}
; {{anchor|CHARACTER-A}} {{anchor|á}} á
: Hit {{code|´}}. This is usually a “dead key”, that means it does not advance the carriage. Now type {{code|a}}. Evidently, this opposite the customary writing order: using a pen the base letter is written first and accents are added second.
; {{anchor|â}} â
: Hit {{code|´}} and {{code|`}}; this is usually one “dead key”, that means it does not advance the carriage or type head. Now type {{code|a}}.
; {{anchor|æ}} æ
: Hit and hold {{code|a}}, press the space bar and release {{code|a}} and type an {{code|e}}. Note that the majuscule Æ cannot be produced in this fashion.
; {{anchor|eight-spoked asterisk|✳}} ✳
: With a sans‐serif{{noprint|1={{hover info|without serifs (serifs are additional lines, e. g. horizontal lines added to a capital eye {{code|I}})}}}} typeface you can superimpose a {{code|+}} and {{code|x}}. It looks more {{em|rectangular}} than round though.
; {{anchor|at|@}} @
: {{em|At}} is conventionally substituted by an {{code|a}} overlaid with a slash {{code|/}}. Obviously without the arc it does not look anything like the {{code|@}} sign. You may want to consider spelling out the word {{em|at}} instead.
; {{anchor|CHARACTER-B}} {{anchor|equal sign}} =
: Some models lack a proper equal sign. Type a dash {{code|-}}, use the {{key press|backspace}}, now firmly hold the roller‐platen knob and advance the paper {{em|just}} a {{em|tiny}} bit ({{em|before}} it snaps to the next position), and type a dash again.
; {{anchor|CHARACTER-C}} {{anchor|ç}} ç
: It may not produce a satisfactory result but you can try combining {{code|c}} with a comma ({{code|,}}).
; {{anchor|©}} ©
: The copyright sign is conventionally approximated as [[wikt:(c)|{{code|(c)}}]].
; {{anchor|care of|℅}} ℅
: Reverse the paper by one half line, hit and hold {{code|c}}, press the space bar, advance the paper by one half line, type a {{code|/}}, release all keys and type one {{code|o}}.
; {{anchor|caret}} ‸
: Advance to the next line, hit {{code|´}} and {{code|`}}; this is usually one “dead key”, that means it does not advance the carriage.
: Alternatively, finish writing the page, load the paper again upside‐down, disable line snap, and after careful adjustment type a {{code|v}}.
; {{anchor|cent}} ¢
: The cent sign is substituted by overlaying the minuscule {{code|c}} with a forward slash {{code|/}}. The {{em|proper}} glyph has a {{em|vertical}} line sticking out by the same amount at the top and bottom. Considering spelling out the word {{em|cent}} if the reader may not recognize the substitution as {{code|¢}}.
; {{anchor|commercial minus sign|٪|⁒}} ⁒, ٪
: Roll back by one half line, hit and hold period {{code|.}}, depress the space bar and release the period, advance the paper by one half line, type a slash {{code|/}}, release all keys and type one final period {{code|.}}.
; {{anchor|CHARACTER-D}} {{anchor|đ}} đ
: The version with a stroke through the (upper) stem can be achieved this way: Hit and hold {{code|d}}, press the space bar, release {{code|d}}, and type a {{code|t}}.
; {{anchor|Đ}} Đ
: Hit and hold dash ({{code|-}}), press and hold the spacer, release the dash key, and type a capital {{code|D}}.
; {{anchor|degree|°}} °
: The degree sign is approximated by a [[#superscript|superscript]] {{code|o}} (minuscule oh). A {{em|perfectionist}} may hold and turn the roller‐platen knob {{em|slightly}} backward.
; {{anchor|division sign|÷}} ÷
: It may not produce satisfactory results, but try to overlay a colon ({{code|:}}) with any of the horizontal lines.
; {{anchor|dollar sign|$}} $
: A single stroke dollar character can be substituted by overlaying the {{code|S}} with a slash ({{code|/}}).
; {{anchor|double dagger|‡}} ‡
: Type a plus {{code|+}}, hit {{key press|backspace}}, roll back the paper by half a line and type {{code|+}} again. There may be a small gap between the plus signs. Advance the paper by half a line to return to the baseline.
; {{anchor|CHARACTER-E}} {{anchor|emdash}} em dash
: An em dash ({{code|—}}) can be approximated by hitting and holding the hyphen‐dash key, pressing the space bar and then hitting the dash key again. Release both keys and hit the dash key one more time. If efficiency is more important, simply striking {{code|-}} three times will do.
; {{anchor|endash}} en dash
: An en dash ({{code|–}}) can be approximated by hitting and holding the hyphen‐dash key, pressing the space bar and then hitting the dash key again. Note that a parenthetical en dash usually needs to be surrounded by space.
: Alternatively, if available and wide enough, consider the [[#superscript|raised]] underscore ({{code|_}}) the en dash character.
: If efficiency matters, simply type {{code|-}} twice {{em|without}} going great lengths at making the dashes overlap.
; {{anchor|exclamation point}} !
: If the straight apostrophe {{em|is long enough}}, you can overlay {{code|'}} with a period ({{code|.}}).
; {{anchor|CHARACTER-F}} {{anchor|ff|ff}} ff
: Hit and hold {{code|f}}, press space, and type {{code|f}} again.
; {{anchor|ffi|ffi}} ffi
: Hit and hold {{code|f}}, press space, type {{code|f}} again, release both keys and type an {{code|i}}.
; {{anchor|ffl|ffl}} ffl
: Hit and hold {{code|f}}, press space, type {{code|f}} again, release both keys and type an {{code|l}}.
; {{anchor|fi|fi}} fi
: Hit and hold {{code|f}}, press space, release {{code|f}} and type an {{code|i}}.
; {{anchor|fl|fl}} fl
: Hit and hold {{code|f}}, press space, release {{code|f}} and type an {{code|l}}.
; {{anchor|CHARACTER-H}} {{anchor|hash}} #
: See [[#octothorp|octothorp]].
; {{anchor|CHARACTER-I}} {{anchor|infinity|∞}} ∞
: With a sans‐serif typeface you may get an acceptable result by combining {{code|o}}, {{code|x}}, {{code|o}} at a semi step width.
; {{anchor|interrobang|‽}} ‽
: By overlaying {{code|!}} and {{code|?}} you get {{code|‽}}.
; {{anchor|CHARACTER-L}} {{anchor|ł|barred l}} ł
: It does not look like the proper character, but overlay {{code|l}} with a slash.
; {{anchor|Ł|barred L}} Ł
: It does not look like the proper character, but overlay {{code|L}} with a slash.
; {{anchor|CHARACTER-M}} {{anchor|minus|−}} minus
: A minus sign ({{code|−}}) is rendered using a hyphen‐dash ({{code|-}}) or an [[#en dash|en dash]]. The important thing is that the line is at the same height as the horizontal in {{code|+}}. See also [[#commercial minus sign|⁒]].
; {{anchor|multiplication|times|×}} multiplication
: The multiplication cross ({{code|×}}) is rendered using the regular character {{code|x}}. This works best with typefaces without serifs. Of course an {{code|x}} may be confused for {{em|the variable}} {{code|x}}. Alternatively use a multiplication dot by typing a period ({{code|.}}); a [[#superscript|superscript]] period does not work, though, hence the period stays at the baseline.
; {{anchor|CHARACTER-O}} {{anchor|Ø|∅︀}} Ø, ∅︀
: Type capital {{code|O}}, use the {{key press|backspace}} to return to the previous position and type the forward slash {{code|/}}. The corresponding minuscule ø, however, cannot be produced this way, at least not in a satisfactory manner.
; {{anchor|octothorp}} #
: Press and hold {{code|1==}}, press the space bar and type {{code|1==}} again. {{key press|Backspace}} and hit and hold {{code|/}}, press the space bar and type {{code|/}} again.
; {{anchor|œ}} œ
: Hit and hold {{code|o}}, press the space bar and release {{code|o}} and type an {{code|e}}.
; {{anchor|Œ}} Œ
: Same procedure as [[#œ|œ]] just with capital letters.
; {{anchor|one}} one
: The digit {{code|1}} may be missing. Type a minuscule ell ({{code|l}}) instead. In Roman numerals a {{em|one}} is still typed as a capital eye ({{code|I}}).
; {{anchor|CHARACTER-P}} {{anchor|℗}} ℗
: The sound recording copyright sign is conventionally approximated as {{mono|(P)}}.
; {{anchor|per cent}} %
: The per cent sign is conventionally substituted with {{mono|o/o}}.
; {{anchor|percent}} ‰
: The per mille sign is conventionally substituted with {{mono|o/oo}}.
; {{anchor|plus}} +
: If the straight apostrophe ({{code|'}}) is long enough, place two of them above each other combined with a dash ({{code|-}}).
: A makeshift plus is achieved by overlaying the dash ({{code|-}}) with a slash ({{code|/}}). This is more acceptable in combination with italic type faces.
; {{anchor|pound sign|£}} £
: The pound sign is substituted by an {{code|L}} overlaid with a dash ({{code|-}}). In some typefaces it may look like an {{code|E}} with its top bar missing, though.
; {{anchor|CHARACTER-Q}} {{anchor|quotation marks}} quotation marks
: Virtually all typewriters lack proper quotation marks ({{abbr|AE|American English}}: “…”; {{abbr|BE|British English}}: ‘…’). The inch sign ({{code|"}}) or straight apostrophe ({{code|'}}) are used instead. Some languages use lowered quotation marks ({{lang|de|„Abc ‚def‘ ghi“|italic=unset}}): advancing by one half line works, but – beside being inconvenient – it may look just ugly, so the English quotations are used nonetheless.
; {{anchor|CHARACTER-R}} {{anchor|ℝ}} ℝ
: Hit and hold capital {{code|I}}, depress the space bar and release the {{code|I}} key, now type a capital {{code|R}}. However, on some typewriters the stems of {{code|I}} and {{code|R}} may be exactly on top of each other, so you type {{mono|IR}} with regular spacing instead. Note, for {{em|consistent}} style – if other similar characters such as ℚ are used in a document – consider writing this character manually.
; {{anchor|response}} ℟
: Hit and hold capital {{code|R}}, depress the space bar and release the {{code|R}} key, and now type a slash ({{code|/}}).
; {{anchor|CHARACTER-S}} {{anchor|semicolon|;}} ;
: A semicolon can be produced by overlaying the comma {{code|,}} and colon {{code|:}}. Type a comma, use the {{key press|backspace}}, and type the colon.
; {{anchor|st}} st
: Combine {{code|s}} and {{code|t}} a half step apart.
; {{anchor|star}} ✶
: Something {{em|resembling}} a six‐pointed star is achieved by overprinting capital {{code|A}} with a {{code|v}}. See also [[#eight-spoked asterisk|eight‐spoked asterisk]].
; {{anchor|CHARACTER-T}} {{anchor|thorn|þ}} þ
: The stems may not align perfectly, but try overlaying {{code|b}} and {{code|p}}.
; {{anchor|CHARACTER-U}} {{anchor|unequal}} ≠
: Overlay [[#equal sign|{{code|1==}}]] with {{code|/}}.
; {{anchor|upward arrow from bar|↥}} ↥
: This is not necessarily suitable for all typefaces: Hit {{code|´}} and {{code|`}}; this is usually one “dead key”, that means it does not advance the carriage. Now type an ell ({{code|l}}).
; {{anchor|CHARACTER-Z}} {{anchor|ℤ}} ℤ
: Type overlapping {{code|Z}}’s.
; {{anchor|zero}} zero
: Many typewriters do not have a dedicated digit zero key. The zero is produced by typing a capital Oh instead. This allows the manufacturer to provide another character. For a slashed zero, see [[#∅︀|∅︀]].
If a character cannot be printed, you need to do it by hand.
In order to not accidentally miss any unprinted characters, there are small adhesive flags you can stick on the paper.
== standards ==
{{wikipedia|list of style guides}}
This section showcases standard‐compliant writing emphasizing the proper use of the typewriter.
{{editor note|This section can be extended: indictment, screenplay, academic essays, as long as it is (or was) formally standardized it fits.}}
{{wikibook|Professional and Technical Writing/Business Communications/Letters}}
=== DIN‐Norm 5008 business letter ===
Among writing instructions, the {{lang|de|{{abbr|DIN|Deutsches Institut für Normung}}‐Norm 5008|italic=unset}} (German Institute for Standardization Standard 5008) defines the page layout.
The page layout is tailored to a {{lang|de|{{abbr|DIN|Deutsches Institut für Normung}} A4|italic=unset}} sheet;
this is 210 {{abbr|mm|millimeters}} × 297 {{abbr|mm|millimeters}}.
There is one line reserved for a return address.
Because the line length is 75 {{abbr|mm|millimeters}}, printing a return address in practice necessitates a smaller [[#typeface|font]], hence it is {{em|not}} written {{em|with}} a typewriter.
At 6 {{abbr|lpi|lines per inch}} there are exactly two blank lines befween the information and text frame.
Paragraphs are separated by one blank line.
The text width is 165 {{abbr|mm|millimeters}}
At 10 {{abbr|cpi|characters per inch}} you can fit 64.96 characters.
If you want to fold the letter, you have a {{em|purely esthetic<!-- alt. US spelling, see [[wikt:esthetic]] -->}} problem:
a fold across the text (and {{abbr|btw|by the way}} the signature) is ugly.
Folds are supposed to run {{em|between}} any two lines.
However, the middle segment of a folded {{lang|de|{{abbr|DIN|Deutsches Institut für Normung}}‐Norm 5008|italic=unset}} business letter page has a height of 105 mm.
At 6 {{abbr|lpi|lines per inch}} it is not possible to find a configuration ensuring the folds are {{em|between}} the lines.
Therefore, {{em|esthetically tolerable}} business letters conforming to {{lang|de|{{abbr|DIN|Deutsches Institut für Normung}}‐Norm 5008|italic=unset}} are {{em|only one page}} long.
To economize on space, only form A is presented.
; {{anchor|5008 Cella}} Robotron S 1001 Cella
:# [[Image: 20260128loremIpsumBusinessLetterFollowingDeutschesInstitutFuerNormungStandard5008typeAtypewrittenWithRobotronCella.png|thumb|{{abbr|POC|proof of concept}}: A typewritten business letter.]] Set the [[#margins|margins]]. The left‐hand margin is set at 11, the right‐hand margin at 74. There is space for 64 characters.
:# Load the paper. The left‐hand edge should be at 0.5 characters on the paper bail. For that use the (white on black) margin ruler. The left‐hand edge should be at the 1 tick. Prefer to slightly cover the mark. Before disengaging the paper release, flip down the paper support and pull the paper to the back, away from you. Both ends of the paper should lay on top of each other.
:# Now scroll back the paper so its top edge {{em|is}} barely visible through the ridge in the typing mask. Possibly you need to repeat the previous step.
:# Advance so you have 7 blank lines. The cursor is now in the return address line. You have 29 character positions at your disposal. The next 9 lines are for the actual inside address.
:# Advance by one line. This line and the next two lines are meant for postal instructions. It is also the first line of the data frame. To get to the data frame, press {{key press|⇥}} four times and depress and hold the spacer. The cursor is at 49. Start typing from here up to 29 characters. The data frame consists of exactly 12 lines.
:# After the data frame leave (exactly) two blank lines. For the letter body you have 48 lines of vertical space left, the descenders{{noprint|1={{hover info|lines that extend below the baseline (the line characters “sit” on)}}}} of the 48{{sup|th}} line already being clipped if you can even manage to keep the paper in place. Avoid using the final 6 lines (1 ") just in general.
:# For the signature reserve (at least) three blank lines.
:# For right‐aligned double‐digit page numbering of the form {{mono|Page 12 of 34}}, press {{key press|⇥}} five times and {{key press|space}} three times. Press {{key press|space}} another two times for single‐digit page numbering.
== references ==
{{to do|{{em|Possibly}} generic references, data lookup tables.}}
== further reading ==
{{wikibook|Adventist Youth Honors Answer Book/Vocational/Typewriting}}
* {{PDFlink|[[:File: Practical typewriting - by the all-finger method, which leads to operation by touch (IA practicaltypewri00torr).pdf|Practical typewriting]]|12.26 {{abbr|MiB|mebibyte}}}}
* {{PDFlink|[[:File: New practical typewriting. (IA newpracticaltype00unse).pdf|New practical typewriting]]|16.38 {{abbr|MiB|mebibyte}}}}
* {{PDFlink|[[:File: A scientific course in typewriting (IA scientificcourse00depe).pdf|A scientific course in typewriting]]|5.1 {{abbr|MiB|mebibyte}}}}
<!--
== sources ==
<ref>
</ref>
-->
{{alphabetical}}
{{one-page book}}
{{shelves|trades}}<!-- “typist” as (virtually extinct) profession; irrelevant to secretaries nowadays -->
{{status|0%}}
{{subjects|communication|written communication}}
<!-- vim: set filetype=mediawiki: -->
mze831fqh42ethlz51sdxtjadzsb8br
Chinese (Mandarin)/Lesson 13
0
484044
4641215
2026-06-26T06:29:58Z
一隻北極熊
3609960
Created page with "= Lesson 13: Taiwan / 第十三課:我生病了 = {| width="80%" ! Traditional Characters ! Simplified Characters |- | 今天早上,我的頭痛痛的。 <br /> 我的臉熱熱的,紅紅的。我發燒了。<br /> 我要去看醫生。<br /> 醫生說:「你感冒了,要多喝水。」<br /> 「要多休息,病才會好。」。<br /> 吃了藥,睡了覺。<br /> 現在,我覺得好多了。<br /> | 今天早上,我的头痛痛的。<br /> 我的脸热..."
4641215
wikitext
text/x-wiki
= Lesson 13: Taiwan / 第十三課:我生病了 =
{| width="80%"
! Traditional Characters
! Simplified Characters
|-
|
今天早上,我的頭痛痛的。 <br />
我的臉熱熱的,紅紅的。我發燒了。<br />
我要去看醫生。<br />
醫生說:「你感冒了,要多喝水。」<br />
「要多休息,病才會好。」。<br />
吃了藥,睡了覺。<br />
現在,我覺得好多了。<br />
|
今天早上,我的头痛痛的。<br />
我的脸热热的,红红的。我发烧了。<br />
我要去看医生<br />
医生说:「你感冒了,要多喝水。」<br />
「要多休息,病才会好。」。<br />
吃了药,睡了觉。<br />
现在,我觉得好多了。<br />
|-
! Pīnyīn
! English
|-
|
Jīntiān zǎoshang, wǒ de tóutòng tòng de.<br />
Wǒ de liǎn rè rè de, hóng hóng de. Wǒ fāshāole.<br />
Wǒ yào qù kàn yīshēng.<br />
Yīshēng shuō:'Nǐ gǎnmàole, yào duō hē shuǐ.'<br />
'Yào duō xiūxí, bìng cái huì hǎo.'<br />
Chīle yào, Shuìlejiào.<br />
Xiànzài, wǒ juédé hǎoduōle.<br />
|
My head hurt this morning. <br />
My face felt hot and flushed; I had a fever.<br />
I went to see the doctor.<br />
The doctor said, "You have a cold; you need to drink plenty of water."<br />
"You need to get plenty of rest to recover."
I took my medicine and got some sleep.<br />
Now, I feel much better.
|}
==Vocabulary==
{|class="wikitable"
|-
! Trad. Chinese !! Simp. Chinese !! Pinyin !! English
|-
| 生病 || = || shēngbìng || Sick
|-
| 醫生 || 医生 || yīshēng || Doctor
|-
| 休息 || = || xiūxí || Rest
|-
| 吃藥 || 吃药 || chīyào || Take medicine
|-
| 發燒 || 发烧 || fāshāo || Fever
|-
| 睡覺 || 睡觉 || shuìjiào || Sleep
|}
; Note:
*'''=''' means there are no differences in characters.
enc61bexp2or0q5vga0ynxp1b82oyoe
4641216
4641215
2026-06-26T06:44:13Z
一隻北極熊
3609960
4641216
wikitext
text/x-wiki
= Lesson 13: Taiwan / 第十三課:我生病了 =
{| width="80%"
! Traditional Characters
! Simplified Characters
|-
|
今天早上,我的頭痛痛的。 <br />
我的臉熱熱的,紅紅的。我發燒了。<br />
我要去看醫生。<br />
醫生說:「你感冒了,要多喝水。」<br />
「要多休息,病才會好。」。<br />
吃了藥,睡了覺。<br />
現在,我覺得好多了。<br />
|
今天早上,我的头痛痛的。<br />
我的脸热热的,红红的。我发烧了。<br />
我要去看医生<br />
医生说:「你感冒了,要多喝水。」<br />
「要多休息,病才会好。」。<br />
吃了药,睡了觉。<br />
现在,我觉得好多了。<br />
|-
! Pīnyīn
! English
|-
|
Jīntiān zǎoshang, wǒ de tóutòng tòng de.<br />
Wǒ de liǎn rè rè de, hóng hóng de. Wǒ fāshāole.<br />
Wǒ yào qù kàn yīshēng.<br />
Yīshēng shuō:'Nǐ gǎnmàole, yào duō hē shuǐ.'<br />
'Yào duō xiūxí, bìng cái huì hǎo.'<br />
Chīle yào, Shuìlejiào.<br />
Xiànzài, wǒ juédé hǎoduōle.<br />
|
My head hurt this morning. <br />
My face felt hot and flushed; I had a fever.<br />
I went to see the doctor.<br />
The doctor said, "You have a cold; you need to drink plenty of water."<br />
"You need to get plenty of rest to recover."
I took my medicine and got some sleep.<br />
Now, I feel much better.
|}
==Vocabulary==
{|class="wikitable"
|-
! Trad. Chinese !! Simp. Chinese !! Pinyin !! English
|-
| 生病 || = || shēngbìng || Sick
|-
| 醫生 || 医生 || yīshēng || Doctor
|-
| 休息 || = || xiūxí || Rest
|-
| 吃藥 || 吃药 || chīyào || Take medicine
|-
| 發燒 || 发烧 || fāshāo || Fever
|-
| 睡覺 || 睡觉 || shuìjiào || Sleep
|}
; Note:
*'''=''' means there are no differences in characters.
===Chinese Character===
{|class="wikitable collapsible collapsed" style="text-align:center"
|-
! Traditional !! Simplified
|-
| <font size=8>頭</font> || <font size=8>头</font>
|-
| <font size=8>臉</font> || <font size=8>脸</font>
|-
| <font size=8>醫</font> || <font size=8>医</font>
|-
| <font size=8>藥</font> || <font size=8>药</font>
|-
| <font size=8>病</font> || -
|-
| <font size=8>痛</font> || -
|-
| <font size=8>熱</font> || -
|-
| <font size=8>感</font> || -
|-
| <font size=8>冒</font> || -
|-
| <font size=8>喝</font> || -
|-
| <font size=8>睡</font> || -
|}
8p0vj15844riv0cx67mwcgrj71o5fhi
4641217
4641216
2026-06-26T06:45:38Z
一隻北極熊
3609960
4641217
wikitext
text/x-wiki
= Lesson 13: Taiwan / 第十三課:我生病了 =
{| width="80%"
! Traditional Characters
! Simplified Characters
|-
|
今天早上,我的頭痛痛的。 <br />
我的臉熱熱的,紅紅的。我發燒了。<br />
我要去看醫生。<br />
醫生說:「你感冒了,要多喝水。」<br />
「要多休息,病才會好。」。<br />
吃了藥,睡了覺。<br />
現在,我覺得好多了。<br />
|
今天早上,我的头痛痛的。<br />
我的脸热热的,红红的。我发烧了。<br />
我要去看医生<br />
医生说:「你感冒了,要多喝水。」<br />
「要多休息,病才会好。」。<br />
吃了药,睡了觉。<br />
现在,我觉得好多了。<br />
|-
! Pīnyīn
! English
|-
|
Jīntiān zǎoshang, wǒ de tóutòng tòng de.<br />
Wǒ de liǎn rè rè de, hóng hóng de. Wǒ fāshāole.<br />
Wǒ yào qù kàn yīshēng.<br />
Yīshēng shuō:'Nǐ gǎnmàole, yào duō hē shuǐ.'<br />
'Yào duō xiūxí, bìng cái huì hǎo.'<br />
Chīle yào, Shuìlejiào.<br />
Xiànzài, wǒ juédé hǎoduōle.<br />
|
My head hurt this morning. <br />
My face felt hot and flushed; I had a fever.<br />
I went to see the doctor.<br />
The doctor said, "You have a cold; you need to drink plenty of water."<br />
"You need to get plenty of rest to recover."
I took my medicine and got some sleep.<br />
Now, I feel much better.
|}
==Vocabulary==
{|class="wikitable"
|-
! Trad. Chinese !! Simp. Chinese !! Pinyin !! English
|-
| 生病 || = || shēngbìng || Sick
|-
| 醫生 || 医生 || yīshēng || Doctor
|-
| 休息 || =<ref>'''=''' means there are no differences in characters.</ref> || xiūxí || Rest
|-
| 吃藥 || 吃药 || chīyào || Take medicine
|-
| 發燒 || 发烧 || fāshāo || Fever
|-
| 睡覺 || 睡觉 || shuìjiào || Sleep
|}
===Chinese Character===
{|class="wikitable collapsible collapsed" style="text-align:center"
|-
! Traditional !! Simplified
|-
| <font size=8>頭</font> || <font size=8>头</font>
|-
| <font size=8>臉</font> || <font size=8>脸</font>
|-
| <font size=8>醫</font> || <font size=8>医</font>
|-
| <font size=8>藥</font> || <font size=8>药</font>
|-
| <font size=8>病</font> || =
|-
| <font size=8>痛</font> || =
|-
| <font size=8>熱</font> || =
|-
| <font size=8>感</font> || =
|-
| <font size=8>冒</font> || =
|-
| <font size=8>喝</font> || =
|-
| <font size=8>睡</font> || =
|}
==Note==
l9m78jrtngh2dyswlcj5ehlat19la9i
4641218
4641217
2026-06-26T06:46:06Z
一隻北極熊
3609960
4641218
wikitext
text/x-wiki
= Lesson 13: Taiwan / 第十三課:我生病了 =
{| width="80%"
! Traditional Characters
! Simplified Characters
|-
|
今天早上,我的頭痛痛的。 <br />
我的臉熱熱的,紅紅的。我發燒了。<br />
我要去看醫生。<br />
醫生說:「你感冒了,要多喝水。」<br />
「要多休息,病才會好。」。<br />
吃了藥,睡了覺。<br />
現在,我覺得好多了。<br />
|
今天早上,我的头痛痛的。<br />
我的脸热热的,红红的。我发烧了。<br />
我要去看医生<br />
医生说:「你感冒了,要多喝水。」<br />
「要多休息,病才会好。」。<br />
吃了药,睡了觉。<br />
现在,我觉得好多了。<br />
|-
! Pīnyīn
! English
|-
|
Jīntiān zǎoshang, wǒ de tóutòng tòng de.<br />
Wǒ de liǎn rè rè de, hóng hóng de. Wǒ fāshāole.<br />
Wǒ yào qù kàn yīshēng.<br />
Yīshēng shuō:'Nǐ gǎnmàole, yào duō hē shuǐ.'<br />
'Yào duō xiūxí, bìng cái huì hǎo.'<br />
Chīle yào, Shuìlejiào.<br />
Xiànzài, wǒ juédé hǎoduōle.<br />
|
My head hurt this morning. <br />
My face felt hot and flushed; I had a fever.<br />
I went to see the doctor.<br />
The doctor said, "You have a cold; you need to drink plenty of water."<br />
"You need to get plenty of rest to recover."
I took my medicine and got some sleep.<br />
Now, I feel much better.
|}
==Vocabulary==
{|class="wikitable"
|-
! Trad. Chinese !! Simp. Chinese !! Pinyin !! English
|-
| 生病 || = || shēngbìng || Sick
|-
| 醫生 || 医生 || yīshēng || Doctor
|-
| 休息 || =<ref>'''=''' means there are no differences in characters.</ref> || xiūxí || Rest
|-
| 吃藥 || 吃药 || chīyào || Take medicine
|-
| 發燒 || 发烧 || fāshāo || Fever
|-
| 睡覺 || 睡觉 || shuìjiào || Sleep
|}
===Chinese Character===
{|class="wikitable" style="text-align:center"
|-
! Traditional !! Simplified
|-
| <font size=8>頭</font> || <font size=8>头</font>
|-
| <font size=8>臉</font> || <font size=8>脸</font>
|-
| <font size=8>醫</font> || <font size=8>医</font>
|-
| <font size=8>藥</font> || <font size=8>药</font>
|-
| <font size=8>病</font> || =
|-
| <font size=8>痛</font> || =
|-
| <font size=8>熱</font> || =
|-
| <font size=8>感</font> || =
|-
| <font size=8>冒</font> || =
|-
| <font size=8>喝</font> || =
|-
| <font size=8>睡</font> || =
|}
==Note==
rm1xr8mb03wf9ee1fq6hggqb87zlue3
4641220
4641218
2026-06-26T06:47:22Z
一隻北極熊
3609960
4641220
wikitext
text/x-wiki
= Lesson 13: I am sick / 第十三課:我生病了 =
{| width="80%"
! Traditional Characters
! Simplified Characters
|-
|
今天早上,我的頭痛痛的。 <br />
我的臉熱熱的,紅紅的。我發燒了。<br />
我要去看醫生。<br />
醫生說:「你感冒了,要多喝水。」<br />
「要多休息,病才會好。」。<br />
吃了藥,睡了覺。<br />
現在,我覺得好多了。<br />
|
今天早上,我的头痛痛的。<br />
我的脸热热的,红红的。我发烧了。<br />
我要去看医生<br />
医生说:「你感冒了,要多喝水。」<br />
「要多休息,病才会好。」。<br />
吃了药,睡了觉。<br />
现在,我觉得好多了。<br />
|-
! Pīnyīn
! English
|-
|
Jīntiān zǎoshang, wǒ de tóutòng tòng de.<br />
Wǒ de liǎn rè rè de, hóng hóng de. Wǒ fāshāole.<br />
Wǒ yào qù kàn yīshēng.<br />
Yīshēng shuō:'Nǐ gǎnmàole, yào duō hē shuǐ.'<br />
'Yào duō xiūxí, bìng cái huì hǎo.'<br />
Chīle yào, Shuìlejiào.<br />
Xiànzài, wǒ juédé hǎoduōle.<br />
|
My head hurt this morning. <br />
My face felt hot and flushed; I had a fever.<br />
I went to see the doctor.<br />
The doctor said, "You have a cold; you need to drink plenty of water."<br />
"You need to get plenty of rest to recover."
I took my medicine and got some sleep.<br />
Now, I feel much better.
|}
==Vocabulary==
{|class="wikitable"
|-
! Trad. Chinese !! Simp. Chinese !! Pinyin !! English
|-
| 生病 || = || shēngbìng || Sick
|-
| 醫生 || 医生 || yīshēng || Doctor
|-
| 休息 || =<ref>'''=''' means there are no differences in characters.</ref> || xiūxí || Rest
|-
| 吃藥 || 吃药 || chīyào || Take medicine
|-
| 發燒 || 发烧 || fāshāo || Fever
|-
| 睡覺 || 睡觉 || shuìjiào || Sleep
|}
===Chinese Character===
{|class="wikitable" style="text-align:center"
|-
! Traditional !! Simplified
|-
| <font size=8>頭</font> || <font size=8>头</font>
|-
| <font size=8>臉</font> || <font size=8>脸</font>
|-
| <font size=8>醫</font> || <font size=8>医</font>
|-
| <font size=8>藥</font> || <font size=8>药</font>
|-
| <font size=8>病</font> || =
|-
| <font size=8>痛</font> || =
|-
| <font size=8>熱</font> || =
|-
| <font size=8>感</font> || =
|-
| <font size=8>冒</font> || =
|-
| <font size=8>喝</font> || =
|-
| <font size=8>睡</font> || =
|}
==Note==
gkas6tgryhf8p5bdu1zwdna1f7x8ugh
User:一隻北極熊
2
484045
4641222
2026-06-26T07:12:19Z
一隻北極熊
3609960
Created page with "Hi, I am a student from Taiwan. ==My Works== *[[Chinese (Mandarin)/Lesson 13]]"
4641222
wikitext
text/x-wiki
Hi, I am a student from Taiwan.
==My Works==
*[[Chinese (Mandarin)/Lesson 13]]
m5rxz9p1jwldb3h2zwra8osscquhhgh