Commit c3f7de6a authored by Alexandre Courbot's avatar Alexandre Courbot Committed by Ben Skeggs

drm/nouveau/platform: support for probing GP10B

Signed-off-by: default avatarAlexandre Courbot <acourbot@nvidia.com>
Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent e6e1817a
...@@ -62,6 +62,12 @@ static const struct nvkm_device_tegra_func gm20b_platform_data = { ...@@ -62,6 +62,12 @@ static const struct nvkm_device_tegra_func gm20b_platform_data = {
.require_ref_clk = true, .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[] = { static const struct of_device_id nouveau_platform_match[] = {
{ {
.compatible = "nvidia,gk20a", .compatible = "nvidia,gk20a",
...@@ -71,6 +77,10 @@ static const struct of_device_id nouveau_platform_match[] = { ...@@ -71,6 +77,10 @@ static const struct of_device_id nouveau_platform_match[] = {
.compatible = "nvidia,gm20b", .compatible = "nvidia,gm20b",
.data = &gm20b_platform_data, .data = &gm20b_platform_data,
}, },
{
.compatible = "nvidia,gp10b",
.data = &gp10b_platform_data,
},
{ } { }
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment