mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-19 10:14:23 +08:00
drm/nouveau/platform: support for probing GP10B
Signed-off-by: Alexandre Courbot <acourbot@nvidia.com> Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
This commit is contained in:
parent
e6e1817a55
commit
c3f7de6a4c
@ -62,6 +62,12 @@ static const struct nvkm_device_tegra_func gm20b_platform_data = {
|
||||
.require_ref_clk = true,
|
||||
};
|
||||
|
||||
static const struct nvkm_device_tegra_func gp10b_platform_data = {
|
||||
.iommu_bit = 36,
|
||||
/* power provided by generic PM domains */
|
||||
.require_vdd = false,
|
||||
};
|
||||
|
||||
static const struct of_device_id nouveau_platform_match[] = {
|
||||
{
|
||||
.compatible = "nvidia,gk20a",
|
||||
@ -71,6 +77,10 @@ static const struct of_device_id nouveau_platform_match[] = {
|
||||
.compatible = "nvidia,gm20b",
|
||||
.data = &gm20b_platform_data,
|
||||
},
|
||||
{
|
||||
.compatible = "nvidia,gp10b",
|
||||
.data = &gp10b_platform_data,
|
||||
},
|
||||
{ }
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user