History log of /src/sys/external/bsd/drm/dist/bsd-core/drm_pciids.h |
Revision | | Date | Author | Comments |
1.9 |
| 10-Jul-2018 |
maya | Remove viadrm(4), superseded by viadrmums.
Aside from viadrm using older drm code, it's also dysfunctional right now. See PR port-i386/53364.
|
1.8 |
| 11-Jun-2012 |
tsutsui | branches: 1.8.38; 1.8.40; Make i915drm work on Atom N4xx/D410/D510 + GMA3150 integrated graphic devices.
Patch is taken from FreeBSD: http://www.freebsd.org/cgi/query-pr.cgi?pr=143427 and tested on MSI U135DX running NetBSD/i386 6.0_BETA2 with this patch.
Should be pulled up to netbsd-6.
|
1.7 |
| 25-Jul-2011 |
jakllsch | branches: 1.7.2; 1.7.8; Add additional Radeon devices from FreeBSD via Dragon Fly BSD.
|
1.6 |
| 17-Feb-2011 |
jakllsch | Add the RS880 device IDs to radeondrm(4).
|
1.5 |
| 06-Jan-2011 |
cegger | branches: 1.5.2; 1.5.4; recognize Radeon HD 4200. This lets radeondrm(4) attach. "go ahead" macallan@
|
1.4 |
| 26-Jun-2010 |
mrg | add the latest generation of radeon cards.
|
1.3 |
| 19-Jun-2009 |
mrg | branches: 1.3.2; 1.3.4; add a freshly generated drm_pciids.h
|
1.2 |
| 19-Jun-2009 |
mrg | merge the changes from drm 85b9f737db0d2a845e4d7e2bbf9ad12ff9e2227c with our changes and the work recently done by Arto Huusko <arto.huusko@pp2.inet.fi> and FUKAUMI Naoki <fun@naobsd.org>.
it includes all the changes arto provided from both mesa-drm and the r6xx-r7xx-support branch. it does not yet include code to handle the (deleted) drm_pciids.h file, but i'll probably just check in a generated one for now.
i have not yet merged the changes from outside this dir.
from arto's messages to tech-x11:
The important change that was needed is that drm_scatter.c was fixed to return pointer to all allocated pages, not just the beginning of the allocated segments.
Other changes:
- drm_scatter maps COHERENT memory - drm_drawable: drawable handle allocation is done inside lock - drm_memory: when mapping "agp" memory, store offset of mapped area, so that new requests to same offset return the same area instead of trying to remap and fail - drm_vm: use bus_space_mmap for frame buffer and registers
- r600_cp.c: ioremapfree allocated gart range - radeon_cp.c: use mtsleep - some memset calls I had added had their args swapped, and no memory was cleared
|
1.1 |
| 19-Jul-2008 |
mrg | branches: 1.1.1; Initial revision
|
1.1.1.1 |
| 19-Jul-2008 |
mrg | branches: 1.1.1.1.2; 1.1.1.1.4; 1.1.1.1.6; 1.1.1.1.10; 1.1.1.1.14; 1.1.1.1.18; 1.1.1.1.20; import mesa-drm git from version 5d27fd94afaaf434c3a92af0075420b550055bfb, which is approximately june 25th or so.
|
1.1.1.1.20.1 |
| 21-Apr-2010 |
matt | sync to netbsd-5
|
1.1.1.1.18.4 |
| 11-Aug-2010 |
yamt | sync with head.
|
1.1.1.1.18.3 |
| 18-Jul-2009 |
yamt | sync with head.
|
1.1.1.1.18.2 |
| 04-May-2009 |
yamt | sync with head.
|
1.1.1.1.18.1 |
| 19-Jul-2008 |
yamt | file drm_pciids.h was added on branch yamt-nfs-mp on 2009-05-04 08:13:29 +0000
|
1.1.1.1.14.1 |
| 23-Jul-2009 |
jym | Sync with HEAD.
|
1.1.1.1.10.2 |
| 08-Dec-2010 |
riz | Patch the following files (requested by mrg in ticket #1488): sys/dev/pci/drm/files.pcidrm sys/external/bsd/drm/dist/bsd-core/drmP.h sys/external/bsd/drm/dist/bsd-core/drm_pciids.h sys/external/bsd/drm/dist/bsd-core/drm_sysctl.c sys/external/bsd/drm/dist/shared-core/r600_blit.c sys/external/bsd/drm/dist/shared-core/r600_cp.c sys/external/bsd/drm/dist/shared-core/radeon_cp.c sys/external/bsd/drm/dist/shared-core/radeon_cs.c sys/external/bsd/drm/dist/shared-core/radeon_drm.h sys/external/bsd/drm/dist/shared-core/radeon_drv.h sys/external/bsd/drm/dist/shared-core/radeon_state.c
implement DRM_RADEON_CS ioctl, necessary for r600_dri to function. this is mostly from freebsd (though it also exists in other versions of the drm code.)
only use bus_space*() on drm_local_map_ts that have been mapped into some bus space somewhere. otherwise, just use normal accesses since it is normal memory.
|
1.1.1.1.10.1 |
| 20-Jun-2009 |
snj | Apply patch (requested by mrg in ticket #823): import mesa-drm git from version 85b9f737db0d2a845e4d7e2bbf9ad12ff9e2227c. -- merge the changes from drm 85b9f737db0d2a845e4d7e2bbf9ad12ff9e2227c with our changes and the work recently done by Arto Huusko and FUKAUMI Naoki.
it includes all the changes arto provided from both mesa-drm and the r6xx-r7xx-support branch. it does not yet include code to handle the (deleted) drm_pciids.h file, but i'll probably just check in a generated one for now.
i have not yet merged the changes from outside this dir.
from arto's messages to tech-x11:
The important change that was needed is that drm_scatter.c was fixed to return pointer to all allocated pages, not just the beginning of the allocated segments.
Other changes:
- drm_scatter maps COHERENT memory - drm_drawable: drawable handle allocation is done inside lock - drm_memory: when mapping "agp" memory, store offset of mapped area, so that new requests to same offset return the same area instead of trying to remap and fail - drm_vm: use bus_space_mmap for frame buffer and registers
- r600_cp.c: ioremapfree allocated gart range - radeon_cp.c: use mtsleep - some memset calls I had added had their args swapped, and no memory was cleared -- add a freshly generated drm_pciids.h -- some minor clean up: - reduce diffs to mesa-drm where possible - fix various formatting issues - netbsd uses major 180 for drm (XXX)
|
1.1.1.1.6.2 |
| 28-Sep-2008 |
mjf | Sync with HEAD.
|
1.1.1.1.6.1 |
| 19-Jul-2008 |
mjf | file drm_pciids.h was added on branch mjf-devfs2 on 2008-09-28 10:40:37 +0000
|
1.1.1.1.4.2 |
| 18-Sep-2008 |
wrstuden | Sync with wrstuden-revivesa-base-2.
|
1.1.1.1.4.1 |
| 19-Jul-2008 |
wrstuden | file drm_pciids.h was added on branch wrstuden-revivesa on 2008-09-18 04:36:48 +0000
|
1.1.1.1.2.2 |
| 28-Jul-2008 |
simonb | Sync with head.
|
1.1.1.1.2.1 |
| 19-Jul-2008 |
simonb | file drm_pciids.h was added on branch simonb-wapbl on 2008-07-28 14:37:28 +0000
|
1.3.4.2 |
| 05-Mar-2011 |
rmind | sync with head
|
1.3.4.1 |
| 03-Jul-2010 |
rmind | sync with head
|
1.3.2.1 |
| 17-Aug-2010 |
uebayasi | Sync with HEAD.
|
1.5.4.1 |
| 05-Mar-2011 |
bouyer | Sync with HEAD
|
1.5.2.1 |
| 06-Jun-2011 |
jruoho | Sync with HEAD.
|
1.7.8.1 |
| 13-Jun-2012 |
riz | Pull up following revision(s) (requested by tsutsui in ticket #334): sys/external/bsd/drm/dist/shared-core/i915_drv.h: revision 1.5 sys/external/bsd/drm/dist/bsd-core/drm_pciids.h: revision 1.8 sys/external/bsd/drm/dist/shared-core/drm_pciids.txt: revision 1.3 sys/external/bsd/drm/dist/shared-core/i915_reg.h: revision 1.2 Make i915drm work on Atom N4xx/D410/D510 + GMA3150 integrated graphic devices. Patch is taken from FreeBSD: http://www.freebsd.org/cgi/query-pr.cgi?pr=143427 and tested on MSI U135DX running NetBSD/i386 6.0_BETA2 with this patch. Should be pulled up to netbsd-6.
|
1.7.2.1 |
| 30-Oct-2012 |
yamt | sync with head
|
1.8.40.1 |
| 10-Jun-2019 |
christos | Sync with HEAD
|
1.8.38.1 |
| 28-Jul-2018 |
pgoyette | Sync with HEAD
|