Skip to content

Commit

Permalink
drm/amdgpu: Embed drm_device into amdgpu_device (v2)
Browse files Browse the repository at this point in the history
a) Embed struct drm_device into struct amdgpu_device.
b) Modify the inline-f drm_to_adev() accordingly.
c) Modify the inline-f adev_to_drm() accordingly.
d) Eliminate the use of drm_device.dev_private,
   in amdgpu.
e) Switch from using drm_dev_alloc() to
   drm_dev_init().
f) Add a DRM driver release function, which frees
   the container amdgpu_device after all krefs on
   the contained drm_device have been released.

v2: Split out adding adev_to_drm() into its own
    patch (previous commit), making this patch
    more succinct and clear. More detailed commit
    description.

Signed-off-by: Luben Tuikov <luben.tuikov@amd.com>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Change-Id: I859a56f1831c6039f7f809c26082f2ead26e9f25
  • Loading branch information
Luben Tuikov authored and Yang Xiong committed Sep 3, 2020
1 parent a9fa744 commit 82fc7ac
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 46 deletions.
10 changes: 4 additions & 6 deletions drivers/gpu/drm/amd/amdgpu/amdgpu.h
Original file line number Diff line number Diff line change
Expand Up @@ -770,8 +770,8 @@ struct amd_powerplay {
#define AMDGPU_MAX_DF_PERFMONS 4
struct amdgpu_device {
struct device *dev;
struct drm_device *ddev;
struct pci_dev *pdev;
struct drm_device ddev;

#ifdef CONFIG_DRM_AMD_ACP
struct amdgpu_acp acp;
Expand Down Expand Up @@ -1043,12 +1043,12 @@ struct amdgpu_device {

static inline struct amdgpu_device *drm_to_adev(struct drm_device *ddev)
{
return ddev->dev_private;
return container_of(ddev, struct amdgpu_device, ddev);
}

static inline struct drm_device *adev_to_drm(struct amdgpu_device *adev)
{
return adev->ddev;
return &adev->ddev;
}

static inline struct amdgpu_device *amdgpu_ttm_adev(struct ttm_bo_device *bdev)
Expand All @@ -1057,8 +1057,6 @@ static inline struct amdgpu_device *amdgpu_ttm_adev(struct ttm_bo_device *bdev)
}

int amdgpu_device_init(struct amdgpu_device *adev,
struct drm_device *ddev,
struct pci_dev *pdev,
uint32_t flags);
void amdgpu_device_fini(struct amdgpu_device *adev);
int amdgpu_gpu_wait_for_idle(struct amdgpu_device *adev);
Expand Down Expand Up @@ -1257,7 +1255,7 @@ static inline void *amdgpu_atpx_get_dhandle(void) { return NULL; }
extern const struct drm_ioctl_desc amdgpu_ioctls_kms[];
extern const int amdgpu_max_kms_ioctl;

int amdgpu_driver_load_kms(struct drm_device *dev, unsigned long flags);
int amdgpu_driver_load_kms(struct amdgpu_device *adev, unsigned long flags);
void amdgpu_driver_unload_kms(struct drm_device *dev);
void amdgpu_driver_lastclose_kms(struct drm_device *dev);
int amdgpu_driver_open_kms(struct drm_device *dev, struct drm_file *file_priv);
Expand Down
15 changes: 5 additions & 10 deletions drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
Original file line number Diff line number Diff line change
Expand Up @@ -1236,7 +1236,8 @@ static int amdgpu_device_check_arguments(struct amdgpu_device *adev)
* Callback for the switcheroo driver. Suspends or resumes the
* the asics before or after it is powered up using ACPI methods.
*/
static void amdgpu_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_state state)
static void amdgpu_switcheroo_set_state(struct pci_dev *pdev,
enum vga_switcheroo_state state)
{
struct drm_device *dev = pci_get_drvdata(pdev);
int r;
Expand Down Expand Up @@ -3007,27 +3008,22 @@ static const struct attribute *amdgpu_dev_attributes[] = {
* amdgpu_device_init - initialize the driver
*
* @adev: amdgpu_device pointer
* @ddev: drm dev pointer
* @pdev: pci dev pointer
* @flags: driver flags
*
* Initializes the driver info and hw (all asics).
* Returns 0 for success or an error on failure.
* Called at driver startup.
*/
int amdgpu_device_init(struct amdgpu_device *adev,
struct drm_device *ddev,
struct pci_dev *pdev,
uint32_t flags)
{
struct drm_device *ddev = adev_to_drm(adev);
struct pci_dev *pdev = adev->pdev;
int r, i;
bool boco = false;
u32 max_MBps;

adev->shutdown = false;
adev->dev = &pdev->dev;
adev->ddev = ddev;
adev->pdev = pdev;
adev->flags = flags;

if (amdgpu_force_asic_type >= 0 && amdgpu_force_asic_type < CHIP_LAST)
Expand Down Expand Up @@ -3488,9 +3484,8 @@ int amdgpu_device_suspend(struct drm_device *dev, bool fbcon)
#endif
int r;

if (dev == NULL || dev->dev_private == NULL) {
if (!dev)
return -ENODEV;
}

adev = drm_to_adev(dev);

Expand Down
43 changes: 28 additions & 15 deletions drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c
Original file line number Diff line number Diff line change
Expand Up @@ -1125,7 +1125,7 @@ static struct drm_driver kms_driver;
static int amdgpu_pci_probe(struct pci_dev *pdev,
const struct pci_device_id *ent)
{
struct drm_device *dev;
struct drm_device *ddev;
struct amdgpu_device *adev;
unsigned long flags = ent->driver_data;
int ret, retry = 0;
Expand Down Expand Up @@ -1181,15 +1181,22 @@ static int amdgpu_pci_probe(struct pci_dev *pdev,
if (ret)
return ret;

dev = drm_dev_alloc(&kms_driver, &pdev->dev);
if (IS_ERR(dev))
return PTR_ERR(dev);
adev = kzalloc(sizeof(*adev), GFP_KERNEL);
if (!adev)
return -ENOMEM;

adev->dev = &pdev->dev;
adev->pdev = pdev;
ddev = adev_to_drm(adev);
ret = drm_dev_init(ddev, &kms_driver, &pdev->dev);
if (ret)
goto err_free;
kcl_drm_vma_offset_manager_init(dev->vma_offset_manager);

#ifdef HAVE_DRM_DRV_DRIVER_ATOMIC
#ifdef HAVE_DRM_DEVICE_DRIVER_FEATURES
if (!supports_atomic)
dev->driver_features &= ~DRIVER_ATOMIC;
ddev->driver_features &= ~DRIVER_ATOMIC;
#else
/* warn the user if they mix atomic and non-atomic capable GPUs */
if ((kms_driver.driver_features & DRIVER_ATOMIC) && !supports_atomic)
Expand All @@ -1206,25 +1213,24 @@ static int amdgpu_pci_probe(struct pci_dev *pdev,
if (ret)
goto err_free;

dev->pdev = pdev;
ddev->pdev = pdev;
pci_set_drvdata(pdev, ddev);

pci_set_drvdata(pdev, dev);

ret = amdgpu_driver_load_kms(dev, ent->driver_data);
ret = amdgpu_driver_load_kms(adev, ent->driver_data);
if (ret)
goto err_pci;

retry_init:
ret = drm_dev_register(dev, ent->driver_data);
ret = drm_dev_register(ddev, ent->driver_data);
if (ret == -EAGAIN && ++retry <= 3) {
DRM_INFO("retry init %d\n", retry);
/* Don't request EX mode too frequently which is attacking */
msleep(5000);
goto retry_init;
} else if (ret)
} else if (ret) {
goto err_pci;
}

adev = drm_to_adev(dev);
ret = amdgpu_debugfs_init(adev);
if (ret)
DRM_ERROR("Creating debugfs files failed (%d).\n", ret);
Expand All @@ -1234,7 +1240,7 @@ static int amdgpu_pci_probe(struct pci_dev *pdev,
err_pci:
pci_disable_device(pdev);
err_free:
drm_dev_put(dev);
drm_dev_put(ddev);
return ret;
}

Expand All @@ -1259,6 +1265,14 @@ amdgpu_pci_remove(struct pci_dev *pdev)
drm_dev_put(dev);
}

static void amdgpu_driver_release(struct drm_device *ddev)
{
struct amdgpu_device *adev = drm_to_adev(ddev);

drm_dev_fini(ddev);
kfree(adev);
}

static void
amdgpu_pci_shutdown(struct pci_dev *pdev)
{
Expand Down Expand Up @@ -1597,6 +1611,7 @@ static struct drm_driver kms_driver = {
.debugfs_cleanup = amdgpu_debugfs_cleanup,
#endif
#endif
.release = amdgpu_driver_release,
.irq_handler = amdgpu_irq_handler,
.ioctls = amdgpu_ioctls_kms,
#ifndef HAVE_GEM_FREE_OBJECT_UNLOCKED_IN_DRM_DRIVER
Expand Down Expand Up @@ -1649,8 +1664,6 @@ static struct pci_driver amdgpu_kms_pci_driver = {
.driver.pm = &amdgpu_pm_ops,
};



static int __init amdgpu_init(void)
{
int r;
Expand Down
21 changes: 6 additions & 15 deletions drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c
Original file line number Diff line number Diff line change
Expand Up @@ -86,20 +86,15 @@ void amdgpu_driver_unload_kms(struct drm_device *dev)
amdgpu_unregister_gpu_instance(adev);

if (adev->rmmio == NULL)
goto done_free;
return;

if (adev->runpm) {
pm_runtime_get_sync(dev->dev);
pm_runtime_forbid(dev->dev);
}

amdgpu_acpi_fini(adev);

amdgpu_device_fini(adev);

done_free:
kfree(adev);
dev->dev_private = NULL;
}

void amdgpu_register_gpu_instance(struct amdgpu_device *adev)
Expand Down Expand Up @@ -130,22 +125,18 @@ void amdgpu_register_gpu_instance(struct amdgpu_device *adev)
/**
* amdgpu_driver_load_kms - Main load function for KMS.
*
* @dev: drm dev pointer
* @adev: pointer to struct amdgpu_device
* @flags: device flags
*
* This is the main load function for KMS (all asics).
* Returns 0 on success, error on failure.
*/
int amdgpu_driver_load_kms(struct drm_device *dev, unsigned long flags)
int amdgpu_driver_load_kms(struct amdgpu_device *adev, unsigned long flags)
{
struct amdgpu_device *adev;
struct drm_device *dev;
int r, acpi_status;

adev = kzalloc(sizeof(struct amdgpu_device), GFP_KERNEL);
if (adev == NULL) {
return -ENOMEM;
}
dev->dev_private = (void *)adev;
dev = adev_to_drm(adev);

if (amdgpu_has_atpx() &&
(amdgpu_is_atpx_hybrid() ||
Expand All @@ -160,7 +151,7 @@ int amdgpu_driver_load_kms(struct drm_device *dev, unsigned long flags)
* properly initialize the GPU MC controller and permit
* VRAM allocation
*/
r = amdgpu_device_init(adev, dev, dev->pdev, flags);
r = amdgpu_device_init(adev, flags);
if (r) {
dev_err(&dev->pdev->dev, "Fatal error during GPU init\n");
goto out;
Expand Down

0 comments on commit 82fc7ac

Please sign in to comment.