diff options
author | Jakob Bornecrantz <wallbraker 'at' gmail 'dot' com> | 2007-02-06 10:22:47 +1100 |
---|---|---|
committer | Dave Airlie <airlied@linux.ie> | 2007-02-06 10:22:47 +1100 |
commit | 8518ddda7b5f8e43de4859042fe59f55aa0c2760 (patch) | |
tree | 29ea4fea654fd16b600625482864b20d0656a916 /src/mesa/drivers/dri/unichrome | |
parent | 17c13b406f4f8a3e7cf755749aa65448f79f6a84 (diff) | |
download | external_mesa3d-8518ddda7b5f8e43de4859042fe59f55aa0c2760.zip external_mesa3d-8518ddda7b5f8e43de4859042fe59f55aa0c2760.tar.gz external_mesa3d-8518ddda7b5f8e43de4859042fe59f55aa0c2760.tar.bz2 |
Add support for CN700 chipset in miniglx
Diffstat (limited to 'src/mesa/drivers/dri/unichrome')
-rw-r--r-- | src/mesa/drivers/dri/unichrome/server/via_dri.c | 1 | ||||
-rw-r--r-- | src/mesa/drivers/dri/unichrome/server/via_regs.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/unichrome/server/via_dri.c b/src/mesa/drivers/dri/unichrome/server/via_dri.c index 2fe61e4..6944bd6 100644 --- a/src/mesa/drivers/dri/unichrome/server/via_dri.c +++ b/src/mesa/drivers/dri/unichrome/server/via_dri.c @@ -1179,6 +1179,7 @@ static int viaInitFBDev(DRIDriverContext *ctx) pVia->Chipset = VIA_KM400; break; case PCI_CHIP_VT3204: + case PCI_CHIP_VT3344: pVia->Chipset = VIA_K8M800; break; case PCI_CHIP_VT3259: diff --git a/src/mesa/drivers/dri/unichrome/server/via_regs.h b/src/mesa/drivers/dri/unichrome/server/via_regs.h index 5c5eecb..87e1e9d 100644 --- a/src/mesa/drivers/dri/unichrome/server/via_regs.h +++ b/src/mesa/drivers/dri/unichrome/server/via_regs.h @@ -44,6 +44,7 @@ #define PCI_CHIP_VT7205 0x7205 #define PCI_CHIP_VT3204 0x3108 #define PCI_CHIP_VT3259 0x3118 +#define PCI_CHIP_VT3344 0x3344 #define BIOS_BSIZE 1024 |