mirror of https://gitee.com/openkylin/linux.git
Merge branch 'drm-fixes' of git://people.freedesktop.org/~airlied/linux
* 'drm-fixes' of git://people.freedesktop.org/~airlied/linux: dma-buf: Documentation update for Kconfig select nouveau: Support Optimus models for vga_switcheroo nouveau: properly check for _DSM function support dma-buf: drop option text so users don't select it. radeon: Call pci_clear_master() instead of open-coding it. gma500: Discard modes that don't fit in stolen memory drm: bump DRM_CONNECTOR_MAX_ENCODER from 2 to 3 drm/radeon/kms: Fix module parameter description format drm/radeon/kms/ni: fix packet2 handling for VM IB parser ttm/dma: Remove the WARN() which is not useful.
This commit is contained in:
commit
2145199c4f
|
@ -219,6 +219,10 @@ NOTES:
|
||||||
If the exporter chooses not to allow an attach() operation once a
|
If the exporter chooses not to allow an attach() operation once a
|
||||||
map_dma_buf() API has been called, it simply returns an error.
|
map_dma_buf() API has been called, it simply returns an error.
|
||||||
|
|
||||||
|
Miscellaneous notes:
|
||||||
|
- Any exporters or users of the dma-buf buffer sharing framework must have
|
||||||
|
a 'select DMA_SHARED_BUFFER' in their respective Kconfigs.
|
||||||
|
|
||||||
References:
|
References:
|
||||||
[1] struct dma_buf_ops in include/linux/dma-buf.h
|
[1] struct dma_buf_ops in include/linux/dma-buf.h
|
||||||
[2] All interfaces mentioned above defined in include/linux/dma-buf.h
|
[2] All interfaces mentioned above defined in include/linux/dma-buf.h
|
||||||
|
|
|
@ -179,7 +179,7 @@ config GENERIC_CPU_DEVICES
|
||||||
source "drivers/base/regmap/Kconfig"
|
source "drivers/base/regmap/Kconfig"
|
||||||
|
|
||||||
config DMA_SHARED_BUFFER
|
config DMA_SHARED_BUFFER
|
||||||
bool "Buffer framework to be shared between drivers"
|
bool
|
||||||
default n
|
default n
|
||||||
select ANON_INODES
|
select ANON_INODES
|
||||||
depends on EXPERIMENTAL
|
depends on EXPERIMENTAL
|
||||||
|
|
|
@ -66,6 +66,7 @@ static void cdv_intel_crt_dpms(struct drm_encoder *encoder, int mode)
|
||||||
static int cdv_intel_crt_mode_valid(struct drm_connector *connector,
|
static int cdv_intel_crt_mode_valid(struct drm_connector *connector,
|
||||||
struct drm_display_mode *mode)
|
struct drm_display_mode *mode)
|
||||||
{
|
{
|
||||||
|
struct drm_psb_private *dev_priv = connector->dev->dev_private;
|
||||||
int max_clock = 0;
|
int max_clock = 0;
|
||||||
if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
|
if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
|
||||||
return MODE_NO_DBLESCAN;
|
return MODE_NO_DBLESCAN;
|
||||||
|
@ -82,6 +83,11 @@ static int cdv_intel_crt_mode_valid(struct drm_connector *connector,
|
||||||
if (mode->hdisplay > 1680 || mode->vdisplay > 1050)
|
if (mode->hdisplay > 1680 || mode->vdisplay > 1050)
|
||||||
return MODE_PANEL;
|
return MODE_PANEL;
|
||||||
|
|
||||||
|
/* We assume worst case scenario of 32 bpp here, since we don't know */
|
||||||
|
if ((ALIGN(mode->hdisplay * 4, 64) * mode->vdisplay) >
|
||||||
|
dev_priv->vram_stolen_size)
|
||||||
|
return MODE_MEM;
|
||||||
|
|
||||||
return MODE_OK;
|
return MODE_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -241,6 +241,7 @@ static int cdv_hdmi_get_modes(struct drm_connector *connector)
|
||||||
static int cdv_hdmi_mode_valid(struct drm_connector *connector,
|
static int cdv_hdmi_mode_valid(struct drm_connector *connector,
|
||||||
struct drm_display_mode *mode)
|
struct drm_display_mode *mode)
|
||||||
{
|
{
|
||||||
|
struct drm_psb_private *dev_priv = connector->dev->dev_private;
|
||||||
|
|
||||||
if (mode->clock > 165000)
|
if (mode->clock > 165000)
|
||||||
return MODE_CLOCK_HIGH;
|
return MODE_CLOCK_HIGH;
|
||||||
|
@ -255,14 +256,11 @@ static int cdv_hdmi_mode_valid(struct drm_connector *connector,
|
||||||
if (mode->flags & DRM_MODE_FLAG_INTERLACE)
|
if (mode->flags & DRM_MODE_FLAG_INTERLACE)
|
||||||
return MODE_NO_INTERLACE;
|
return MODE_NO_INTERLACE;
|
||||||
|
|
||||||
/*
|
/* We assume worst case scenario of 32 bpp here, since we don't know */
|
||||||
* FIXME: for now we limit the size to 1680x1050 on CDV, otherwise it
|
if ((ALIGN(mode->hdisplay * 4, 64) * mode->vdisplay) >
|
||||||
* will go beyond the stolen memory size allocated to the framebuffer
|
dev_priv->vram_stolen_size)
|
||||||
*/
|
return MODE_MEM;
|
||||||
if (mode->hdisplay > 1680)
|
|
||||||
return MODE_PANEL;
|
|
||||||
if (mode->vdisplay > 1050)
|
|
||||||
return MODE_PANEL;
|
|
||||||
return MODE_OK;
|
return MODE_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -506,6 +506,7 @@ int oaktrail_crtc_hdmi_mode_set(struct drm_crtc *crtc,
|
||||||
static int oaktrail_hdmi_mode_valid(struct drm_connector *connector,
|
static int oaktrail_hdmi_mode_valid(struct drm_connector *connector,
|
||||||
struct drm_display_mode *mode)
|
struct drm_display_mode *mode)
|
||||||
{
|
{
|
||||||
|
struct drm_psb_private *dev_priv = connector->dev->dev_private;
|
||||||
if (mode->clock > 165000)
|
if (mode->clock > 165000)
|
||||||
return MODE_CLOCK_HIGH;
|
return MODE_CLOCK_HIGH;
|
||||||
if (mode->clock < 20000)
|
if (mode->clock < 20000)
|
||||||
|
@ -514,6 +515,11 @@ static int oaktrail_hdmi_mode_valid(struct drm_connector *connector,
|
||||||
if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
|
if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
|
||||||
return MODE_NO_DBLESCAN;
|
return MODE_NO_DBLESCAN;
|
||||||
|
|
||||||
|
/* We assume worst case scenario of 32 bpp here, since we don't know */
|
||||||
|
if ((ALIGN(mode->hdisplay * 4, 64) * mode->vdisplay) >
|
||||||
|
dev_priv->vram_stolen_size)
|
||||||
|
return MODE_MEM;
|
||||||
|
|
||||||
return MODE_OK;
|
return MODE_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1141,6 +1141,7 @@ static void psb_intel_sdvo_dpms(struct drm_encoder *encoder, int mode)
|
||||||
static int psb_intel_sdvo_mode_valid(struct drm_connector *connector,
|
static int psb_intel_sdvo_mode_valid(struct drm_connector *connector,
|
||||||
struct drm_display_mode *mode)
|
struct drm_display_mode *mode)
|
||||||
{
|
{
|
||||||
|
struct drm_psb_private *dev_priv = connector->dev->dev_private;
|
||||||
struct psb_intel_sdvo *psb_intel_sdvo = intel_attached_sdvo(connector);
|
struct psb_intel_sdvo *psb_intel_sdvo = intel_attached_sdvo(connector);
|
||||||
|
|
||||||
if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
|
if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
|
||||||
|
@ -1160,6 +1161,11 @@ static int psb_intel_sdvo_mode_valid(struct drm_connector *connector,
|
||||||
return MODE_PANEL;
|
return MODE_PANEL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* We assume worst case scenario of 32 bpp here, since we don't know */
|
||||||
|
if ((ALIGN(mode->hdisplay * 4, 64) * mode->vdisplay) >
|
||||||
|
dev_priv->vram_stolen_size)
|
||||||
|
return MODE_MEM;
|
||||||
|
|
||||||
return MODE_OK;
|
return MODE_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -18,12 +18,6 @@
|
||||||
|
|
||||||
#include <linux/vga_switcheroo.h>
|
#include <linux/vga_switcheroo.h>
|
||||||
|
|
||||||
#define NOUVEAU_DSM_SUPPORTED 0x00
|
|
||||||
#define NOUVEAU_DSM_SUPPORTED_FUNCTIONS 0x00
|
|
||||||
|
|
||||||
#define NOUVEAU_DSM_ACTIVE 0x01
|
|
||||||
#define NOUVEAU_DSM_ACTIVE_QUERY 0x00
|
|
||||||
|
|
||||||
#define NOUVEAU_DSM_LED 0x02
|
#define NOUVEAU_DSM_LED 0x02
|
||||||
#define NOUVEAU_DSM_LED_STATE 0x00
|
#define NOUVEAU_DSM_LED_STATE 0x00
|
||||||
#define NOUVEAU_DSM_LED_OFF 0x10
|
#define NOUVEAU_DSM_LED_OFF 0x10
|
||||||
|
@ -35,6 +29,9 @@
|
||||||
#define NOUVEAU_DSM_POWER_SPEED 0x01
|
#define NOUVEAU_DSM_POWER_SPEED 0x01
|
||||||
#define NOUVEAU_DSM_POWER_STAMINA 0x02
|
#define NOUVEAU_DSM_POWER_STAMINA 0x02
|
||||||
|
|
||||||
|
#define NOUVEAU_DSM_OPTIMUS_FN 0x1A
|
||||||
|
#define NOUVEAU_DSM_OPTIMUS_ARGS 0x03000001
|
||||||
|
|
||||||
static struct nouveau_dsm_priv {
|
static struct nouveau_dsm_priv {
|
||||||
bool dsm_detected;
|
bool dsm_detected;
|
||||||
bool optimus_detected;
|
bool optimus_detected;
|
||||||
|
@ -61,7 +58,8 @@ static int nouveau_optimus_dsm(acpi_handle handle, int func, int arg, uint32_t *
|
||||||
struct acpi_object_list input;
|
struct acpi_object_list input;
|
||||||
union acpi_object params[4];
|
union acpi_object params[4];
|
||||||
union acpi_object *obj;
|
union acpi_object *obj;
|
||||||
int err;
|
int i, err;
|
||||||
|
char args_buff[4];
|
||||||
|
|
||||||
input.count = 4;
|
input.count = 4;
|
||||||
input.pointer = params;
|
input.pointer = params;
|
||||||
|
@ -73,7 +71,11 @@ static int nouveau_optimus_dsm(acpi_handle handle, int func, int arg, uint32_t *
|
||||||
params[2].type = ACPI_TYPE_INTEGER;
|
params[2].type = ACPI_TYPE_INTEGER;
|
||||||
params[2].integer.value = func;
|
params[2].integer.value = func;
|
||||||
params[3].type = ACPI_TYPE_BUFFER;
|
params[3].type = ACPI_TYPE_BUFFER;
|
||||||
params[3].buffer.length = 0;
|
params[3].buffer.length = 4;
|
||||||
|
/* ACPI is little endian, AABBCCDD becomes {DD,CC,BB,AA} */
|
||||||
|
for (i = 0; i < 4; i++)
|
||||||
|
args_buff[i] = (arg >> i * 8) & 0xFF;
|
||||||
|
params[3].buffer.pointer = args_buff;
|
||||||
|
|
||||||
err = acpi_evaluate_object(handle, "_DSM", &input, &output);
|
err = acpi_evaluate_object(handle, "_DSM", &input, &output);
|
||||||
if (err) {
|
if (err) {
|
||||||
|
@ -148,6 +150,23 @@ static int nouveau_dsm(acpi_handle handle, int func, int arg, uint32_t *result)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Returns 1 if a DSM function is usable and 0 otherwise */
|
||||||
|
static int nouveau_test_dsm(acpi_handle test_handle,
|
||||||
|
int (*dsm_func)(acpi_handle, int, int, uint32_t *),
|
||||||
|
int sfnc)
|
||||||
|
{
|
||||||
|
u32 result = 0;
|
||||||
|
|
||||||
|
/* Function 0 returns a Buffer containing available functions. The args
|
||||||
|
* parameter is ignored for function 0, so just put 0 in it */
|
||||||
|
if (dsm_func(test_handle, 0, 0, &result))
|
||||||
|
return 0;
|
||||||
|
|
||||||
|
/* ACPI Spec v4 9.14.1: if bit 0 is zero, no function is supported. If
|
||||||
|
* the n-th bit is enabled, function n is supported */
|
||||||
|
return result & 1 && result & (1 << sfnc);
|
||||||
|
}
|
||||||
|
|
||||||
static int nouveau_dsm_switch_mux(acpi_handle handle, int mux_id)
|
static int nouveau_dsm_switch_mux(acpi_handle handle, int mux_id)
|
||||||
{
|
{
|
||||||
mxm_wmi_call_mxmx(mux_id == NOUVEAU_DSM_LED_STAMINA ? MXM_MXDS_ADAPTER_IGD : MXM_MXDS_ADAPTER_0);
|
mxm_wmi_call_mxmx(mux_id == NOUVEAU_DSM_LED_STAMINA ? MXM_MXDS_ADAPTER_IGD : MXM_MXDS_ADAPTER_0);
|
||||||
|
@ -168,6 +187,10 @@ static int nouveau_dsm_set_discrete_state(acpi_handle handle, enum vga_switchero
|
||||||
|
|
||||||
static int nouveau_dsm_switchto(enum vga_switcheroo_client_id id)
|
static int nouveau_dsm_switchto(enum vga_switcheroo_client_id id)
|
||||||
{
|
{
|
||||||
|
/* perhaps the _DSM functions are mutually exclusive, but prepare for
|
||||||
|
* the future */
|
||||||
|
if (!nouveau_dsm_priv.dsm_detected && nouveau_dsm_priv.optimus_detected)
|
||||||
|
return 0;
|
||||||
if (id == VGA_SWITCHEROO_IGD)
|
if (id == VGA_SWITCHEROO_IGD)
|
||||||
return nouveau_dsm_switch_mux(nouveau_dsm_priv.dhandle, NOUVEAU_DSM_LED_STAMINA);
|
return nouveau_dsm_switch_mux(nouveau_dsm_priv.dhandle, NOUVEAU_DSM_LED_STAMINA);
|
||||||
else
|
else
|
||||||
|
@ -180,6 +203,11 @@ static int nouveau_dsm_power_state(enum vga_switcheroo_client_id id,
|
||||||
if (id == VGA_SWITCHEROO_IGD)
|
if (id == VGA_SWITCHEROO_IGD)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
/* Optimus laptops have the card already disabled in
|
||||||
|
* nouveau_switcheroo_set_state */
|
||||||
|
if (!nouveau_dsm_priv.dsm_detected && nouveau_dsm_priv.optimus_detected)
|
||||||
|
return 0;
|
||||||
|
|
||||||
return nouveau_dsm_set_discrete_state(nouveau_dsm_priv.dhandle, state);
|
return nouveau_dsm_set_discrete_state(nouveau_dsm_priv.dhandle, state);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -212,8 +240,7 @@ static int nouveau_dsm_pci_probe(struct pci_dev *pdev)
|
||||||
{
|
{
|
||||||
acpi_handle dhandle, nvidia_handle;
|
acpi_handle dhandle, nvidia_handle;
|
||||||
acpi_status status;
|
acpi_status status;
|
||||||
int ret, retval = 0;
|
int retval = 0;
|
||||||
uint32_t result;
|
|
||||||
|
|
||||||
dhandle = DEVICE_ACPI_HANDLE(&pdev->dev);
|
dhandle = DEVICE_ACPI_HANDLE(&pdev->dev);
|
||||||
if (!dhandle)
|
if (!dhandle)
|
||||||
|
@ -224,13 +251,11 @@ static int nouveau_dsm_pci_probe(struct pci_dev *pdev)
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = nouveau_dsm(dhandle, NOUVEAU_DSM_SUPPORTED,
|
if (nouveau_test_dsm(dhandle, nouveau_dsm, NOUVEAU_DSM_POWER))
|
||||||
NOUVEAU_DSM_SUPPORTED_FUNCTIONS, &result);
|
|
||||||
if (ret == 0)
|
|
||||||
retval |= NOUVEAU_DSM_HAS_MUX;
|
retval |= NOUVEAU_DSM_HAS_MUX;
|
||||||
|
|
||||||
ret = nouveau_optimus_dsm(dhandle, 0, 0, &result);
|
if (nouveau_test_dsm(dhandle, nouveau_optimus_dsm,
|
||||||
if (ret == 0)
|
NOUVEAU_DSM_OPTIMUS_FN))
|
||||||
retval |= NOUVEAU_DSM_HAS_OPT;
|
retval |= NOUVEAU_DSM_HAS_OPT;
|
||||||
|
|
||||||
if (retval)
|
if (retval)
|
||||||
|
@ -269,15 +294,22 @@ static bool nouveau_dsm_detect(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (vga_count == 2 && has_dsm && guid_valid) {
|
if (vga_count == 2 && has_dsm && guid_valid) {
|
||||||
acpi_get_name(nouveau_dsm_priv.dhandle, ACPI_FULL_PATHNAME, &buffer);
|
acpi_get_name(nouveau_dsm_priv.dhandle, ACPI_FULL_PATHNAME,
|
||||||
|
&buffer);
|
||||||
printk(KERN_INFO "VGA switcheroo: detected DSM switching method %s handle\n",
|
printk(KERN_INFO "VGA switcheroo: detected DSM switching method %s handle\n",
|
||||||
acpi_method_name);
|
acpi_method_name);
|
||||||
nouveau_dsm_priv.dsm_detected = true;
|
nouveau_dsm_priv.dsm_detected = true;
|
||||||
ret = true;
|
ret = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (has_optimus == 1)
|
if (has_optimus == 1) {
|
||||||
|
acpi_get_name(nouveau_dsm_priv.dhandle, ACPI_FULL_PATHNAME,
|
||||||
|
&buffer);
|
||||||
|
printk(KERN_INFO "VGA switcheroo: detected Optimus DSM method %s handle\n",
|
||||||
|
acpi_method_name);
|
||||||
nouveau_dsm_priv.optimus_detected = true;
|
nouveau_dsm_priv.optimus_detected = true;
|
||||||
|
ret = true;
|
||||||
|
}
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
@ -293,6 +325,17 @@ void nouveau_register_dsm_handler(void)
|
||||||
vga_switcheroo_register_handler(&nouveau_dsm_handler);
|
vga_switcheroo_register_handler(&nouveau_dsm_handler);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Must be called for Optimus models before the card can be turned off */
|
||||||
|
void nouveau_switcheroo_optimus_dsm(void)
|
||||||
|
{
|
||||||
|
u32 result = 0;
|
||||||
|
if (!nouveau_dsm_priv.optimus_detected)
|
||||||
|
return;
|
||||||
|
|
||||||
|
nouveau_optimus_dsm(nouveau_dsm_priv.dhandle, NOUVEAU_DSM_OPTIMUS_FN,
|
||||||
|
NOUVEAU_DSM_OPTIMUS_ARGS, &result);
|
||||||
|
}
|
||||||
|
|
||||||
void nouveau_unregister_dsm_handler(void)
|
void nouveau_unregister_dsm_handler(void)
|
||||||
{
|
{
|
||||||
vga_switcheroo_unregister_handler();
|
vga_switcheroo_unregister_handler();
|
||||||
|
|
|
@ -1055,12 +1055,14 @@ extern int nouveau_dma_wait(struct nouveau_channel *, int slots, int size);
|
||||||
#if defined(CONFIG_ACPI)
|
#if defined(CONFIG_ACPI)
|
||||||
void nouveau_register_dsm_handler(void);
|
void nouveau_register_dsm_handler(void);
|
||||||
void nouveau_unregister_dsm_handler(void);
|
void nouveau_unregister_dsm_handler(void);
|
||||||
|
void nouveau_switcheroo_optimus_dsm(void);
|
||||||
int nouveau_acpi_get_bios_chunk(uint8_t *bios, int offset, int len);
|
int nouveau_acpi_get_bios_chunk(uint8_t *bios, int offset, int len);
|
||||||
bool nouveau_acpi_rom_supported(struct pci_dev *pdev);
|
bool nouveau_acpi_rom_supported(struct pci_dev *pdev);
|
||||||
int nouveau_acpi_edid(struct drm_device *, struct drm_connector *);
|
int nouveau_acpi_edid(struct drm_device *, struct drm_connector *);
|
||||||
#else
|
#else
|
||||||
static inline void nouveau_register_dsm_handler(void) {}
|
static inline void nouveau_register_dsm_handler(void) {}
|
||||||
static inline void nouveau_unregister_dsm_handler(void) {}
|
static inline void nouveau_unregister_dsm_handler(void) {}
|
||||||
|
static inline void nouveau_switcheroo_optimus_dsm(void) {}
|
||||||
static inline bool nouveau_acpi_rom_supported(struct pci_dev *pdev) { return false; }
|
static inline bool nouveau_acpi_rom_supported(struct pci_dev *pdev) { return false; }
|
||||||
static inline int nouveau_acpi_get_bios_chunk(uint8_t *bios, int offset, int len) { return -EINVAL; }
|
static inline int nouveau_acpi_get_bios_chunk(uint8_t *bios, int offset, int len) { return -EINVAL; }
|
||||||
static inline int nouveau_acpi_edid(struct drm_device *dev, struct drm_connector *connector) { return -EINVAL; }
|
static inline int nouveau_acpi_edid(struct drm_device *dev, struct drm_connector *connector) { return -EINVAL; }
|
||||||
|
|
|
@ -525,6 +525,7 @@ static void nouveau_switcheroo_set_state(struct pci_dev *pdev,
|
||||||
printk(KERN_ERR "VGA switcheroo: switched nouveau off\n");
|
printk(KERN_ERR "VGA switcheroo: switched nouveau off\n");
|
||||||
dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
|
dev->switch_power_state = DRM_SWITCH_POWER_CHANGING;
|
||||||
drm_kms_helper_poll_disable(dev);
|
drm_kms_helper_poll_disable(dev);
|
||||||
|
nouveau_switcheroo_optimus_dsm();
|
||||||
nouveau_pci_suspend(pdev, pmm);
|
nouveau_pci_suspend(pdev, pmm);
|
||||||
dev->switch_power_state = DRM_SWITCH_POWER_OFF;
|
dev->switch_power_state = DRM_SWITCH_POWER_OFF;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1793,10 +1793,12 @@ int evergreen_ib_parse(struct radeon_device *rdev, struct radeon_ib *ib)
|
||||||
ret = -EINVAL;
|
ret = -EINVAL;
|
||||||
break;
|
break;
|
||||||
case PACKET_TYPE2:
|
case PACKET_TYPE2:
|
||||||
|
idx += 1;
|
||||||
break;
|
break;
|
||||||
case PACKET_TYPE3:
|
case PACKET_TYPE3:
|
||||||
pkt.opcode = CP_PACKET3_GET_OPCODE(ib->ptr[idx]);
|
pkt.opcode = CP_PACKET3_GET_OPCODE(ib->ptr[idx]);
|
||||||
ret = evergreen_vm_packet3_check(rdev, ib->ptr, &pkt);
|
ret = evergreen_vm_packet3_check(rdev, ib->ptr, &pkt);
|
||||||
|
idx += pkt.count + 2;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
dev_err(rdev->dev, "Unknown packet type %d !\n", pkt.type);
|
dev_err(rdev->dev, "Unknown packet type %d !\n", pkt.type);
|
||||||
|
@ -1805,7 +1807,6 @@ int evergreen_ib_parse(struct radeon_device *rdev, struct radeon_ib *ib)
|
||||||
}
|
}
|
||||||
if (ret)
|
if (ret)
|
||||||
break;
|
break;
|
||||||
idx += pkt.count + 2;
|
|
||||||
} while (idx < ib->length_dw);
|
} while (idx < ib->length_dw);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
|
|
@ -2186,7 +2186,6 @@ bool r100_gpu_is_lockup(struct radeon_device *rdev, struct radeon_ring *ring)
|
||||||
void r100_bm_disable(struct radeon_device *rdev)
|
void r100_bm_disable(struct radeon_device *rdev)
|
||||||
{
|
{
|
||||||
u32 tmp;
|
u32 tmp;
|
||||||
u16 tmp16;
|
|
||||||
|
|
||||||
/* disable bus mastering */
|
/* disable bus mastering */
|
||||||
tmp = RREG32(R_000030_BUS_CNTL);
|
tmp = RREG32(R_000030_BUS_CNTL);
|
||||||
|
@ -2197,8 +2196,7 @@ void r100_bm_disable(struct radeon_device *rdev)
|
||||||
WREG32(R_000030_BUS_CNTL, (tmp & 0xFFFFFFFF) | 0x00000040);
|
WREG32(R_000030_BUS_CNTL, (tmp & 0xFFFFFFFF) | 0x00000040);
|
||||||
tmp = RREG32(RADEON_BUS_CNTL);
|
tmp = RREG32(RADEON_BUS_CNTL);
|
||||||
mdelay(1);
|
mdelay(1);
|
||||||
pci_read_config_word(rdev->pdev, 0x4, &tmp16);
|
pci_clear_master(rdev->pdev);
|
||||||
pci_write_config_word(rdev->pdev, 0x4, tmp16 & 0xFFFB);
|
|
||||||
mdelay(1);
|
mdelay(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -145,7 +145,7 @@ module_param_named(vramlimit, radeon_vram_limit, int, 0600);
|
||||||
MODULE_PARM_DESC(agpmode, "AGP Mode (-1 == PCI)");
|
MODULE_PARM_DESC(agpmode, "AGP Mode (-1 == PCI)");
|
||||||
module_param_named(agpmode, radeon_agpmode, int, 0444);
|
module_param_named(agpmode, radeon_agpmode, int, 0444);
|
||||||
|
|
||||||
MODULE_PARM_DESC(gartsize, "Size of PCIE/IGP gart to setup in megabytes (32,64, etc)\n");
|
MODULE_PARM_DESC(gartsize, "Size of PCIE/IGP gart to setup in megabytes (32, 64, etc)");
|
||||||
module_param_named(gartsize, radeon_gart_size, int, 0600);
|
module_param_named(gartsize, radeon_gart_size, int, 0600);
|
||||||
|
|
||||||
MODULE_PARM_DESC(benchmark, "Run benchmark");
|
MODULE_PARM_DESC(benchmark, "Run benchmark");
|
||||||
|
|
|
@ -322,16 +322,6 @@ void rs600_hpd_fini(struct radeon_device *rdev)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void rs600_bm_disable(struct radeon_device *rdev)
|
|
||||||
{
|
|
||||||
u16 tmp;
|
|
||||||
|
|
||||||
/* disable bus mastering */
|
|
||||||
pci_read_config_word(rdev->pdev, 0x4, &tmp);
|
|
||||||
pci_write_config_word(rdev->pdev, 0x4, tmp & 0xFFFB);
|
|
||||||
mdelay(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
int rs600_asic_reset(struct radeon_device *rdev)
|
int rs600_asic_reset(struct radeon_device *rdev)
|
||||||
{
|
{
|
||||||
struct rv515_mc_save save;
|
struct rv515_mc_save save;
|
||||||
|
@ -355,7 +345,8 @@ int rs600_asic_reset(struct radeon_device *rdev)
|
||||||
WREG32(RADEON_CP_RB_CNTL, tmp);
|
WREG32(RADEON_CP_RB_CNTL, tmp);
|
||||||
pci_save_state(rdev->pdev);
|
pci_save_state(rdev->pdev);
|
||||||
/* disable bus mastering */
|
/* disable bus mastering */
|
||||||
rs600_bm_disable(rdev);
|
pci_clear_master(rdev->pdev);
|
||||||
|
mdelay(1);
|
||||||
/* reset GA+VAP */
|
/* reset GA+VAP */
|
||||||
WREG32(R_0000F0_RBBM_SOFT_RESET, S_0000F0_SOFT_RESET_VAP(1) |
|
WREG32(R_0000F0_RBBM_SOFT_RESET, S_0000F0_SOFT_RESET_VAP(1) |
|
||||||
S_0000F0_SOFT_RESET_GA(1));
|
S_0000F0_SOFT_RESET_GA(1));
|
||||||
|
|
|
@ -952,10 +952,9 @@ void ttm_dma_unpopulate(struct ttm_dma_tt *ttm_dma, struct device *dev)
|
||||||
|
|
||||||
type = ttm_to_type(ttm->page_flags, ttm->caching_state);
|
type = ttm_to_type(ttm->page_flags, ttm->caching_state);
|
||||||
pool = ttm_dma_find_pool(dev, type);
|
pool = ttm_dma_find_pool(dev, type);
|
||||||
if (!pool) {
|
if (!pool)
|
||||||
WARN_ON(!pool);
|
|
||||||
return;
|
return;
|
||||||
}
|
|
||||||
is_cached = (ttm_dma_find_pool(pool->dev,
|
is_cached = (ttm_dma_find_pool(pool->dev,
|
||||||
ttm_to_type(ttm->page_flags, tt_cached)) == pool);
|
ttm_to_type(ttm->page_flags, tt_cached)) == pool);
|
||||||
|
|
||||||
|
|
|
@ -453,7 +453,7 @@ struct drm_encoder_funcs {
|
||||||
#define DRM_CONNECTOR_MAX_UMODES 16
|
#define DRM_CONNECTOR_MAX_UMODES 16
|
||||||
#define DRM_CONNECTOR_MAX_PROPERTY 16
|
#define DRM_CONNECTOR_MAX_PROPERTY 16
|
||||||
#define DRM_CONNECTOR_LEN 32
|
#define DRM_CONNECTOR_LEN 32
|
||||||
#define DRM_CONNECTOR_MAX_ENCODER 2
|
#define DRM_CONNECTOR_MAX_ENCODER 3
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* drm_encoder - central DRM encoder structure
|
* drm_encoder - central DRM encoder structure
|
||||||
|
|
Loading…
Reference in New Issue