mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2026-01-06 06:10:18 +01:00
nouveau: new card family for old card designs.
This commit is contained in:
parent
c6f175cbea
commit
641c9a2ecc
1 changed files with 4 additions and 1 deletions
|
|
@ -498,7 +498,10 @@ int nouveau_load(struct drm_device *dev, unsigned long flags)
|
|||
|
||||
iounmap(regs);
|
||||
|
||||
if (architecture >= 0x50) {
|
||||
if (architecture >= 0x60) {
|
||||
/* FIXME we need to figure out who's who for NV6x */
|
||||
dev_priv->card_type = NV_44;
|
||||
} else if (architecture >= 0x50) {
|
||||
dev_priv->card_type = NV_50;
|
||||
} else if (architecture >= 0x40) {
|
||||
uint8_t subarch = architecture & 0xf;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue