Displaying 2 results from an estimated 2 matches for "2dfe58af12e4".
2016 Mar 31
1
[PATCH] platform: disable probe of GM20B
...t;
---
Ben, sorry for that, but could you take this for one of the next -rc? I
will re-enable GM20B once the DT bindings have landed. Thanks!
drm/nouveau/nouveau_platform.c | 4 ----
1 file changed, 4 deletions(-)
diff --git a/drm/nouveau/nouveau_platform.c b/drm/nouveau/nouveau_platform.c
index 2dfe58af12e4..af9ee2de4c4d 100644
--- a/drm/nouveau/nouveau_platform.c
+++ b/drm/nouveau/nouveau_platform.c
@@ -60,10 +60,6 @@ static const struct of_device_id nouveau_platform_match[] = {
.compatible = "nvidia,gk20a",
.data = &gk20a_platform_data,
},
- {
- .compatible = "nvidia,gm20...
2016 Apr 01
1
[PATCH] tegra: acquire and enable reference clock if needed
...lue of 0 means an IOMMU is never used.
*/
u8 iommu_bit;
+ /*
+ * Whether the chip requires a reference clock
+ */
+ bool require_ref_clk;
};
int nvkm_device_tegra_new(const struct nvkm_device_tegra_func *,
diff --git a/drm/nouveau/nouveau_platform.c b/drm/nouveau/nouveau_platform.c
index 2dfe58af12e4..4c4cc2260257 100644
--- a/drm/nouveau/nouveau_platform.c
+++ b/drm/nouveau/nouveau_platform.c
@@ -55,6 +55,11 @@ static const struct nvkm_device_tegra_func gk20a_platform_data = {
.iommu_bit = 34,
};
+static const struct nvkm_device_tegra_func gm20b_platform_data = {
+ .iommu_bit = 34,
+ .req...