Merge branch 'drm-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6
* 'drm-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/airlied/drm-2.6: drm/radeon: bump the UMS driver version number to indicate rv740 fix drm/radeon/kms: free fence IB if it wasn't emited at IB free time drm/ttm: fix caching problem on non-PAT systems. drm/radeon/rv740: fix backend setup drm/radeon/kms: fix shared ddc detection drm/radeon/kms/rs600: add connector quirk vgaarb: fix "target=default" passing
This commit is contained in:
commit
65d76fc4b3
@ -1428,9 +1428,12 @@ static void r700_gfx_init(struct drm_device *dev,
|
|||||||
|
|
||||||
gb_tiling_config |= R600_BANK_SWAPS(1);
|
gb_tiling_config |= R600_BANK_SWAPS(1);
|
||||||
|
|
||||||
backend_map = r700_get_tile_pipe_to_backend_map(dev_priv->r600_max_tile_pipes,
|
if ((dev_priv->flags & RADEON_FAMILY_MASK) == CHIP_RV740)
|
||||||
dev_priv->r600_max_backends,
|
backend_map = 0x28;
|
||||||
(0xff << dev_priv->r600_max_backends) & 0xff);
|
else
|
||||||
|
backend_map = r700_get_tile_pipe_to_backend_map(dev_priv->r600_max_tile_pipes,
|
||||||
|
dev_priv->r600_max_backends,
|
||||||
|
(0xff << dev_priv->r600_max_backends) & 0xff);
|
||||||
gb_tiling_config |= R600_BACKEND_MAP(backend_map);
|
gb_tiling_config |= R600_BACKEND_MAP(backend_map);
|
||||||
|
|
||||||
cc_gc_shader_pipe_config =
|
cc_gc_shader_pipe_config =
|
||||||
|
@ -206,6 +206,15 @@ static bool radeon_atom_apply_quirks(struct drm_device *dev,
|
|||||||
*connector_type = DRM_MODE_CONNECTOR_DVID;
|
*connector_type = DRM_MODE_CONNECTOR_DVID;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Asrock RS600 board lists the DVI port as HDMI */
|
||||||
|
if ((dev->pdev->device == 0x7941) &&
|
||||||
|
(dev->pdev->subsystem_vendor == 0x1849) &&
|
||||||
|
(dev->pdev->subsystem_device == 0x7941)) {
|
||||||
|
if ((*connector_type == DRM_MODE_CONNECTOR_HDMIA) &&
|
||||||
|
(supported_device == ATOM_DEVICE_DFP3_SUPPORT))
|
||||||
|
*connector_type = DRM_MODE_CONNECTOR_DVID;
|
||||||
|
}
|
||||||
|
|
||||||
/* a-bit f-i90hd - ciaranm on #radeonhd - this board has no DVI */
|
/* a-bit f-i90hd - ciaranm on #radeonhd - this board has no DVI */
|
||||||
if ((dev->pdev->device == 0x7941) &&
|
if ((dev->pdev->device == 0x7941) &&
|
||||||
(dev->pdev->subsystem_vendor == 0x147b) &&
|
(dev->pdev->subsystem_vendor == 0x147b) &&
|
||||||
|
@ -780,7 +780,7 @@ static enum drm_connector_status radeon_dvi_detect(struct drm_connector *connect
|
|||||||
* connected and the DVI port disconnected. If the edid doesn't
|
* connected and the DVI port disconnected. If the edid doesn't
|
||||||
* say HDMI, vice versa.
|
* say HDMI, vice versa.
|
||||||
*/
|
*/
|
||||||
if (radeon_connector->shared_ddc && connector_status_connected) {
|
if (radeon_connector->shared_ddc && (ret == connector_status_connected)) {
|
||||||
struct drm_device *dev = connector->dev;
|
struct drm_device *dev = connector->dev;
|
||||||
struct drm_connector *list_connector;
|
struct drm_connector *list_connector;
|
||||||
struct radeon_connector *list_radeon_connector;
|
struct radeon_connector *list_radeon_connector;
|
||||||
@ -1060,8 +1060,7 @@ radeon_add_atom_connector(struct drm_device *dev,
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (radeon_connector->ddc_bus && i2c_bus->valid) {
|
if (radeon_connector->ddc_bus && i2c_bus->valid) {
|
||||||
if (memcmp(&radeon_connector->ddc_bus->rec, i2c_bus,
|
if (radeon_connector->ddc_bus->rec.i2c_id == i2c_bus->i2c_id) {
|
||||||
sizeof(struct radeon_i2c_bus_rec)) == 0) {
|
|
||||||
radeon_connector->shared_ddc = true;
|
radeon_connector->shared_ddc = true;
|
||||||
shared_ddc = true;
|
shared_ddc = true;
|
||||||
}
|
}
|
||||||
|
@ -106,9 +106,10 @@
|
|||||||
* 1.29- R500 3D cmd buffer support
|
* 1.29- R500 3D cmd buffer support
|
||||||
* 1.30- Add support for occlusion queries
|
* 1.30- Add support for occlusion queries
|
||||||
* 1.31- Add support for num Z pipes from GET_PARAM
|
* 1.31- Add support for num Z pipes from GET_PARAM
|
||||||
|
* 1.32- fixes for rv740 setup
|
||||||
*/
|
*/
|
||||||
#define DRIVER_MAJOR 1
|
#define DRIVER_MAJOR 1
|
||||||
#define DRIVER_MINOR 31
|
#define DRIVER_MINOR 32
|
||||||
#define DRIVER_PATCHLEVEL 0
|
#define DRIVER_PATCHLEVEL 0
|
||||||
|
|
||||||
enum radeon_cp_microcode_version {
|
enum radeon_cp_microcode_version {
|
||||||
|
@ -100,6 +100,8 @@ void radeon_ib_free(struct radeon_device *rdev, struct radeon_ib **ib)
|
|||||||
if (tmp == NULL) {
|
if (tmp == NULL) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if (!tmp->fence->emited)
|
||||||
|
radeon_fence_unref(&tmp->fence);
|
||||||
mutex_lock(&rdev->ib_pool.mutex);
|
mutex_lock(&rdev->ib_pool.mutex);
|
||||||
tmp->free = true;
|
tmp->free = true;
|
||||||
mutex_unlock(&rdev->ib_pool.mutex);
|
mutex_unlock(&rdev->ib_pool.mutex);
|
||||||
|
@ -549,9 +549,12 @@ static void rv770_gpu_init(struct radeon_device *rdev)
|
|||||||
|
|
||||||
gb_tiling_config |= BANK_SWAPS(1);
|
gb_tiling_config |= BANK_SWAPS(1);
|
||||||
|
|
||||||
backend_map = r700_get_tile_pipe_to_backend_map(rdev->config.rv770.max_tile_pipes,
|
if (rdev->family == CHIP_RV740)
|
||||||
rdev->config.rv770.max_backends,
|
backend_map = 0x28;
|
||||||
(0xff << rdev->config.rv770.max_backends) & 0xff);
|
else
|
||||||
|
backend_map = r700_get_tile_pipe_to_backend_map(rdev->config.rv770.max_tile_pipes,
|
||||||
|
rdev->config.rv770.max_backends,
|
||||||
|
(0xff << rdev->config.rv770.max_backends) & 0xff);
|
||||||
gb_tiling_config |= BACKEND_MAP(backend_map);
|
gb_tiling_config |= BACKEND_MAP(backend_map);
|
||||||
|
|
||||||
cc_gc_shader_pipe_config =
|
cc_gc_shader_pipe_config =
|
||||||
|
@ -196,14 +196,15 @@ EXPORT_SYMBOL(ttm_tt_populate);
|
|||||||
|
|
||||||
#ifdef CONFIG_X86
|
#ifdef CONFIG_X86
|
||||||
static inline int ttm_tt_set_page_caching(struct page *p,
|
static inline int ttm_tt_set_page_caching(struct page *p,
|
||||||
enum ttm_caching_state c_state)
|
enum ttm_caching_state c_old,
|
||||||
|
enum ttm_caching_state c_new)
|
||||||
{
|
{
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
|
|
||||||
if (PageHighMem(p))
|
if (PageHighMem(p))
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
if (get_page_memtype(p) != -1) {
|
if (c_old != tt_cached) {
|
||||||
/* p isn't in the default caching state, set it to
|
/* p isn't in the default caching state, set it to
|
||||||
* writeback first to free its current memtype. */
|
* writeback first to free its current memtype. */
|
||||||
|
|
||||||
@ -212,16 +213,17 @@ static inline int ttm_tt_set_page_caching(struct page *p,
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (c_state == tt_wc)
|
if (c_new == tt_wc)
|
||||||
ret = set_memory_wc((unsigned long) page_address(p), 1);
|
ret = set_memory_wc((unsigned long) page_address(p), 1);
|
||||||
else if (c_state == tt_uncached)
|
else if (c_new == tt_uncached)
|
||||||
ret = set_pages_uc(p, 1);
|
ret = set_pages_uc(p, 1);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
#else /* CONFIG_X86 */
|
#else /* CONFIG_X86 */
|
||||||
static inline int ttm_tt_set_page_caching(struct page *p,
|
static inline int ttm_tt_set_page_caching(struct page *p,
|
||||||
enum ttm_caching_state c_state)
|
enum ttm_caching_state c_old,
|
||||||
|
enum ttm_caching_state c_new)
|
||||||
{
|
{
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@ -254,7 +256,9 @@ static int ttm_tt_set_caching(struct ttm_tt *ttm,
|
|||||||
for (i = 0; i < ttm->num_pages; ++i) {
|
for (i = 0; i < ttm->num_pages; ++i) {
|
||||||
cur_page = ttm->pages[i];
|
cur_page = ttm->pages[i];
|
||||||
if (likely(cur_page != NULL)) {
|
if (likely(cur_page != NULL)) {
|
||||||
ret = ttm_tt_set_page_caching(cur_page, c_state);
|
ret = ttm_tt_set_page_caching(cur_page,
|
||||||
|
ttm->caching_state,
|
||||||
|
c_state);
|
||||||
if (unlikely(ret != 0))
|
if (unlikely(ret != 0))
|
||||||
goto out_err;
|
goto out_err;
|
||||||
}
|
}
|
||||||
@ -268,7 +272,7 @@ static int ttm_tt_set_caching(struct ttm_tt *ttm,
|
|||||||
for (j = 0; j < i; ++j) {
|
for (j = 0; j < i; ++j) {
|
||||||
cur_page = ttm->pages[j];
|
cur_page = ttm->pages[j];
|
||||||
if (likely(cur_page != NULL)) {
|
if (likely(cur_page != NULL)) {
|
||||||
(void)ttm_tt_set_page_caching(cur_page,
|
(void)ttm_tt_set_page_caching(cur_page, c_state,
|
||||||
ttm->caching_state);
|
ttm->caching_state);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -961,7 +961,7 @@ static ssize_t vga_arb_write(struct file *file, const char __user * buf,
|
|||||||
remaining -= 7;
|
remaining -= 7;
|
||||||
pr_devel("client 0x%p called 'target'\n", priv);
|
pr_devel("client 0x%p called 'target'\n", priv);
|
||||||
/* if target is default */
|
/* if target is default */
|
||||||
if (!strncmp(kbuf, "default", 7))
|
if (!strncmp(curr_pos, "default", 7))
|
||||||
pdev = pci_dev_get(vga_default_device());
|
pdev = pci_dev_get(vga_default_device());
|
||||||
else {
|
else {
|
||||||
if (!vga_pci_str_to_vars(curr_pos, remaining,
|
if (!vga_pci_str_to_vars(curr_pos, remaining,
|
||||||
|
Loading…
Reference in New Issue
Block a user