Release 4.11 drivers/gpu/drm/nouveau/nouveau_acpi.h
#ifndef __NOUVEAU_ACPI_H__
#define __NOUVEAU_ACPI_H__
#define ROM_BIOS_PAGE 4096
#if defined(CONFIG_ACPI) && defined(CONFIG_X86)
bool nouveau_is_optimus(void);
bool nouveau_is_v1_dsm(void);
void nouveau_register_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);
bool nouveau_acpi_rom_supported(struct device *);
void *nouveau_acpi_edid(struct drm_device *, struct drm_connector *);
#else
static inline bool nouveau_is_optimus(void) { return false; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Dave Airlie | 12 | 100.00% | 1 | 100.00% |
Total | 12 | 100.00% | 1 | 100.00% |
;
static inline bool nouveau_is_v1_dsm(void) { return false; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Dave Airlie | 12 | 100.00% | 1 | 100.00% |
Total | 12 | 100.00% | 1 | 100.00% |
;
static inline void nouveau_register_dsm_handler(void) {}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ben Skeggs | 8 | 100.00% | 1 | 100.00% |
Total | 8 | 100.00% | 1 | 100.00% |
static inline void nouveau_unregister_dsm_handler(void) {}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ben Skeggs | 8 | 100.00% | 1 | 100.00% |
Total | 8 | 100.00% | 1 | 100.00% |
static inline void nouveau_switcheroo_optimus_dsm(void) {}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ben Skeggs | 8 | 100.00% | 1 | 100.00% |
Total | 8 | 100.00% | 1 | 100.00% |
static inline bool nouveau_acpi_rom_supported(struct device *dev) { return false; }
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ben Skeggs | 15 | 100.00% | 2 | 100.00% |
Total | 15 | 100.00% | 2 | 100.00% |
static inline int nouveau_acpi_get_bios_chunk(uint8_t *bios, int offset, int len) { return -EINVAL; }
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ben Skeggs | 21 | 100.00% | 1 | 100.00% |
Total | 21 | 100.00% | 1 | 100.00% |
static inline void *nouveau_acpi_edid(struct drm_device *dev, struct drm_connector *connector) { return NULL; }
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ben Skeggs | 21 | 100.00% | 1 | 100.00% |
Total | 21 | 100.00% | 1 | 100.00% |
#endif
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ben Skeggs | 156 | 78.39% | 2 | 50.00% |
Dave Airlie | 38 | 19.10% | 1 | 25.00% |
Ben Hutchings | 5 | 2.51% | 1 | 25.00% |
Total | 199 | 100.00% | 4 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.