mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-04-06 06:15:10 +00:00
vga_switcheroo: Introduce struct vga_switcheroo_client_ops
This changes the API as a clean-up. Instead of passing multiple function pointers at each time, introduce a new struct holding the whole callback functions and pass it to the registration. The same struct will be used for the upcoming audio client registration, too. Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
79721e0a91
commit
26ec685ff9
5 changed files with 35 additions and 31 deletions
|
@ -1271,6 +1271,12 @@ static bool i915_switcheroo_can_switch(struct pci_dev *pdev)
|
||||||
return can_switch;
|
return can_switch;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static const struct vga_switcheroo_client_ops i915_switcheroo_ops = {
|
||||||
|
.set_gpu_state = i915_switcheroo_set_state,
|
||||||
|
.reprobe = NULL,
|
||||||
|
.can_switch = i915_switcheroo_can_switch,
|
||||||
|
};
|
||||||
|
|
||||||
static int i915_load_modeset_init(struct drm_device *dev)
|
static int i915_load_modeset_init(struct drm_device *dev)
|
||||||
{
|
{
|
||||||
struct drm_i915_private *dev_priv = dev->dev_private;
|
struct drm_i915_private *dev_priv = dev->dev_private;
|
||||||
|
@ -1293,10 +1299,7 @@ static int i915_load_modeset_init(struct drm_device *dev)
|
||||||
|
|
||||||
intel_register_dsm_handler();
|
intel_register_dsm_handler();
|
||||||
|
|
||||||
ret = vga_switcheroo_register_client(dev->pdev,
|
ret = vga_switcheroo_register_client(dev->pdev, &i915_switcheroo_ops);
|
||||||
i915_switcheroo_set_state,
|
|
||||||
NULL,
|
|
||||||
i915_switcheroo_can_switch);
|
|
||||||
if (ret)
|
if (ret)
|
||||||
goto cleanup_vga_client;
|
goto cleanup_vga_client;
|
||||||
|
|
||||||
|
|
|
@ -662,6 +662,12 @@ error:
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static const struct vga_switcheroo_client_ops nouveau_switcheroo_ops = {
|
||||||
|
.set_gpu_state = nouveau_switcheroo_set_state,
|
||||||
|
.reprobe = nouveau_switcheroo_reprobe,
|
||||||
|
.can_switch = nouveau_switcheroo_can_switch,
|
||||||
|
};
|
||||||
|
|
||||||
int
|
int
|
||||||
nouveau_card_init(struct drm_device *dev)
|
nouveau_card_init(struct drm_device *dev)
|
||||||
{
|
{
|
||||||
|
@ -670,9 +676,7 @@ nouveau_card_init(struct drm_device *dev)
|
||||||
int ret, e = 0;
|
int ret, e = 0;
|
||||||
|
|
||||||
vga_client_register(dev->pdev, dev, NULL, nouveau_vga_set_decode);
|
vga_client_register(dev->pdev, dev, NULL, nouveau_vga_set_decode);
|
||||||
vga_switcheroo_register_client(dev->pdev, nouveau_switcheroo_set_state,
|
vga_switcheroo_register_client(dev->pdev, &nouveau_switcheroo_ops);
|
||||||
nouveau_switcheroo_reprobe,
|
|
||||||
nouveau_switcheroo_can_switch);
|
|
||||||
|
|
||||||
/* Initialise internal driver API hooks */
|
/* Initialise internal driver API hooks */
|
||||||
ret = nouveau_init_engine_ptrs(dev);
|
ret = nouveau_init_engine_ptrs(dev);
|
||||||
|
|
|
@ -697,6 +697,11 @@ static bool radeon_switcheroo_can_switch(struct pci_dev *pdev)
|
||||||
return can_switch;
|
return can_switch;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static const struct vga_switcheroo_client_ops radeon_switcheroo_ops = {
|
||||||
|
.set_gpu_state = radeon_switcheroo_set_state,
|
||||||
|
.reprobe = NULL,
|
||||||
|
.can_switch = radeon_switcheroo_can_switch,
|
||||||
|
};
|
||||||
|
|
||||||
int radeon_device_init(struct radeon_device *rdev,
|
int radeon_device_init(struct radeon_device *rdev,
|
||||||
struct drm_device *ddev,
|
struct drm_device *ddev,
|
||||||
|
@ -809,10 +814,7 @@ int radeon_device_init(struct radeon_device *rdev,
|
||||||
/* this will fail for cards that aren't VGA class devices, just
|
/* this will fail for cards that aren't VGA class devices, just
|
||||||
* ignore it */
|
* ignore it */
|
||||||
vga_client_register(rdev->pdev, rdev, NULL, radeon_vga_set_decode);
|
vga_client_register(rdev->pdev, rdev, NULL, radeon_vga_set_decode);
|
||||||
vga_switcheroo_register_client(rdev->pdev,
|
vga_switcheroo_register_client(rdev->pdev, &radeon_switcheroo_ops);
|
||||||
radeon_switcheroo_set_state,
|
|
||||||
NULL,
|
|
||||||
radeon_switcheroo_can_switch);
|
|
||||||
|
|
||||||
r = radeon_init(rdev);
|
r = radeon_init(rdev);
|
||||||
if (r)
|
if (r)
|
||||||
|
|
|
@ -34,9 +34,7 @@ struct vga_switcheroo_client {
|
||||||
struct pci_dev *pdev;
|
struct pci_dev *pdev;
|
||||||
struct fb_info *fb_info;
|
struct fb_info *fb_info;
|
||||||
int pwr_state;
|
int pwr_state;
|
||||||
void (*set_gpu_state)(struct pci_dev *pdev, enum vga_switcheroo_state);
|
const struct vga_switcheroo_client_ops *ops;
|
||||||
void (*reprobe)(struct pci_dev *pdev);
|
|
||||||
bool (*can_switch)(struct pci_dev *pdev);
|
|
||||||
int id;
|
int id;
|
||||||
bool active;
|
bool active;
|
||||||
struct list_head list;
|
struct list_head list;
|
||||||
|
@ -109,9 +107,7 @@ static void vga_switcheroo_enable(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
int vga_switcheroo_register_client(struct pci_dev *pdev,
|
int vga_switcheroo_register_client(struct pci_dev *pdev,
|
||||||
void (*set_gpu_state)(struct pci_dev *pdev, enum vga_switcheroo_state),
|
const struct vga_switcheroo_client_ops *ops)
|
||||||
void (*reprobe)(struct pci_dev *pdev),
|
|
||||||
bool (*can_switch)(struct pci_dev *pdev))
|
|
||||||
{
|
{
|
||||||
struct vga_switcheroo_client *client;
|
struct vga_switcheroo_client *client;
|
||||||
|
|
||||||
|
@ -121,9 +117,7 @@ int vga_switcheroo_register_client(struct pci_dev *pdev,
|
||||||
|
|
||||||
client->pwr_state = VGA_SWITCHEROO_ON;
|
client->pwr_state = VGA_SWITCHEROO_ON;
|
||||||
client->pdev = pdev;
|
client->pdev = pdev;
|
||||||
client->set_gpu_state = set_gpu_state;
|
client->ops = ops;
|
||||||
client->reprobe = reprobe;
|
|
||||||
client->can_switch = can_switch;
|
|
||||||
client->id = -1;
|
client->id = -1;
|
||||||
if (pdev == vga_default_device())
|
if (pdev == vga_default_device())
|
||||||
client->active = true;
|
client->active = true;
|
||||||
|
@ -230,7 +224,7 @@ static int vga_switchon(struct vga_switcheroo_client *client)
|
||||||
if (vgasr_priv.handler->power_state)
|
if (vgasr_priv.handler->power_state)
|
||||||
vgasr_priv.handler->power_state(client->id, VGA_SWITCHEROO_ON);
|
vgasr_priv.handler->power_state(client->id, VGA_SWITCHEROO_ON);
|
||||||
/* call the driver callback to turn on device */
|
/* call the driver callback to turn on device */
|
||||||
client->set_gpu_state(client->pdev, VGA_SWITCHEROO_ON);
|
client->ops->set_gpu_state(client->pdev, VGA_SWITCHEROO_ON);
|
||||||
client->pwr_state = VGA_SWITCHEROO_ON;
|
client->pwr_state = VGA_SWITCHEROO_ON;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -238,7 +232,7 @@ static int vga_switchon(struct vga_switcheroo_client *client)
|
||||||
static int vga_switchoff(struct vga_switcheroo_client *client)
|
static int vga_switchoff(struct vga_switcheroo_client *client)
|
||||||
{
|
{
|
||||||
/* call the driver callback to turn off device */
|
/* call the driver callback to turn off device */
|
||||||
client->set_gpu_state(client->pdev, VGA_SWITCHEROO_OFF);
|
client->ops->set_gpu_state(client->pdev, VGA_SWITCHEROO_OFF);
|
||||||
if (vgasr_priv.handler->power_state)
|
if (vgasr_priv.handler->power_state)
|
||||||
vgasr_priv.handler->power_state(client->id, VGA_SWITCHEROO_OFF);
|
vgasr_priv.handler->power_state(client->id, VGA_SWITCHEROO_OFF);
|
||||||
client->pwr_state = VGA_SWITCHEROO_OFF;
|
client->pwr_state = VGA_SWITCHEROO_OFF;
|
||||||
|
@ -284,8 +278,8 @@ static int vga_switchto_stage2(struct vga_switcheroo_client *new_client)
|
||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
if (new_client->reprobe)
|
if (new_client->ops->reprobe)
|
||||||
new_client->reprobe(new_client->pdev);
|
new_client->ops->reprobe(new_client->pdev);
|
||||||
|
|
||||||
if (active->pwr_state == VGA_SWITCHEROO_ON)
|
if (active->pwr_state == VGA_SWITCHEROO_ON)
|
||||||
vga_switchoff(active);
|
vga_switchoff(active);
|
||||||
|
@ -299,7 +293,7 @@ static bool check_can_switch(void)
|
||||||
struct vga_switcheroo_client *client;
|
struct vga_switcheroo_client *client;
|
||||||
|
|
||||||
list_for_each_entry(client, &vgasr_priv.clients, list) {
|
list_for_each_entry(client, &vgasr_priv.clients, list) {
|
||||||
if (!client->can_switch(client->pdev)) {
|
if (!client->ops->can_switch(client->pdev)) {
|
||||||
printk(KERN_ERR "vga_switcheroo: client %x refused switch\n", client->id);
|
printk(KERN_ERR "vga_switcheroo: client %x refused switch\n", client->id);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,13 +28,16 @@ struct vga_switcheroo_handler {
|
||||||
int (*get_client_id)(struct pci_dev *pdev);
|
int (*get_client_id)(struct pci_dev *pdev);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
struct vga_switcheroo_client_ops {
|
||||||
|
void (*set_gpu_state)(struct pci_dev *dev, enum vga_switcheroo_state);
|
||||||
|
void (*reprobe)(struct pci_dev *dev);
|
||||||
|
bool (*can_switch)(struct pci_dev *dev);
|
||||||
|
};
|
||||||
|
|
||||||
#if defined(CONFIG_VGA_SWITCHEROO)
|
#if defined(CONFIG_VGA_SWITCHEROO)
|
||||||
void vga_switcheroo_unregister_client(struct pci_dev *dev);
|
void vga_switcheroo_unregister_client(struct pci_dev *dev);
|
||||||
int vga_switcheroo_register_client(struct pci_dev *dev,
|
int vga_switcheroo_register_client(struct pci_dev *dev,
|
||||||
void (*set_gpu_state)(struct pci_dev *dev, enum vga_switcheroo_state),
|
const struct vga_switcheroo_client_ops *ops);
|
||||||
void (*reprobe)(struct pci_dev *dev),
|
|
||||||
bool (*can_switch)(struct pci_dev *dev));
|
|
||||||
|
|
||||||
void vga_switcheroo_client_fb_set(struct pci_dev *dev,
|
void vga_switcheroo_client_fb_set(struct pci_dev *dev,
|
||||||
struct fb_info *info);
|
struct fb_info *info);
|
||||||
|
@ -48,9 +51,7 @@ int vga_switcheroo_process_delayed_switch(void);
|
||||||
|
|
||||||
static inline void vga_switcheroo_unregister_client(struct pci_dev *dev) {}
|
static inline void vga_switcheroo_unregister_client(struct pci_dev *dev) {}
|
||||||
static inline int vga_switcheroo_register_client(struct pci_dev *dev,
|
static inline int vga_switcheroo_register_client(struct pci_dev *dev,
|
||||||
void (*set_gpu_state)(struct pci_dev *dev, enum vga_switcheroo_state),
|
const struct vga_switcheroo_client_ops *ops) { return 0; }
|
||||||
void (*reprobe)(struct pci_dev *dev),
|
|
||||||
bool (*can_switch)(struct pci_dev *dev)) { return 0; }
|
|
||||||
static inline void vga_switcheroo_client_fb_set(struct pci_dev *dev, struct fb_info *info) {}
|
static inline void vga_switcheroo_client_fb_set(struct pci_dev *dev, struct fb_info *info) {}
|
||||||
static inline int vga_switcheroo_register_handler(struct vga_switcheroo_handler *handler) { return 0; }
|
static inline int vga_switcheroo_register_handler(struct vga_switcheroo_handler *handler) { return 0; }
|
||||||
static inline void vga_switcheroo_unregister_handler(void) {}
|
static inline void vga_switcheroo_unregister_handler(void) {}
|
||||||
|
|
Loading…
Add table
Reference in a new issue